4.10退料申请角标状态修改
This commit is contained in:
parent
73d4743d96
commit
e1eb661fcb
|
|
@ -59,8 +59,33 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="sticky-area">
|
<view class="sticky-area">
|
||||||
<image src="/static/passed.png" v-show="exit.taskStatus == '40'" mode=""></image>
|
<h4
|
||||||
<image src="/static/noPass.png" v-show="exit.taskStatus != '40'" mode=""></image>
|
v-show="exit.taskStatus == '37'"
|
||||||
|
>
|
||||||
|
待退料审核
|
||||||
|
</h4>
|
||||||
|
<h4
|
||||||
|
v-show="exit.taskStatus == '38'"
|
||||||
|
>
|
||||||
|
退料已审核
|
||||||
|
</h4>
|
||||||
|
<h4
|
||||||
|
v-show="exit.taskStatus == '39'"
|
||||||
|
>
|
||||||
|
退料核查中
|
||||||
|
</h4>
|
||||||
|
<h4
|
||||||
|
v-show="exit.taskStatus == '40'"
|
||||||
|
style="border: 1px solid #27D870; color: #27D870;"
|
||||||
|
>
|
||||||
|
退料完成
|
||||||
|
</h4>
|
||||||
|
<h4
|
||||||
|
v-show="exit.taskStatus == '101'"
|
||||||
|
style="border: 1px solid #EE603D; color: #EE603D;"
|
||||||
|
>
|
||||||
|
退料审核驳回
|
||||||
|
</h4>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<uni-popup
|
<uni-popup
|
||||||
|
|
@ -442,13 +467,23 @@ import { basePath } from '../../public'
|
||||||
}
|
}
|
||||||
.sticky-area{
|
.sticky-area{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 20rpx;
|
||||||
right: 0;
|
right: 20rpx;
|
||||||
width: 11vh;
|
/* width: 11vh;
|
||||||
height: 10vh;
|
height: 10vh;
|
||||||
image{
|
image{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
} */
|
||||||
|
h4{
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 8rpx 20rpx;
|
||||||
|
border-radius: 15rpx;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: normal;
|
||||||
|
background-color: #fff;
|
||||||
|
border: 1px solid #3788FF;
|
||||||
|
color: #3788FF;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue