|
@@ -26,12 +26,12 @@
|
|
|
<view class="content-item2">
|
|
|
<view class="item2-box">
|
|
|
<image :src="list.storeImage" mode="" v-if="list.storeImage"></image>
|
|
|
- <img class="img2" src="@/static/logo.png" alt="" v-else/>
|
|
|
+ <img class="img2" src="@/static/logo.png" alt="" v-else />
|
|
|
<view class="img-text">店铺门面图(需包含完整牌匾)</view>
|
|
|
</view>
|
|
|
<view class="item2-box">
|
|
|
<image :src="list.storeInnerImage" mode="" v-if="list.storeInnerImage"></image>
|
|
|
- <img class="img2" src="@/static/logo.png" alt="" v-else/>
|
|
|
+ <img class="img2" src="@/static/logo.png" alt="" v-else />
|
|
|
<view class="img-text">店内真实环境</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -39,18 +39,27 @@
|
|
|
<view class="content-item2">
|
|
|
<view class="item-l">
|
|
|
<p>法人姓名 : {{ list.legalRepresentativeName || '--' }}</p>
|
|
|
- <p>性别 : {{ list.legalRepresentativeGender || '--' }}</p>
|
|
|
+ <p>
|
|
|
+ 性别 :
|
|
|
+ {{
|
|
|
+ list.legalRepresentativeGender == 1
|
|
|
+ ? '男'
|
|
|
+ : list.legalRepresentativeGender == 2
|
|
|
+ ? '女'
|
|
|
+ : '保密'
|
|
|
+ }}
|
|
|
+ </p>
|
|
|
<p>证件号码 : {{ list.idCardNumber || '--' }}</p>
|
|
|
- <p>有效期 : {{ list.idCardExpirationDate || '--' }}</p>
|
|
|
+ <p>有效期 : {{ $u.timeFormat(list.idCardExpirationDate) || '--' }}</p>
|
|
|
</view>
|
|
|
<view class="item2-box">
|
|
|
<image :src="list.idCardFrontPhoto" mode="" v-if="list.idCardFrontPhoto"></image>
|
|
|
- <img class="img2" src="@/static/logo.png" alt="" v-else/>
|
|
|
+ <img class="img2" src="@/static/logo.png" alt="" v-else />
|
|
|
<view class="img-text">证件正面图(国徽图)</view>
|
|
|
</view>
|
|
|
<view class="item2-box">
|
|
|
<image :src="list.idCardBackPhoto" mode="" v-if="list.idCardBackPhoto"></image>
|
|
|
- <img class="img2" src="@/static/logo.png" alt="" v-else/>
|
|
|
+ <img class="img2" src="@/static/logo.png" alt="" v-else />
|
|
|
<view class="img-text">证件反面图(人像图)</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -59,11 +68,11 @@
|
|
|
<view class="item-l">
|
|
|
<p>证件名称 : 营业执照</p>
|
|
|
<p>证件编号 : {{ list.businessLicenseId || '--' }}</p>
|
|
|
- <p>有效期 : {{ list.businessLicenseExpirationDate || '--' }}</p>
|
|
|
+ <p>有效期 : {{ $u.timeFormat(list.businessLicenseExpirationDate) || '--' }}</p>
|
|
|
</view>
|
|
|
<view class="item2-box">
|
|
|
<image :src="list.businessPhoto" mode="" v-if="list.businessPhoto"></image>
|
|
|
- <img class="img2" src="@/static/logo.png" alt="" v-else/>
|
|
|
+ <img class="img2" src="@/static/logo.png" alt="" v-else />
|
|
|
<view class="img-text">证件正面图</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -72,11 +81,11 @@
|
|
|
<view class="item-l">
|
|
|
<p>证件名称 : 经营许可证</p>
|
|
|
<p>证件编号 : {{ list.businessLicenseNumberValid || '--' }}</p>
|
|
|
- <p>有效期 : {{ list.businessLicenseExpirationDateValid || '--' }}</p>
|
|
|
+ <p>有效期 : {{ $u.timeFormat(list.businessLicenseExpirationDateValid) || '--' }}</p>
|
|
|
</view>
|
|
|
<view class="item2-box">
|
|
|
<image :src="list.businessLicensePhoto" mode="" v-if="list.businessLicensePhoto"></image>
|
|
|
- <img class="img2" src="@/static/logo.png" alt="" v-else/>
|
|
|
+ <img class="img2" src="@/static/logo.png" alt="" v-else />
|
|
|
<view class="img-text">证件正面图</view>
|
|
|
</view>
|
|
|
</view>
|