|
|
@@ -12,7 +12,7 @@
|
|
|
<uni-popup ref="popup" background-color="#fff" border-radius="10px 10px 0 0">
|
|
|
<view class="popup-body">
|
|
|
<view class="popup-close">
|
|
|
- <uni-icons type="closeempty" size="20" @click="popupClose"></uni-icons>
|
|
|
+ <uni-icons type="closeempty" size="20" @click="closePopup"></uni-icons>
|
|
|
</view>
|
|
|
<view class="popup-content">
|
|
|
<async-form-component :id="businessKey" :name="initIndex.toString()" @popupClose="popupClose"></async-form-component>
|
|
|
@@ -75,10 +75,17 @@
|
|
|
});
|
|
|
this.$refs.popup.open('bottom');
|
|
|
},
|
|
|
+
|
|
|
+ closePopup(){
|
|
|
+ this.$refs.popup.close();
|
|
|
+ },
|
|
|
popupClose(){
|
|
|
this.$refs.popup.close();
|
|
|
- this.page = 1;
|
|
|
- this.getList(this.page,this.__pulldone)
|
|
|
+ // this.page = 1;
|
|
|
+ // this.getList(this.page,this.__pulldone)
|
|
|
+ setTimeout(() => {
|
|
|
+ this.$router.go(0)
|
|
|
+ }, 500)
|
|
|
},
|
|
|
/**
|
|
|
* @name 获取列表
|
|
|
@@ -128,7 +135,7 @@
|
|
|
businessKey:v.businessKey,
|
|
|
path:v.processDefinition.formCustomViewPath,
|
|
|
title:v.name,
|
|
|
- status: v.status,
|
|
|
+ status: v.statusDesc,
|
|
|
time:v.startTime,
|
|
|
nickname:v.currentAuditUser?v.currentAuditUser.nickname:''
|
|
|
})
|
|
|
@@ -191,7 +198,7 @@
|
|
|
border-bottom: 1px solid #eaecef;
|
|
|
}
|
|
|
.popup-content{
|
|
|
- height: 450px;
|
|
|
+ height: 550px;
|
|
|
overflow-x: auto;
|
|
|
padding-bottom: 50px;
|
|
|
}
|