vue2-client 1.8.19 → 1.8.20
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -57,6 +57,10 @@
|
|
|
57
57
|
<a-col :span="3"><span class="title">附件</span></a-col>
|
|
58
58
|
<a-col :span="21"><file-item :files="details.files" :downloadable="false" @preview="handleFilePreview" /></a-col>
|
|
59
59
|
</a-row>
|
|
60
|
+
<a-row v-if="details.resultrecord" class="item">
|
|
61
|
+
<a-col :span="3"><span class="title">处理结果</span></a-col>
|
|
62
|
+
<a-col :span="17"><span>{{ details.resultrecord }}</span></a-col>
|
|
63
|
+
</a-row>
|
|
60
64
|
</div>
|
|
61
65
|
<a-modal v-model="filePreviewVisible" :footer="null" :dialog-style="{ top: '30px' }" width="80%" :z-index="1001">
|
|
62
66
|
<file-preview :path="filePath" />
|
|
@@ -90,7 +94,7 @@ export default {
|
|
|
90
94
|
return {
|
|
91
95
|
title: '提交成功',
|
|
92
96
|
description: '您创建的工单已成功提交,请保持电话畅通,我们的工作人员将尽快与您取得联系。', // +
|
|
93
|
-
|
|
97
|
+
// '如果需要加急,请在倒计时结束后点击加急按钮,加急后我们将优先处理您的工单',
|
|
94
98
|
// 工单详情
|
|
95
99
|
details: {
|
|
96
100
|
uploader: '',
|
|
@@ -101,6 +105,7 @@ export default {
|
|
|
101
105
|
confirmTime: '',
|
|
102
106
|
finishedTime: '',
|
|
103
107
|
description: '',
|
|
108
|
+
resultrecord: '',
|
|
104
109
|
files: [],
|
|
105
110
|
images: []
|
|
106
111
|
},
|
|
@@ -203,6 +208,7 @@ export default {
|
|
|
203
208
|
this.details.description = res.description
|
|
204
209
|
this.details.files = res.files
|
|
205
210
|
this.details.images = res.images
|
|
211
|
+
this.details.resultrecord = res.resultrecord
|
|
206
212
|
}, err => {
|
|
207
213
|
console.log(err)
|
|
208
214
|
})
|