Commit 1087998b authored by 吴春's avatar 吴春

提交订单列表显示不占床人数,以及获取和平商旅小程序二维码接口方法

parent d5cc863b
......@@ -2160,7 +2160,9 @@
</p>
<span style="display: block">{{ $t("salesModule.RoomInfo")
}}<span v-if="item.oneSex > 0"
style="color: #e95252">({{ item.oneSex == 1 ? "单男" : "单女" }})</span>:{{ item.orderGuestHouseStr }}</span>
style="color: #e95252">({{ item.oneSex == 1 ? "单男" : "单女" }})</span><span v-if="item.chirdNoNeedBedNum > 0"
style="color: #e95252">(不占床人数{{ item.chirdNoNeedBedNum }}人)</span>:{{ item.orderGuestHouseStr }}</span>
<div>
<span v-if="item.opTipMoney == '' && item.tipMoney != ''"
......
......@@ -3311,7 +3311,7 @@ export default {
// this.addMsg.Remarks = this.addMsg.Remarks + text + ':' + (count-this.addMsg[key]) + ';'
// }
},
// 获取微信二维码
// 获取微信二维码(旅小友)
getWxCode: function (key) {
this.wxLoading = false;
if (this.list[key].wxImage === "") {
......@@ -3335,6 +3335,30 @@ export default {
);
}
},
// 获取微信(和平商旅)二维码
getWxHPSLCode: function (key) {
this.wxLoading = false;
if (this.list[key].wxImage === "") {
this.wxLoading = true;
this.apipost(
"TaskManagemnet_get_GetWeiXinShareHPSL",
{
ConfigId: this.list[key].ConfigID,
TCID: this.list[key].TCID,
},
(res) => {
if (res.data.resultCode == 1) {
let url = res.data.data;
this.list[key].wxImage = url;
this.wxLoading = false;
} else {
this.$message.error("二维码获取失败");
}
},
(err) => {}
);
}
},
toTrip: function (obj) {
this.tripObj.tcid = obj.TCID;
this.tripObj.configId = obj.ConfigID;
......
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