|
@@ -658,6 +658,15 @@ export default {
|
|
|
var today = this.addDays(new Date(), 0)
|
|
|
this.dto.CooperationTime = this.DateFormat(today, 'yyyy-MM-dd')
|
|
|
}
|
|
|
+ _getPayTypeList().then((res) => {
|
|
|
+ this.PayTypeList = res
|
|
|
+ if (res && res.length > 0) {
|
|
|
+ const checkPayIdList = res.map(item => item.Value)
|
|
|
+ this.checkPayIdList = checkPayIdList
|
|
|
+ const PayIdList = checkPayIdList.join(',') || null
|
|
|
+ this.$set(this.dto, 'PayIdList', PayIdList)
|
|
|
+ }
|
|
|
+ })
|
|
|
})
|
|
|
_getDockingPlatform().then((response) => {
|
|
|
this.Dockingplatform = response
|
|
@@ -706,9 +715,6 @@ export default {
|
|
|
this.BillDownloadUrlList = res
|
|
|
})
|
|
|
|
|
|
- _getPayTypeList().then((res) => {
|
|
|
- this.PayTypeList = res
|
|
|
- })
|
|
|
},
|
|
|
methods: {
|
|
|
companyPossesChanged(e) {},
|