Browse Source

分享显示

yuany 4 năm trước cách đây
mục cha
commit
ed425af39e
2 tập tin đã thay đổi với 15 bổ sung12 xóa
  1. 2 7
      src/components/Post.vue
  2. 13 5
      src/views/account/Waiting.vue

+ 2 - 7
src/components/Post.vue

@@ -123,27 +123,22 @@ export default {
         url() {
             let pageUrl = this.pageUrl;
             let id = this.info.id;
-            console.log("1231114",pageUrl,id)
             if (pageUrl === 'assetDetail') {
                 id = this.info.publicCollectionId;
                 pageUrl = 'productDetail';
-                console.log("11111111",this.info.publicCollectionId)
             }
             if (pageUrl === 'productDetail' && !this.assignment) {
-                pageUrl = 'productDetail/' + id;
-                console.log("222222222",this.assignment)
+                pageUrl = 'productDetail';
             }
             if (this.isLogin && this.assignment && pageUrl === 'productDetail') {
-                console.log("33333333333",'9th/productTasks?id=' + id + '&invitor=' + this.$store.state.userInfo.id)
                 return resolveUrl(
                     this.$baseUrl,
                     '9th/productTasks?id=' + id + '&invitor=' + this.$store.state.userInfo.id
                 );
             } else if (this.isLogin) {
-                console.log("44444444444",'9th/' + pageUrl + '?id=' + id + '&invitor=' + this.$store.state.userInfo.id)
                 return resolveUrl(
                     this.$baseUrl,
-                    '9th/' + pageUrl + '?id=' + id + '&invitor=' + this.$store.state.userInfo.id
+                    '9th/' + pageUrl + '?collectionId=' + id + '&invitor=' + this.$store.state.userInfo.id
                 );
             } else {
                 return resolveUrl(this.$baseUrl, '9th/' + pageUrl + '?id=' + id);

+ 13 - 5
src/views/account/Waiting.vue

@@ -3,7 +3,9 @@
     <div class="content">
         <!-- 实名认证失败 -->
         <div class="under_review" v-if="this.userInfo && this.userInfo.authStatus === 'FAIL'">
-            <img :src="require('@assets/shenqing_weitongguo.png')" alt="" class="under_review_img">
+            <div class="under_review_img">
+                <img :src="require('@assets/shenqing_weitongguo.png')" alt="" class="under_review_img_con">
+            </div>
             <div class="under_review_title">资料审核失败</div>
             <div class="audit_failed_tip">很遗憾,您的资料审核失败,请检查您填写的资料是否正确以及上传照片是否清晰</div>
             <div class="under_review_return">
@@ -12,7 +14,9 @@
         </div>
         <!-- 实名认证审核中 -->
         <div class="under_review" v-else>
-            <img :src="require('@assets/shenqing_shenhezhong.png')" alt="" class="under_review_img">
+            <div class="under_review_img">
+                <img :src="require('@assets/shenqing_shenhezhong.png')" alt="" class="under_review_img_con">
+            </div>
             <div class="under_review_title">资料审核中</div>
             <div class="under_review_tip">平台将于3日内完成资料审核,请耐心等待</div>
             <div class="under_review_return">
@@ -87,9 +91,13 @@ export default {
         // margin-top: 44px;
         .under_review{
             .under_review_img{
-                margin: 50px 0px 30px 133px;
-                width: 110px;
-                height: 86px;
+                margin: 50px 0px 30px 0px;
+                display: flex;
+                justify-content: center;
+                .under_review_img_con{
+                    width: 110px;
+                    height: 86px;
+                }
             }
             .under_review_title{
                 text-align: center;