n20-common-lib 1.3.100 → 1.3.101

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "1.3.100",
3
+ "version": "1.3.101",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -63,8 +63,11 @@
63
63
  color: $--color-text-regular;
64
64
  }
65
65
  .n20-description-bgc {
66
+ margin-left: 40px;
67
+ margin-top: 10px;
66
68
  background: $--background-color-base;
67
69
  height: 100%;
70
+ border-radius: 4px;
68
71
  min-height: 40px;
69
72
  }
70
73
  }
@@ -42,7 +42,7 @@
42
42
  </div>
43
43
  <div v-if="item.ccUserName" class="n20-description-c m-t">抄送人:{{ item.ccUserName }}</div>
44
44
  <div v-if="item.addTaskName" class="n20-description-c m-t">加签审批人:{{ item.addTaskName }}</div>
45
- <div v-if="item.suggestion" class="n20-description-c n20-description-bgc m-t p-a-ss">
45
+ <div v-if="item.suggestion" class="n20-description-c n20-description-bgc m-t p-a-s">
46
46
  <span v-if="item.result !== status.waiting">{{ '审批意见:' | $lc }}</span>
47
47
  <span v-if="item.suggestion">{{ item.suggestion }}</span>
48
48
  </div>
@@ -309,7 +309,6 @@
309
309
 
310
310
  <script>
311
311
  import { $lc } from '../../utils/i18n/index'
312
- import importG from '../../utils/importGlobal'
313
312
  import dayjs from 'dayjs'
314
313
  import axios from '../../utils/axios'
315
314
  import clUpload from '../Upload/index.vue'