This commit is contained in:
parent
6175211aaa
commit
43c1519776
|
|
@ -48,16 +48,17 @@
|
|||
<input class="one-right" maxlength="5" placeholder="请输入姓名" v-model="form.name" disabled/>
|
||||
</view>
|
||||
|
||||
<view class="one">
|
||||
<view class="one-left">电话</view>
|
||||
<input class="one-right" type="number" maxlength="11" placeholder="请输入电话" v-model="form.tel" />
|
||||
<image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" />
|
||||
</view>
|
||||
|
||||
<view class="one">
|
||||
<view class="one-left">身份证号</view>
|
||||
<input class="one-right" type="number" maxlength="18" placeholder="请输入身份证号" style="text-overflow: inherit;min-width: 320rpx;"
|
||||
v-model="form.idCard" disabled/>
|
||||
</view>
|
||||
<view class="one">
|
||||
<view class="one-left">电话</view>
|
||||
<input class="one-right" type="number" maxlength="11" placeholder="请输入电话" v-model="form.tel" />
|
||||
<image class="one-left-imge" src="https://www.focusnu.com/media/directive/index/canread.png" />
|
||||
</view>
|
||||
<view class="one">
|
||||
<view class="one-left">家庭住址</view>
|
||||
<input class="one-right" maxlength="30" placeholder="请输入家庭住址" v-model="form.homeAddress" />
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
</view>
|
||||
|
||||
<view class="small-title">
|
||||
{{ uni.getStorageSync('isstaffchange') ? '尊敬的用户,您的供应商变更信息已提交,' : '尊敬的用户,您的供应商入驻申请已提交成功' }},
|
||||
{{ uni.getStorageSync('isstaffchange') ? '尊敬的用户,您的供应商变更信息已提交,' : '尊敬的用户,您的供应商入驻申请已提交成功,' }}
|
||||
{{ uni.getStorageSync('isstaffchange')?`请等待审核!`:`请等待审核!` }}!
|
||||
|
||||
</view>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
|
||||
<view :style="{height:`${uni.getStorageSync('moveHeight') + 30}px`}"></view>
|
||||
<view class="shzt" v-if="alldata.modifyStatus==3||alldata.modifyStatus==5">
|
||||
<view class="shzt" v-if="alldata.modifyStatus==3||alldata.modifyStatus==5" >
|
||||
<view class="icoi">i</view>
|
||||
<text style="color: rgba(102, 102, 102, 1); width: 70%;word-break: break-all;">
|
||||
驳回原因:{{alldata.auditContent}}
|
||||
|
|
@ -62,11 +62,20 @@
|
|||
下一步
|
||||
</view> -->
|
||||
</view>
|
||||
<!-- <view class="shzt" v-if="alldata.elderModifyStatus==3||alldata.elderModifyStatus==5" v-show="targetpage">
|
||||
<view class="icoi">i</view>
|
||||
<text style="color: rgba(102, 102, 102, 1); width: 70%;word-break: break-all;">
|
||||
驳回原因:{{alldata.auditContent}}
|
||||
</text>
|
||||
<text style=" color:rgba(237, 72, 69, 1);white-space: nowrap;">审核驳回</text>
|
||||
</view> -->
|
||||
<view class="white-content" v-show="targetpage">
|
||||
<view class="content-title" style="margin: 20rpx 0;justify-content: space-between;">
|
||||
<view style="display: flex;">
|
||||
<view class="shu"></view>
|
||||
<view class="content-weight" style="margin-top: -2rpx;">长者信息</view>
|
||||
<image class="shu-img" :style="alldata.modifyStatus==3?{top:`40%`}:{}"
|
||||
:src="alldata.modifyStatus? `https://www.focusnu.com/media/directive/index/${statusarray[alldata.modifyStatus-1]}.png`:``" />
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
|
|
|||
|
|
@ -60,6 +60,12 @@ export function getSupInfoByOpenId(id){
|
|||
method: 'get',
|
||||
})
|
||||
}
|
||||
export function getShowInfoByOpenId(){
|
||||
return request({
|
||||
url: `/api/suppliers/getShowInfoByOpenId?openId=${uni.getStorageSync('openid')}`,
|
||||
method: 'get',
|
||||
})
|
||||
}
|
||||
|
||||
//机构邀请
|
||||
export function getInvited(openId){
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@
|
|||
isRead,
|
||||
invitedConfirm,
|
||||
applySupOrg,
|
||||
getSupInfoByOpenId
|
||||
getShowInfoByOpenId
|
||||
} from './api.js'
|
||||
import request from '@/request/index.js'
|
||||
import downMenu from '@/compontent/public/gongyingshnagdownmenu.vue'
|
||||
|
|
@ -324,7 +324,7 @@
|
|||
});
|
||||
}
|
||||
const jumpToAll = (element) => {
|
||||
getSupInfoByOpenId(element.suppliersId).then(res => {
|
||||
getShowInfoByOpenId().then(res => {
|
||||
if (res.success) {
|
||||
if(res.result.applyStatus==4){
|
||||
uni.showToast({
|
||||
|
|
@ -344,7 +344,7 @@
|
|||
})
|
||||
}
|
||||
const look = (element) => {
|
||||
getSupInfoByOpenId(element.suppliersId).then(res => {
|
||||
getShowInfoByOpenId().then(res => {
|
||||
if (res.success) {
|
||||
uni.navigateTo({
|
||||
url: `/pages/addsupplier/all?element=${JSON.stringify(res.result)}&code=0`
|
||||
|
|
|
|||
Loading…
Reference in New Issue