sale-client 4.0.63-preview → 4.0.64-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/components/revenue/comprehen/ComprehenOperation/SignContractManage/signContract.vue
CHANGED
|
@@ -62,7 +62,6 @@ export default {
|
|
|
62
62
|
title: '签约信息',
|
|
63
63
|
data () {
|
|
64
64
|
return {
|
|
65
|
-
createShow: false,
|
|
66
65
|
model: {
|
|
67
66
|
rows: []
|
|
68
67
|
},
|
|
@@ -73,6 +72,7 @@ export default {
|
|
|
73
72
|
props: ['row'],
|
|
74
73
|
ready () {
|
|
75
74
|
this.getRandomId()
|
|
75
|
+
this.createConfirm()
|
|
76
76
|
},
|
|
77
77
|
events: {},
|
|
78
78
|
methods: {
|
|
@@ -83,10 +83,6 @@ export default {
|
|
|
83
83
|
return v.toString(16)
|
|
84
84
|
})
|
|
85
85
|
},
|
|
86
|
-
camera () {
|
|
87
|
-
this.cameraShow = true
|
|
88
|
-
this.createShow = false
|
|
89
|
-
},
|
|
90
86
|
// 历史签约查询
|
|
91
87
|
async createConfirm () {
|
|
92
88
|
let res = await this.$resetpost('/api/af-revenue/logic/syrh_createContract', {
|
|
@@ -96,8 +92,7 @@ export default {
|
|
|
96
92
|
}
|
|
97
93
|
}, {resolveMsg: null, rejectMsg: '获取签约信息列表失败, 请重试!!!'})
|
|
98
94
|
console.log('签约信息列表:', res)
|
|
99
|
-
this.
|
|
100
|
-
this.createShow = true
|
|
95
|
+
this.model.rows = res.data.rowdata
|
|
101
96
|
},
|
|
102
97
|
// 发起签约
|
|
103
98
|
async createContract () {
|
|
@@ -197,7 +192,6 @@ export default {
|
|
|
197
192
|
a.click()
|
|
198
193
|
document.body.removeChild(a)
|
|
199
194
|
window.URL.revokeObjectURL(herf)
|
|
200
|
-
this.createShow = false
|
|
201
195
|
})
|
|
202
196
|
.catch((err) => {
|
|
203
197
|
console.log('err', err)
|