Commit e61d00f3 by 黑潮

update: fix bug

parent 19778604
......@@ -21,14 +21,22 @@
label-width="122px"
>
<el-form-item v-for="item in babyConfigTemplate.template" :key="item.unifiedIdentification" :label="item.fieldName+ ':'" :prop="item.unifiedIdentification" :rules="getRules(item)">
<dm-input
v-if="item.fieldType == 0 && item.unifiedIdentification == 'k20301'"
:byteType="1"
v-model="fieldsList[activeName].form[item.systemFieldId]"
:placeholder="item.fieldDescription"
type="text"
:maxlength="item.limitCountMax"
style="width:240px"
/>
<el-input
v-if="item.fieldType == 0"
v-else-if="item.fieldType == 0 && item.unifiedIdentification !== 'k20301'"
v-model="fieldsList[activeName].form[item.systemFieldId]"
:placeholder="item.fieldDescription"
type="text"
:show-word-limit="item.unifiedIdentification == 'k20301'"
:maxlength="item.limitCountMax"
:style="{width: item.unifiedIdentification == 'k20301' ? '240px' : '160px'}"
style="width:160px"
/>
<el-date-picker
v-if="item.fieldType == 4"
......
......@@ -369,7 +369,7 @@
.num {
position: absolute;
top: 25px;
left: 70px;
left: 60px;
}
}
.flex-column-wrap {
......@@ -454,7 +454,7 @@
flex-direction: column;
justify-content: center;
}
}
/deep/.el-tabs__item {
height: 48px;
......
......@@ -127,7 +127,7 @@
</el-descriptions-item>
</el-descriptions>
<template v-if="extendInfo&&extendInfo.openField">
<div class="toggleTag" @click="toggleTag=!toggleTag" v-if="babyStr?extendInfo.openField.length>=2:extendInfo.openField.length>=3">
<div class="toggleTag" @click="toggleTag=!toggleTag" v-if="babyStr?extendInfo.openField.length>2:extendInfo.openField.length>3">
{{ toggleTag?'收起':'展开更多' }}<i
:class="toggleTag ? 'el-icon-arrow-up' : 'el-icon-arrow-down'" />
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment