|
|
@ -124,6 +124,7 @@
|
|
|
|
size="mini"
|
|
|
|
size="mini"
|
|
|
|
@click="handleAdd()"
|
|
|
|
@click="handleAdd()"
|
|
|
|
v-hasPermi="['tcZz/netWorkYq:yqxxlnum:add']"
|
|
|
|
v-hasPermi="['tcZz/netWorkYq:yqxxlnum:add']"
|
|
|
|
|
|
|
|
:disabled="addShow"
|
|
|
|
>新增</el-button
|
|
|
|
>新增</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
@ -364,6 +365,7 @@ export default {
|
|
|
|
form: {},
|
|
|
|
form: {},
|
|
|
|
// 表单校验
|
|
|
|
// 表单校验
|
|
|
|
rules: {},
|
|
|
|
rules: {},
|
|
|
|
|
|
|
|
addShow: false,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
@ -388,6 +390,11 @@ export default {
|
|
|
|
this.yqxxlnumList = response.rows;
|
|
|
|
this.yqxxlnumList = response.rows;
|
|
|
|
this.total = response.total;
|
|
|
|
this.total = response.total;
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
if (response.rows.length > 0) {
|
|
|
|
|
|
|
|
this.addShow = true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.addShow = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// 取消按钮
|
|
|
|
// 取消按钮
|
|
|
|