极客指定线路

This commit is contained in:
“wanyongkang”
2021-03-30 14:37:23 +08:00
parent 695f6b70ec
commit b91ff0dfe8
6 changed files with 145 additions and 6 deletions

View File

@@ -56,7 +56,7 @@
position: fixed;
left: 350px;
width: 1000px;
height: 700px;
height: 710px;
top: 100px;
z-index: 3;
background: #fff;
@@ -251,12 +251,12 @@
</div>
@* 指定地区 *@
<div class="online" style="overflow: hidden;" v-cloak v-if="showAddress">
<span>最多选择20条线路</span>
<h4>最多选择20条线路 <span style="color: red;">标红</span>为线路正在维护中</h4>
<img src="~/img/close.png" class="btnOnlineClose" style="position: absolute;top:10px;" v-on:click="closeOnline()" />
<div style="overflow-y: auto;width:950px;height:580px;">
<div class="checkbox">
<label style="width: 25%;" v-for="(item,index) in assign_add_list">
<input type="checkbox" v-model="assign_list" :value="item.name+'-'+item.id">{{item.name}}
<input type="checkbox" v-model="assign_list" :value="item.name+'-'+item.id"><span v-if="item.status ==2">{{item.name}}</span><span v-if="item.status ==1" style="color: red;">{{item.name}}</span>
</label>
</div>
</div>