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
@@ -1,6 +1,10 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+
5
+ **1.8.20 -2024-01-04 @张振宇**
6
+ - 售后问题登记页面增加处理结果
7
+
4
8
  **1.8.19 -2023-12-07 @江超**
5
9
  - 鉴权相关修改
6
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.19",
3
+ "version": "1.8.20",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -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
  })