Commit eaf88179 by liang ce

修改cs

parent 00b183ac
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
} }
.mwModalBody picker-view{ .mwModalBody picker-view{
width: 100%; width: 100%;
height: 292rpx;
display: flex; display: flex;
} }
.son2{ .son2{
......
...@@ -347,12 +347,11 @@ create.Page({ ...@@ -347,12 +347,11 @@ create.Page({
this.store.data.participatorList = participatorList this.store.data.participatorList = participatorList
this.store.data.remark = res.data.data.remark || '' this.store.data.remark = res.data.data.remark || ''
this.store.data.recurrenceModel = res.data.data.recurrenceModel this.store.data.recurrenceModel = res.data.data.recurrenceModel
this.setData({ this.setData({
originUserList: participatorList, originUserList: participatorList,
title: res.data.data.title, title: res.data.data.title,
time1: res.data.data.startTime.substring(0, 16), time1: res.data.data.startTime.replace(/-/g, '/'),
time2: res.data.data.endTime.substring(0, 16), time2: res.data.data.endTime.replace(/-/g, '/'),
week1: this.data.weekList[new Date(res.data.data.startTime).getDay()], week1: this.data.weekList[new Date(res.data.data.startTime).getDay()],
week2: this.data.weekList[new Date(res.data.data.endTime).getDay()] week2: this.data.weekList[new Date(res.data.data.endTime).getDay()]
}) })
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
height: 160rpx; height: 160rpx;
background: #ffffff;
} }
.sureBtn view{ .sureBtn view{
background: #3296FA; background: #3296FA;
...@@ -34,6 +35,7 @@ ...@@ -34,6 +35,7 @@
line-height: 112rpx; line-height: 112rpx;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 1px solid rgba(25,31,37,0.12); border-bottom: 1px solid rgba(25,31,37,0.12);
background: #ffffff;
} }
.itemList view{ .itemList view{
flex: 1; flex: 1;
...@@ -54,7 +56,7 @@ ...@@ -54,7 +56,7 @@
} }
.timeView picker-view{ .timeView picker-view{
width: 100%; width: 100%;
height: 280rpx; height: 200rpx;
display: flex; display: flex;
} }
.itemList .isBeOverdue { .itemList .isBeOverdue {
......
...@@ -8,7 +8,7 @@ class Store { ...@@ -8,7 +8,7 @@ class Store {
// 重复 重复机制 // 重复 重复机制
repeatable:0, repeatable:0,
recurrenceModel:{ recurrenceModel:{
model:"no_repeat" model:"no_repeat",
}, },
editList: [{ icon: 'icondingwei', text: '地点' }, { icon: 'iconhuiqiantixing', text: '提醒' }, { icon: 'iconchongfu', text: '重复' }, { icon: 'icondidianmiaoshu', text: '描述' }, { icon: 'iconshanchu', text: '删除' }], editList: [{ icon: 'icondingwei', text: '地点' }, { icon: 'iconhuiqiantixing', text: '提醒' }, { icon: 'iconchongfu', text: '重复' }, { icon: 'icondidianmiaoshu', text: '描述' }, { icon: 'iconshanchu', text: '删除' }],
remark: '', // 会议描述 remark: '', // 会议描述
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment