This commit is contained in:
parent
b0bb3909de
commit
e8ca942a63
|
|
@ -13,11 +13,16 @@
|
|||
<view class="shu"></view>
|
||||
<view class="content-weight">供应商信息</view>
|
||||
<view class="content-img" style="display: flex;align-items: center;justify-content: flex-end;color: red;">
|
||||
<text v-if="form.suppliersStatus==1" >申请中</text>
|
||||
<text v-if="form.suppliersStatus==2" style="color: #0089FE;">已通过</text>
|
||||
<text v-if="form.suppliersStatus==3">已驳回</text>
|
||||
<text v-if="form.suppliersStatus==4">申请变更中</text>
|
||||
<text v-if="form.suppliersStatus==5">变更已驳回</text>
|
||||
<text v-if="form.izModify==true">
|
||||
申请变更中
|
||||
</text>
|
||||
<text v-else>
|
||||
<text v-if="form.suppliersStatus==1" >申请中</text>
|
||||
<text v-if="form.suppliersStatus==2" style="color: #0089FE;">已通过</text>
|
||||
<text v-if="form.suppliersStatus==3">已驳回</text>
|
||||
<text v-if="form.suppliersStatus==4">申请变更中</text>
|
||||
<text v-if="form.suppliersStatus==5">变更已驳回</text>
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
<view style="margin: 15rpx auto 0;width: 100%;color: red;" v-if="form.suppliersStatus==3||form.suppliersStatus==5">{{form.auditContent}}</view>
|
||||
|
|
@ -84,7 +89,7 @@
|
|||
|
||||
</view>
|
||||
</view>
|
||||
<view style="display: flex;width: 100%;" v-if="form.suppliersStatus==2||form.suppliersStatus==5||!form.id">
|
||||
<view style="display: flex;width: 100%;" v-if="form.suppliersStatus==2||form.suppliersStatus==5||!form.id||!form.izModify">
|
||||
<view class="finish-button" @click="next">
|
||||
确认并提交
|
||||
</view>
|
||||
|
|
@ -421,7 +426,8 @@
|
|||
// form = JSON.parse(param.element)
|
||||
Object.assign(form, JSON.parse(param.element))
|
||||
form.name = showmarrylist[Number(form.suppliersNature) - 1].value;
|
||||
form.applyOrg = form.orgCode
|
||||
form.applyOrg = form.orgCode;
|
||||
|
||||
})
|
||||
</script>
|
||||
|
||||
|
|
|
|||
|
|
@ -447,7 +447,6 @@
|
|||
const menuArray = ref([])
|
||||
const loadingData = () => {
|
||||
getSuppliersOrgInfo().then(res => {
|
||||
console.log(res)
|
||||
menuArray.value = []
|
||||
res.result.records.forEach((element) => {
|
||||
menuArray.value.push(element)
|
||||
|
|
|
|||
|
|
@ -52,6 +52,12 @@
|
|||
<view class="applyfail" v-if="item.suppliersStatus===`3`">
|
||||
申请驳回
|
||||
</view>
|
||||
<view class="applyfail" v-if="item.suppliersStatus===`4`">
|
||||
申请变更中
|
||||
</view>
|
||||
<view class="applyfail" v-if="item.suppliersStatus===`5`">
|
||||
变更已驳回
|
||||
</view>
|
||||
<!-- <view class="applying" v-if="item.applyStatus===`1`&&item.applyType==`2`">
|
||||
变更中
|
||||
</view>
|
||||
|
|
@ -429,7 +435,7 @@
|
|||
top: 0rpx;
|
||||
background-color: #fff4f7;
|
||||
color: #FC3D7F;
|
||||
width: 130rpx;
|
||||
min-width: 130rpx;
|
||||
height: 50rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
|
@ -438,6 +444,8 @@
|
|||
border-radius: 10rpx;
|
||||
margin-left: 35rpx;
|
||||
margin-top: 20rpx;
|
||||
white-space: nowrap;
|
||||
padding: 0 10rpx;
|
||||
// margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue