描述:服务

This commit is contained in:
SelfRidicule 2024-06-19 09:57:10 +08:00
parent b9712c63ef
commit 728538d458
3 changed files with 28 additions and 3 deletions

View File

@ -160,4 +160,13 @@ export function inviteRecordPersonListRq(id) {
url: '/api/roomContent/inviteRecord?reservationId=' + id,
method: "get",
});
}
// 会议室-查询服务信息
export function queryServiceMsgRq(data) {
return request({
url: '/api/showroom/listByType',
method: "post",
data
});
}

View File

@ -1,7 +1,8 @@
const app = getApp()
import {
getMeetingRoomServiceAndEquipmentRq
getMeetingRoomServiceAndEquipmentRq,
queryServiceMsgRq
} from "../../../../api/meeting/meetingRoom.js"
@ -13,7 +14,8 @@ Page({
data: {
IMG_NAME: app.IMG_NAME,
meetingRoomId: null,
detail: {}
detail: {},
msg: {},
},
/**
@ -36,6 +38,20 @@ Page({
detail: res.data
})
})
// 查询服务信息
queryServiceMsgRq({
"dictType": "server_info"
}).then(res => {
console.log('queryServiceMsgRq', res);
for (let i = 0; i < res.data.length; i++) {
if (res.data[i].dictValue == wx.getStorageSync('parkId')) {
_this.setData({
msg: res.data[i].dictLabel
})
break;
}
}
})
},
/**

View File

@ -35,7 +35,7 @@
<!-- 声明信息 -->
<view class="statementView">
如果您需要获取增值服务请随时联系现场运营人员郑经理18739908795赵经理:15239159276 ,我们将竭诚为您提供帮助
{{msg}}
</view>
</view>