Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

杨树贤 / kefu_server

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Find file
Normal viewHistoryPermalink
Switch branch/tag
  • kefu_server
  • ui
  • kefu_client
  • src
  • store
  • state.js
state.js 1.09 KB
keith's avatar
update
98c8f64f
 
keith committed 5 years ago
1 2
export default {
    platform: 5,                // 平台(渠道)
chenxianqi's avatar
update code
e3a7f5bd
 
chenxianqi committed 5 years ago
3
    isShowPageLoading: false,   // page loading
keith's avatar
update
98c8f64f
 
keith committed 5 years ago
4 5 6 7 8 9 10 11
    isShowHeader: true,         // 是否显示header
    isMobile: true,             // 是否是移动端
    isArtificial: false,        // 是否是人工服务
    uid: 0,                     // 业务平台的ID
    userAccount: 0,             // 用户账号
    artificialAccount: null,    // 客服账号ID
    robotInfo: null,            // 机器人信息
    robotAccount: null,         // 机器人账号ID
chenxianqi's avatar
update code
825ca73b
 
chenxianqi committed 5 years ago
12 13 14
    messages: [],               // 消息列表
    isLoadMorEnd: false,        // 是否已经到末尾
    userLocal: "",              // 用户地理位置
chenxianqi's avatar
publish v2
b8f7c6ac
 
chenxianqi committed 5 years ago
15
    AmapAPPKey: "73ef1dc5c5ea086e7330b95aede42953", // 高德地图web appkey
chenxianqi's avatar
update code
825ca73b
 
chenxianqi committed 5 years ago
16 17 18
    isLoadMorLoading: false,    // 是否在加装更多消息loading
    userInfo: {},               // 用户信息
    companyInfo: null,          // 公司信息
chenxianqi's avatar
update code
f64ed92d
 
chenxianqi committed 5 years ago
19
    configs: {},                // 配置信息
chenxianqi's avatar
update code
e3a7f5bd
 
chenxianqi committed 5 years ago
20 21 22 23 24

    // workorder
    workorders: [],             // 工单列表
    workorderTypes: [],         // 工单类型列表
    
keith's avatar
update
98c8f64f
 
keith committed 5 years ago
25
}