-
+ 发起服务
-
+ @click="handleAdd"
+ type="primary"
+ >发起服务
+
@@ -163,8 +160,7 @@
查看
+ >查看
编辑
+ >编辑
反馈
+ >反馈
人员名单
+ >人员名单
取消
+ >取消
@@ -380,7 +376,7 @@
tableLoading: false,
user: {},
agencyId: '',
-
+ searchH:170,
tableData: [],
statusArray: [
@@ -452,9 +448,10 @@
},
computed: {
maxTableHeight () {
- return this.$store.state.inIframe
- ? this.clientHeight - 410 + this.iframeHeigh
- : this.clientHeight - 410;
+ const h =
+ this.clientHeight - this.searchH - 275 + this.iframeHeight;
+ const _h = this.clientHeight - 275 - this.searchH;
+ return this.$store.state.inIframe ? h : _h;
},
...mapGetters(["clientHeight", "iframeHeight"]),
},
diff --git a/src/views/modules/communityService/labelConfig/addForm.vue b/src/views/modules/communityService/labelConfig/addForm.vue
index 6f077c1b2..6c263a8d5 100644
--- a/src/views/modules/communityService/labelConfig/addForm.vue
+++ b/src/views/modules/communityService/labelConfig/addForm.vue
@@ -574,6 +574,7 @@