|
|
@ -247,13 +247,15 @@ |
|
|
|
v-for="(check, checkIndex) in listItem.itemIsChecked" |
|
|
|
:key="checkIndex" |
|
|
|
:style="{ minWidth: listItem.checkType - 0 === 3 ? '33%' : listItem.checkType - 0 === 2 ? '50%' : 0 }" |
|
|
|
class="my-2 flex items-center" |
|
|
|
class="w-full my-2 flex flex-1 flex-col items-start justify-center" |
|
|
|
> |
|
|
|
<u-checkbox v-model="check.isChecked" :name="listItem.itemList[checkIndex]"> |
|
|
|
<span :style="{ color: check.isChecked ? '#1890ff' : '' }"> |
|
|
|
<view class="flex"> |
|
|
|
<view :style="{ color: check.isChecked ? '#1890ff' : '' }" style="width: 628rpx"> |
|
|
|
{{ listItem.itemList[checkIndex] }} |
|
|
|
</span> |
|
|
|
</view> |
|
|
|
<u-checkbox v-model="check.isChecked" :name="listItem.itemList[checkIndex]"> |
|
|
|
</u-checkbox> |
|
|
|
</view> |
|
|
|
<u-input |
|
|
|
:border="true" |
|
|
|
:clearable="false" |
|
|
@ -319,8 +321,8 @@ |
|
|
|
class="flex items-center" |
|
|
|
@click="openDropDown(listItem.title, listItem.itemList, listItem.code, index, listIndex, listItem.value)" |
|
|
|
> |
|
|
|
<span style="margin-right: 10px" v-if="listItem.value">{{ listItem.value }}</span> |
|
|
|
<span style="margin-right: 10px" v-else>请选择</span> |
|
|
|
<span style="margin-right: 10px;color: #bbb" v-if="listItem.value">{{ listItem.value }}</span> |
|
|
|
<span style="margin-right: 10px;color: #bbb" v-else>请选择</span> |
|
|
|
<!-- <img src="@/static/icon/right.png" style="height: 20px" /> --> |
|
|
|
<u-icon name="arrow-right" color="#70798C" size="28"></u-icon> |
|
|
|
</div> |
|
|
@ -374,7 +376,7 @@ |
|
|
|
@click="iptChangeRadio(radioValue.name, listItem.code, index, listIndex)" |
|
|
|
@blur="changeScroeNum($event, listItem.min, listItem.max, radioValue.code, index, listIndex, radioIndex)" |
|
|
|
/> |
|
|
|
<span v-else :style="{ color: listItem.value === radioValue.name ? '#1890ff' : '' }">{{ radioValue.name }}</span> |
|
|
|
<view v-else class="ipt-radio" :style="{ color: listItem.value === radioValue.name ? '#1890ff' : '' }">{{ radioValue.name }}</view> |
|
|
|
</u-radio> |
|
|
|
</u-radio-group> |
|
|
|
</div> |
|
|
|