Browse Source

no message

sys 2 years ago
parent
commit
463b31f1fb

+ 1 - 1
components/en-utils/en-nav/en-nav.vue

@@ -1,6 +1,6 @@
 <template>
   <view class="" :style="[{ 'background':bgckgroundBox}]">
-    <view class="header"  :style="[{'height': customBarH + 'px', 'padding-top': statusBarH + 'px'}]">
+    <view class="header"  :style="[{'height': customBarH + 'px','background':bgckgroundBox, 'padding-top': statusBarH + 'px'}]">
       <view class="flexbox"  :class="{'flexbox-xcx':(isXcx && rightShow)}"
             :style="[{'height': customBarH + 'px'}]">
         <view class="left-button" @tap="goBack">

+ 11 - 1
pages.json

@@ -327,10 +327,20 @@
     {
       "path": "pages/my/agreement/permission",
       "style": {
-        "navigationBarTitleText": "",
+        "navigationBarTitleText": "可证",
+        "navigationBarTextStyle": "black",
+        "enablePullDownRefresh": false
+      }
+    },
+    {
+      "path": "pages/my/agreement/about-us",
+      "style": {
+        "navigationBarTitleText": "关乎我们",
+        "navigationBarTextStyle": "black",
         "enablePullDownRefresh": false
       }
     }
+
   ],
   "globalStyle": {
     "navigationBarTextStyle": "black",

+ 76 - 0
pages/my/agreement/about-us.vue

@@ -0,0 +1,76 @@
+<template>
+  <view class="about-box">
+    <en-nav title="关于我们" :title-color="'#333'" ></en-nav>
+    <view class="about-data">
+      <image class="about-img" src="/static/img/common/logo-black.png" mode="aspectFill"></image>
+      <view class="about-title sys-color-black sys-weight-600">
+        ICOCO是为了人们摆脱自己单身的生活 而去结交 认识他人的过程一个网络交友平台
+      </view>
+      <view class="about-item">
+        <view class="item-title sys-color-black sys-height-44">当前版本</view>
+        <view class="item-text sys-color-black-black sys-height-44 sys-weight-600">5.6.00 !</view>
+      </view>
+      <view class="about-item">
+        <view class="item-title sys-color-black sys-height-44">ICOCO官网</view>
+        <view class="item-text sys-color-black sys-height-44 sys-weight-600">http://www.gmuapp.cn/</view>
+      </view>
+      <view class="about-item">
+        <view class="item-title sys-color-black sys-height-44">客服电话</view>
+        <view class="item-text sys-color-black sys-height-44 sys-weight-600">4008255900</view>
+      </view>
+      <view class="about-item">
+        <view class="item-title sys-color-black sys-height-44">商务合作</view>
+        <view class="item-text sys-color-black sys-height-44 sys-weight-600">business @ itsgmu.com</view>
+      </view>
+      <view class="about-item">
+        <view class="item-title sys-color-black sys-height-44">版权所有</view>
+        <view class="item-text sys-color-black sys-height-44">湖南高佳网络信息有限公司</view>
+        <view class="item-text sys-color-black sys-height-44 sys-weight-600">Copyright</view>
+        <view class="item-text sys-color-black sys-height-44 sys-weight-600">Hunan Gaojia Network Infomation Co., Ltd</view>
+      </view>
+    </view>
+
+  </view>
+</template>
+
+<script>
+import EnNav from "@/components/en-utils/en-nav/en-nav";
+export default {
+  components: {EnNav},
+  data() {
+    return {
+
+    }
+  },
+  methods: {
+
+  }
+}
+</script>
+
+<style scoped lang="scss">
+.about-data{
+  padding:80rpx 60rpx;
+  .about-img{
+    width: 124rpx;
+    height: 124rpx;
+    border-radius:24rpx ;
+  }
+  .about-title{
+    margin-top: 16rpx;
+    font-size: 28rpx;
+    padding-bottom: 32rpx;
+  }
+  .about-item{
+    margin-top: 48rpx;
+    .item-title{
+      font-size: 30rpx;
+    }
+    .item-text{
+      margin-top: 12rpx;
+      font-size: 28rpx;
+    }
+  }
+}
+
+</style>

+ 2 - 2
pages/my/set.vue

@@ -1,6 +1,6 @@
 <template>
   <view class="set-box">
-    <en-nav title="设置" title-color="#333333" bgckground-box="#fff"></en-nav>
+    <en-nav title="设置" title-color="#333333" ></en-nav>
     <view class="set-list">
       <view class="set-item">
         <view class="item-text sys-height-44 sys-color-black">清理缓存</view>
@@ -60,7 +60,7 @@ export default {
       ],
       sysList:[
         {'text':'意见与反馈','url':''},
-        {'text':'关于我们','url':''},
+        {'text':'关于我们','url':'./agreement/about-us'},
         {'text':'用户协议','url':'./agreement/agreement'},
         {'text':'隐私政策','url':'./agreement/privacy'},
         // {'text':'第三方信息共享清单','url':''},

BIN
static/img/common/logo-black.png