浏览代码

修改消息页面

潘超林 4 月之前
父节点
当前提交
dc832094a2
共有 4 个文件被更改,包括 69 次插入62 次删除
  1. 2 2
      App.vue
  2. 12 6
      pages.json
  3. 48 48
      pages/group/add.vue
  4. 7 6
      pages/views/login.vue

+ 2 - 2
App.vue

@@ -51,8 +51,8 @@ TUIChatKit.init();
 // const SDKAppID = 1600005199; // 测试版
 const SDKAppID = 1600042286; // 正式
 
-const secretKey = "82f8b45664eb3252cf02f939aaac43cd81ba25b7c7f94f45be4f05e173e1ab2d"; // Your secretKey
-
+// const secretKey = "82f8b45664eb3252cf02f939aaac43cd81ba25b7c7f94f45be4f05e173e1ab2d"; // Your secretKey
+const secretKey = "acecc3c3e0a1a83c7b8fa383467bd658c8bb1297c1f2f1f15088add915e68504"; // Your secretKey
 uni.$chat_SDKAppID = SDKAppID;
 uni.$chat_secretKey = secretKey;
 

+ 12 - 6
pages.json

@@ -86,42 +86,48 @@
       "path": "pages/group/data",
       "style": {
         "navigationBarTitleText": "群资料",
-        "autoBackButton": true
+        "autoBackButton": true,
+        "navigationStyle": "custom"
       }
     },
     {
       "path": "pages/group/scan",
       "style": {
         "navigationBarTitleText": "扫码进群",
-        "autoBackButton": true
+        "autoBackButton": true,
+        "navigationStyle": "custom"
       }
     },
     {
       "path": "pages/group/person",
       "style": {
         "navigationBarTitleText": "新的联系人",
-        "autoBackButton": true
+        "autoBackButton": true,
+        "navigationStyle": "custom"
       }
     },
     {
       "path": "pages/group/chat",
       "style": {
         "navigationBarTitleText": "我的群聊",
-        "autoBackButton": true
+        "autoBackButton": true,
+        "navigationStyle": "custom"
       }
     },
     {
       "path": "pages/group/black-list",
       "style": {
         "navigationBarTitleText": "黑名单",
-        "autoBackButton": true
+        "autoBackButton": true,
+        "navigationStyle": "custom"
       }
     },
     {
       "path": "pages/group/add",
       "style": {
         "navigationBarTitleText": "添加好友",
-        "autoBackButton": true
+        "autoBackButton": true,
+        "navigationStyle": "custom"
       }
     },
     {

+ 48 - 48
pages/group/add.vue

@@ -40,45 +40,46 @@
                 <view class="title"
                   >{{ userInfo.nick }}
 
-                  <view
-                    v-if="userInfo.userTypes.includes(4)"
-                    class="tag"
-                    style="
-                      background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/driver.png')
-                        no-repeat;
-                      background-size: 55% 100%;
-                    "
-                  ></view>
+                  <view v-if="userInfo.userTypes.includes(4)" class="tag">
+                    <image
+                      style="width: 70px; height: 25px"
+                      src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/driver.png"
+                      mode=""
+                    />
+                  </view>
+                  <view v-else-if="userInfo.userTypes.includes(7)" class="tag">
+                    <image
+                      style="width: 70px; height: 25px"
+                      src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/supplier.png"
+                      mode=""
+                    />
+                  </view>
+                  <view v-else-if="userInfo.userTypes.includes(2)" class="tag">
+                    <image
+                      style="width: 70px; height: 25px"
+                      src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/supplier.png"
+                      mode=""
+                    />
+                  </view>
 
-                  <view
-                    v-if="userInfo.userTypes.includes(2)"
-                    class="tag"
-                    style="
-                      background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/supplier.png')
-                        no-repeat;
-                      background-size: 55% 100%;
-                    "
-                  ></view>
-
-                  <view
-                    v-if="userInfo.userTypes.includes(5)"
-                    class="tag"
-                    style="
-                      background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/agent.png')
-                        no-repeat;
-                      background-size: 55% 100%;
-                    "
-                  ></view>
+                  <view v-else-if="userInfo.userTypes.includes(5)" class="tag">
+                    <image
+                      style="width: 70px; height: 25px"
+                      src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/agent.png"
+                      mode=""
+                    />
+                  </view>
 
                   <view
-                    v-if="userInfo.userTypes.includes(6)"
+                    v-else-if="userInfo.userTypes.includes(6)"
                     class="tag"
-                    style="
-                      background: url('https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/partner.png')
-                        no-repeat;
-                      background-size: 55% 100%;
-                    "
-                  ></view>
+                  >
+                  <image
+                      style="width: 70px; height: 25px"
+                      src="https://bucket.sxdirectpurchase.com/wx/static/images/my/tags/partner.png"
+                      mode=""
+                    />
+                  </view>
                   <!-- <view>
                     {{
                       userInfo.userTypes.includes(2)
@@ -179,19 +180,18 @@ export default {
   border-radius: 20px;
 }
 .tag {
-  padding: 0px 20rpx;
-  height: 45rpx;
-  background: linear-gradient(270deg, #f0ff00 0%, #00cf07 100%);
-  background-size: 100% 100%;
-  border-radius: 4rpx;
-  display: flex;
-  flex-direction: row;
-  justify-content: center;
-  align-items: center;
-  font-size: 24rpx;
-  color: #ffffff;
-  width: 100px;
-  margin-left: 5px;
+  margin-left:10px
+  // padding: 0px 20rpx;
+  // height: 45rpx;
+  // border-radius: 4rpx;
+  // display: flex;
+  // flex-direction: row;
+  // justify-content: center;
+  // align-items: center;
+  // font-size: 24rpx;
+  // color: #ffffff;
+  // width: 100px;
+  // margin-left: 5px;
 }
 .main {
   .item {

+ 7 - 6
pages/views/login.vue

@@ -55,15 +55,16 @@ const onAgreePrivateProtocol = () => {
 };
 
 const handleLoginInfo = () => {
-  // const options = genTestUserSig({
-  //   SDKAppID: uni.$chat_SDKAppID,
-  //   secretKey: uni.$chat_secretKey || userSigs.value,
-  //   userID: inputValue.value,
-  // });
+  const options = genTestUserSig({
+    SDKAppID: uni.$chat_SDKAppID,
+    secretKey: uni.$chat_secretKey,
+    userID: inputValue.value,
+  });
   const loginInfo = {
     SDKAppID: uni.$chat_SDKAppID,
     userID: inputValue.value,
-    userSig: userSigs.value,
+    // userSig: userSigs.value,
+    userSig: options.userSig,
     useUploadPlugin: true,
     framework: `vue${vueVersion}`,
     TIMPush: uni.$TIMPush, // register TencentCloud-TIMPush