Compare commits

..

No commits in common. "153663715961ca34cf04cb79ac1360d58364482a" and "f738c1db94f91b1cf99d5d99752210718099b050" have entirely different histories.

3 changed files with 43 additions and 44 deletions

View File

@ -4,15 +4,15 @@
*/ */
export const TAB_BAR_CONFIG = [ export const TAB_BAR_CONFIG = [
// { {
// text: "在线咨询", text: "在线咨询",
// icon: "/static/tabbar/tabbar-icon1.png", icon: "/static/tabbar/tabbar-icon1.png",
// activeIcon: "/static/tabbar/tabbar-icon1-active.png", activeIcon: "/static/tabbar/tabbar-icon1-active.png",
// pagePath: "/pages/consultation/index", pagePath: "/pages/consultation/index",
// // 可选配置 // 可选配置
// badge: "", // 角标文字 badge: "", // 角标文字
// dot: false, // 是否显示小红点 dot: false, // 是否显示小红点
// }, },
{ {
text: "人工转接", text: "人工转接",
icon: "/static/tabbar/tabbar-icon4.png", icon: "/static/tabbar/tabbar-icon4.png",

View File

@ -73,14 +73,14 @@
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },
// { {
// "path": "pages/consultation/index", "path": "pages/consultation/index",
// "style": { "style": {
// "navigationBarTitleText": "在线咨询", "navigationBarTitleText": "在线咨询",
// "enablePullDownRefresh": false, "enablePullDownRefresh": false,
// "navigationStyle": "custom" "navigationStyle": "custom"
// } }
// }, },
{ {
"path": "pages/transfer/index", "path": "pages/transfer/index",
"style": { "style": {
@ -134,13 +134,12 @@
"borderStyle": "black", "borderStyle": "black",
"backgroundColor": "#ffffff", "backgroundColor": "#ffffff",
"list": [ "list": [
// 线便 {
// { "pagePath": "pages/consultation/index",
// "pagePath": "pages/consultation/index", "iconPath": "static/tabbar/icon_home.png",
// "iconPath": "static/tabbar/icon_home.png", "selectedIconPath": "static/tabbar/icon_home_active.png",
// "selectedIconPath": "static/tabbar/icon_home_active.png", "text": "在线咨询"
// "text": "在线咨询" },
// },
{ {
"pagePath": "pages/transfer/index", "pagePath": "pages/transfer/index",
"iconPath": "static/tabbar/icon_message.png", "iconPath": "static/tabbar/icon_message.png",

View File

@ -231,7 +231,7 @@ export default {
this.isLoading = true; this.isLoading = true;
try { try {
const res = await this.$u.api.GetDialogueListApi({ const res = await this.$u.api.GetDialogueListApi({
"Item1.OnlineConsultationType": 1, "Item1.OnlineConsultationType": 2,
}); });
const list = (res && res.data && res.data.item1) || []; const list = (res && res.data && res.data.item1) || [];
this.chatList = this.normalizeDialogueList(list); this.chatList = this.normalizeDialogueList(list);