|
@ -36,11 +36,13 @@ |
|
|
</el-input> |
|
|
</el-input> |
|
|
</template> |
|
|
</template> |
|
|
<template v-else-if="itemk.itemType == 'inputNum'" > |
|
|
<template v-else-if="itemk.itemType == 'inputNum'" > |
|
|
|
|
|
<div style="display:flex"> |
|
|
<el-input :placeholder="`请输入${itemk.label}`" size="small" class="list_item_width_1-text" |
|
|
<el-input :placeholder="`请输入${itemk.label}`" size="small" class="list_item_width_1-text" |
|
|
:style="{ 'margin-right': itemk.label == '备注' ? '50px' : '' }" |
|
|
:style="{ 'margin-right': itemk.label == '备注' ? '50px' : '' }" |
|
|
v-model.trim="form[itemj.id][itemk.formName]" clearable |
|
|
v-model.trim="form[itemj.id][itemk.formName]" clearable |
|
|
@blur="checkNumberInput(itemj.id, itemk.formName)"> |
|
|
@blur="checkNumberInput(itemj.id, itemk.formName)"> |
|
|
</el-input><span class="u-data-tag">元</span> |
|
|
</el-input><span class="u-data-tag" style="margin-left: 10px;">元</span> |
|
|
|
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
<template v-else-if="itemk.itemType == 'checkbox'"> |
|
|
<template v-else-if="itemk.itemType == 'checkbox'"> |
|
|
<el-checkbox-group size="small" v-model.trim="form[itemj.id][itemk.formName]" @change="handelChangeCheckBox(itemj)"> |
|
|
<el-checkbox-group size="small" v-model.trim="form[itemj.id][itemk.formName]" @change="handelChangeCheckBox(itemj)"> |
|
|