Quellcode durchsuchen

消息未读定时获取, loading

lyn7568 vor 6 Jahren
Ursprung
Commit
1576e953f8

+ 35 - 14
src/layout/TheHeader.vue

@ -10,8 +10,8 @@
10 10
        </div>
11 11
        <div class="wrapper-right">
12 12
          <div v-if="account">
13
            <!-- <a class="marLeft marLeft_1" href='/#/inform'>通知({{informCount}})</a> -->
14
            <a class="marLeft marLeft_1" href='/#/miniChat'>消息({{unreadCount}})</a>
13
            <!-- <a class="marLeft marLeft_1" href='/#/inform'><el-badge :value="informCount" :max="99">通知</el-badge></a> -->
14
            <a class="marLeft marLeft_1" href='/#/miniChat'><el-badge :value="unreadCount" :max="99">消息</el-badge></a>
15 15
            <el-dropdown>
16 16
              <span class="el-dropdown-link" style="cursor:pointer">
17 17
                {{account}}<i class="el-icon-arrow-down el-icon--right"></i>
@ -93,7 +93,8 @@
93 93
        kexiuLink: ekexiuUrl,
94 94
        plat: '',
95 95
        unreadCount: 0,
96
        informCount: 0
96
        informCount: 0,
97
        refreshUnread: ''
97 98
      };
98 99
    },
99 100
    computed: {
@ -140,36 +141,47 @@
140 141
        }).catch(() => {})
141 142
      },
142 143
      queryMsgUnread() {
144
        var that = this
143 145
        this.$axios.get('/ajax/msg/unread', {}, function(res) {
144 146
          if (res.success) {
145
            var count = 0
146
            if (res.data > 99) {
147
              count = '99+'
147
            that.unreadCount = res.data
148
            if (that && !that._isDestroyed) {
149
              that.refreshUnread = setTimeout(() => {
150
                that.queryMsgUnread()
151
              }, 1000)
148 152
            } else {
149
              count = res.data
153
              that.refreshUnread = ''
150 154
            }
151
            this.unreadCount = count
152 155
          }
153 156
        })
154 157
      },
155 158
      queryInformCount() {
159
        // var that = this
156 160
        // this.$axios.get('/ajax/inform/unread', {}, function(res) {
157 161
        //   if (res.success) {
158
        //     var count = 0
159
        //     if (res.data > 99) {
160
        //       count = '99+'
162
        //     that.informCount = res.data
163
        //     if (that && !that._isDestroyed) {
164
        //       that.refreshInformCount = setTimeout(() => {
165
        //         that.queryInformCount()
166
        //       }, 1000)
161 167
        //     } else {
162
        //       count = res.data
168
        //       that.refreshInformCount = ''
163 169
        //     }
164
        //     this.informCount = count
165 170
        //   }
166 171
        // })
167 172
      }
173
    },
174
    beforeDestroy() {
175
      var that = this
176
      this.$once('hook:beforeDestroy', () => {
177
        clearTimeout(that.refreshUnread)
178
        // clearTimeout(that.refreshInformCount)
179
      })
168 180
    }
169 181
  };
170 182
</script>
171 183
172
<style rel="stylesheet/scss" lang="scss" scoped>
184
<style rel="stylesheet/scss" lang="scss">
173 185
.el-menu-item,.el-menu--horizontal,.el-menu--horizontal .el-menu-item{
174 186
  border:none;
175 187
}
@ -188,6 +200,15 @@
188 200
  margin-left:20px;
189 201
  min-width:62px;
190 202
}
203
.header .top-wrapper .contain-wrapper .marLeft .el-badge{
204
  padding-right: 10px;
205
}
206
.header .top-wrapper .contain-wrapper .marLeft .el-badge .el-badge__content.is-fixed{
207
  top: 12px;
208
  right: 15px;
209
  border: none;
210
  line-height: 16px;
211
}
191 212
.header .top-wrapper .contain-wrapper .marLeft.marLeft_1{
192 213
  min-width:0;
193 214
}

