@@ -20,7 +20,12 @@ export default {
computed: {
disabled: {
get() {
- return !this.selectData.length;
+ if (this.selectData.length > 0) {
+ // status: '4' 已关闭
+ let close = this.selectData.findIndex((item) => item.status === "4");
+ return close !== -1;
+ }
+ return true;
},
set() {},