vue2-client 1.2.17 → 1.2.18

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,7 +1,7 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **##1.2.17 -2022-03-25 @朱子峰**
4
+ **##1.2.16 - 1.2.18 -2022-03-25 @朱子峰**
5
5
  - 问题修复:
6
6
  - [钉钉消息推送]:将类别字段从int修改为String,直接传字典中的值
7
7
  - 功能修改:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.2.17",
3
+ "version": "1.2.18",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -132,7 +132,6 @@
132
132
  <!-- 问题描述 -->
133
133
  <a-tab-pane :key="1" tab="问题详细描述">
134
134
  <a-card style="width: 100%" :loading="descriptionLoading">
135
- <div style="margin-bottom: 10px;height: 1px;background: -webkit-linear-gradient(left, #fff -4%,#6b6c72 50%,#fff 100%);"></div>
136
135
  <div v-if="addOnDescription.length > 0" v-for="(item,index) in addOnDescription" :key="index">
137
136
  <span style="font-size: 2em;margin-right: 20px;margin-top: 20px">{{ details.uploader }}</span>
138
137
  <span>{{ format(item.time,'yyyy年MM月dd日 hh:mm:ss') }}</span>
@@ -145,18 +144,18 @@
145
144
  :class="changePhotoClassForSmall(pic.id)"
146
145
  >
147
146
  <div style="height: 1px;background: -webkit-linear-gradient(left, #fff -4%,#6b6c72 50%,#fff 100%);"></div>
148
- <span style="font-size: 2em;margin-right: 20px">{{ details.uploader }}</span>
149
- <span>{{ format(details.created_time,'yyyy年MM月dd日 hh:mm:ss') }}</span>
150
- <p style="text-indent: 2em;font-size: 20px;margin: 10px">{{ details.description }}</p>
151
- <img
152
- v-for="(originalPic,n) in originalImages"
153
- :src="'data:image/png;base64,' + originalPic.url"
154
- @click="changePhotoClass(originalPic.id)"
155
- :key="'os' + n"
156
- :class="changePhotoClassForSmall(originalPic.id)"
157
- style="margin-bottom: 10px"
158
- >
159
147
  </div>
148
+ <span style="font-size: 2em;margin-right: 20px">{{ details.uploader }}</span>
149
+ <span>{{ format(details.created_time,'yyyy年MM月dd日 hh:mm:ss') }}</span>
150
+ <p style="text-indent: 2em;font-size: 20px;margin: 10px">{{ details.description }}</p>
151
+ <img
152
+ v-for="(originalPic,n) in originalImages"
153
+ :src="'data:image/png;base64,' + originalPic.url"
154
+ @click="changePhotoClass(originalPic.id)"
155
+ :key="'os' + n"
156
+ :class="changePhotoClassForSmall(originalPic.id)"
157
+ style="margin-bottom: 10px"
158
+ >
160
159
  </a-card>
161
160
  </a-tab-pane>
162
161
  <!-- 工单流转历史 -->