+ 1 - 0
src/pages/center/router/index.js

@ -17,6 +17,7 @@ const constantRouterMap = [
17 17
      },
18 18
      {
19 19
        path: '/myDemands',
20
        alwaysShow: true,
20 21
        component: (resolve) => require(['../views/myDemands/index'], resolve),
21 22
        name: 'myDemands',
22 23
        meta: { title: '我的需求' }

+ 7 - 11
src/pages/center/views/common/Sidebar/index.vue

@ -13,25 +13,21 @@ import SidebarItem from './SidebarItem'
13 13
14 14
export default {
15 15
  components: { SidebarItem },
16
  watch: {
17
    bindCompany(val) {
18
      this.bindCompany = val
19
    }
20
  },
16 21
  computed: {
17 22
    ...Vuex.mapGetters([
18 23
      'bindCompany'
19 24
    ]),
20 25
    routes() {
21 26
      var aRouter = this.$router.options.routes
22
      var dRouter = []
23 27
      if (!this.bindCompany) {
24
        for (let i = 0; i < aRouter[0].children.length; ++i) {
25
          var Ltm = []
26
          if (aRouter[0].children[i].name !== 'myBuseiness') {
27
            Ltm.push(aRouter[0].children[i])
28
          }
29
        }
30
        dRouter.push(Ltm)
31
      } else {
32
        dRouter = aRouter
28
        aRouter[0].children.splice(2, 1)
33 29
      }
34
      return dRouter
30
      return aRouter
35 31
    }
36 32
  }
37 33
}

+ 18 - 27
src/pages/center/views/modifyData.vue

@ -32,12 +32,12 @@
32 32
              <el-input v-model="ruleForm2.email" placeholder="请输入联系邮箱" maxlength="100"></el-input>
33 33
            </el-form-item>
34 34
            <el-form-item label="所在城市" prop="addr">
35
              <cityPicker v-if="ruleForm2.addr" @paren="toshow" :addrCode="ruleForm2.addr"></cityPicker>
35
              <cityPicker @paren="toshow" :addrCode="ruleForm2.addr"></cityPicker>
36 36
            </el-form-item>
37 37
          </el-col>
38 38
          <el-col :span="12">
39 39
            <el-form-item prop="head">
40
              <uploadFile :uploadImg='uploadImg' v-on:uploadfun="uploadfun" :upImgsStr="upImgsStr"></uploadFile>
40
              <uploadFile :uploadImg="uploadImg" v-on:uploadfun="uploadfun" :upImgsStr="upImgsStr"></uploadFile>
41 41
            </el-form-item>
42 42
          </el-col>
43 43
          <el-col :span="24" class="el-btn-col">
@ -52,16 +52,14 @@
52 52
</template>
53 53
54 54
<script>
55
  import uploadFile from '@/components/uploadFile/index';
55
  import uploadFile from '@/components/uploadFile'
56 56
  import cityPicker from '@/components/CityPicker'
57 57
  export default {
58 58
    data() {
59 59
      return {
60
        province: '',
61
        city: '',
62 60
        upImgsStr: '',
63 61
        uploadImg: {
64
          url: '/ajax/product/logo',
62
          url: '/ajax/user/head',
65 63
          width: '200px',
66 64
          height: '200px',
67 65
          tip: '上传头像'
@ -93,7 +91,7 @@
93 91
    },
94 92
    created() {
95 93
      let id = localStorage.getItem('userid');
96
      this.$axios.get('/ajax/sys/user/get', {id}, res => { // 拉取user_info
94
      this.$axios.get('/ajax/sys/user/get', {id}, res => {
97 95
        if (res.success && res.data) {
98 96
          const response = res.data;
99 97
          this.ruleForm2 = {
@ -106,28 +104,16 @@
106 104
            email: response.email,
107 105
            addr: response.addr,
108 106
            head: response.head
109
          };
110
          this.upImgsStr = response.head;
111
          this.province = `${response.addr.substr(0, 2)}0000`;
112
          this.city = response.addr;
107
          }
108
          this.upImgsStr = response.head
113 109
        }
114 110
      })
115 111
    },
116 112
    methods: {
117
      uploadfun(value) {
118
        this.ruleForm2.head = value
119
      },
120
      toshow(value) {
121
        this.ruleForm2.addr = value
122
      },
123
      // getSelectProv(prov) {
124
      //   this.ruleForm2.addr = prov;
125
      // },
126 113
      submitForm(formName) {
127 114
        this.$refs[formName].validate((valid) => {
128 115
          if (valid) {
129 116
            this.$axios.post('/ajax/sys/user', this.ruleForm2, res => {
130
              console.log(res)
131 117
              if (res.success) {
132 118
                this.$store.commit('SET_ACCOUNT', this.ruleForm2.account);
133 119
                this.$store.commit('SET_HEADPHOTO', this.ruleForm2.head);
@ -137,20 +123,25 @@
137 123
                });
138 124
              } else {
139 125
                this.$store.dispatch('FedLogOut').then(res => {
140
                  this.$message.error('登录状态失效,请重新登录');
141
                  this.$router.push({ path: '/loginPlat' });
126
                  this.$message.error('登录状态失效,请重新登录')
127
                  this.$router.push({ path: '/#/loginPlat' })
142 128
                })
143 129
              }
144 130
            })
145 131
          } else {
146
            console.log('error submit!!');
147 132
            return false;
148 133
          }
149
        });
134
        })
150 135
      },
151 136
      resetForm(formName) {
152
        this.$refs[formName].resetFields();
137
        this.$refs[formName].resetFields()
138
      },
139
      uploadfun(value) {
140
        this.ruleForm2.head = value
141
      },
142
      toshow(value) {
143
        this.ruleForm2.addr = value
153 144
      }
154 145
    }
155
  };
