潘超林 3 月之前
父节点
当前提交
f7a1ca66af
共有 5 个文件被更改,包括 26 次插入6 次删除
  1. 2 2
      App.vue
  2. 1 1
      TUIKit/components/TUIChat/message-list/index.vue
  3. 15 0
      TUIKit/components/TUIConversation/index.vue
  4. 8 2
      app.config.js
  5. 0 1
      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 = "acecc3c3e0a1a83c7b8fa383467bd658c8bb1297c1f2f1f15088add915e68504"; // Your secretKey
+// const secretKey = "82f8b45664eb3252cf02f939aaac43cd81ba25b7c7f94f45be4f05e173e1ab2d"; // 测试key
+const secretKey = "acecc3c3e0a1a83c7b8fa383467bd658c8bb1297c1f2f1f15088add915e68504"; // Your 正式key
 uni.$chat_SDKAppID = SDKAppID;
 uni.$chat_secretKey = secretKey;
 

+ 1 - 1
TUIKit/components/TUIChat/message-list/index.vue

@@ -348,7 +348,7 @@ onMounted(() => {
   uni.$on("scroll-to-bottom", scrollToLatestMessage);
 
   let personId = uni.getStorageSync("personId");
-  if (personId != "136895") {
+  if (personId != requestConfig.customerId) {
     isMerchant();
   }
 });

+ 15 - 0
TUIKit/components/TUIConversation/index.vue

@@ -42,8 +42,22 @@
       <TUISearch searchType="global" />
       <ConversationHeader v-if="isShowConversationHeader" ref="headerRef" />
       <ConversationNetwork /> -->
+      <div
+        v-if="!userId"
+        style="
+          display: flex;
+          flex-direction: column;
+          align-items: center;
+          height: 90vh;
+          justify-content: center;
+        "
+      >
+        <img src="@/static/empaty.jpg" style="width: 200px; height: 150px" />
+        <span style="margin-top: 20px"> 暂无会话~</span>
+      </div>
 
       <ConversationList
+        v-else
         ref="conversationListDomRef"
         class="tui-conversation-list"
         @handleSwitchConversation="handleSwitchConversation"
@@ -80,6 +94,7 @@ onLoad((option) => {
   initCount();
   initCountServer();
 });
+const userId = uni.getStorageSync("userid");
 const hdxsCount = ref("");
 const fwCount = ref("");
 async function initCount() {

+ 8 - 2
app.config.js

@@ -11,19 +11,25 @@ export const requestConfig = {
 	 * 开发环境请求的根路径
 	 */
 	devBaseUrl: 'https://app.sxdirectpurchase.com/api',
-	// devBaseUrl: 'https://admin-test.sxdirectpurchase.com/api/',
+	// devBaseUrl: 'https://admin-test.sxdirectpurchase.com/api',
+	// devBaseUrl: 'http://192.168.1.9:9001/api',
+
 	/**
 	 * 测试环境请求的根路径
 	 */
-	// testBaseUrl: 'http://192.168.0.22:9001/api/',//中亿云
+	// testBaseUrl: 'http://192.168.1.9:9001/api',//中亿云
 	testBaseUrl: 'https://app.sxdirectpurchase.com/api',//WIFI6
+	// testBaseUrl: 'https://admin-test.sxdirectpurchase.com/api',
+
 
 	/**
 	 * 生产环境请求的根路径
 	 */
 	prodBaseUrl: 'https://app.sxdirectpurchase.com/api',
+	// prodBaseUrl: 'https://admin-test.sxdirectpurchase.com/api',
 	// applet.sxdirectpurchase.com
 	staticDir: 'https://bucket.sxdirectpurchase.com/wx',
+	customerId: '136895', //平台客服id
 	/**
 	 * 请求参数相关默认配置
 	 */

+ 0 - 1
pages/views/login.vue

@@ -48,7 +48,6 @@ onLoad((options) => {
     id: id,
   };
   init(params);
-  console.log("userSigsuserSigsuserSigs", userSigs.value);
 });
 
 function getQueryString(name) {