Browse Source

feat:[模板管理][update]

ouqian
luojie 1 month ago
parent
commit
718a2d80ad
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      src/components/Template/CustomTable.vue

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

@ -106,6 +106,14 @@
</div>
</template>
<div v-else-if = "col.bodyType === 'checkboxTree'">
<HandleFormItem
:field-item-label="fieldItemLabel" :field-key="prefixKey + '_' + col.prop"
:type="sItem.type" :item="sItem" :value="row[col.prop]"
@change="(e) => onBodyValueChange(rowIndex, colIndex, e, row, col.bodyType)"
:error="errors[col.prop]" @update:error="errors[col.prop] = false"
:orange-bg="orangeBgFields[col.prop]" />
</div>
<div v-else-if="col.bodyType === 'operableInput'" class="flex flex1">
<div class="flex1 grid-container">
<div class="flex"

Loading…
Cancel
Save