MrShi
2026-05-20 59bfd0b8bbbf0ee94ec68e4a3a1a6e536d0ad8fd
small-program/pages/details-entry/details-entry.vue
@@ -47,6 +47,10 @@
               <view class="list-item-label">支付宝账号</view>
               <view class="list-item-value">{{ form.aliAccount }}</view>
            </view>
            <view class="list-item">
               <view class="list-item-label">支付宝姓名</view>
               <view class="list-item-value">{{ form.aliName }}</view>
            </view>
         </template>
         <template v-if="form.companyType === 1">
            <view class="list-item">
@@ -57,7 +61,25 @@
               <view class="list-item-label">企业支付宝账号</view>
               <view class="list-item-value">{{ form.aliAccount }}</view>
            </view>
            <view class="list-item">
               <view class="list-item-label">企业支付宝姓名</view>
               <view class="list-item-value">{{ form.aliName }}</view>
            </view>
         </template>
         <!-- <view class="list-item">
            <view class="list-item-label">就地寄存分成占比(%)</view>
            <view class="list-item-value">{{ form.localDeposit }}</view>
         </view>
         <view class="list-item">
            <view class="list-item-label">异地存件分成占比(%)</view>
            <view class="list-item-value">{{ form.remoteDeposit }}</view>
         </view>
         <view class="list-item">
            <view class="list-item-label">异地取件分成占比(%)</view>
            <view class="list-item-value">{{ form.remoteTake }}</view>
         </view> -->
         <view class="list-item" style="flex-direction: column; align-items: flex-start;">
            <view class="list-item-label" style="margin-bottom: 30rpx;">{{form.companyType === 0 ? '身份证正反面' : '法人身份证正反面'}}</view>
            <view class="idcard">
@@ -128,6 +150,9 @@
      <view class="footer-btn" v-if="shopAuditStatus === 2">
         <view class="reapply-btn" @click="goToReapply">重新认证</view>
      </view>
      <view class="footer-btn" v-if="shopAuditStatus === 3">
         <view class="reapply-btn" @click="jumpToReapply">重新提交</view>
      </view>
   </view>
</template>
@@ -162,7 +187,10 @@
               depositAmount: '',
               aliName: '',
               legalPersonCard: '',
               auditRemark: ''
               auditRemark: '',
               localDeposit: '',
               remoteDeposit: '',
               remoteTake: ''
            },
            imgPrefix: '',
            statusText: '平台审核中',
@@ -189,6 +217,11 @@
         this.getMyShopData()
      },
      methods: {
         jumpToReapply() {
            uni.navigateTo({
               url: '/pages/store-apply/store-apply'
            })
         },
         getFullPath(url) {
            if (!url) return ''
            if (url.startsWith('http')) {
@@ -259,6 +292,9 @@
                  this.form.legalPersonName = data.legalPersonName || ''
                  this.form.legalPersonCardNo = data.legalPersonCard || ''
                  this.form.legalPersonCard = data.legalPersonCard || ''
                  this.form.localDeposit = data.localDeposit || ''
                  this.form.remoteDeposit = data.remoteDeposit || ''
                  this.form.remoteTake = data.remoteTake || ''
                  this.form.idcardImgUrl = data.idcardImgUrl || ''
                  this.form.idcardImgBackUrl = data.idcardImgBackUrl || ''