146
  }
156 147
</script>

+ 5 - 10
src/pages/index/views/MiniChat/components/list.vue

@ -55,8 +55,7 @@ export default {
55 55
  computed: {
56 56
    ...Vuex.mapGetters([
57 57
      'selectChatId',
58
      'selectKxUser',
59
      'chatListLocal'
58
      'selectKxUser'
60 59
    ]),
61 60
    showChatLi() {
62 61
      return this.kxUserIdArr.indexOf(this.urlPid) > -1
@ -72,7 +71,6 @@ export default {
72 71
      this.$axios.get('/ajax/msg/idxList', {}, function(res) {
73 72
        if (res.success && res.data) {
74 73
          const dataS = res.data
75
          that.$store.dispatch('chatListLocalAction', dataS)
76 74
          if (that.urlPid) {
77 75
            var hasId = false
78 76
            for (let j = 0; j < dataS.length; ++j) {
@ -119,9 +117,7 @@ export default {
119 117
          }
120 118
          if (that && !that._isDestroyed) {
121 119
            that.refreshListTime = setTimeout(() => {
122
              if (that && !that._isDestroyed) {
123
                that.queryChatList()
124
              }
120
              that.queryChatList()
125 121
            }, 1000)
126 122
          } else {
127 123
            that.refreshListTime = ''
@ -132,12 +128,11 @@ export default {
132 128
    handelView(id, num, us) {
133 129
      this.$store.dispatch('selectSession', id)
134 130
      this.$store.dispatch('selectKxUserAction', us)
135
      for (let m = 0; m < this.chatListLocal.length; ++m) {
136
        if (this.chatListLocal[m].pid === id) {
131
      this.chatList.map(item => {
132
        if (item.pid === id) {
137 133
          this.$store.dispatch('ifFirstChatActiion', true)
138
          break
139 134
        }
140
      }
135
      })
141 136
      if (num > 0) {
142 137
        this.readedOperate(id)
143 138
      }

+ 4 - 5
src/pages/index/views/MiniChat/components/message.vue

@ -107,9 +107,7 @@ export default {
107 107
          }
108 108
          if (that && !that._isDestroyed) {
109 109
            that.refreshChatTime = setTimeout(() => {
110
              if (that && !that._isDestroyed) {
111
                that.queryRefreshChatDetal()
112
              }
110
              that.queryRefreshChatDetal()
113 111
            }, 1000)
114 112
          } else {
115 113
            that.refreshChatTime = ''
@ -129,13 +127,14 @@ export default {
129 127
      return d.getTime()
130 128
    },
131 129
    compareTwo(index, b) {
132
      var f = ''
130
      var f = 0
133 131
      var l = this.timeCTen(b)
134 132
      let s = 10 * 60 * 1000
135 133
      if (index !== 0) {
136 134
        f = this.timeCTen(this.chatDetailLocal[index - 1].opTime)
137 135
      }
138
      return index !== 0 && (l - f) > s
136
      let k = (l - f) - s
137
      return k < 0
139 138
    }
140 139
  },
141 140
  beforeDestroy() {

+ 7 - 0
src/pages/index/views/MiniChat/components/text.vue

@ -30,6 +30,12 @@ export default {
30 30
      'chatDetailLocal'
31 31
    ])
32 32
  },
33
  watch: {
34
    ifFirstChat(val) {
35
      console.log(val)
36
      this.ifFirstChat = val
37
    }
38
  },
33 39
  methods: {
34 40
    onKeyup (e) {
35 41
      if (e.keyCode === 13) {
@ -46,6 +52,7 @@ export default {
46 52
        }, 1000)
47 53
      } else {
48 54
        var url = '/ajax/msg/fsend'
55
        console.log(that.ifFirstChat)
49 56
        if (that.ifFirstChat) {
50 57
          url = '/ajax/msg/send'
51 58
        }

+ 6 - 2
src/pages/index/views/ViewAboutUs.vue

@ -1,7 +1,7 @@
1 1
<template>
2 2
  <div class="aboutUs">
3 3
    <div class="content-title content-title-center">平台介绍</div>
4
    <div class="plat-info" v-html="aboutUs"></div>
4
    <div class="plat-info" v-html="aboutUs" v-loading="loading"></div>
5 5
    <BackTop></BackTop>
6 6
  </div>
7 7
</template>
@ -12,7 +12,8 @@
12 12
  export default {
13 13
    data() {
14 14
      return {
15
        aboutUs: ''
15
        aboutUs: '',
16
        loading: true,
16 17
      };
17 18
    },
18 19
    created() {
@ -20,8 +21,10 @@
20 21
    },
21 22
    methods: {
22 23
      getAboutUs() {
24
        this.loading = true
23 25
        this.$axios.get('/ajax/platform/get', {
24 26
        }, (res) => {
27
          this.loading = false
25 28
          this.aboutUs = getFormatCode(res.data.descp);
26 29
        });
27 30
      }
@ -31,6 +34,7 @@
31 34
32 35
<style scoped>
33 36
  .aboutUs{
37
    min-height:370px;
34 38
    margin-bottom:20px;
35 39
    padding:20px;
36 40
    background: #fff;

+ 6 - 3
src/pages/index/views/ViewExpertPool/expItem.vue

@ -56,15 +56,18 @@
56 56
                        obj[m].offt = formatOfft(obj[m], true)
57 57
                      }
58 58
                      setTimeout(() => {
59
                        that.$parent.loadingState = false
59 60
                        that.userData = obj
60 61
                      }, 1000);
61 62
                    }
62 63
                  }
63 64
                })
64 65
              }
65
            };
66
          };
67
        });
66
            } else {
67
              that.$parent.loadingState = false
68
            }
69
          }
70
        })
68 71
      }
69 72
    }
70 73
  };

