瀏覽代碼

更新 审核文案

王智慧 3 年之前
父節點
當前提交
62da625791

+ 1 - 1
miniprogram/pages/newCachePage/newCachePage.js

@@ -185,7 +185,7 @@ Page({
           try {
             let res = await postApi('/user/wx/login', {
               openId: wx.getStorageSync('openId'),
-              phone: 18988988889
+              phone
             })
             console.log(res)
             if (res.data.status == 0) {

+ 1 - 1
miniprogram/pages/securityCheck/securityCheck.js

@@ -153,6 +153,6 @@ Page({
     })
   },
   onLoad(options) {
-    // this.getList()
+    this.getList()
   },
 })

+ 4 - 1
miniprogram/pages/securityCheck/securityCheck.wxml

@@ -1,7 +1,10 @@
 <view wx:if="{{loginStatus}}">
   <view wx:if="{{list.length}}">
     <view class="box mb30" wx:for="{{list}}" wx:key="id">
-      <view class="title mb10">{{item.checkItemName}}</view>
+      <view class="title mb10 df aic">
+        <view class="mr30">{{item.checkItemName}}</view>
+        <view style="color: red;" wx:if="{{item.auditStatus==2}}">审核未通过,请重拍</view>
+      </view>
       <view wx:if="{{item.viewUrl}}">
         <image wx:if="{{item.isImage}}" class="img" src="{{item.viewUrl}}"></image>
         <video wx:else class="img" src="{{item.viewUrl}}"></video>

+ 4 - 0
miniprogram/pages/securityCheck/securityCheck.wxss

@@ -43,4 +43,8 @@
   border-radius: 6vw;
   margin: 0 auto;
   margin-top: 80vh;
+}
+
+.mr30 {
+  margin-right: 30rpx;
 }