@zscreate/zhxy-app-component 1.0.279 → 1.0.280
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.
|
@@ -481,10 +481,14 @@ export default {
|
|
|
481
481
|
// 选择操作类型
|
|
482
482
|
selectConfirm(e, item) {
|
|
483
483
|
const { model, options, type } = item
|
|
484
|
+
let label = ''
|
|
484
485
|
e.map((val, index) => {
|
|
485
|
-
this.models[model].operation = val.label;
|
|
486
|
+
this.models[model].operation = label = val.label;
|
|
487
|
+
if (options.isConfirmComponent) {
|
|
488
|
+
this.models[model].operation = val.value
|
|
489
|
+
}
|
|
486
490
|
})
|
|
487
|
-
this.$set(this.suggestType, model,
|
|
491
|
+
this.$set(this.suggestType, model, label)
|
|
488
492
|
this.fillVerifySignSeal(item)
|
|
489
493
|
|
|
490
494
|
},
|