diff --git a/src/views/components/firmDialog/index.vue b/src/views/components/firmDialog/index.vue
index 1c113ba..acd6e4f 100644
--- a/src/views/components/firmDialog/index.vue
+++ b/src/views/components/firmDialog/index.vue
@@ -20,18 +20,12 @@
- {{
- item.value == "null"
- ? ""
- : item.value == "false"
- ? "暂无"
- : item.value
- }}
-
+ :label="item.label"
+ v-for="(item, index) in listDes"
+ :key="index"
+ >
+ {{ item.value}}
+
@@ -40,6 +34,18 @@
diff --git a/src/views/yingji/enterprise.vue b/src/views/yingji/enterprise.vue
index d7c1e18..973c2e1 100644
--- a/src/views/yingji/enterprise.vue
+++ b/src/views/yingji/enterprise.vue
@@ -620,7 +620,7 @@ export default {
for (let key in this.details) {
this.listDes.forEach((value1, index1) => {
if (key == value1.eng) {
- this.listDes[index1].value = this.details[key];
+ this.listDes[index1].value = this.details[key] == '无' ? '/' : this.details[key];
return;
}
});
diff --git a/src/views/yingji/planManage.vue b/src/views/yingji/planManage.vue
index 7b6a0f8..0e31f62 100644
--- a/src/views/yingji/planManage.vue
+++ b/src/views/yingji/planManage.vue
@@ -4,7 +4,7 @@
* @Author: JC9527
* @Date: 2023-09-04 10:20:06
* @LastEditors: JC9527
- * @LastEditTime: 2023-09-29 15:40:31
+ * @LastEditTime: 2023-09-29 16:20:31
-->
@@ -461,9 +461,9 @@
let res = await this.$api.yingji.planmx(pages);
if(res.code == 200) {
this.loading = false;
+ this.tableData = res.data.list;
+ this.total = res.data.total
}
- this.tableData = res.data.list;
- this.total = res.data.total
},
commentData(item,dept){
// if(dept.ancestors.split(',').length == 3) {