sys 2 rokov pred
rodič
commit
33456d6d54

+ 15 - 1
pages.json

@@ -292,7 +292,6 @@
         "enablePullDownRefresh": false
       }
     },
-
     {
       "path": "pages/my/agreement/agreement",
       "style": {
@@ -316,6 +315,21 @@
         "navigationBarTextStyle": "black",
         "enablePullDownRefresh": false
       }
+    },
+    {
+      "path": "pages/my/agreement/all-permission",
+      "style": {
+        "navigationBarTitleText": "相关许可证",
+        "navigationBarTextStyle": "black",
+        "enablePullDownRefresh": false
+      }
+    },
+    {
+      "path": "pages/my/agreement/permission",
+      "style": {
+        "navigationBarTitleText": "",
+        "enablePullDownRefresh": false
+      }
     }
   ],
   "globalStyle": {

+ 86 - 0
pages/my/agreement/all-permission.vue

@@ -0,0 +1,86 @@
+<template>
+  <view class="more-set-box">
+    <en-nav title="相关许可证" :title-color="'#333'"  ></en-nav>
+    <view class="set-list">
+      <view class="set-item" @click="goToUrl('1')">
+        <view class="item-text sys-height-44 sys-color-black">营业执照</view>
+        <view class="item-icon">
+          <text class="iconfont sys-height-44 sys-color-gray-9"> &#xe62b;</text>
+        </view>
+      </view>
+      <view class="set-item"  @click="goToUrl('2')">
+        <view class="item-text sys-height-44 sys-color-black">增值电信业务许可证</view>
+        <view class="item-icon">
+          <text class="iconfont sys-height-44 sys-color-gray-9"> &#xe62b;</text>
+        </view>
+      </view>
+      <view class="set-item"  @click="goToUrl('3')">
+        <view class="item-text sys-height-44 sys-color-black">网络文化经验许可证</view>
+        <view class="item-icon">
+          <text class="iconfont sys-height-44 sys-color-gray-9"> &#xe62b;</text>
+        </view>
+      </view>
+    </view>
+  </view>
+</template>
+
+<script>
+import EnNav from "@/components/en-utils/en-nav/en-nav";
+export default {
+  components: {EnNav},
+  data() {
+    return {
+
+    }
+  },
+  methods: {
+    goToUrl(type){
+      uni.navigateTo({
+        'url':'./permission?type='+type
+      })
+    },
+  }
+}
+</script>
+
+<style scoped lang="scss">
+.more-set-box{
+  background-color: #F9F9F9;
+  min-height: 100vh;
+  padding-bottom: 50rpx;
+  .set-list{
+    margin: 20rpx 32rpx 0 32rpx;
+    background-color: #fff;
+    border-radius: 20rpx;
+    padding:  0 32rpx;
+    .set-item{
+      padding: 32rpx 0;
+      display: flex;
+      justify-content: space-between;
+      align-items: center;
+      border-bottom: 1rpx solid #F2F2F2;
+      .item-data{
+        .describe-title{
+          font-size: 30rpx;
+        }
+        .describe-text{
+          margin-top: 4rpx;
+          font-size: 24rpx;
+        }
+      }
+      .item-text{
+        font-size: 28rpx;
+      }
+      .item-icon{
+        .iconfont{
+          font-size: 28rpx;
+        }
+      }
+    }
+    .set-item:last-child{
+      border-bottom: none;
+    }
+  }
+}
+
+</style>

+ 43 - 0
pages/my/agreement/permission.vue

@@ -0,0 +1,43 @@
+<template>
+  <view class="permission-box">
+    <en-nav :title="title" :title-color="'#333'"  ></en-nav>
+    <view class="permission-data">
+      <image class="permission-img" src="/static/img/temporary/4.png" mode="widthFix"></image>
+    </view>
+  </view>
+</template>
+
+<script>
+import EnNav from "@/components/en-utils/en-nav/en-nav";
+export default {
+  components: {EnNav},
+  data() {
+    return {
+      title:'营业执照'
+    }
+  },
+  onLoad(query) {
+    if(query.type==='1'){
+      this.title='营业执照'
+    }else if(query.type==='1'){
+      this.title='增值电信业务许可证'
+    }else {
+      this.title='网络文化经验许可证'
+    }
+  },
+  methods: {
+
+  }
+}
+</script>
+
+<style scoped lang="scss">
+.permission-box{
+  padding:32rpx ;
+  .permission-img{
+    width: calc(100vw - 64rpx);
+    border-radius: 6rpx;
+  }
+}
+
+</style>

+ 4 - 4
pages/my/set.vue

@@ -30,7 +30,7 @@
     </view>
 
     <view class="set-list">
-      <view class="set-item">
+      <view class="set-item" @click="goToUrl('./set/conversion')">
         <view class="item-text sys-height-44 sys-color-black">兑换码</view>
         <view class="item-icon">
           <text class="iconfont sys-height-44 sys-color-gray-9"> &#xe62b;</text>
@@ -65,9 +65,9 @@ export default {
         {'text':'隐私政策','url':'./agreement/privacy'},
         // {'text':'第三方信息共享清单','url':''},
         {'text':'个人信息清单','url':'./agreement/personage'},
-        {'text':'相关许可证','url':''},
-        {'text':'ICOCO权限及用途说明','url':''},
-        {'text':'隐私中心','url':''},
+        {'text':'相关许可证','url':'./agreement/all-permission'},
+        // {'text':'ICOCO权限及用途说明','url':''},
+        // {'text':'隐私中心','url':''},
       ],
     }
   },