This commit is contained in:
yanran200730
2021-11-23 14:19:06 +08:00
6 changed files with 31 additions and 39 deletions

View File

@@ -67,7 +67,7 @@
params: null, params: null,
} }
}, },
onLoad() { created() {
this.$dict.load("meetingNoticeBefore", "meetingNoticeAfter", "meetStatus"); this.$dict.load("meetingNoticeBefore", "meetingNoticeAfter", "meetStatus");
}, },
computed: { computed: {

View File

@@ -72,7 +72,7 @@
<div @click="add(1)">发布会议</div> <div @click="add(1)">发布会议</div>
</div> </div>
</div> </div>
<u-datetime-picker mode="datetime" :show="show" :value="value" @confirm="confirm"></u-datetime-picker> <u-picker mode="time" v-model="show" :params="params" @confirm="confirm"></u-picker>
<AiBack ref="aiBack" v-if="!userSelect"/> <AiBack ref="aiBack" v-if="!userSelect"/>
<AiSelectEnterprise :visible.sync="userSelect" :value="form.attendees" v-if="userSelect" <AiSelectEnterprise :visible.sync="userSelect" :value="form.attendees" v-if="userSelect"
@change="change"></AiSelectEnterprise> @change="change"></AiSelectEnterprise>
@@ -188,29 +188,19 @@
}) })
}, },
confirm(e) { confirm(e) {
const date = new Date(e.value); if (new Date().getTime() / 1000 > e.timestamp) return this.$u.toast("选择时间不能小于当前时间")
const year = date.getFullYear();
const month = date.getMonth() + 1;
const day = date.getDate();
const hours = date.getHours();
const minutes = date.getMinutes();
const seconds = date.getSeconds();
const weekday = date.getDay();
if (new Date().getTime() / 1000 > e.value) return this.$u.toast("选择时间不能小于当前时间")
if (this.index == 0) { if (this.index == 0) {
this.form.startTime = {year,month,day,timestamp:e.vaule} this.form.startTime = {...e}
this.form.startTime.time = hours + ":" + minutes this.form.startTime.time = e.hour + ":" + (e.minute.length > 1 ? e.minute : ("0" + e.minute))
this.form.startTime.weekday = '一二三四五六'.charAt(weekday) this.form.startTime.weekday = '一二三四五六'.charAt(new Date(e.timestamp * 1000).getDay())
} else { } else {
if (this.form.startTime.timestamp >= e.value) { if (this.form.startTime.timestamp >= e.timestamp) {
return this.$u.toast("结束时间不能小于开始时间"); return this.$u.toast("结束时间不能小于开始时间");
} }
this.form.endTime = {year,month,day,timestamp:e.vaule} this.form.endTime = {...e}
this.form.endTime.time = hours + ":" + minutes this.form.endTime.time = e.hour + ":" + (e.minute.length > 1 ? e.minute : ("0" + e.minute))
this.form.endTime.weekday = '一二三四五六'.charAt(weekday) this.form.endTime.weekday = '一二三四五六'.charAt(new Date(e.timestamp * 1000).getDay())
} }
this.show = false;
}, },
add(status) { add(status) {

View File

@@ -1,7 +1,7 @@
<template> <template>
<div class="belong-to-me"> <div class="belong-to-me">
<ai-top-fixed> <ai-top-fixed>
<u-tabs :list="tabs" :is-scroll="false" :current="index" bar-width="88" :height="96" @click="change"></u-tabs> <u-tabs :list="tabs" :is-scroll="false" :current="index" bar-width="88" :height="96" @change="change"></u-tabs>
</ai-top-fixed> </ai-top-fixed>
<div class="body"> <div class="body">
<template v-if="list.length"> <template v-if="list.length">
@@ -97,7 +97,7 @@
this.$parent.comp = "detail" this.$parent.comp = "detail"
}, },
change(e) { change(e) {
this.index = e.index this.index = e
this.current = 1 this.current = 1
this.getList() this.getList()
}, },

View File

