mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 08:29:38 +08:00
描述:服务
This commit is contained in:
parent
b9712c63ef
commit
728538d458
@ -160,4 +160,13 @@ export function inviteRecordPersonListRq(id) {
|
|||||||
url: '/api/roomContent/inviteRecord?reservationId=' + id,
|
url: '/api/roomContent/inviteRecord?reservationId=' + id,
|
||||||
method: "get",
|
method: "get",
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 会议室-查询服务信息
|
||||||
|
export function queryServiceMsgRq(data) {
|
||||||
|
return request({
|
||||||
|
url: '/api/showroom/listByType',
|
||||||
|
method: "post",
|
||||||
|
data
|
||||||
|
});
|
||||||
}
|
}
|
@ -1,7 +1,8 @@
|
|||||||
const app = getApp()
|
const app = getApp()
|
||||||
|
|
||||||
import {
|
import {
|
||||||
getMeetingRoomServiceAndEquipmentRq
|
getMeetingRoomServiceAndEquipmentRq,
|
||||||
|
queryServiceMsgRq
|
||||||
} from "../../../../api/meeting/meetingRoom.js"
|
} from "../../../../api/meeting/meetingRoom.js"
|
||||||
|
|
||||||
|
|
||||||
@ -13,7 +14,8 @@ Page({
|
|||||||
data: {
|
data: {
|
||||||
IMG_NAME: app.IMG_NAME,
|
IMG_NAME: app.IMG_NAME,
|
||||||
meetingRoomId: null,
|
meetingRoomId: null,
|
||||||
detail: {}
|
detail: {},
|
||||||
|
msg: {},
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -36,6 +38,20 @@ Page({
|
|||||||
detail: res.data
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
<!-- 声明信息 -->
|
<!-- 声明信息 -->
|
||||||
<view class="statementView">
|
<view class="statementView">
|
||||||
如果您需要获取增值服务,请随时联系现场运营人员:郑经理:18739908795,赵经理:15239159276 ,我们将竭诚为您提供帮助
|
{{msg}}
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
Loading…
x
Reference in New Issue
Block a user