修改打包配置

This commit is contained in:
砂糖
2025-08-07 16:14:39 +08:00
parent 9ba0400b57
commit df31963334
45 changed files with 68 additions and 37 deletions

View File

@@ -135,7 +135,7 @@
</div>
<div style="">
<el-button type="primary" plain
@click="reset" :loading="!submitButton">
@click="reset" :loading="resetLoading">
强制停止
</el-button>
<el-button type="success" plain
@@ -450,7 +450,8 @@ export default {
processBatchId: 0,
nowPass: {},
nextStepLoading: false,
circleStart: 0
circleStart: 0,
resetLoading: false
}
},
methods: {
@@ -466,11 +467,11 @@ export default {
},
reset() {
this.submitButton = false
this.resetLoading = false
materialReset().then(res => {
if (res.data == true) {
this.$message('强制停止成功')
this.submitButton = true
this.resetLoading = true
this.getDataList()
} else {
this.$message('强制停止失败,请联系管理员')

View File

@@ -135,7 +135,7 @@
</div>
<div style="">
<el-button type="primary" plain
@click="reset" :loading="!submitButton">
@click="reset" :loading="resetLoading">
强制停止
</el-button>
<el-button type="success" plain
@@ -448,7 +448,8 @@ export default {
passStateLoading: false,
nowPass: {},
newHTML: true,
nextStepLoading: false
nextStepLoading: false,
resetLoading: false,
}
},
methods: {
@@ -463,8 +464,10 @@ export default {
},
reset() {
this.resetLoading = true
materialReset().then(res => {
if (res.data == true) {
this.resetLoading = false
this.$message('强制停止成功')
this.getDataList()
} else {