diff --git a/src/views/components/dialog/index.vue b/src/views/components/dialog/index.vue
index 2495b17..dd4a5b1 100644
--- a/src/views/components/dialog/index.vue
+++ b/src/views/components/dialog/index.vue
@@ -48,128 +48,12 @@
-
-
-
-
-
-
-
-
-
-
- {{
- parseTime(scope.row.examineEndTime, "{y}-{m}-{d}")
- }}
-
-
-
-
-
- 修改
- 删除
-
-
-
-
-
-
+
- 草稿箱{{ 0 }}
+ 草稿箱( {{ 100 }} 家)
下一步
@@ -177,7 +61,7 @@
- 草稿箱{{ 0 }}
+ 草稿箱( {{ 100 }} 家)
正式提交
@@ -185,17 +69,11 @@
-
diff --git a/src/views/yingji/planManage copy.vue b/src/views/yingji/planManage copy.vue
new file mode 100644
index 0000000..3e168ca
--- /dev/null
+++ b/src/views/yingji/planManage copy.vue
@@ -0,0 +1,727 @@
+
+
+
+
+
+
+
+
+
导出excel
+
+
+
+
新增计划
+
+
+
+
+
+
+
+
+
+ {{ componendDistrict(scope.row.district) || "/" }}
+
+
+
+
+
+ {{
+ scope.row.createTime
+ ? scope.row.createTime.split(" ")[0]
+ : scope.row.createTime
+ }}
+
+
+
+
+
+
+
+
查看
+
+
+
+
修改
+
+
+
+
删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/yingji/planManage.vue b/src/views/yingji/planManage.vue
index 3e168ca..6a49b88 100644
--- a/src/views/yingji/planManage.vue
+++ b/src/views/yingji/planManage.vue
@@ -471,41 +471,41 @@ export default {
this.total = res.data.total;
}
},
- commentData(item, dept) {
- item.map((item) => {
- item.children.map((itemTwo) => {
- if (itemTwo.children.length == 0) {
- delete itemTwo.children;
- }
- itemTwo.county = itemTwo.subdistrict;
- });
- });
- // }
- this.options = item;
- if (dept.ancestors.split(",").length == 2) {
- this.options = this.options.filter((item) => {
- return item.institutionName == dept.deptName;
- });
- this.options.map((item) => {
- if (item.institutionName == dept.deptName) {
- this.form.district = item.subdistrict;
- this.mydistrict = item.subdistrict;
- this.county = true;
- }
- });
- } else if (dept.ancestors.split(",").length == 3) {
- this.options.map((item) => {
- item.children.map((itemTwo) => {
- if (itemTwo.institutionName == dept.deptName) {
- this.form.district = itemTwo.subdistrict;
- this.mydistrict = itemTwo.subdistrict;
- this.county = false;
- }
- });
- });
- this.disabled = true;
- }
- },
+ // commentData(item, dept) {
+ // item.map((item) => {
+ // item.children.map((itemTwo) => {
+ // if (itemTwo.children.length == 0) {
+ // delete itemTwo.children;
+ // }
+ // itemTwo.county = itemTwo.subdistrict;
+ // });
+ // });
+ // // }
+ // this.options = item;
+ // if (dept.ancestors.split(",").length == 2) {
+ // this.options = this.options.filter((item) => {
+ // return item.institutionName == dept.deptName;
+ // });
+ // this.options.map((item) => {
+ // if (item.institutionName == dept.deptName) {
+ // this.form.district = item.subdistrict;
+ // this.mydistrict = item.subdistrict;
+ // this.county = true;
+ // }
+ // });
+ // } else if (dept.ancestors.split(",").length == 3) {
+ // this.options.map((item) => {
+ // item.children.map((itemTwo) => {
+ // if (itemTwo.institutionName == dept.deptName) {
+ // this.form.district = itemTwo.subdistrict;
+ // this.mydistrict = itemTwo.subdistrict;
+ // this.county = false;
+ // }
+ // });
+ // });
+ // this.disabled = true;
+ // }
+ // },
},
async created() {
// let data = await this.$api.yingji.tree();
@@ -513,10 +513,10 @@ export default {
let treeData = JSON.parse(localStorage.getItem("TREE_DATA"));
this.myDistrict = treeData;
- this.commentData(treeData, this.dept);
- if (this.dept.ancestors.split(",").length == 1) {
- this.getList(this.pages);
- }
+ // this.commentData(treeData, this.dept);
+ // if (this.dept.ancestors.split(",").length == 1) {
+ // this.getList(this.pages);
+ // }
},
};