This commit is contained in:
liuye
2022-01-21 15:48:35 +08:00
parent ee0d69681a
commit b82b0f4cda

View File

@@ -6,7 +6,8 @@
<u-input v-model="forms.name" placeholder="请选择转交对象" @click="toSelectUser" disabled />
</u-form-item>
<u-form-item label="事件分类" prop="groupName" required :border-bottom="false" right-icon="arrow-right" v-if="status != 1">
<u-input v-model="forms.groupName" placeholder="请选择事件分类" @click="show = true" />
<!-- <u-input v-model="forms.groupName" placeholder="请选择事件分类" /> -->
<span @click="show = true" class="right-span" :style="forms.groupName ? '' : 'color:#999;'">{{forms.groupName || '请选择事件分类'}}</span>
<u-select v-model="show" :list="myList" value-name="id" label-name="groupName" @confirm="selectStatus"></u-select>
</u-form-item>
@@ -225,5 +226,10 @@ export default {
font-weight: 500;
color: #ffffff;
}
.right-span{
display: inline-block;
width: 100%;
text-align: right;
}
}
</style>