提交按钮的限制 #53

Merged
gaogaoyujie merged 1 commits from gyj into dev 2024-02-26 07:48:48 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 088ed7e30c - Show all commits
+1
View File
@@ -48,6 +48,7 @@
"js-beautify": "1.13.0",
"js-cookie": "3.0.1",
"jsencrypt": "3.0.0-rc.1",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"nprogress": "0.2.0",
"qrcodejs2": "0.0.2",
@@ -128,6 +128,7 @@
</template>
<!-- hearDate -->
<script>
import _ from 'lodash'
import {
caseApplicationSelectById,
mediation,
@@ -274,6 +275,7 @@ export default {
});
});
})
this.isSecretaryRole = false
},
/** 庭审笔录附件 */
toFile2(annexPath) {
@@ -293,7 +295,8 @@ export default {
cancel() {
this.$emit("cancelMediation");
},
submitMediation() {
submitMediation: _.debounce(function() {
if (this.fileList.length < 1 && !this.mediationType && this.mediationData.mediationMethod == "2") {
this.$modal.msgError("请上传调解书");
return
@@ -315,7 +318,7 @@ export default {
}
}
this.mediationFn(mediationVal);
},
},5000),
resultsMediation() {
}