123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- <template>
- <view :style="'padding-top:'+nvaHeight+'px;'">
- <view class="navbox">
- <uni-nav-bar color="#ffffff" left-icon="left" title="会议预订" :background-color="backgroundColor"
- :border="false" statusBar='true' fixed="true" @clickLeft='getBack'>
- </uni-nav-bar>
- </view>
- <image :src="navbg" class="navbg"></image>
- <view class="zxmain">
- <view class="ytbox">
- <uni-forms ref="form" class="ytforms" :rules="rules" :modelValue="datainfo">
- <view class="ytsbox">
- <view class="yttit">预订信息</view>
- <view class="pt5">
- <uni-forms-item label="预定人员" class="disable" name="visitName">
- <view class="intit">{{datainfo.orderUser}}</view>
- </uni-forms-item>
- <uni-forms-item label="开始时间" name="startTime">
- <uni-datetime-picker v-model="datainfo.startTime">
- <view class="pickbox flexc">
- <view :class="datainfo.startTime?'txr flex1':'coa txr flex1'">{{datainfo.startTime || "请选择开始时间"}}</view>
- <image :src="hupimg" class="hupimg"></image>
- </view>
- </uni-datetime-picker>
- </uni-forms-item>
- <uni-forms-item label="结束时间" name="endTime">
- <uni-datetime-picker v-model="datainfo.endTime" :start="datainfo.startTime">
- <view class="pickbox flexc">
- <view :class="datainfo.endTime?'txr flex1':'coa txr flex1'">{{datainfo.endTime || "请选择结束时间"}}</view>
- <image :src="hupimg" class="hupimg"></image>
- </view>
- </uni-datetime-picker>
- </uni-forms-item>
- <uni-forms-item label="会议室" name="appointmentSite">
- <view class="flex1">
- <w-select
- :list='hyslist'
- v-model="chooseValue"
- valueName='conferenceRoomName'
- keyName="conferenceRoomId"
- :filterable='filterable'
- width='100%'
- height="36px"
- @change='getchangeb'
- >
- </w-select>
- </view>
-
- <!-- <picker class="pickbox" range-key='dictLabel' :value="hysidx"
- :range="hyslist" @change="bindTimeChangea">
- <view class="flexc flex1">
- <view class="flex1 f14" v-if="datainfo.conferenceRoomName&&!hys">{{statusFormat(datainfo.conferenceRoomName,hyslist,'hys')}}</view>
- <view class="flex1 f14" v-else :class="hys?'':'coa'">{{hys||"请选择会议室"}}</view>
- <image :src="hupimg" class="hupimg"></image>
- </view>
- </picker> -->
- </uni-forms-item>
-
- <uni-forms-item label="会议名称" name="conferenceName">
- <uni-easyinput :inputBorder="false" type="textarea" autoHeight v-model="datainfo.conferenceName"
- placeholder="输入会议名称">
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item label="参会人数" name="conferenceNumber">
- <uni-easyinput :inputBorder="false" v-model="datainfo.conferenceNumber"
- type="number"
- placeholder="输入参会人数">
- </uni-easyinput>
- </uni-forms-item>
- </view>
- <view class="ybtn flexcc" @click="getSubmit">确认提交</view>
- <view class="tips">* 为避免重复操作,请先选择时间查看当前会议室是否被占用。</view>
- </view>
-
- </uni-forms>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- import {checkPermi,checkRole} from "@/utils/permission"; // 权限判断函数
- import {getRoomNoList,getRoomyyAdd,getRoomyyPut,getRoomyyDetail} from "@/api/mine/work.js"
- import {getDictionaryFn} from "@/api/mine/register.js"
- import wSelect from "@/work/components/w-select/w-select.vue"
- export default {
- components: {wSelect},
- data() {
- return {
- hupimg:require("@/static/images/order/hup.png"),
- navbg:require("@/static/images/navbg.png"),
- backgroundColor: "transparent",
- nvaHeight: 44,
- marTop: 0, //距离顶部的距离
- stubarHeight: 0, //
- datainfo:{
- "conferenceRoomId": "",//会议室ID
- "conferenceRoomName": "",//会议室名称
- "conferenceRoomAddress": "",//会议室地址
- "orderUser": "",//会议室预约人员名称
- "orderUserId": "",//会议室预约人员id(用户id)
- "conferenceName": "",//会议名称
- "conferenceNumber": "",//会议室人数
- "startTime": "",//会议开始时间
- "endTime": "",//会议结束时间
- },
- rules: {
- startTime: {rules: [{required: true,errorMessage: '请选择开始时间',}]},
- endTime: {rules: [{required: true,errorMessage: '请选择结束时间' } ]},
- conferenceRoomName: {rules: [{required: true,errorMessage: '请选择会议室'} ]},
- conferenceName: {rules: [{required: true,errorMessage: '请输入会议名称'} ]},
- conferenceNumber: {rules: [{required: true,errorMessage: '请输入会议人数'} ]},
- },
- hys:'',
- hysidx:'',
- hyslist:[],
- ptype:'add',
- id:'',
- filterable:true,
- chooseValue:'',
- name:this.$store.state.user.nickName,
- userId:this.$store.state.user.userId,
- }
- },
- onPageScroll(e) {
- var scrollTop = Number(e.scrollTop);
- if (scrollTop > 0) {
- this.backgroundColor = '#0491FD'
- } else {
- this.backgroundColor = 'transparent'
- }
- },
- onLoad: function(e) {
- if(e.data){
- var data=JSON.parse(decodeURIComponent(e.data))
- if(data.type){
- this.ptype=data.type;
- this.id=data.id;
- this.getDetail()
- }
- }else{
- this.datainfo.orderUser=this.name;
- this.datainfo.orderUserId=this.userId;
- }
- // this.init()
- this.getRoomNoList()
- uni.getSystemInfo({
- success: (e) => {
- this.stubarHeight = Number(e.statusBarHeight);
- this.nvaHeight = Number(e.statusBarHeight) + 44;
- }
- })
- },
- onShow() {},
- methods: {
- checkPermi,
- checkRole,
- getBack() {
- uni.navigateBack({
- delta: 1
- })
- },
- bindTimeChangea(e){
- var val=e.detail.value;
- // this.day=val
- },
- init() {
- // 门卫
- // getDictionaryFn('is_read').then(res=>{
- // if(res.code==200){
- // this.ydztlist = res.data.map(v => {
- // return {
- // label: v.dictLabel,
- // value: v.dictValue
- // }
- // })
- // }
- // })
- },
- statusFormat(ite,list,type) {
- var aite=selectValueKey(list, ite);
- if(type=='hys'){
- this.hysidx=aite.key
- }
- return aite.actions;
- },
- getSubmit(){
- var that=this;
- this.$refs.form.validate().then(res => {
- var params = JSON.parse(JSON.stringify(this.datainfo))
- if(!params.conferenceRoomName){
- this.$toast("请选择会议室")
- return
- }
- var regex = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/;
- var s=regex.test(params.startTime);
- var e=regex.test(params.endTime);
- if(!s){
- that.$toast("请选择完整的开始时间")
- return
- }
- if(!e){
- that.$toast("请选择完整的结束时间")
- return
- }
- if(this.ptype=='add'){
- getRoomyyAdd(params).then(res => {
- if (res.code == 200) {
- this.$toast("新增成功")
- uni.$emit('refreshmeetlist')
- setTimeout(function(){
- uni.navigateBack({
- delta:1
- })
- },1200)
- } else {
- this.$toast(res.msg)
- }
- })
- }else{
- getRoomyyPut(params).then(res => {
- if (res.code == 200) {
- this.$toast("修改成功")
- uni.$emit('refreshmeetlist')
- setTimeout(function(){
- uni.navigateBack({
- delta:1
- })
- },1200)
- } else {
- this.$toast(res.msg)
- }
- })
- }
-
- })
-
- },
- getchangeb(e){
- this.datainfo.conferenceRoomId=e.conferenceRoomId;
- this.datainfo.conferenceRoomName=e.conferenceRoomName;
- this.datainfo.conferenceRoomAddress=e.conferenceRoomAddress;
- },
- getRoomNoList() {
- getRoomNoList().then(res => {
- if (res.code == 200) {
- this.hyslist=res.rows
- } else {
- this.$toast(res.msg)
- }
- })
- },
- getDetail(){
- getRoomyyDetail(this.id).then(res=>{
- if(res.code==200){
- this.datainfo=res.data;
- this.chooseValue=res.data.conferenceRoomId
- }
- })
- }
- },
- }
- </script>
- <style>
- /* page {
- background: #ffffff;
- } */
- </style>
- <style lang="scss" scoped>
- .ytbox /deep/ .uni-forms .uni-forms-item{padding: 10rpx 26rpx 10rpx;border: 2rpx solid #0391FD;margin-bottom: 24rpx;border-radius: 12rpx;}
- .ytbox /deep/ .uni-forms-item__label{flex: 0 0 auto;width: 144rpx !important;font-size: 28rpx;font-weight: bold;position: relative;color: #161616;text-align-last: justify;}
- .ytbox /deep/ .uni-forms-item__label text{flex: 1;}
- .ytbox /deep/ .uni-forms-item__label .is-required{position: absolute;right: 0;color: #F10C31;margin-top: 16rpx;}
- .ytbox /deep/ uni-textarea{flex: 1;width: auto;text-align: right;}
- .ytbox /deep/ .uni-textarea-placeholder{font-size: 28rpx;color: #aaaaaa !important;}
- .ytbox /deep/ .uni-easyinput__placeholder-class{font-size: 28rpx;color: #aaaaaa;}
- .ytbox /deep/ .uni-forms-item__content{display: flex;align-items: center;flex-direction: row;}
- .ytbox /deep/ .uni-easyinput{flex: 1;text-align: right;}
- .ytbox /deep/ .uni-easyinput__content-input{font-size: 28rpx;}
- .ytbox /deep/ .uni-forms-item__error{margin-top:0rpx;left: auto;right: 0;}
- .ytbox /deep/ .uni-easyinput__content-textarea{min-height: 48rpx;}
- .disable{background: #EFF0F2;border: none !important;}
- .ytbox{width: 684rpx;margin: 0 auto;padding-top: 24rpx;position: relative;flex: 1;overflow: auto;background-color: #ffffff;padding-bottom: 4rpx;border-radius: 14rpx;}
- .ytforms{
- .yttit{font-size: 28rpx;font-weight: bold;margin-bottom: 56rpx;
- color: #161616;display: flex;align-items: center;padding: 0rpx 26rpx;box-sizing: border-box;position: relative;
- &::before{content: '';width: 6rpx;height: 34rpx;background: $com-cd3;border-radius: 4rpx;position: absolute;top: 50%;transform: translateY(-50%);left: 0rpx;}
- }
- .ytsbox{background-color: #ffffff;padding: 32rpx 28rpx 0;border-radius: 14rpx;margin-bottom: 24rpx;
- .intit{font-weight: 500;flex: 1;font-size: 26rpx;text-align: right;color: #666666;}
- .pickbox{flex: 1;text-align: right;font-weight: 500;font-size: 28rpx;color: #161616;
- .hupimg{width: 18rpx;height: 14rpx;margin-left: 12rpx;flex: 0 0 auto;}
- }
-
- }
- }
- // 按钮
- .ybtn{width: 100%;height: 90rpx;background: $com-cd3;border-radius: 14rpx;margin: 100rpx auto 0;font-size: 28rpx;font-weight: 500;color: #FFFFFF;
- &.btn1{background-color: #9a9c9e;}
- }
- .tips{font-weight: bold;margin-top: 28rpx;
- font-size: 22rpx;line-height: 34rpx;
- color: #FF0000;}
- .navbox{position: fixed;left: 0;right: 0;top: 0;z-index: 4; }
- .navbg{width: 100%;height: 692rpx;}
- .zxmain{position: relative;padding: 20rpx 32rpx 40rpx;box-sizing: border-box;display: flex;
- min-height: calc(100vh - 44px);
- }
- </style>
|