ludc
2023-10-23 f1617cdfe03d1c9ca2e7d8acf0516825a6ea8346
Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue
@@ -43,6 +43,15 @@
              <el-table-column v-if="tableData.length != 0" fixed type="selection" width="55"></el-table-column>
              <el-table-column v-if="tableData.length != 0" fixed label="序号" type="index" width="55">
              </el-table-column>
<!--              生命周期-->
              <el-table-column v-for="item in lcstatusArray" v-if=" lcstatusArray.length !== 0 && !item.hidden" label="生命周期值" prop="lcstatus"
                               :show-overflow-tooltip="true" :sortable="item.sortable" :width="item.width"
                               align="center">
                <template slot-scope="scope">
                  <span>{{ scope.row.lcstatus_text }}</span>
                </template>
              </el-table-column>
<!--              编号-->
              <el-table-column  v-for="item in CodeArray" v-if="CodeArray.length !== 0 && !item.hidden" :label="item.label" :prop="item.prop"
                               :show-overflow-tooltip="true" :sortable="item.sortable" :width="item.width"
                               align="center">
@@ -61,13 +70,7 @@
                               :width="item.width"
                               align="center">
              </el-table-column>
              <el-table-column v-for="item in lcstatusArray" v-if=" lcstatusArray.length !== 0 && !item.hidden" label="生命周期值" prop="lcstatus"
                                :show-overflow-tooltip="true" :sortable="item.sortable" :width="item.width"
                                align="center">
                <template slot-scope="scope">
                  <span>{{ scope.row.lcstatus_text }}</span>
                </template>
              </el-table-column>
            </el-table>
          </el-row>
          <!--          新增-->
@@ -966,16 +969,5 @@
.bottom {
  margin-top: 10px;
}
//.custom-scrollbar::-webkit-scrollbar {
//  width: 10px  !important;;/* 设置滚动条的宽度 */
//}
//
//.custom-scrollbar::-webkit-scrollbar-thumb {
//  background-color: #a11313  !important;; /* 设置滚动条的颜色 */
//  border-radius: 5px  !important;; /* 设置滚动条的边框弧度 */
//}
//
//.custom-scrollbar::-webkit-scrollbar-track {
//  background-color: #f1f1f1  !important;; /* 设置滚动条的轨道颜色 */
//}
</style>