部门 + title

This commit is contained in:
shijingjing
2023-03-01 14:55:58 +08:00
parent 899edfae19
commit 50c326dc3b
3 changed files with 13 additions and 7 deletions

View File

@@ -9,9 +9,14 @@
<div><span class="color_red">*</span><span class="title">发送范围</span></div>
<div @click="toSleectScoped">
<span>
<span class="color_gray" v-if="!form.wxGroups || sum==0">请选择</span>
<span v-if="type=='ResidentsGroup' && form.wxGroups.length">预计送达{{ form.wxGroups.length }}名成员</span>
<span v-if="type!='ResidentsGroup' && sum != 0">预计送达{{ sum }}名成员</span>
<span v-if="type=='ResidentsGroup' && form.wxGroups.length">
<span class="color_gray" v-if="!form.wxGroups">请选择</span>
<span v-else>预计送达{{ form.wxGroups.length }}个居民群</span>
</span>
<span v-if="type!='ResidentsGroup' && sum != 0">
<span class="color_gray" v-if="sum==0">请选择</span>
<span v-else>预计送达{{ sum }}名成员</span>
</span>
<u-icon name="arrow-right" color="#CCD0D3"></u-icon>
</span>
</div>
@@ -139,7 +144,7 @@
</div>
</template>
remove<script>
<script>
import { mapActions } from "vuex";
export default {
name: "addPropaganda",