|
@@ -13,6 +13,7 @@
|
|
|
class="statistic_base"
|
|
|
:modal-append-to-body="true"
|
|
|
custom-class="tagdialog"
|
|
|
+ v-loading="loading1"
|
|
|
>
|
|
|
<div class="tabsdom">
|
|
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
|
@@ -200,6 +201,7 @@ export default {
|
|
|
mixins: [Base, BaseData],
|
|
|
data() {
|
|
|
return {
|
|
|
+ loading1:false,
|
|
|
loading: false,
|
|
|
nodeColor: [
|
|
|
{ name: '审核通过', nodeback: '#2A3980' },
|
|
@@ -619,7 +621,7 @@ export default {
|
|
|
const { data: maxNum } = await this.baseRequest1('ApplyPaymentSettleController', 'getMaxNum', { })
|
|
|
|
|
|
this.formData.title = maxNum
|
|
|
-
|
|
|
+ this.loading1 = false
|
|
|
console.log(maxNum)
|
|
|
},
|
|
|
baseRequest1(prefix, opUrl, postData) {
|
|
@@ -627,7 +629,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
setVisible(status) {
|
|
|
-
|
|
|
+ this.loading1 = true
|
|
|
this.formData = {
|
|
|
payerName: '无锡市安居投资发展有限公司'
|
|
|
|
|
@@ -635,6 +637,7 @@ export default {
|
|
|
this.formData.fileUrlList = []
|
|
|
this.getMaxNum()
|
|
|
this.getUserInfo()
|
|
|
+
|
|
|
this.dialogVisible = status
|
|
|
},
|
|
|
onOpen() {
|