|
@@ -1015,7 +1015,7 @@
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
<!-- 计划分类配置 -->
|
|
<!-- 计划分类配置 -->
|
|
- <el-dialog title="计划类型管理" show-header="false" v-if="planClassificationPopUpWindow" :visible.sync="planClassificationPopUpWindow" :close-on-click-modal="false" customClass="customWidth" width="500px">
|
|
|
|
|
|
+ <el-dialog title="计划类型管理" show-header="false" v-if="planClassificationPopUpWindow" :visible.sync="planClassificationPopUpWindow" :close-on-click-modal="false" customClass="customWidth" width="600px">
|
|
<el-table :data="planTypeList" highlight-current-row height="400" style="width: 100%;" v-loading="planTypeListLoading">
|
|
<el-table :data="planTypeList" highlight-current-row height="400" style="width: 100%;" v-loading="planTypeListLoading">
|
|
<el-table-column type="index" width="60" :label="$t('headerTop.serialNumber')">
|
|
<el-table-column type="index" width="60" :label="$t('headerTop.serialNumber')">
|
|
<template slot-scope="scope" >
|
|
<template slot-scope="scope" >
|
|
@@ -1023,6 +1023,11 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="name" :label="$t('names')" ></el-table-column>
|
|
<el-table-column prop="name" :label="$t('names')" ></el-table-column>
|
|
|
|
+ <el-table-column label="颜色" width="80">
|
|
|
|
+ <template slot-scope="scope" >
|
|
|
|
+ <div class="planTypeColor" :style="`background: ${scope.row.color}`"></div>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column :label="$t('operation')" :width="user.companyId == '862' ? '300px' : '180px'">
|
|
<el-table-column :label="$t('operation')" :width="user.companyId == '862' ? '300px' : '180px'">
|
|
<template slot-scope="scope" >
|
|
<template slot-scope="scope" >
|
|
<el-button size="small" type="primary" @click="auditProcess(scope.row)" v-if="user.companyId == '862'" >{{ $t('AuditProcess') }}</el-button>
|
|
<el-button size="small" type="primary" @click="auditProcess(scope.row)" v-if="user.companyId == '862'" >{{ $t('AuditProcess') }}</el-button>
|
|
@@ -6601,4 +6606,9 @@ a {
|
|
.gongcheng .el-table .cell{
|
|
.gongcheng .el-table .cell{
|
|
overflow: inherit !important;
|
|
overflow: inherit !important;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+.planTypeColor {
|
|
|
|
+ width: 60px;
|
|
|
|
+ height: 20px;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|