+ 6 - 1
src/pages/index/views/ViewExpertPool/index.vue

@ -1,6 +1,6 @@
1 1
<template>
2 2
	<div class="expert">
3
		<div class="content-wrapper block-wrapper">
3
		<div class="content-wrapper block-wrapper" style="min-height:400px" v-loading="loadingState">
4 4
			<div class="content-title content-title-center">平台特约专家</div>
5 5
			<expItem></expItem>
6 6
		</div>
@ -12,6 +12,11 @@
12 12
	import expItem from './expItem';
13 13
14 14
	export default {
15
		data() {
16
			return {
17
				loadingState: true
18
			}
19
		},
15 20
    components: {
16 21
      expItem
17 22
    }

+ 3 - 1
src/pages/index/views/ViewFindResource/index.vue

@ -14,7 +14,7 @@
14 14
            <li>检测服务</li>
15 15
          </ul>
16 16
        </div> -->
17
        <div class="tab-contain">
17
        <div class="tab-contain" v-loading="loading">
18 18
          <div v-show="!ifDefault" v-if="platResources.length">
19 19
            <baseResource v-for="item in platResources" :key="item.index" :itemSingle="item"></baseResource>
20 20
            <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
@ -52,6 +52,7 @@
52 52
        },
53 53
        keyVal: '',
