|
|
@ -17,7 +17,7 @@ |
|
|
<BaseInfoFormPackage fieldItemLabel="template.common.operationSteps" ref="stepFormPackageRef" |
|
|
<BaseInfoFormPackage fieldItemLabel="template.common.operationSteps" ref="stepFormPackageRef" |
|
|
:formConfig="stepFormConfig" @blur="onHandleBlur" :formData="formData" @onRegentSubmit="onRegentSubmit" /> |
|
|
:formConfig="stepFormConfig" @blur="onHandleBlur" :formData="formData" @onRegentSubmit="onRegentSubmit" /> |
|
|
<div v-if="fillType == 'preFill'"> |
|
|
<div v-if="fillType == 'preFill'"> |
|
|
<el-button type="danger" @click="onClickDelete">{{ |
|
|
|
|
|
|
|
|
<el-button :disabled="deleteRows.length === 0" type="danger" @click="onClickDelete">{{ |
|
|
$t('form.delete') }}</el-button> |
|
|
$t('form.delete') }}</el-button> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
@ -236,7 +236,7 @@ export default { |
|
|
onClickDelete() { |
|
|
onClickDelete() { |
|
|
this.$modal.confirm(this.$t('form.confirmDelete')).then(() => { |
|
|
this.$modal.confirm(this.$t('form.confirmDelete')).then(() => { |
|
|
|
|
|
|
|
|
this.$refs.stepTableRef.deleteRows(this.deleteRows) |
|
|
|
|
|
|
|
|
this.$refs.stepTableRef.deleteSelectedRows(this.deleteRows) |
|
|
this.$refs.stepTableRef.justUpdateFilledFormData(); |
|
|
this.$refs.stepTableRef.justUpdateFilledFormData(); |
|
|
}).catch(() => { }); |
|
|
}).catch(() => { }); |
|
|
|
|
|
|
|
|
|