Browse Source

feat:[模板管理][update]

ouqian
luojie 1 month ago
parent
commit
e8d589ecc8
3 changed files with 7 additions and 1 deletions
  1. +3
    -0
      src/components/Template/CustomTable.vue
  2. +3
    -1
      src/components/Template/HandleFormItem.vue
  3. +1
    -0
      src/components/Template/mixins/formPackageMixins.js

+ 3
- 0
src/components/Template/CustomTable.vue View File

@ -766,6 +766,9 @@ export default {
if (col.qxbdType) { if (col.qxbdType) {
item.qxbdType = col.qxbdType; item.qxbdType = col.qxbdType;
} }
if (col.regentFillType) {
item.regentFillType = col.regentFillType;
}
if (col.checkType) { if (col.checkType) {
item.checkType = col.checkType; item.checkType = col.checkType;
} }

+ 3
- 1
src/components/Template/HandleFormItem.vue View File

@ -597,9 +597,11 @@ export default {
}, },
/// ///
onCommonHandleRegent(item, type) { onCommonHandleRegent(item, type) {
if (this.templateFillType !== 'actFill') {
const {regentFillType = "actFill"} = item;
if (this.templateFillType !== regentFillType) {
return return
} }
this.handleRegentDialog(item, type);
let params = { let params = {
studyFormId: this.templateData.id, studyFormId: this.templateData.id,
uuid: this.uuid, uuid: this.uuid,

+ 1
- 0
src/components/Template/mixins/formPackageMixins.js View File

@ -76,6 +76,7 @@ export default {
filledCodes: item.filledCodes, filledCodes: item.filledCodes,
qxbdType: item.qxbdType, qxbdType: item.qxbdType,
checkType: item.checkType, checkType: item.checkType,
regentFillType: item.regentFillType,
} }
}, },

Loading…
Cancel
Save