n20-common-lib 2.11.32 → 2.11.34

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.11.32",
3
+ "version": "2.11.34",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -261,8 +261,9 @@
261
261
  <div class="m-t m-b">
262
262
  <span class="m-r-ss">{{ '结果统计:' | $lc }}</span>
263
263
  {{ '共计校验' | $lc }}<span>{{ verifyMsg.checkSum }}</span
264
- >{{ '条,其中通过' | $lc }}<span class="color-success">{{ verifyMsg.checkSum - verifyMsg.errorCount }}</span
265
- >{{ '条,未通过' | $lc }}<span class="color-danger">{{ verifyMsg.errorCount }}</span
264
+ >{{ '条,其中通过' | $lc }}<span class="color-success">{{ verifyMsg.sucessCount }}</span>
265
+ {{ $l('条,待确认') }}<span class="color-warning">{{ verifyMsg.tobeConfirmedCount }}</span>
266
+ {{ '条,未通过' | $lc }}<span class="color-danger">{{ verifyMsg.errorCount }}</span
266
267
  >{{ '条,未通过详情如下:' | $lc }}
267
268
  </div>
268
269
  <el-table :data="verifyMsg.checkFlowVoList" border max-height="400">
@@ -295,7 +296,7 @@
295
296
  </div>
296
297
  </div>
297
298
  <div v-if="promptType === '2'">
298
- <el-button v-if="!!successNum" type="primary" @click="onContinue">{{ $l('继续审批') }}</el-button>
299
+ <el-button v-if="checkSum !== errorCount" type="primary" @click="onContinue">{{ $l('继续审批') }}</el-button>
299
300
  <el-button plain @click="onceCancelFn">{{ $l('取消') }}</el-button>
300
301
  </div>
301
302
  </span>