Commit fa69e65b authored by 刘殿昕's avatar 刘殿昕

通过就隐藏

parent 0e8217bf
...@@ -493,7 +493,7 @@ export default { ...@@ -493,7 +493,7 @@ export default {
this.use_uid = this.$route.query.use_uid || ""; this.use_uid = this.$route.query.use_uid || "";
this.id = this.$route.params.id || ""; this.id = this.$route.params.id || "";
if (this.apply_type != 0) { if (this.apply_type != 0) {
this.list_arr[2].title = "资源调整数据规格"; this.list_arr[2].title = "资源调整数据规格";
} }
}, },
getUrl() { getUrl() {
...@@ -668,10 +668,16 @@ export default { ...@@ -668,10 +668,16 @@ export default {
let index = this.list_arr.findIndex( let index = this.list_arr.findIndex(
(item) => item.title == "审批通过后工作区域规格:" (item) => item.title == "审批通过后工作区域规格:"
); );
if (index > -1) { if (index > -1) {
this.list_arr.splice(index, 1); this.list_arr.splice(index, 1);
} }
let index2 = this.list_arr.findIndex(
(item) => item.title == "资源调整数据规格:"
);
if (index2 > -1) {
this.list_arr.splice(index2, 1);
}
} }
if (this.appList.length == 0) { if (this.appList.length == 0) {
this.list_arr.splice(-2); this.list_arr.splice(-2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment