|
@@ -15,14 +15,19 @@
|
|
|
<view>
|
|
|
<view>所属企业 <text style='color:#999;'>({{enterprise.length}})</text></view>
|
|
|
<view v-if='enterprise.length>0'>
|
|
|
- <view>
|
|
|
- <view>公司</view>
|
|
|
- <view>状态</view>
|
|
|
- </view>
|
|
|
- <view>
|
|
|
- <view>可垫付运费</view>
|
|
|
- <view>编辑</view>
|
|
|
- <view>删除</view>
|
|
|
+ <view v-for='item in enterprise' class='wrap'>
|
|
|
+ <view class='flex flex-space-between'>
|
|
|
+ <view>{{item.companyName}}</view>
|
|
|
+ <view v-if='item.status=="已通过"' class='status passed'>{{item.status}}</view>
|
|
|
+ <view v-if='item.status=="审核中"' class='status aduit'>{{item.status}}</view>
|
|
|
+ <view v-if='item.status=="已驳回"' class='status reject'>{{item.status}}</view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+ <view style='position: absolute;bottom:10px;width:95%;text-align:right;'>
|
|
|
+ <image v-if='item.status!="审核中"' @click='edit(item)' style='width:17px;height:17px;margin:0 10px;' src="@/static/mine/company/edit.png"></image>
|
|
|
+ <image @click='del(item)' style='width:17px;height:17px;margin:0 10px;' src="@/static/mine/company/del.png"></image>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
@@ -82,7 +87,6 @@
|
|
|
if(res.data.cargoOwnerCompInfoList){
|
|
|
this.enterprise=res.data.cargoOwnerCompInfoList
|
|
|
}
|
|
|
- console.log(this.personage)
|
|
|
if(this.personage){
|
|
|
this.statustext=this.personage.authenticationStatus
|
|
|
if(this.personage.authenticationStatus=='审核中'||this.personage.authenticationStatus=='已驳回'){
|