提交 d0ae798d 编写于 作者: qian.jie's avatar qian.jie

Merge branch 'feature/jq' into 'develop'

添加查看级别显示

See merge request !175
...@@ -91,6 +91,10 @@ ...@@ -91,6 +91,10 @@
color: #02120f; color: #02120f;
margin-top: 19px; margin-top: 19px;
} }
.agment-head-none{
background: #fff;
pointer-events: none;
}
.agment-head-priority { .agment-head-priority {
padding-top: 20px; padding-top: 20px;
display: flex; display: flex;
......
...@@ -48,22 +48,23 @@ ...@@ -48,22 +48,23 @@
</div> </div>
</div> </div>
<div <div
v-if="this.schedulingType != 3"
style="margin-top: 24px" style="margin-top: 24px"
> >
<p class="agment-head-title"> <p class="agment-head-title">
选择匹配优先级 选择匹配优先级
</p> </p>
<div class="agment-head-priority"> <div :class="this.schedulingType == 3 ? 'agment-head-none' : '' ">
<p <div class="agment-head-priority">
v-for="(item, index) in createList" <p
:key="index" v-for="(item, index) in createList"
class="item" :key="index"
:class="{ active: item == currentIndex }" class="item"
@click="handlePriority(item)" :class="{ active: item == currentIndex }"
> @click="handlePriority(item)"
{{ item }} >
</p> {{ item }}
</p>
</div>
</div> </div>
</div> </div>
<div <div
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册