wansfa 1 anno fa
parent
commit
a9141728c6

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "fs",
   "version": "1.1.0",
-  "description": "御君方管理平台",
+  "description": "云联融智管理平台",
   "author": "FS",
   "license": "MIT",
   "scripts": {

+ 1 - 1
src/layout/components/Sidebar/Logo.vue

@@ -26,7 +26,7 @@ export default {
   },
   data() {
     return {
-      title: '御君方管理平台',
+      title: '云联融智管理平台',
       logo: logoImg
     }
   }

+ 3 - 3
src/layout/index.vue

@@ -137,7 +137,7 @@ export default {
             this.qwIm.initASocket(userId,true,this);
             // 监听socket连接
             this.qwIm.aSoket.onopen = function() {
-                console.log("socket 连接成功...");
+                console.log("aSocket 连接成功...");
             };
             this.qwIm.aSoket.onerror = function() {
                 console.log("连接错误")
@@ -146,7 +146,7 @@ export default {
             const IMUI = this.$refs.IMUI;
             this.qwIm.aSoket.onmessage = function(res) {
                   var data=JSON.parse(res.data);
-                  //console.log("收到服务端内容", JSON.stringify(data));
+                  console.log("aSocket收到服务端内容", JSON.stringify(data));
                   if(data.cmd=="heartbeat"){ //收到心跳数据不处理
                       console.log("heartbeat");
                   }
@@ -168,7 +168,7 @@ export default {
             };
             // 监听socket重连
             this.qwIm.aSoket.onreconnect = function(res) {
-                console.log("socket 断线重连...")
+                console.log("aSocket 断线重连...")
             };
         }
     },

+ 1 - 5
src/router/index.js

@@ -54,11 +54,7 @@ export const constantRoutes = [
     component: (resolve) => require(['@/views/error/401'], resolve),
     hidden: true
   },
-  {
-    path: '/wx',
-    // component: () => import('@/page/help'),
-    hidden: true,
-  },
+
   {
     path: '',
     component: Layout,

+ 1 - 1
src/settings.js

@@ -1,5 +1,5 @@
 module.exports = {
-  title: '御君方管理平台',
+  title: '云联融智管理平台',
 
  
 

+ 0 - 1
src/store/modules/user.js

@@ -57,7 +57,6 @@ const user = {
       state.callTitle = title
     },
     SET_QW_USER: (state, qwUser) => {
-      console.log("qxj SET_QW_USER:"+JSON.stringify(qwUser))
       state.qwUser = qwUser
     },
 

+ 0 - 5
src/utils/webSocket.js

@@ -39,11 +39,6 @@ export default {
                 //     }, 1500);
                 // }
 
-                // that.$notify.success({
-                //     title: '正在呼叫'+mobile,
-                //     showClose: false
-                // });
-
                 this.hasLogin=true;
             }
             

+ 1 - 1
src/views/company/companyUser/card/index.vue

@@ -208,7 +208,7 @@
       </div>
     </el-dialog>
 
-    <el-dialog :title="addSms.title" :visible.sync="addSms.open" width="800px" append-to-body>
+    <el-dialog :title="addSms.title" :visible.sync="addSms.open" width="1200px" append-to-body>
         <add-sms ref="sms" @close="closeSms()" @handleAddCustomer="handleAddCustomer()" @handleAddCustomer1 ="handleAddCustomer1"  ></add-sms>
     </el-dialog>
 

+ 1 - 1
src/views/crm/customer/my.vue

@@ -71,7 +71,7 @@
               />
         </el-select>
       </el-form-item>
-      <el-form-item label="客户创建时间" prop="createTimeRange">
+      <el-form-item label="创建时间" prop="createTimeRange">
         <el-date-picker
           style="width:205.4px"
           clearable size="small"

+ 1 - 2
src/views/login.vue

@@ -1,9 +1,8 @@
 <template>
   <div class="login" id="loginBox">
     <div class="login-con">
-        <div class="title">御君方管理平台</div>
+        <div class="title">云联融智管理平台</div>
       <el-form   ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
-      
         <el-form-item prop="username">
           <el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
             <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />

+ 3 - 3
src/views/qw/qwChat/chatmsg.vue

@@ -291,12 +291,12 @@ export default {
             this.accountList = response.rows;
             if(this.accountList.length>0){
                 this.qwUser=this.accountList[0];
-                this.queryParams.qwUserId=this.qwUser.qwUserId;
-                this.qwUser.userId=this.queryParams.qwUserId;
                 if(this.qwUser.qwUserId==null){
-                    this.msgError("暂未扫码登录企微号");
+                    this.msgError("该账号暂未扫码绑定企微");
                     return;
                 }
+                this.queryParams.qwUserId=this.qwUser.qwUserId;
+                this.qwUser.userId=this.queryParams.qwUserId;
                 this.setQwUserInfo();
                 this.getContacts();  //获取联系人信息
                 this.getConversation();   //获取会话信息

+ 1 - 1
vue.config.js

@@ -13,7 +13,7 @@ function resolve(dir) {
   return path.join(__dirname, dir)
 }
 
-const name = defaultSettings.title || '御君方管理平台' // 标题
+const name = defaultSettings.title || '云联融智管理平台' // 标题
 
 const port = process.env.port || process.env.npm_config_port || 80 // 端口