You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zhishifufei_php/public/kefu-assets/components/pc/user-label/index.html

13 lines
580 B

<div class="label-wrapper">
<div class="label-box" v-for="(item,index) in labelList" :key="index">
<div class="title">{{item.name}}</div>
<div class="list">
<div class="label-item" :class="{on:label.disabled}" v-for="(label,j) in item.label" :key="j"
@click="selectLabel(label)">{{label.label_name}}</div>
</div>
</div>
<div class="footer">
<Button type="primary" class="btns" @click="subBtn">确定</Button>
<Button type="primary" class="btns" ghost @click="cancel">取消</Button>
</div>
</div>