n20-common-lib 2.22.6 → 2.22.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/ApprovalRecord/index.vue +1 -1
- package/src/components/TablePro/index.vue +6 -1
- package/theme/blue.css +2 -2
- package/theme/cctcRed.css +2 -2
- package/theme/green.css +2 -2
- package/theme/lightBlue.css +2 -2
- package/theme/orange.css +2 -2
- package/theme/purple.css +2 -2
- package/theme/red.css +2 -2
- package/theme/yellow.css +2 -2
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<approvalImg class="text-c p-a" :proc-inst-id="procInstIdC" style="height: 70vh; overflow: auto" />
|
|
36
36
|
</el-dialog>
|
|
37
37
|
</div>
|
|
38
|
-
<div v-else
|
|
38
|
+
<div v-else>
|
|
39
39
|
<expandableWrap :title="'审批记录' | $lc">
|
|
40
40
|
<template slot="tips">
|
|
41
41
|
<el-button size="mini" plain @click="imgV = true">{{ '流程图查看' | $lc }}</el-button>
|
|
@@ -274,8 +274,13 @@ export default {
|
|
|
274
274
|
},
|
|
275
275
|
activated() {
|
|
276
276
|
this.$refs.vxeTable.loadData(this.data)
|
|
277
|
+
// 数据更新后重新设置合并单元格
|
|
278
|
+
this.$nextTick(() => {
|
|
279
|
+
if (this.mergeCells && this.mergeCells.length > 0 && this.$refs.vxeTable) {
|
|
280
|
+
this.$refs.vxeTable.setMergeCells(this.mergeCells)
|
|
281
|
+
}
|
|
282
|
+
})
|
|
277
283
|
},
|
|
278
|
-
mounted() {},
|
|
279
284
|
methods: {
|
|
280
285
|
// 全选/反选
|
|
281
286
|
toggleAllSelection() {
|