@@ -2,7 +2,7 @@
<div class="notification"> <div class="notification">
<template v-if="showList"> <template v-if="showList">
<AiTopFixed> <AiTopFixed>
<u-tabs :list="tabs" :is-scroll="false" height="96" bar-width="192" @click="change"></u-tabs> <u-tabs :list="tabs" :is-scroll="false" height="96" :current="index" bar-width="192" @change="change"></u-tabs>
</AiTopFixed> </AiTopFixed>
<div class="body" v-if="dataList.length"> <div class="body" v-if="dataList.length">
<div class="card" v-for="(item,idx) in dataList" :key="idx" @click="handeClick(item)"> <div class="card" v-for="(item,idx) in dataList" :key="idx" @click="handeClick(item)">
@@ -45,11 +45,11 @@
<AiEmpty v-else/> <AiEmpty v-else/>
<u-loadmore :status="status" v-if="dataList.length"/> <u-loadmore :status="status" v-if="dataList.length"/>
<AiAdd @add="add"/> <AiAdd @add="add"/>
<u-popup :show="show" mode="bottom" closeOnClickOverlay> <u-popup v-model="show" mode="bottom">
<div class="popup-wrap"> <div class="popup-wrap">
<u-row justify="between"> <u-row justify="between">
<div class="colum" v-for="(item,index) in optList" :key="index" @click="handleOpt(item)"> <div class="colum" v-for="(item,index) in optList" :key="index" @click="handleOpt(item)">
<u-icon :name="item.icon" size="50" :custom-style="{backgroundColor:'#fff',borderRadius:'8px'}"></u-icon> <u-icon :name="item.icon" size="100" :custom-style="{backgroundColor:'#fff',borderRadius:'8px'}"></u-icon>
<u-gap height="16"></u-gap> <u-gap height="16"></u-gap>
{{item.name}} {{item.name}}
</div> </div>
@@ -57,9 +57,9 @@
<div class="btn" @click="show=false">关闭</div> <div class="btn" @click="show=false">关闭</div>
</div> </div>
</u-popup> </u-popup>
<u-modal :show="modal" :content="'是否确定' + content + '该公告?'" title="" show-confirm-button <u-modal v-model="modal" :content="'是否确定' + content + '该公告?'" title="" show-confirm-button
show-cancel-button confirm-text="确定" cancel-text="取消" show-cancel-button confirm-text="确定" cancel-text="取消"
@confirm="confirm" :closeOnClickOverlay="true" @cancel="modal=false"></u-modal> @confirm="confirm" @cancel="modal=false"></u-modal>
</template> </template>
<component :is="comp" v-else :params="params"></component> <component :is="comp" v-else :params="params"></component>
</div> </div>
@@ -223,7 +223,7 @@
this.showList = false; this.showList = false;
}, },
change(val) { change(val) {
this.index = val.index; this.index = val;
this.current = 1; this.current = 1;
this.getList() this.getList()
}, },

View File

@@ -61,7 +61,7 @@
</div> </div>
</div> </div>
<AiBack ref="aiBack" v-if="!userSelect"/> <AiBack ref="aiBack" v-if="!userSelect"/>
<u-datetime-picker :show="show" mode="datetime" :value="Number(new Date())" @confirm="confirm"></u-datetime-picker> <u-picker v-model="show" mode="time" :params="options" @confirm="confirm"></u-picker>
<AiSelectEnterprise :visible.sync="userSelect" :value="form.persons" v-if="userSelect" @change="change"></AiSelectEnterprise> <AiSelectEnterprise :visible.sync="userSelect" :value="form.persons" v-if="userSelect" @change="change"></AiSelectEnterprise>
</div> </div>
</template> </template>
@@ -92,6 +92,15 @@
}, },
userSelect: false, userSelect: false,
flag: null, flag: null,
options: {
year: true,
month: true,
day: true,
hour: true,
minute: true,
second: true,
timestamp: true,
},
} }
}, },
watch:{ watch:{
@@ -112,17 +121,10 @@
}, },
methods: { methods: {
confirm(e){ confirm(e){
const date = new Date(e.value); if(e.timestamp< (Date.now()/1000)|0){
if(e.value< (Date.now())|0){
return this.$u.toast("发送时间不能小于当前时间"); return this.$u.toast("发送时间不能小于当前时间");
} }
const year = date.getFullYear(); this.form.releaseTime = `${e.year}-${e.month}-${e.day} ${e.hour}:${e.minute}:${e.second}`;
const month = date.getMonth() + 1;
const day = date.getDate();
const hours = date.getHours();
const minutes = date.getMinutes();
this.form.releaseTime = `${year}-${month}-${day} ${hours}:${minutes}:00`;
this.show = false;
}, },
fileList(e){ fileList(e){
this.form.files = e this.form.files = e

View File

@@ -5,7 +5,7 @@
</AiTopFixed> </AiTopFixed>
<div class="body"> <div class="body">
<div class="item" v-for="(item,index) in (current==0 ? list.read : list.unRead)" :key="index"> <div class="item" v-for="(item,index) in (current==0 ? list.read : list.unRead)" :key="index">
<u-avatar :src="item.avatar" mode="square" size="38"></u-avatar> <u-avatar :src="item.avatar" mode="square" size="76"></u-avatar>
<span class="name">{{item.name}}</span> <span class="name">{{item.name}}</span>
</div> </div>
</div> </div>