فهرست منبع

我的工作台

qinzhipeng_v 5 سال پیش
والد
کامیت
14d5c8b386
1فایلهای تغییر یافته به همراه13 افزوده شده و 1 حذف شده
  1. 13 1
      src/views/Platform/workbench.vue

+ 13 - 1
src/views/Platform/workbench.vue

@@ -111,7 +111,7 @@
 
       <!-- 任务展示 -->
       <el-dialog tltle="详情" :visible.sync="dialogTableVisible1" width="70%">
-        <el-table :data="gridData1" max-height="390" :header-cell-style="getRowClass" @row-click="clickQueryTable2">
+        <el-table :data="gridData1" max-height="390" style="cursor:pointer" :header-cell-style="getRowClass" @row-click="clickQueryTable2">
           <el-table-column type="index" label="序号" min-width="120" align="center" />
           <el-table-column label="主题" min-width="120" align="center"><template slot-scope="scope">{{ scope.row.name }}</template></el-table-column>
           <el-table-column label="进展" min-width="120" align="center"><template slot-scope="scope">{{ scope.row.stageString }}</template></el-table-column>
@@ -122,6 +122,18 @@
         </el-table>
       </el-dialog>
 
+      <!-- 缺陷展 示 -->
+      <el-dialog tltle="详情" :visible.sync="dialogTableVisibleTow" width="70%">
+        <el-table :data="gridData2" max-height="390" style="cursor:pointer" :header-cell-style="getRowClass" @row-click="clickQueryTable3">
+          <el-table-column type="index" label="序号" min-width="120" align="center" />
+          <el-table-column label="主题" min-width="120" align="center"><template slot-scope="scope">{{ scope.row.bugName }}</template></el-table-column>
+          <el-table-column label="类型" min-width="120" align="center"><template slot-scope="scope">{{ scope.row.bugTypeName }}</template></el-table-column>
+          <el-table-column label="优先级" min-width="120" align="center"><template slot-scope="scope">{{ scope.row.priorityName }}</template></el-table-column>
+          <el-table-column label="状态" min-width="120" align="center"><template slot-scope="scope"><el-tag type="success">{{ scope.row.bugStatusName }}</el-tag></template></el-table-column>
+          <el-table-column label="最近更新时间" min-width="120" align="center"><template slot-scope="scope">{{ scope.row.gmtModify }}</template></el-table-column>
+        </el-table>
+      </el-dialog>
+
       <!-- 缺陷展示 -->
       <el-dialog tltle="详情" :visible.sync="dialogTableVisibleTow" width="70%">
         <el-table :data="gridData2" max-height="390" :header-cell-style="getRowClass" @row-click="clickQueryTable3">