106 lines
3.7 KiB
Plaintext
106 lines
3.7 KiB
Plaintext
<!--pages/mine/shop/mineshop.wxml-->
|
|
<cu-custom isBack="{{true}}">
|
|
<view slot="content">店铺认证详情</view>
|
|
</cu-custom>
|
|
<scroll-view wx:if="{{shopLicensePhotos.length>0}}">
|
|
<view class="cu-bar bg-white margin-top">
|
|
<view class="action">
|
|
店铺营业执照
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group">
|
|
<view class="grid col-3 grid-square flex-sub">
|
|
<view class="bg-img" wx:for="{{shopLicensePhotos}}" wx:key="index" bindtap="ViewLicImg"
|
|
data-url="{{shopLicensePhotos[index].path}}">
|
|
<image src='{{shopLicensePhotos[index].path}}' mode='aspectFill'></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view>
|
|
<!-- 企业名称 -->
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
名称
|
|
</view>
|
|
<view class="content">{{certificationName}}</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
类型
|
|
</view>
|
|
<view class="content">{{certificationType}}</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
证书编号
|
|
</view>
|
|
<view class="content">{{certificationNumber}}</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
统一信用代码
|
|
</view>
|
|
<view class="content">{{certificationId}}</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
企业组成形式
|
|
</view>
|
|
<view class="content">{{certificationComposition}}</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
法定代表人
|
|
</view>
|
|
<view class="content">{{certificationLegalPerson}}</view>
|
|
</view>
|
|
<view class="cu-bar bg-white margin-top-ls">
|
|
<view class="action">
|
|
经营范围
|
|
</view>
|
|
</view>
|
|
<view class="bg-white">
|
|
<view class="cu-form-group">
|
|
<view class="border-line padding-xs margin-left-xs margin-right-xs">
|
|
{{certificationBusiness}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
注册资本
|
|
</view>
|
|
<view class="content">{{certificationCapital}}</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
成立日期
|
|
</view>
|
|
<view class="content">{{certificationFoundTime}}</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
营业期限
|
|
</view>
|
|
<view class="content">{{certificationLicenseTerm}}</view>
|
|
</view>
|
|
<view class="cu-bar bg-white margin-top-ls">
|
|
<view class="action">
|
|
企业地址
|
|
</view>
|
|
</view>
|
|
<view class="bg-white">
|
|
<view class="cu-form-group">
|
|
<view class="border-line padding-xs margin-left-xs margin-right-xs">
|
|
{{certificationAddress}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="cu-form-group margin-top-ls">
|
|
<view class="title">
|
|
登记机关
|
|
</view>
|
|
<view class="content">{{certificationAuthority}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
</scroll-view>
|
|
<van-empty description="暂无数据" wx:else /> |