diff --git a/src/assets/images/copy-icon.svg b/src/assets/images/copy-icon.svg new file mode 100644 index 0000000..f5e703f --- /dev/null +++ b/src/assets/images/copy-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/question-icon.svg b/src/assets/images/question-icon.svg new file mode 100644 index 0000000..5af4c59 --- /dev/null +++ b/src/assets/images/question-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/record-icon.svg b/src/assets/images/record-icon.svg new file mode 100644 index 0000000..ee45758 --- /dev/null +++ b/src/assets/images/record-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/Template/BaseInfoFormPcakge.vue b/src/components/Template/BaseInfoFormPcakge.vue index 3b1b55a..1c90393 100644 --- a/src/components/Template/BaseInfoFormPcakge.vue +++ b/src/components/Template/BaseInfoFormPcakge.vue @@ -1,5 +1,6 @@ @@ -96,6 +97,22 @@ export default { } } ], + remarkConig:[ + { + type:"cellItem", + config:{ + remark:{ + label:"", + type:"textarea", + fillType:"actFill", + span:1, + placeholder:"请输入备注", + maxlength:500, + rows:5 + } + } + } + ], formConfig: [ { type:"cardItem", @@ -243,7 +260,7 @@ export default { methods: { async getFormData(){ const baseData = await this.$refs.baseInfo.getFormData(); - const conditionData = await this.$refs.storageCondition.getFormData(); + const conditionData = await this.$refs.storageConditionRef.getFormData(); const stepData = await this.$refs.stepRef.getFormData(); const stepFormData = await this.$refs.stepFormPackage.getFormData(); return { @@ -253,6 +270,10 @@ export default { ...stepFormData, } }, + async onSave(){ + const formData = await this.getFormData(); + console.log(formData,"formData") + } } }; diff --git a/src/views/business/comps/template/mixins/templateMixin.js b/src/views/business/comps/template/mixins/templateMixin.js index 2f9519e..24f3ce9 100644 --- a/src/views/business/comps/template/mixins/templateMixin.js +++ b/src/views/business/comps/template/mixins/templateMixin.js @@ -4,7 +4,8 @@ export default { }, mounted() { - this.setTemplateStatus(this.fillType) + this.setTemplateStatus("preFill") + // this.setTemplateStatus(this.fillType) }, methods: {