n20-common-lib 2.16.20 → 2.16.21

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.16.20",
3
+ "version": "2.16.21",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -126,14 +126,18 @@
126
126
  <el-table-column v-if="AICheck" :label="'AI校验' | $lc" width="170" align="left">
127
127
  <template slot-scope="{ row }">
128
128
  <span
129
- v-if="row.aiCheckStatus === 0"
129
+ v-if="row.aiCheckStatus === '0' || row.aiCheckStatus === 0"
130
130
  class="m-r-s"
131
131
  style="color: var(--color-danger); cursor: pointer"
132
132
  @click="getAiCheckData(row)"
133
133
  >
134
134
  {{ '校验异常' | $lc }}</span
135
135
  >
136
- <span v-if="row.aiCheckStatus === 1" class="m-r-s" style="color: var(--color-success)">
136
+ <span
137
+ v-if="row.aiCheckStatus === '1' || row.aiCheckStatus === 1"
138
+ class="m-r-s"
139
+ style="color: var(--color-success)"
140
+ >
137
141
  {{ '校验通过' | $lc }}</span
138
142
  >
139
143
  <el-button v-if="!readonly && row[keys.url]" type="text" size="small" @click="AiCheck(row)">{{