商户审核
This commit is contained in:
parent
9ce6ec1c2a
commit
f4cf86803e
|
@ -9,7 +9,7 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
<view class="shop-type-list">
|
||||
<view class="shop-type-list" v-if="list && list.length > 0">
|
||||
<block v-for="(item,indx) in list" :key="indx">
|
||||
<view class="shop-type-list-item">
|
||||
<view class="shop-type-list-item-title" @click='hanldeTo(item)'>
|
||||
|
@ -37,7 +37,7 @@
|
|||
</view>
|
||||
<view class="shop-type-list-item-con-item">
|
||||
<view class="shop-type-list-item-con-key">审核人:</view>
|
||||
<view class="shop-type-list-item-con-val">{{item.check_name}}</view>
|
||||
<view class="shop-type-list-item-con-val">{{item.check_name || '-'}}</view>
|
||||
</view>
|
||||
<view class="shop-type-list-item-con-item" v-if="item.status == 1 || item.status == 2">
|
||||
<view class="shop-type-list-item-con-key">审核时间:</view>
|
||||
|
@ -53,6 +53,9 @@
|
|||
</view>
|
||||
</block>
|
||||
</view>
|
||||
|
||||
<u-empty v-else text="暂无申请记录~" mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png">
|
||||
</u-empty>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -42,11 +42,11 @@
|
|||
<view class="shop-type-audit-card">
|
||||
<view class="shop-type-audit-card-info">
|
||||
<view class="shop-type-audit-card-info-label audit">审核人</view>
|
||||
<view class="shop-type-audit-card-info-val">{{form.check_name}}</view>
|
||||
<view class="shop-type-audit-card-info-val">{{form.check_name || '-'}}</view>
|
||||
</view>
|
||||
<view class="shop-type-audit-card-info">
|
||||
<view class="shop-type-audit-card-info-label">联系电话</view>
|
||||
<view class="shop-type-audit-card-info-val">{{form.check_phone}}</view>
|
||||
<view class="shop-type-audit-card-info-val">{{form.check_phone || '-'}}</view>
|
||||
</view>
|
||||
<view class="shop-type-audit-card-img">
|
||||
<u-image width="116rpx" height="116rpx" src="" shape="circle" :src="form.check_avatar" />
|
||||
|
@ -203,7 +203,6 @@
|
|||
|
||||
.shop-type-audit-card {
|
||||
position: relative;
|
||||
width: 690rpx;
|
||||
height: 170rpx;
|
||||
padding: 30rpx;
|
||||
background: #FFFFFF;
|
||||
|
|
Loading…
Reference in New Issue