n20-common-lib 2.11.34 → 2.12.0
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
|
@@ -261,9 +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.sucessCount }}</span>
|
|
265
|
-
|
|
266
|
-
|
|
264
|
+
>{{ '条,其中通过' | $lc }}<span class="color-success">{{ verifyMsg.sucessCount }}</span> {{ $l('条,待确认')
|
|
265
|
+
}}<span class="color-warning">{{ verifyMsg.tobeConfirmedCount }}</span> {{ '条,未通过' | $lc
|
|
266
|
+
}}<span class="color-danger">{{ verifyMsg.errorCount }}</span
|
|
267
267
|
>{{ '条,未通过详情如下:' | $lc }}
|
|
268
268
|
</div>
|
|
269
269
|
<el-table :data="verifyMsg.checkFlowVoList" border max-height="400">
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
<div v-if="promptType === '1'">
|
|
292
292
|
<el-button v-if="checkSum !== errorCount" type="primary" @click="onContinue">{{ $l('继续审批') }}</el-button>
|
|
293
293
|
<el-button plain @click="onceCancelFn">{{ $l('取消') }}</el-button>
|
|
294
|
-
<div class="m-t-s color-danger f-s-s">
|
|
294
|
+
<div v-if="checkSum !== errorCount" class="m-t-s color-danger f-s-s">
|
|
295
295
|
{{ $l('*点击【继续审批】将提交校验通过和待确认数据,未通过数据需要到待审核详情页处理。') }}
|
|
296
296
|
</div>
|
|
297
297
|
</div>
|
|
@@ -346,6 +346,11 @@ export default {
|
|
|
346
346
|
ExpandablePane
|
|
347
347
|
},
|
|
348
348
|
props: {
|
|
349
|
+
// 是否需要校验
|
|
350
|
+
isCheck: {
|
|
351
|
+
type: Boolean,
|
|
352
|
+
default: true
|
|
353
|
+
},
|
|
349
354
|
message: {
|
|
350
355
|
type: String,
|
|
351
356
|
default: ''
|
|
@@ -863,7 +868,7 @@ export default {
|
|
|
863
868
|
return this.addErrFn()
|
|
864
869
|
}
|
|
865
870
|
let { isCheck, taskId, appNo, groupNo, typeCode, orderId, isAgentcy } = this.$route.query
|
|
866
|
-
if (isCheck === '1') {
|
|
871
|
+
if (isCheck === '1' && this.isCheck) {
|
|
867
872
|
let params = {
|
|
868
873
|
plainText: '',
|
|
869
874
|
signText: '',
|