mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 09:39:38 +08:00
描述:会议协议
This commit is contained in:
parent
98e6e03ed8
commit
1f5e7d9e99
12
miniprogram/api/meeting/protocol.js
Normal file
12
miniprogram/api/meeting/protocol.js
Normal file
@ -0,0 +1,12 @@
|
||||
import {
|
||||
request
|
||||
} from '../selfRequest';
|
||||
|
||||
|
||||
// 查询协议
|
||||
export function policyRq() {
|
||||
return request({
|
||||
url: '/api/visitor/policy',
|
||||
method: "get",
|
||||
});
|
||||
}
|
@ -34,11 +34,8 @@
|
||||
</view>
|
||||
|
||||
<!-- 声明信息 -->
|
||||
<!-- <view class="statementView">
|
||||
<view class="content">如果您需要获取增值服务,请随时联系我们的现场运营人员如果您需要获取增值服务,请随时联系我们的现场运营人员</view>
|
||||
<view class="content">张三:15116171818</view>
|
||||
<view class="content">李四:15161718999</view>
|
||||
<view class="content">我们将竭诚为您提供帮助</view>
|
||||
</view> -->
|
||||
<view class="statementView">
|
||||
如果您需要获取增值服务,请随时联系我们的现场运营人员,张三:15116171818、李四:15161718999,我们将竭诚为您提供帮助
|
||||
</view>
|
||||
|
||||
</view>
|
@ -78,15 +78,8 @@
|
||||
}
|
||||
|
||||
.statementView {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 80rpx 40rpx;
|
||||
}
|
||||
|
||||
.statementView .content {
|
||||
font-size: 24rpx;
|
||||
text-indent: 48rpx;
|
||||
color: gray;
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
}
|
||||
|
@ -1,24 +1,36 @@
|
||||
// pages/meeting/meetingRoom/meetingProtocol/meetingProtocol.js
|
||||
import {
|
||||
policyRq
|
||||
} from "../../../../api/meeting/protocol.js"
|
||||
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
content : `1:乙方应保证会议室内财物的安全,并注意防火、防盗,会议期间不影响甲方的正常办公。会议室内的设备使用需提前向甲方商议。
|
||||
2:需保持会议中安静,严禁在会议室内及公共场所大声喧哗、嬉戏打闹,影响甲方正常工作。
|
||||
3:保持使用场地的清洁卫生,严禁在会议室范围内乱吐痰、乱扔垃圾,未经甲方同意不能在使用场地内搭设棚架。
|
||||
4:乙方不得擅自将该会议室转租、转让、转借给第三人,或和第三人交换使用。
|
||||
5:请于使用前如实提供会议内容,不得在会议室内进行非法违纪活动,如经发现即停止服务并做报警处理。`
|
||||
content: ``
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
let _this = this;
|
||||
// 页面初始化 options为页面跳转所带来的参数
|
||||
let title = options.title;
|
||||
if (!title) {
|
||||
title = "《服务协议》"
|
||||
}
|
||||
wx.setNavigationBarTitle({
|
||||
title: options.title
|
||||
title
|
||||
})
|
||||
// 查询协议
|
||||
policyRq().then(res => {
|
||||
console.log('policyRq', res);
|
||||
let content = res.data.content;
|
||||
_this.setData({
|
||||
content
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user