Commit d255bb95 authored by 黄奎's avatar 黄奎

页面 修改

parent 0a34ae3f
...@@ -415,7 +415,7 @@ ...@@ -415,7 +415,7 @@
if (basicData.OpenState == 1) { if (basicData.OpenState == 1) {
basicData["AfterOpenModify"] = true; basicData["AfterOpenModify"] = true;
} }
if (this.$route.query.openState) { if (this.$route.query.openState) {
basicData.OpenState = this.$route.query.openState; basicData.OpenState = this.$route.query.openState;
} }
//"另存"新增团期 //"另存"新增团期
...@@ -424,7 +424,7 @@ ...@@ -424,7 +424,7 @@
} }
basicData.TeamType = this.TeamType; basicData.TeamType = this.TeamType;
basicData.IsUpdateHotel = this.PostConfig.IsUpdateHotel; basicData.IsUpdateHotel = this.PostConfig.IsUpdateHotel;
this.apipost( this.apipost(
"travel_post_SetTravelConfigInfo", "travel_post_SetTravelConfigInfo",
basicData, basicData,
...@@ -596,6 +596,7 @@ ...@@ -596,6 +596,7 @@
this.journeyList.DayNum = configData.Days.length; this.journeyList.DayNum = configData.Days.length;
this.journeyList.NightNum = this.journeyList.DayNum - 1; this.journeyList.NightNum = this.journeyList.DayNum - 1;
this.journeyList.DayList = dayList; this.journeyList.DayList = dayList;
//产品特色 //产品特色
this.FeatureData.FeatureType = 3; this.FeatureData.FeatureType = 3;
this.FeatureData.FeatureContent = configData.Feature; this.FeatureData.FeatureContent = configData.Feature;
...@@ -660,6 +661,7 @@ ...@@ -660,6 +661,7 @@
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
var tempData = res.data.data; var tempData = res.data.data;
if (tempData.Feature != null) { if (tempData.Feature != null) {
this.FeatureData.ID = tempData.Feature.ID; this.FeatureData.ID = tempData.Feature.ID;
this.FeatureData.ConfigId = tempData.Feature.ConfigId; this.FeatureData.ConfigId = tempData.Feature.ConfigId;
...@@ -765,12 +767,17 @@ ...@@ -765,12 +767,17 @@
this.journeyList.NightNum = tempData.NightNum; this.journeyList.NightNum = tempData.NightNum;
this.journeyList.ReturnArriveCityId = tempData.ReturnArriveCityId; this.journeyList.ReturnArriveCityId = tempData.ReturnArriveCityId;
this.journeyList.StartCityId = tempData.StartCityId; this.journeyList.StartCityId = tempData.StartCityId;
this.journeyList.DayList = tempData.DayList; if (this.TeamType == 1) {
this.journeyList.DayList = tempData.DayList2;
} else {
this.journeyList.DayList = tempData.DayList;
}
this.journeyList.DayList.forEach(x => { this.journeyList.DayList.forEach(x => {
x["HotelChooseArray"] = []; x["HotelChooseArray"] = [];
x["ChooseScenicArray"] = []; x["ChooseScenicArray"] = [];
x["isHide"] = false; x["isHide"] = false;
}); });
if (tempData.OfferList != null) { if (tempData.OfferList != null) {
this.OfferList = tempData.OfferList; this.OfferList = tempData.OfferList;
} }
......
...@@ -331,7 +331,7 @@ ...@@ -331,7 +331,7 @@
} }
}, },
created() { created() {
}, },
computed: { computed: {
//获取行程天数 //获取行程天数
......
...@@ -100,7 +100,7 @@ export function sendChatroomFileMsg ({state, commit}, obj) { ...@@ -100,7 +100,7 @@ export function sendChatroomFileMsg ({state, commit}, obj) {
uploadprogress: function (data) { uploadprogress: function (data) {
}, },
uploaderror: function () { uploaderror: function () {
console && console.log('上传失败')
}, },
uploaddone: function (error, file) { uploaddone: function (error, file) {
......
...@@ -37,7 +37,7 @@ export function initChatroomSDK ({ state, commit, dispatch }, obj) { ...@@ -37,7 +37,7 @@ export function initChatroomSDK ({ state, commit, dispatch }, obj) {
}, },
onwillreconnect: function onChatroomWillReconnect (obj) { onwillreconnect: function onChatroomWillReconnect (obj) {
// 此时说明 `SDK` 已经断开连接, 请开发者在界面上提示用户连接已断开, 而且正在重新建立连接 // 此时说明 `SDK` 已经断开连接, 请开发者在界面上提示用户连接已断开, 而且正在重新建立连接
console.log('即将重连', obj)
}, },
ondisconnect: function onChatroomDisconnect (error) { ondisconnect: function onChatroomDisconnect (error) {
// 此时说明 `SDK` 处于断开状态, 切换聊天室也会触发次回调 // 此时说明 `SDK` 处于断开状态, 切换聊天室也会触发次回调
...@@ -64,7 +64,7 @@ export function initChatroomSDK ({ state, commit, dispatch }, obj) { ...@@ -64,7 +64,7 @@ export function initChatroomSDK ({ state, commit, dispatch }, obj) {
} }
break break
default: default:
console.log(error.message)
break break
} }
} }
......
...@@ -343,7 +343,7 @@ export function sendMsgReceipt({ ...@@ -343,7 +343,7 @@ export function sendMsgReceipt({
} }
function sendMsgReceiptDone(error, obj) { function sendMsgReceiptDone(error, obj) {
console.log('发送消息已读回执' + (!error ? '成功' : '失败'), error, obj)
} }
export function getHistoryMsgs({ export function getHistoryMsgs({
......
...@@ -270,7 +270,7 @@ export function checkTeamMsgReceipt({state}, msgs) { ...@@ -270,7 +270,7 @@ export function checkTeamMsgReceipt({state}, msgs) {
nim.sendTeamMsgReceipt({ nim.sendTeamMsgReceipt({
teamMsgReceipts: needToPeceiptList, teamMsgReceipts: needToPeceiptList,
done: (err, obj, content) => { done: (err, obj, content) => {
console.log('标记群组消息已读' + (!err ? '成功' : '失败'));
if (!err) { if (!err) {
store.commit('updateSentReceipedMap', needToPeceiptList) store.commit('updateSentReceipedMap', needToPeceiptList)
} }
...@@ -304,7 +304,6 @@ export function getTeamMsgReads({ state }, needQuery) { ...@@ -304,7 +304,6 @@ export function getTeamMsgReads({ state }, needQuery) {
teamMsgReceipts: needQuery, teamMsgReceipts: needQuery,
done: (error, obj, content) => { done: (error, obj, content) => {
if (error) { if (error) {
console.log('获取群组消息已读' + error)
}else { }else {
store.commit('updateTeamMsgReads', content) store.commit('updateTeamMsgReads', content)
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment