This commit is contained in:
shijingjing
2022-09-06 14:30:14 +08:00
parent 71a73477db
commit 4b0102bb63

View File

@@ -54,9 +54,15 @@
<span class="label" v-if="userIdList.length">已选择</span> <span class="label" v-if="userIdList.length">已选择</span>
<span v-else style="color:#999;">请选择</span> <span v-else style="color:#999;">请选择</span>
<u-icon name="arrow-right" color="#303133" size="24" style="margin-left:8px;"/> <u-icon name="arrow-right" color="#303133" size="24" style="margin-left:8px;"/>
</div> </div>
</AiPagePicker> </AiPagePicker>
</div> </div>
<div class="type-list">
<div class="type-title">任务状态</div>
<div class="items">
<AiSelect dict="mstStatus" v-model="status"></AiSelect>
</div>
</div>
<div class="type-list"> <div class="type-list">
<div class="type-title">群发时间</div> <div class="type-title">群发时间</div>
<div class="item"> <div class="item">
@@ -107,7 +113,8 @@ export default {
taskTitle: '', taskTitle: '',
createUserId: '', createUserId: '',
userList: [], userList: [],
userIdList: [] userIdList: [],
status: ''
} }
}, },
methods: { methods: {
@@ -399,6 +406,12 @@ export default {
::v-deep .uni-input-placeholder { ::v-deep .uni-input-placeholder {
text-align: right; text-align: right;
} }
}
}
.items {
::v-deep .AiSelect .display {
justify-content: space-between;
width: 100%;
} }
} }
.active { .active {
@@ -428,6 +441,9 @@ export default {
} }
} }
} }
::v-deep .uicon-arrow-right::before {
color: #606266 !important;
}
.page_picker { .page_picker {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;