Browse Source

盘点添加关闭接口提示

faster_develop 1.23.1026.1
安虹睿 2 years ago
parent
commit
f97db6a583
  1. 2
      fe/PC/public/version.json
  2. 8
      fe/PC/src/components/StepsCountPlanForm/index.vue

2
fe/PC/public/version.json

@ -1,3 +1,3 @@
{
"version": "1.0.73"
"version": "1.0.76"
}

8
fe/PC/src/components/StepsCountPlanForm/index.vue

@ -681,6 +681,11 @@ export default {
this.$warningMsg("请选择状态");
return
}
this.$confirm('是否确定已关闭接口?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.loading = true;
// this.otherFormData.requestType = 2
this.splitFormData(this.otherFormData).then(
@ -695,6 +700,9 @@ export default {
this.loading = false;
}
);
}).catch(() => {
});
}
// else if (this.active == 4) {
// postCreate(this.previewFormData, 'count-plan').then(res => {

Loading…
Cancel
Save