Przeglądaj źródła

用户协议和隐私政策

shish 4 lat temu
rodzic
commit
d73f5e9324
1 zmienionych plików z 17 dodań i 4 usunięć
  1. 17 4
      ghsApp/src/admin/home/me.vue

+ 17 - 4
ghsApp/src/admin/home/me.vue

@@ -108,9 +108,13 @@
             <!-- #endif -->
           </view>
         </view>
-        <!-- #ifdef APP-PLUS -->
-        <view class="bottom-version">Version {{version}}</view>
-        <!-- #endif -->
+        
+        <view class="bottom-agreement">
+          <text @click.stop="pageTo({url: '/admin/home/register'})">用户协议</text>
+          <text class="right" @click.stop="pageTo({url: '/admin/home/privacy'})">隐私政策</text>
+        </view>
+        <view class="bottom-version">version {{version}}</view>
+        
       </view>
     </template>
     <ShopSelect ref="shopSelectComponent" class="bar" :isShowTit="false" top="0upx" @selectShopFn="selectShopFn" />
@@ -336,10 +340,19 @@ export default {
         }
       }
     }
+    .bottom-agreement{
+      text-align:center;
+      color:#CCCCCC;
+      font-size:28upx;
+      margin-top:20upx;
+      .right{
+        margin-left:20upx;
+      }
+    }
     .bottom-version{
       text-align:center;
       color:#CCCCCC;
-      font-size:30upx;
+      font-size:23upx;
       margin-top:20upx;
     }
   }