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
fcf55a9429
commit
629284276e
@ -53,7 +53,8 @@
|
||||
"pages/meeting/visitorIinvitation/visitorIinvitation",
|
||||
"pages/meeting/meetingRoom/meetingRoom",
|
||||
"pages/meeting/meetingRoom/meetingFacilities/meetingFacilities",
|
||||
"pages/meeting/meetingRoom/meetingOrder/meetingOrder"
|
||||
"pages/meeting/meetingRoom/meetingOrder/meetingOrder",
|
||||
"pages/meeting/meetingRoom/meetingProtocol/meetingProtocol"
|
||||
],
|
||||
"window": {
|
||||
"backgroundTextStyle": "light",
|
||||
|
@ -17,8 +17,8 @@ Page({
|
||||
bg: '/profile/static/index/banner/3.jpg',
|
||||
url: ''
|
||||
}],
|
||||
protocolFlag : true,
|
||||
protocolTitle : '《会议室服务协议》',
|
||||
protocolFlag: true,
|
||||
protocolTitle: '《会议室服务协议》',
|
||||
},
|
||||
|
||||
/**
|
||||
@ -29,11 +29,19 @@ Page({
|
||||
},
|
||||
|
||||
// 协议点击
|
||||
protocolChange(){
|
||||
protocolChange() {
|
||||
let _this = this;
|
||||
_this.setData({
|
||||
protocolFlag: !_this.data.protocolFlag
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
// 跳转协议
|
||||
jumpProtocol() {
|
||||
let _this = this;
|
||||
wx.navigateTo({
|
||||
url: "/pages/meeting/meetingRoom/meetingProtocol/meetingProtocol?title=" + _this.data.protocolTitle,
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
|
@ -72,7 +72,7 @@
|
||||
<view class="protocolView">
|
||||
<van-checkbox value="{{ protocolFlag }}" bind:tap="protocolChange" icon-size="26rpx"></van-checkbox>
|
||||
<view bind:tap="protocolChange">我已阅读并同意</view>
|
||||
<view class="protocolTitle">{{protocolTitle}}</view>
|
||||
<view class="protocolTitle" bind:tap="jumpProtocol">{{protocolTitle}}</view>
|
||||
</view>
|
||||
|
||||
<!-- 合计 -->
|
||||
|
@ -0,0 +1,73 @@
|
||||
// pages/meeting/meetingRoom/meetingProtocol/meetingProtocol.js
|
||||
Page({
|
||||
|
||||
/**
|
||||
* 页面的初始数据
|
||||
*/
|
||||
data: {
|
||||
content : `1:乙方应保证会议室内财物的安全,并注意防火、防盗,会议期间不影响甲方的正常办公。会议室内的设备使用需提前向甲方商议。
|
||||
2:需保持会议中安静,严禁在会议室内及公共场所大声喧哗、嬉戏打闹,影响甲方正常工作。
|
||||
3:保持使用场地的清洁卫生,严禁在会议室范围内乱吐痰、乱扔垃圾,未经甲方同意不能在使用场地内搭设棚架。
|
||||
4:乙方不得擅自将该会议室转租、转让、转借给第三人,或和第三人交换使用。
|
||||
5:请于使用前如实提供会议内容,不得在会议室内进行非法违纪活动,如经发现即停止服务并做报警处理。`
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面加载
|
||||
*/
|
||||
onLoad(options) {
|
||||
// 页面初始化 options为页面跳转所带来的参数
|
||||
wx.setNavigationBarTitle({
|
||||
title: options.title
|
||||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面初次渲染完成
|
||||
*/
|
||||
onReady() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面显示
|
||||
*/
|
||||
onShow() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面隐藏
|
||||
*/
|
||||
onHide() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 生命周期函数--监听页面卸载
|
||||
*/
|
||||
onUnload() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面相关事件处理函数--监听用户下拉动作
|
||||
*/
|
||||
onPullDownRefresh() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 页面上拉触底事件的处理函数
|
||||
*/
|
||||
onReachBottom() {
|
||||
|
||||
},
|
||||
|
||||
/**
|
||||
* 用户点击右上角分享
|
||||
*/
|
||||
onShareAppMessage() {
|
||||
|
||||
}
|
||||
})
|
@ -0,0 +1,3 @@
|
||||
{
|
||||
"usingComponents": {}
|
||||
}
|
@ -0,0 +1,3 @@
|
||||
<view class="containerView">
|
||||
{{content}}
|
||||
</view>
|
@ -0,0 +1,10 @@
|
||||
.containerView {
|
||||
box-sizing: border-box;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
overflow: auto;
|
||||
background: #ffffff;
|
||||
padding: 20rpx 30rpx 100rpx;
|
||||
font-size: 28rpx;
|
||||
word-break: break-all;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user