n20-common-lib 2.20.10 → 2.20.12

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": "2.20.10",
3
+ "version": "2.20.12",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -72,7 +72,15 @@
72
72
  <div
73
73
  v-if="item.result !== 0 && item.appOrPc !== null && item.appOrPc !== '' && item.appOrPc !== undefined"
74
74
  >
75
- {{ item.appOrPc === '1' ? 'PC端审批' : item.appOrPc === '2' ? '外部系统审批' : 'App端审批' | $lc }}
75
+ {{
76
+ item.appOrPc === '1'
77
+ ? 'PC端审批'
78
+ : item.appOrPc === '2'
79
+ ? '外部系统审批'
80
+ : item.appOrPc === '3'
81
+ ? 'App端审批'
82
+ : item.appOrPc | $lc
83
+ }}
76
84
  </div>
77
85
  <div v-if="item.showConnect === '1'" class="m-l-s">
78
86
  <span class="pointer color-ccc f-s-s" @click="seeDetail(item)"
@@ -3,6 +3,9 @@
3
3
  <el-tooltip v-if="tooltip" :content="value" placement="top">
4
4
  <span>{{ value }}</span>
5
5
  </el-tooltip>
6
+ <span v-else>
7
+ <span>{{ value }}</span>
8
+ </span>
6
9
  </div>
7
10
  <div v-else class="n20-descriptions">
8
11
  <div class="m-b-ss">
@@ -10,6 +10,7 @@
10
10
  :filter-method="filterFn"
11
11
  :size="size"
12
12
  style="width: 224px"
13
+ v-bind="$attrs"
13
14
  @visible-change="showOpt"
14
15
  @clear="$emit('change')"
15
16
  @remove-tag="$emit('change')"