This commit is contained in:
parent
e8ca942a63
commit
2a7f19bf6d
|
|
@ -13,16 +13,11 @@
|
|||
<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.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>
|
||||
|
|
@ -89,10 +84,14 @@
|
|||
|
||||
</view>
|
||||
</view>
|
||||
<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 style="display: flex;width: 100%;" v-if="form.suppliersStatus==2||form.suppliersStatus==5||!form.id">
|
||||
<view class="finish-button" style="background: #efecec;border: 1px solid #b9b2b2;color: #b9b2b2;" v-if="form.izModify==true">
|
||||
信息变更中
|
||||
</view>
|
||||
<view class="finish-button" @click="next" v-else>
|
||||
确认并提交
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<u-action-sheet :list="bottomlist" @click="photoclick" v-model="bottomshow"></u-action-sheet>
|
||||
</div>
|
||||
|
|
@ -282,6 +281,7 @@
|
|||
return /^1[3-9]\d{9}$/.test(val);
|
||||
}
|
||||
const next = () => {
|
||||
|
||||
if (!uping.value) {
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue