修改禅道已知bug

This commit is contained in:
qq787203167
2022-05-11 11:09:23 +08:00
parent 0f78e9fc6c
commit 44a2fa1d16
20 changed files with 83 additions and 20 deletions
@@ -99,6 +99,7 @@
<a-form-model-item class="itemModel" :prop="item.db_field_name">
<a-range-picker class="box-input" v-model="formInline[item.db_field_name]"
:disabled="disabled"
:getCalendarContainer="(trigger) => trigger.parentNode"
@change="onChange(item.db_field_name)"></a-range-picker>
</a-form-model-item>
</div>
@@ -130,7 +131,7 @@
<span class="Required" v-if="item.field_must_input == 1">*</span>
<span class="title-text-text" :title="item.db_field_txt">{{item.db_field_txt}}</span>
</div>
<a-form-model-item class="itemModel" :prop="item.db_field_name">
<a-form-model-item class="itemModel-text" :prop="item.db_field_name">
<a-textarea
:placeholder="$t('PleaseEnter')+item.db_field_txt"
:disabled="disabled"
@@ -196,6 +197,7 @@
<a-tree-select
v-model="formInline[item.db_field_name]"
:maxTagCount="1"
:getPopupContainer="triggerNode=> triggerNode.parentNode"
style="width: 100%"
:tree-data="item.tree"
tree-checkable
@@ -424,7 +426,7 @@
})
}
}
if (res.field_show_type === '1' ||
if (res.field_show_type === '1' ||
res.field_show_type === '8' || res.field_show_type === '9' || res.field_show_type === '10'
|| res.field_show_type === '11') {
rule.push({
@@ -501,6 +503,9 @@
width: 100%;
}
.itemModel-text .ant-form-item-control-wrapper {
width: 100% !important;
}
.box-input .ant-select-selection--single {
height: 38px;
}
@@ -563,6 +568,13 @@
width: calc(100% - 130px);
display: inline-block;
margin-top: 2px;
height: 40px;
}
.itemModel-text {
width: calc(100% - 130px);
display: inline-block;
margin-top: 2px;
}
.Required {