54 54
        platResources: [],
55
        loading: true,
55 56
        loadingModalShow: true, // 是否显示按钮
56 57
        loadingComplete: false, // 是否全部加载
57 58
        isFormSearch: false, // 数据加载
@ -75,6 +76,7 @@
75 76
          id: this.dataO.resId,
76 77
          rows: this.rows
77 78
        }, (res) => {
79
          this.loading = false
78 80
          if (res.success) {
79 81
            var $info = res.data;
80 82
            if ($info.length > 0) {

+ 3 - 1
src/pages/index/views/ViewFindResult/index.vue

@ -7,7 +7,7 @@
7 7
        </el-input>
8 8
      </div>
9 9
      <div class="block-wrapper">
10
        <div class="tab-contain">
10
        <div class="tab-contain" v-loading="loading">
11 11
          <div v-show="!ifDefault" v-if="platResources.length">
12 12
            <baseResult v-for="item in platResources" :key="item.index" :itemSingle="item"></baseResult>
13 13
            <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
@ -45,6 +45,7 @@
45 45
        },
46 46
        keyVal: '',
47 47
        platResources: [],
48
        loading: true,
48 49
        loadingModalShow: true, // 是否显示按钮
49 50
        loadingComplete: false, // 是否全部加载
50 51
        isFormSearch: false, // 数据加载
@ -65,6 +66,7 @@
65 66
          id: this.dataO.patId,
66 67
          rows: this.rows
67 68
        }, (res) => {
69
          this.loading = false
68 70
          if (res.success) {
69 71
            var $info = res.data;
70 72
            if ($info.length > 0) {

+ 3 - 1
src/pages/index/views/ViewFindServe/index.vue

@ -14,7 +14,7 @@
14 14
            <li>检测服务</li>
15 15
          </ul>
16 16
        </div> -->
17
        <div class="tab-contain">
17
        <div class="tab-contain" v-loading="loading">
18 18
          <div v-show="!ifDefault" v-if="platServices.length">
19 19
            <baseService v-for="item in platServices" :key="item.index" :itemSingle="item"></baseService>
20 20
            <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="searchLower"></Loading>
@ -52,6 +52,7 @@
52 52
        },
53 53
        keyVal: '',
54 54
        platServices: [],
55
        loading: true,
55 56
        loadingModalShow: true, // 是否显示按钮
56 57
        loadingComplete: false, // 是否全部加载
57 58
        isFormSearch: false, // 数据加载
@ -72,6 +73,7 @@
72 73
            id: this.dataO.serId,
73 74
            rows: this.rows
74 75
        }, (res) => {
76
          this.loading = false
75 77
          if (res.success) {
76 78
            var $info = res.data;
77 79
            if ($info.length > 0) {

+ 6 - 1
src/pages/index/views/ViewOrganization/index.vue

@ -1,6 +1,6 @@
1 1
<template>
2 2
	<div class="cooperation">
3
		<div class="content-wrapper block-wrapper">
3
		<div class="content-wrapper block-wrapper" style="min-height:400px" v-loading="loadingState">
4 4
			<div class="content-title content-title-center">平台合作机构</div>
5 5
			<orgItem></orgItem>
6 6
		</div>
@ -12,6 +12,11 @@
12 12
	import orgItem from './orgItem';
13 13
14 14
	export default {
15
		data() {
16
			return {
17
				loadingState: true
18
			}
19
		},
15 20
    components: {
16 21
      orgItem
17 22
    }

+ 7 - 5
src/pages/index/views/ViewOrganization/orgItem.vue

@ -27,7 +27,6 @@
27 27
    },
28 28
    methods: {
29 29
      ResidentOrgs() {
30
        var that = this
31 30
        var that = this
32 31
        that.$axios.get('/ajax/org/list', {}, (res) => {
33 32
          if (res.success) {
@ -58,16 +57,19 @@
58 57
                        }
59 58
                      }
60 59
                      setTimeout(() => {
60
                        that.$parent.loadingState = false
61 61
                        that.orgData = obj
62 62
                      }, 1000);
63 63
                    }
64 64
                  }
65 65
                })
66 66
              }
67
            };
68
          };
69
        });
67
            } else {
68
              that.$parent.loadingState = false
69
            }
70
          }
71
        })
70 72
      }
71 73
    }
72
  };
74
  }
73 75
</script>

+ 2 - 1
src/pages/index/views/ViewPlatTrend/index.vue

@ -5,7 +5,7 @@
5 5
				<img :src="plat.platimgurl" width="800" height="280">
6 6
			</div>
7 7
			<div class="block-wrapper">
8
				<div class="content-wrapper tab-wrapper">
8
				<div class="content-wrapper tab-wrapper" style="min-height:300px;" v-loading="loadState">
9 9
					<el-tabs v-model="activeName">
10 10
            <el-tab-pane v-for="cata in conCatalog" :key="cata.index" :label="cata.tit" :name="cata.val">
11 11
              <platNews :activeTab="cata.val"></platNews>
@ -37,6 +37,7 @@
37 37
        /* eslint-disable no-undef */
38 38
        plat: PLAT.info,
39 39
        activeName: '1',
40
        loadState: false,
40 41
        conCatalog: [
41 42
          {
42 43
            val: '1',

+ 2 - 0
src/pages/index/views/ViewPlatTrend/news.vue

@ -33,12 +33,14 @@
33 33
    methods: {
34 34
      queryPaltNews() {
35 35
        var that = this
36
        that.$parent.loadState = true
36 37
        this.$axios.get('/ajax/article/pq', {
37 38
          catalog: that.activeTab,
38 39
          published: 1,
39 40
          pageSize: that.pageSize,
40 41
          pageNo: that.pageNo
41 42
        }, (res) => {
43
          that.$parent.loadState = false
42 44
          if (res.success && res.data) {
43 45
            var $info = res.data.data;
44 46
            if ($info.length > 0) {

+ 4 - 1
src/pages/index/views/ViewRegCompany/index.vue

@ -1,6 +1,6 @@
1 1
<template>
2 2
	<div class="cooperation">
3
		<div class="content-wrapper block-wrapper">
3
		<div class="content-wrapper block-wrapper" style="min-height:410px" v-loading="loading">
4 4
			<div class="block-container">
5 5
				<a class="block-item org-item" v-for="item in orgData" :key="item.index" :href="'company.html?id='+item.id" target="_blank">
6 6
					<div class="item-block-org">
@ -34,6 +34,7 @@
34 34
        pageSize: 30,
35 35
        pageNo: 1,
36 36
        orgData: [],
37
        loading: true,
37 38
        loadingModalShow: true, // 是否显示按钮
38 39
        loadingComplete: false, // 是否全部加载
39 40
        isFormSearch: false, // 数据加载
@ -46,10 +47,12 @@
46 47
    methods: {
47 48
      ResidentOrgs() {
48 49
        var that = this
50
        that.loading = true
49 51
        this.$axios.get('/ajax/company/pq', {
50 52
          pageSize: that.pageSize,
51 53
          pageNo: that.pageNo
52 54
        }, (res) => {
55
          that.loading = false
53 56
          if (res.success) {
54 57
            var $info = res.data.data;
55 58
            if ($info.length > 0) {

+ 1 - 1
src/pages/index/views/logforms/inviteCodeLogin.vue

@ -13,7 +13,7 @@
13 13
            <el-input v-model="ruleForm.email" placeholder="请输入邮箱地址"></el-input>
14 14
          </el-form-item>
15 15
          <el-form-item prop="inviteCode">
16
            <el-input type="password" v-model="ruleForm.inviteCode" placeholder="请输入邀请码" auto-complete="off"></el-input>
16
            <el-input type="password" v-model="ruleForm.inviteCode" placeholder="请输入邀请码" auto-complete="off" @keydown.native="submitForm('ruleForm')"></el-input>
17 17
          </el-form-item>
18 18
          <el-form-item>
19 19
            <el-button type="primary" :disabled="isDisabl" :loading="logining" @click="submitForm('ruleForm')">登录</el-button>

+ 1 - 1
src/pages/index/views/logforms/loginPlat.vue

@ -13,7 +13,7 @@
13 13
            <el-input v-model="ruleForm.phone" placeholder="请输入手机号码"></el-input>
14 14
          </el-form-item>
15 15
          <el-form-item prop="pw">
16
            <el-input type="password" v-model="ruleForm.pw" placeholder="请输入登录密码" auto-complete="off"></el-input>
16
            <el-input type="password" v-model="ruleForm.pw" placeholder="请输入登录密码" auto-complete="off" @keydown.native="submitForm('ruleForm')"></el-input>
17 17
          </el-form-item>
18 18
          <el-form-item></el-form-item>
19 19
          <el-form-item>

+ 0 - 1
src/store/getters.js

@ -3,7 +3,6 @@ const getters = {
3 3
  bindCompany: state => state.user.bindCompany,
4 4
  headPhoto: state => state.user.headPhoto,
5 5
6
  chatListLocal: state => state.chat.chatListLocal,
7 6
  chatDetailLocal: state => state.chat.chatDetailLocal,
8 7
  selectChatId: state => state.chat.selectChatId,
9 8
  selectKxUser: state => state.chat.selectKxUser,

+ 0 - 5
src/store/modules/chat.js

@ -1,6 +1,5 @@
1 1
const chat = {
2 2
  state: {
3
    chatListLocal: [],
4 3
    chatDetailLocal: [],
5 4
    selectChatId: '',
6 5
    selectKxUser: '',
@ -8,9 +7,6 @@ const chat = {
8 7
    kxLastTime: '0'
9 8
  },
10 9
  mutations: {
11
    chatListLocal(state, value) {
12
      state.chatListLocal = value
13
    },
14 10
    chatDetailLocal(state, value) {
15 11
      state.chatDetailLocal = value
16 12
    },
@ -29,7 +25,6 @@ const chat = {
29 25
  },
30 26
31 27
  actions: {
32
    chatListAction: ({ commit }, value) => commit('chatListLocal', value),
33 28
    chatDetailAction: ({ commit }, value) => commit('chatDetailLocal', value),
34 29
    selectSession: ({ commit }, value) => commit('selectChatId', value),
35 30
    selectKxUserAction: ({ commit }, value) => commit('selectKxUser', value),