Pārlūkot izejas kodu

检查移除功能和修改预约时间功能

seimin 2 gadi atpakaļ
vecāks
revīzija
7109838e7e

+ 332 - 0
components/inspectRemoveModel/inspectRemoveModel.vue

@@ -0,0 +1,332 @@
1
+<template>
2
+	<view class="changeHospital" v-show="disjunctor">
3
+		<view class="changeHospital__wrap">
4
+			<view class="changeHospital__header" v-if="title">
5
+				{{ title }}
6
+			</view>
7
+			<view class="changeHospital__article">
8
+				<text v-if="icon" class="changeHospital__icon icon_transport" :class="[
9
+				    'changeHospital__icon--' + icon,
10
+				    { 'transport-duigou': icon === 'success' },
11
+				    { 'transport-shibai': icon === 'error' },
12
+				    { 'transport-wenhao': icon === 'warn' },
13
+				  ]"></text>
14
+				<view v-if="content" class="changeHospital__content" v-html="content"></view>
15
+				<view class="uni-list-cell" v-show="remove">
16
+					<view class="uni-list-cell-left">
17
+						移除原因:
18
+					</view>
19
+					<view class="uni-list-cell-db-text">
20
+						<radio-group @change="radioChange">
21
+							<label class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in removeReasons"
22
+								:key="item.value">
23
+								<view>
24
+									<radio :value="item.value" :checked="index === current" />
25
+								</view>
26
+								<view>{{item.name}}</view>
27
+							</label>
28
+						</radio-group>
29
+					</view>
30
+				</view>
31
+				<view class="uni-list-cell" v-show="current === 1 || !remove">
32
+					<view class="uni-list-cell-left">
33
+						预约时间:
34
+					</view>
35
+					<view class="uni-list-cell-db-text">
36
+						<uni-datetime-picker v-model="yyTime" returnType="date" :start="startTimestamp" />
37
+					</view>
38
+				</view>
39
+			</view>
40
+			<view class="changeHospital__footer">
41
+				<view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
42
+					{{ operate.ok || "" }}
43
+				</view>
44
+				<view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel"
45
+					hover-class="seimin-btn-hover">
46
+					{{ operate.cancel || "" }}
47
+				</view>
48
+			</view>
49
+		</view>
50
+	</view>
51
+</template>
52
+
53
+<script>
54
+	import {
55
+		post
56
+	} from "../../http/http.js";
57
+	export default {
58
+		data() {
59
+			return {
60
+				startTimestamp: Date.now(),
61
+				removeReasons: [{
62
+						value: '1',
63
+						name: '检查已做',
64
+					},
65
+					{
66
+						value: '2',
67
+						name: '修改检查时间',
68
+					},
69
+				],
70
+				current: -1,
71
+				userData: null,
72
+				hosId: null,
73
+				timer: null,
74
+				yyTime: '', //预约时间
75
+			};
76
+		},
77
+		watch: {
78
+			disjunctor(newValue) {
79
+				console.log(newValue)
80
+				if(newValue){
81
+					this.startTimestamp = Date.now();
82
+					this.current = -1;
83
+					this.yyTime = '';
84
+				}
85
+				if (newValue && this.operate.know == "知道了") {
86
+					this.time = 5;
87
+					this.timer = setInterval(() => {
88
+						this.time--;
89
+						if (this.time <= 0) {
90
+							clearInterval(this.timer);
91
+							this.know();
92
+						}
93
+					}, 1000);
94
+				}
95
+			},
96
+		},
97
+		props: {
98
+			// 是否移除检查
99
+			remove: {
100
+				type: Boolean,
101
+				default: false,
102
+			},
103
+			// 显示隐藏
104
+			disjunctor: {
105
+				type: Boolean,
106
+				default: false,
107
+			},
108
+			// 标题
109
+			title: {
110
+				type: String,
111
+				default: "提示",
112
+			},
113
+			// 图标
114
+			icon: {
115
+				type: String,
116
+				default: "success",
117
+			},
118
+			// 内容
119
+			content: {
120
+				type: String,
121
+				default: "",
122
+			},
123
+			// 操作按钮文字
124
+			operate: {
125
+				type: Object,
126
+				default: () => {
127
+					return {
128
+						ok: "确认",
129
+						cancel: "取消",
130
+					};
131
+				},
132
+			},
133
+			name: {
134
+				type: String,
135
+				default: '交接人'
136
+			}
137
+		},
138
+		methods: {
139
+			radioChange: function(evt) {
140
+				this.yyTime = '';
141
+				this.startTimestamp = Date.now();
142
+				for (let i = 0; i < this.removeReasons.length; i++) {
143
+					if (this.removeReasons[i].value === evt.detail.value) {
144
+						this.current = i;
145
+						break;
146
+					}
147
+				}
148
+			},
149
+			// 确定
150
+			ok() {
151
+				let e = {};
152
+				if (this.current > -1) {
153
+					e.value = this.removeReasons[this.current].value;
154
+				}
155
+				if (this.yyTime) {
156
+					e.yyTime = this.yyTime.Format("yyyy-MM-dd hh:mm:ss");
157
+				}
158
+				this.$emit("ok", e);
159
+			},
160
+			// 取消
161
+			cancel() {
162
+				this.$emit("cancel");
163
+			},
164
+		},
165
+		created() {
166
+			this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
167
+		}
168
+	};
169
+</script>
170
+
171
+<style lang="less" scoped>
172
+	.changeHospital {
173
+		position: fixed;
174
+		left: 0;
175
+		right: 0;
176
+		top: 0;
177
+		bottom: 0;
178
+		background-color: rgba(0, 0, 0, 0.2);
179
+		z-index: 999;
180
+
181
+		.uni-list-cell {
182
+			width: 95%;
183
+			display: flex;
184
+			flex-direction: row;
185
+			// justify-content: space-evenly;
186
+			align-items: center;
187
+			text-align: center;
188
+			margin-top: 32rpx;
189
+
190
+			.uni-list-cell-left {
191
+				flex: 2;
192
+				font-size: 32rpx;
193
+				color: #666;
194
+			}
195
+
196
+			.uni-list-cell-db {
197
+				border: 1px solid #e5e9ed;
198
+				background-color: #fff;
199
+				padding: 16rpx 0;
200
+				flex: 5;
201
+			}
202
+
203
+			.uni-list-cell-db-text {
204
+				flex: 5;
205
+				text-align: left;
206
+			}
207
+		}
208
+
209
+		.changeHospital__wrap {
210
+			width: 90vw;
211
+			position: absolute;
212
+			left: 50%;
213
+			top: 50%;
214
+			transform: translate(-50%, -50%);
215
+			background-color: #fff;
216
+			border-radius: 12rpx;
217
+			color: #666;
218
+
219
+			.changeHospital__header {
220
+				font-size: 36rpx;
221
+				color: #000;
222
+				height: 84rpx;
223
+				display: flex;
224
+				justify-content: center;
225
+				align-items: center;
226
+			}
227
+
228
+			.changeHospital__article {
229
+				width: 90%;
230
+				margin: 0 auto 25rpx;
231
+				padding: 48rpx 0;
232
+				background-color: rgb(249, 250, 251);
233
+				border: 2rpx solid rgb(229, 233, 237);
234
+				border-radius: 12rpx;
235
+				box-sizing: border-box;
236
+				display: flex;
237
+				flex-direction: column;
238
+				justify-content: center;
239
+				align-items: center;
240
+
241
+				&.p0 {
242
+					padding: 0;
243
+				}
244
+
245
+				.changeHospital__icon {
246
+					font-size: 138rpx;
247
+					margin-bottom: 32rpx;
248
+
249
+					&.changeHospital__icon--success {
250
+						color: rgb(52, 179, 73);
251
+					}
252
+
253
+					&.changeHospital__icon--warn {
254
+						color: rgb(245, 165, 35);
255
+					}
256
+
257
+					&.changeHospital__icon--error {
258
+						color: rgb(255, 58, 82);
259
+					}
260
+				}
261
+
262
+				.changeHospital__content {
263
+					font-size: 36rpx;
264
+				}
265
+
266
+				.changeHospital__info {
267
+					font-size: 32rpx;
268
+					color: rgb(102, 102, 102);
269
+				}
270
+
271
+				.specialCloseFlag {
272
+					width: 90%;
273
+					height: 100%;
274
+					padding: 16rpx;
275
+				}
276
+
277
+				.radio-wrap {
278
+					.radio-item {
279
+						margin-top: 16rpx;
280
+
281
+						/deep/ .uni-radio-input-checked {
282
+							background-color: #49b856 !important;
283
+							border-color: #49b856 !important;
284
+						}
285
+					}
286
+				}
287
+			}
288
+
289
+			.changeHospital__footer {
290
+				box-sizing: border-box;
291
+				height: 100rpx;
292
+				border-top: 2rpx solid rgb(229, 233, 237);
293
+				display: flex;
294
+				align-items: center;
295
+
296
+				view {
297
+					height: 100%;
298
+					display: flex;
299
+					align-items: center;
300
+					justify-content: center;
301
+					font-size: 36rpx;
302
+					color: rgb(102, 102, 102);
303
+					position: relative;
304
+
305
+					&:nth-of-type(2)::before {
306
+						content: "";
307
+						position: absolute;
308
+						left: 0;
309
+						bottom: 0;
310
+						width: 2rpx;
311
+						height: 87rpx;
312
+						background-color: rgb(229, 233, 237);
313
+					}
314
+				}
315
+
316
+				.changeHospital__ok {
317
+					flex: 1;
318
+					color: rgb(73, 184, 86);
319
+				}
320
+
321
+				.changeHospital__cancel {
322
+					flex: 1;
323
+				}
324
+
325
+				.changeHospital__know {
326
+					flex: 1;
327
+					color: rgb(73, 184, 86);
328
+				}
329
+			}
330
+		}
331
+	}
332
+</style>

+ 187 - 0
components/uni-datetime-picker/calendar-item.vue

@@ -0,0 +1,187 @@
1
+<template>
2
+	<view class="uni-calendar-item__weeks-box" :class="{
3
+		'uni-calendar-item--disable':weeks.disable,
4
+		'uni-calendar-item--before-checked-x':weeks.beforeMultiple,
5
+		'uni-calendar-item--multiple': weeks.multiple,
6
+		'uni-calendar-item--after-checked-x':weeks.afterMultiple,
7
+		}" @click="choiceDate(weeks)" @mouseenter="handleMousemove(weeks)">
8
+		<view class="uni-calendar-item__weeks-box-item" :class="{
9
+				'uni-calendar-item--checked':calendar.fullDate === weeks.fullDate && (calendar.userChecked || !checkHover),
10
+				'uni-calendar-item--checked-range-text': checkHover,
11
+				'uni-calendar-item--before-checked':weeks.beforeMultiple,
12
+				'uni-calendar-item--multiple': weeks.multiple,
13
+				'uni-calendar-item--after-checked':weeks.afterMultiple,
14
+				'uni-calendar-item--disable':weeks.disable,
15
+				}">
16
+			<text v-if="selected&&weeks.extraInfo" class="uni-calendar-item__weeks-box-circle"></text>
17
+			<text class="uni-calendar-item__weeks-box-text uni-calendar-item__weeks-box-text-disable uni-calendar-item--checked-text">{{weeks.date}}</text>
18
+		</view>
19
+		<view :class="{'uni-calendar-item--isDay': weeks.isDay}"></view>
20
+	</view>
21
+</template>
22
+
23
+<script>
24
+	export default {
25
+		props: {
26
+			weeks: {
27
+				type: Object,
28
+				default () {
29
+					return {}
30
+				}
31
+			},
32
+			calendar: {
33
+				type: Object,
34
+				default: () => {
35
+					return {}
36
+				}
37
+			},
38
+			selected: {
39
+				type: Array,
40
+				default: () => {
41
+					return []
42
+				}
43
+			},
44
+			lunar: {
45
+				type: Boolean,
46
+				default: false
47
+			},
48
+			checkHover: {
49
+				type: Boolean,
50
+				default: false
51
+			}
52
+		},
53
+		methods: {
54
+			choiceDate(weeks) {
55
+				this.$emit('change', weeks)
56
+			},
57
+			handleMousemove(weeks) {
58
+				this.$emit('handleMouse', weeks)
59
+			}
60
+		}
61
+	}
62
+</script>
63
+
64
+<style lang="scss" >
65
+	$uni-primary: #007aff !default;
66
+
67
+	.uni-calendar-item__weeks-box {
68
+		flex: 1;
69
+		/* #ifndef APP-NVUE */
70
+		display: flex;
71
+		/* #endif */
72
+		flex-direction: column;
73
+		justify-content: center;
74
+		align-items: center;
75
+		margin: 1px 0;
76
+		position: relative;
77
+	}
78
+
79
+	.uni-calendar-item__weeks-box-text {
80
+		font-size: 14px;
81
+		// font-family: Lato-Bold, Lato;
82
+		font-weight: bold;
83
+		color: darken($color: $uni-primary, $amount: 40%);
84
+	}
85
+
86
+	.uni-calendar-item__weeks-lunar-text {
87
+		font-size: 12px;
88
+		color: #333;
89
+	}
90
+
91
+	.uni-calendar-item__weeks-box-item {
92
+		position: relative;
93
+		/* #ifndef APP-NVUE */
94
+		display: flex;
95
+		/* #endif */
96
+		flex-direction: column;
97
+		justify-content: center;
98
+		align-items: center;
99
+		width: 40px;
100
+		height: 40px;
101
+		/* #ifdef H5 */
102
+		cursor: pointer;
103
+		/* #endif */
104
+	}
105
+
106
+
107
+	.uni-calendar-item__weeks-box-circle {
108
+		position: absolute;
109
+		top: 5px;
110
+		right: 5px;
111
+		width: 8px;
112
+		height: 8px;
113
+		border-radius: 8px;
114
+		background-color: #dd524d;
115
+
116
+	}
117
+
118
+	.uni-calendar-item__weeks-box .uni-calendar-item--disable {
119
+		// background-color: rgba(249, 249, 249, $uni-opacity-disabled);
120
+		cursor: default;
121
+	}
122
+
123
+	.uni-calendar-item--disable .uni-calendar-item__weeks-box-text-disable {
124
+		color: #D1D1D1;
125
+	}
126
+
127
+	.uni-calendar-item--isDay {
128
+		position: absolute;
129
+		top: 10px;
130
+		right: 17%;
131
+		background-color: #dd524d;
132
+		width:6px;
133
+		height: 6px;
134
+		border-radius: 50%;
135
+	}
136
+
137
+	.uni-calendar-item--extra {
138
+		color: #dd524d;
139
+		opacity: 0.8;
140
+	}
141
+
142
+	.uni-calendar-item__weeks-box .uni-calendar-item--checked {
143
+		background-color: $uni-primary;
144
+		border-radius: 50%;
145
+		box-sizing: border-box;
146
+		border: 3px solid #fff;
147
+	}
148
+
149
+	.uni-calendar-item--checked .uni-calendar-item--checked-text {
150
+		color: #fff;
151
+	}
152
+
153
+	.uni-calendar-item--multiple .uni-calendar-item--checked-range-text {
154
+		color: #333;
155
+	}
156
+
157
+	.uni-calendar-item--multiple {
158
+		background-color:  #F6F7FC;
159
+		// color: #fff;
160
+	}
161
+
162
+	.uni-calendar-item--multiple .uni-calendar-item--before-checked,
163
+	.uni-calendar-item--multiple .uni-calendar-item--after-checked {
164
+		background-color: $uni-primary;
165
+		border-radius: 50%;
166
+		box-sizing: border-box;
167
+		border: 3px solid #F6F7FC;
168
+	}
169
+
170
+	.uni-calendar-item--before-checked .uni-calendar-item--checked-text,
171
+	.uni-calendar-item--after-checked .uni-calendar-item--checked-text {
172
+		color: #fff;
173
+	}
174
+
175
+	.uni-calendar-item--before-checked-x {
176
+		border-top-left-radius: 50px;
177
+		border-bottom-left-radius: 50px;
178
+		box-sizing: border-box;
179
+		background-color: #F6F7FC;
180
+	}
181
+
182
+	.uni-calendar-item--after-checked-x {
183
+		border-top-right-radius: 50px;
184
+		border-bottom-right-radius: 50px;
185
+		background-color: #F6F7FC;
186
+	}
187
+</style>

+ 927 - 0
components/uni-datetime-picker/calendar.vue

@@ -0,0 +1,927 @@
1
+<template>
2
+	<view class="uni-calendar" @mouseleave="leaveCale">
3
+		<view v-if="!insert&&show" class="uni-calendar__mask" :class="{'uni-calendar--mask-show':aniMaskShow}"
4
+			@click="clean();maskClick()"></view>
5
+		<view v-if="insert || show" class="uni-calendar__content"
6
+			:class="{'uni-calendar--fixed':!insert,'uni-calendar--ani-show':aniMaskShow, 'uni-calendar__content-mobile': aniMaskShow}">
7
+			<view class="uni-calendar__header" :class="{'uni-calendar__header-mobile' :!insert}">
8
+				<view v-if="left" class="uni-calendar__header-btn-box" @click.stop="pre">
9
+					<view class="uni-calendar__header-btn uni-calendar--left"></view>
10
+				</view>
11
+				<picker mode="date" :value="date" fields="month" @change="bindDateChange">
12
+					<text
13
+						class="uni-calendar__header-text">{{ (nowDate.year||'') + yearText + ( nowDate.month||'') + monthText}}</text>
14
+				</picker>
15
+				<view v-if="right" class="uni-calendar__header-btn-box" @click.stop="next">
16
+					<view class="uni-calendar__header-btn uni-calendar--right"></view>
17
+				</view>
18
+				<view v-if="!insert" class="dialog-close" @click="clean">
19
+					<view class="dialog-close-plus" data-id="close"></view>
20
+					<view class="dialog-close-plus dialog-close-rotate" data-id="close"></view>
21
+				</view>
22
+
23
+				<!-- <text class="uni-calendar__backtoday" @click="backtoday">回到今天</text> -->
24
+			</view>
25
+			<view class="uni-calendar__box">
26
+				<view v-if="showMonth" class="uni-calendar__box-bg">
27
+					<text class="uni-calendar__box-bg-text">{{nowDate.month}}</text>
28
+				</view>
29
+				<view class="uni-calendar__weeks" style="padding-bottom: 7px;">
30
+					<view class="uni-calendar__weeks-day">
31
+						<text class="uni-calendar__weeks-day-text">{{SUNText}}</text>
32
+					</view>
33
+					<view class="uni-calendar__weeks-day">
34
+						<text class="uni-calendar__weeks-day-text">{{MONText}}</text>
35
+					</view>
36
+					<view class="uni-calendar__weeks-day">
37
+						<text class="uni-calendar__weeks-day-text">{{TUEText}}</text>
38
+					</view>
39
+					<view class="uni-calendar__weeks-day">
40
+						<text class="uni-calendar__weeks-day-text">{{WEDText}}</text>
41
+					</view>
42
+					<view class="uni-calendar__weeks-day">
43
+						<text class="uni-calendar__weeks-day-text">{{THUText}}</text>
44
+					</view>
45
+					<view class="uni-calendar__weeks-day">
46
+						<text class="uni-calendar__weeks-day-text">{{FRIText}}</text>
47
+					</view>
48
+					<view class="uni-calendar__weeks-day">
49
+						<text class="uni-calendar__weeks-day-text">{{SATText}}</text>
50
+					</view>
51
+				</view>
52
+				<view class="uni-calendar__weeks" v-for="(item,weekIndex) in weeks" :key="weekIndex">
53
+					<view class="uni-calendar__weeks-item" v-for="(weeks,weeksIndex) in item" :key="weeksIndex">
54
+						<calendar-item class="uni-calendar-item--hook" :weeks="weeks" :calendar="calendar"
55
+							:selected="selected" :lunar="lunar" :checkHover="range" @change="choiceDate"
56
+							@handleMouse="handleMouse">
57
+						</calendar-item>
58
+					</view>
59
+				</view>
60
+			</view>
61
+			<view v-if="!insert && !range && typeHasTime" class="uni-date-changed uni-calendar--fixed-top"
62
+				style="padding: 0 80px;">
63
+				<view class="uni-date-changed--time-date">{{tempSingleDate ? tempSingleDate : selectDateText}}</view>
64
+				<time-picker type="time" :start="reactStartTime" :end="reactEndTime" v-model="time"
65
+					:disabled="!tempSingleDate" :border="false" :hide-second="hideSecond" class="time-picker-style">
66
+				</time-picker>
67
+			</view>
68
+
69
+			<view v-if="!insert && range && typeHasTime" class="uni-date-changed uni-calendar--fixed-top">
70
+				<view class="uni-date-changed--time-start">
71
+					<view class="uni-date-changed--time-date">{{tempRange.before ? tempRange.before : startDateText}}
72
+					</view>
73
+					<time-picker type="time" :start="reactStartTime" v-model="timeRange.startTime" :border="false"
74
+						:hide-second="hideSecond" :disabled="!tempRange.before" class="time-picker-style">
75
+					</time-picker>
76
+				</view>
77
+				<view style="line-height: 50px;">
78
+					<uni-icons type="arrowthinright" color="#999"></uni-icons>
79
+				</view>
80
+				<view class="uni-date-changed--time-end">
81
+					<view class="uni-date-changed--time-date">{{tempRange.after ? tempRange.after : endDateText}}</view>
82
+					<time-picker type="time" :end="reactEndTime" v-model="timeRange.endTime" :border="false"
83
+						:hide-second="hideSecond" :disabled="!tempRange.after" class="time-picker-style">
84
+					</time-picker>
85
+				</view>
86
+			</view>
87
+			<view v-if="!insert" class="uni-date-changed uni-date-btn--ok">
88
+				<!-- <view class="uni-calendar__header-btn-box">
89
+					<text class="uni-calendar__button-text uni-calendar--fixed-width">{{okText}}</text>
90
+				</view> -->
91
+				<view class="uni-datetime-picker--btn" @click="confirm">{{confirmText}}</view>
92
+			</view>
93
+		</view>
94
+	</view>
95
+</template>
96
+
97
+<script>
98
+	import Calendar from './util.js';
99
+	import calendarItem from './calendar-item.vue'
100
+	import timePicker from './time-picker.vue'
101
+	import {
102
+		initVueI18n
103
+	} from '@dcloudio/uni-i18n'
104
+	import messages from './i18n/index.js'
105
+	const {
106
+		t
107
+	} = initVueI18n(messages)
108
+	/**
109
+	 * Calendar 日历
110
+	 * @description 日历组件可以查看日期,选择任意范围内的日期,打点操作。常用场景如:酒店日期预订、火车机票选择购买日期、上下班打卡等
111
+	 * @tutorial https://ext.dcloud.net.cn/plugin?id=56
112
+	 * @property {String} date 自定义当前时间,默认为今天
113
+	 * @property {Boolean} lunar 显示农历
114
+	 * @property {String} startDate 日期选择范围-开始日期
115
+	 * @property {String} endDate 日期选择范围-结束日期
116
+	 * @property {Boolean} range 范围选择
117
+	 * @property {Boolean} insert = [true|false] 插入模式,默认为false
118
+	 * 	@value true 弹窗模式
119
+	 * 	@value false 插入模式
120
+	 * @property {Boolean} clearDate = [true|false] 弹窗模式是否清空上次选择内容
121
+	 * @property {Array} selected 打点,期待格式[{date: '2019-06-27', info: '签到', data: { custom: '自定义信息', name: '自定义消息头',xxx:xxx... }}]
122
+	 * @property {Boolean} showMonth 是否选择月份为背景
123
+	 * @event {Function} change 日期改变,`insert :ture` 时生效
124
+	 * @event {Function} confirm 确认选择`insert :false` 时生效
125
+	 * @event {Function} monthSwitch 切换月份时触发
126
+	 * @example <uni-calendar :insert="true":lunar="true" :start-date="'2019-3-2'":end-date="'2019-5-20'"@change="change" />
127
+	 */
128
+	export default {
129
+		components: {
130
+			calendarItem,
131
+			timePicker
132
+		},
133
+		props: {
134
+			date: {
135
+				type: String,
136
+				default: ''
137
+			},
138
+			defTime: {
139
+				type: [String, Object],
140
+				default: ''
141
+			},
142
+			selectableTimes: {
143
+				type: [Object],
144
+				default () {
145
+					return {}
146
+				}
147
+			},
148
+			selected: {
149
+				type: Array,
150
+				default () {
151
+					return []
152
+				}
153
+			},
154
+			lunar: {
155
+				type: Boolean,
156
+				default: false
157
+			},
158
+			startDate: {
159
+				type: String,
160
+				default: ''
161
+			},
162
+			endDate: {
163
+				type: String,
164
+				default: ''
165
+			},
166
+			range: {
167
+				type: Boolean,
168
+				default: false
169
+			},
170
+			typeHasTime: {
171
+				type: Boolean,
172
+				default: false
173
+			},
174
+			insert: {
175
+				type: Boolean,
176
+				default: true
177
+			},
178
+			showMonth: {
179
+				type: Boolean,
180
+				default: true
181
+			},
182
+			clearDate: {
183
+				type: Boolean,
184
+				default: true
185
+			},
186
+			left: {
187
+				type: Boolean,
188
+				default: true
189
+			},
190
+			right: {
191
+				type: Boolean,
192
+				default: true
193
+			},
194
+			checkHover: {
195
+				type: Boolean,
196
+				default: true
197
+			},
198
+			hideSecond: {
199
+				type: [Boolean],
200
+				default: false
201
+			},
202
+			pleStatus: {
203
+				type: Object,
204
+				default () {
205
+					return {
206
+						before: '',
207
+						after: '',
208
+						data: [],
209
+						fulldate: ''
210
+					}
211
+				}
212
+			}
213
+		},
214
+		data() {
215
+			return {
216
+				show: false,
217
+				weeks: [],
218
+				calendar: {},
219
+				nowDate: '',
220
+				aniMaskShow: false,
221
+				firstEnter: true,
222
+				time: '',
223
+				timeRange: {
224
+					startTime: '',
225
+					endTime: ''
226
+				},
227
+				tempSingleDate: '',
228
+				tempRange: {
229
+					before: '',
230
+					after: ''
231
+				}
232
+			}
233
+		},
234
+		watch: {
235
+			date: {
236
+				immediate: true,
237
+				handler(newVal, oldVal) {
238
+					if (!this.range) {
239
+						this.tempSingleDate = newVal
240
+						setTimeout(() => {
241
+							this.init(newVal)
242
+						}, 100)
243
+					}
244
+				}
245
+			},
246
+			defTime: {
247
+				immediate: true,
248
+				handler(newVal, oldVal) {
249
+					if (!this.range) {
250
+						this.time = newVal
251
+					} else {
252
+						// console.log('-----', newVal);
253
+						this.timeRange.startTime = newVal.start
254
+						this.timeRange.endTime = newVal.end
255
+					}
256
+				}
257
+			},
258
+			startDate(val) {
259
+				this.cale.resetSatrtDate(val)
260
+				this.cale.setDate(this.nowDate.fullDate)
261
+				this.weeks = this.cale.weeks
262
+			},
263
+			endDate(val) {
264
+				this.cale.resetEndDate(val)
265
+				this.cale.setDate(this.nowDate.fullDate)
266
+				this.weeks = this.cale.weeks
267
+			},
268
+			selected(newVal) {
269
+				this.cale.setSelectInfo(this.nowDate.fullDate, newVal)
270
+				this.weeks = this.cale.weeks
271
+			},
272
+			pleStatus: {
273
+				immediate: true,
274
+				handler(newVal, oldVal) {
275
+					const {
276
+						before,
277
+						after,
278
+						fulldate,
279
+						which
280
+					} = newVal
281
+					this.tempRange.before = before
282
+					this.tempRange.after = after
283
+					setTimeout(() => {
284
+						if (fulldate) {
285
+							this.cale.setHoverMultiple(fulldate)
286
+							if (before && after) {
287
+								this.cale.lastHover = true
288
+								if (this.rangeWithinMonth(after, before)) return
289
+								this.setDate(before)
290
+							} else {
291
+								this.cale.setMultiple(fulldate)
292
+								this.setDate(this.nowDate.fullDate)
293
+								this.calendar.fullDate = ''
294
+								this.cale.lastHover = false
295
+							}
296
+						} else {
297
+							this.cale.setDefaultMultiple(before, after)
298
+							if (which === 'left') {
299
+								this.setDate(before)
300
+								this.weeks = this.cale.weeks
301
+							} else {
302
+								this.setDate(after)
303
+								this.weeks = this.cale.weeks
304
+							}
305
+							this.cale.lastHover = true
306
+						}
307
+					}, 16)
308
+				}
309
+			}
310
+		},
311
+		computed: {
312
+			reactStartTime() {
313
+				const activeDate = this.range ? this.tempRange.before : this.calendar.fullDate
314
+				const res = activeDate === this.startDate ? this.selectableTimes.start : ''
315
+				return res
316
+			},
317
+			reactEndTime() {
318
+				const activeDate = this.range ? this.tempRange.after : this.calendar.fullDate
319
+				const res = activeDate === this.endDate ? this.selectableTimes.end : ''
320
+				return res
321
+			},
322
+			/**
323
+			 * for i18n
324
+			 */
325
+			selectDateText() {
326
+				return t("uni-datetime-picker.selectDate")
327
+			},
328
+			startDateText() {
329
+				return this.startPlaceholder || t("uni-datetime-picker.startDate")
330
+			},
331
+			endDateText() {
332
+				return this.endPlaceholder || t("uni-datetime-picker.endDate")
333
+			},
334
+			okText() {
335
+				return t("uni-datetime-picker.ok")
336
+			},
337
+			yearText() {
338
+				return t("uni-datetime-picker.year")
339
+			},
340
+			monthText() {
341
+				return t("uni-datetime-picker.month")
342
+			},
343
+			MONText() {
344
+				return t("uni-calender.MON")
345
+			},
346
+			TUEText() {
347
+				return t("uni-calender.TUE")
348
+			},
349
+			WEDText() {
350
+				return t("uni-calender.WED")
351
+			},
352
+			THUText() {
353
+				return t("uni-calender.THU")
354
+			},
355
+			FRIText() {
356
+				return t("uni-calender.FRI")
357
+			},
358
+			SATText() {
359
+				return t("uni-calender.SAT")
360
+			},
361
+			SUNText() {
362
+				return t("uni-calender.SUN")
363
+			},
364
+			confirmText() {
365
+				return t("uni-calender.confirm")
366
+			},
367
+		},
368
+		created() {
369
+			// 获取日历方法实例
370
+			this.cale = new Calendar({
371
+				// date: new Date(),
372
+				selected: this.selected,
373
+				startDate: this.startDate,
374
+				endDate: this.endDate,
375
+				range: this.range,
376
+				// multipleStatus: this.pleStatus
377
+			})
378
+			// 选中某一天
379
+			// this.cale.setDate(this.date)
380
+			this.init(this.date)
381
+			// this.setDay
382
+		},
383
+		methods: {
384
+			leaveCale() {
385
+				this.firstEnter = true
386
+			},
387
+			handleMouse(weeks) {
388
+				if (weeks.disable) return
389
+				if (this.cale.lastHover) return
390
+				let {
391
+					before,
392
+					after
393
+				} = this.cale.multipleStatus
394
+				if (!before) return
395
+				this.calendar = weeks
396
+				// 设置范围选
397
+				this.cale.setHoverMultiple(this.calendar.fullDate)
398
+				this.weeks = this.cale.weeks
399
+				// hover时,进入一个日历,更新另一个
400
+				if (this.firstEnter) {
401
+					this.$emit('firstEnterCale', this.cale.multipleStatus)
402
+					this.firstEnter = false
403
+				}
404
+			},
405
+			rangeWithinMonth(A, B) {
406
+				const [yearA, monthA] = A.split('-')
407
+				const [yearB, monthB] = B.split('-')
408
+				return yearA === yearB && monthA === monthB
409
+			},
410
+
411
+			// 取消穿透
412
+			clean() {
413
+				this.close()
414
+			},
415
+
416
+			// 蒙版点击事件
417
+			maskClick() {
418
+				this.$emit('maskClose')
419
+			},
420
+
421
+			clearCalender() {
422
+				if (this.range) {
423
+					this.timeRange.startTime = ''
424
+					this.timeRange.endTime = ''
425
+					this.tempRange.before = ''
426
+					this.tempRange.after = ''
427
+					this.cale.multipleStatus.before = ''
428
+					this.cale.multipleStatus.after = ''
429
+					this.cale.multipleStatus.data = []
430
+					this.cale.lastHover = false
431
+				} else {
432
+					this.time = ''
433
+					this.tempSingleDate = ''
434
+				}
435
+				this.calendar.fullDate = ''
436
+				this.setDate()
437
+			},
438
+
439
+			bindDateChange(e) {
440
+				const value = e.detail.value + '-1'
441
+				this.init(value)
442
+			},
443
+			/**
444
+			 * 初始化日期显示
445
+			 * @param {Object} date
446
+			 */
447
+			init(date) {
448
+				this.cale.setDate(date)
449
+				this.weeks = this.cale.weeks
450
+				this.nowDate = this.calendar = this.cale.getInfo(date)
451
+			},
452
+			// choiceDate(weeks) {
453
+			// 	if (weeks.disable) return
454
+			// 	this.calendar = weeks
455
+			// 	// 设置多选
456
+			// 	this.cale.setMultiple(this.calendar.fullDate, true)
457
+			// 	this.weeks = this.cale.weeks
458
+			// 	this.tempSingleDate = this.calendar.fullDate
459
+			// 	this.tempRange.before = this.cale.multipleStatus.before
460
+			// 	this.tempRange.after = this.cale.multipleStatus.after
461
+			// 	this.change()
462
+			// },
463
+			/**
464
+			 * 打开日历弹窗
465
+			 */
466
+			open() {
467
+				// 弹窗模式并且清理数据
468
+				if (this.clearDate && !this.insert) {
469
+					this.cale.cleanMultipleStatus()
470
+					// this.cale.setDate(this.date)
471
+					this.init(this.date)
472
+				}
473
+				this.show = true
474
+				this.$nextTick(() => {
475
+					setTimeout(() => {
476
+						this.aniMaskShow = true
477
+					}, 50)
478
+				})
479
+			},
480
+			/**
481
+			 * 关闭日历弹窗
482
+			 */
483
+			close() {
484
+				this.aniMaskShow = false
485
+				this.$nextTick(() => {
486
+					setTimeout(() => {
487
+						this.show = false
488
+						this.$emit('close')
489
+					}, 300)
490
+				})
491
+			},
492
+			/**
493
+			 * 确认按钮
494
+			 */
495
+			confirm() {
496
+				if(!this.time){
497
+					return;
498
+				}
499
+				this.setEmit('confirm')
500
+				this.close()
501
+			},
502
+			/**
503
+			 * 变化触发
504
+			 */
505
+			change() {
506
+				if (!this.insert) return
507
+				this.setEmit('change')
508
+			},
509
+			/**
510
+			 * 选择月份触发
511
+			 */
512
+			monthSwitch() {
513
+				let {
514
+					year,
515
+					month
516
+				} = this.nowDate
517
+				this.$emit('monthSwitch', {
518
+					year,
519
+					month: Number(month)
520
+				})
521
+			},
522
+			/**
523
+			 * 派发事件
524
+			 * @param {Object} name
525
+			 */
526
+			setEmit(name) {
527
+				let {
528
+					year,
529
+					month,
530
+					date,
531
+					fullDate,
532
+					lunar,
533
+					extraInfo
534
+				} = this.calendar
535
+				this.$emit(name, {
536
+					range: this.cale.multipleStatus,
537
+					year,
538
+					month,
539
+					date,
540
+					time: this.time,
541
+					timeRange: this.timeRange,
542
+					fulldate: fullDate,
543
+					lunar,
544
+					extraInfo: extraInfo || {}
545
+				})
546
+			},
547
+			/**
548
+			 * 选择天触发
549
+			 * @param {Object} weeks
550
+			 */
551
+			choiceDate(weeks) {
552
+				if (weeks.disable) return
553
+				this.calendar = weeks
554
+				this.calendar.userChecked = true
555
+				// 设置多选
556
+				this.cale.setMultiple(this.calendar.fullDate, true)
557
+				this.weeks = this.cale.weeks
558
+				this.tempSingleDate = this.calendar.fullDate
559
+				const beforeStatus = this.cale.multipleStatus.before
560
+				const beforeDate = new Date(this.cale.multipleStatus.before).getTime()
561
+				const afterDate = new Date(this.cale.multipleStatus.after).getTime()
562
+				if (beforeDate > afterDate && afterDate) {
563
+					this.tempRange.before = this.cale.multipleStatus.after
564
+					this.tempRange.after = this.cale.multipleStatus.before
565
+				} else {
566
+					this.tempRange.before = this.cale.multipleStatus.before
567
+					this.tempRange.after = this.cale.multipleStatus.after
568
+				}
569
+				this.change()
570
+			},
571
+			/**
572
+			 * 回到今天
573
+			 */
574
+			backtoday() {
575
+				let date = this.cale.getDate(new Date()).fullDate
576
+				// this.cale.setDate(date)
577
+				this.init(date)
578
+				this.change()
579
+			},
580
+			/**
581
+			 * 比较时间大小
582
+			 */
583
+			dateCompare(startDate, endDate) {
584
+				// 计算截止时间
585
+				startDate = new Date(startDate.replace('-', '/').replace('-', '/'))
586
+				// 计算详细项的截止时间
587
+				endDate = new Date(endDate.replace('-', '/').replace('-', '/'))
588
+				if (startDate <= endDate) {
589
+					return true
590
+				} else {
591
+					return false
592
+				}
593
+			},
594
+			/**
595
+			 * 上个月
596
+			 */
597
+			pre() {
598
+				const preDate = this.cale.getDate(this.nowDate.fullDate, -1, 'month').fullDate
599
+				this.setDate(preDate)
600
+				this.monthSwitch()
601
+
602
+			},
603
+			/**
604
+			 * 下个月
605
+			 */
606
+			next() {
607
+				const nextDate = this.cale.getDate(this.nowDate.fullDate, +1, 'month').fullDate
608
+				this.setDate(nextDate)
609
+				this.monthSwitch()
610
+			},
611
+			/**
612
+			 * 设置日期
613
+			 * @param {Object} date
614
+			 */
615
+			setDate(date) {
616
+				this.cale.setDate(date)
617
+				this.weeks = this.cale.weeks
618
+				this.nowDate = this.cale.getInfo(date)
619
+			}
620
+		}
621
+	}
622
+</script>
623
+
624
+<style lang="scss" >
625
+	$uni-primary: #007aff !default;
626
+
627
+	.uni-calendar {
628
+		/* #ifndef APP-NVUE */
629
+		display: flex;
630
+		/* #endif */
631
+		flex-direction: column;
632
+	}
633
+
634
+	.uni-calendar__mask {
635
+		position: fixed;
636
+		bottom: 0;
637
+		top: 0;
638
+		left: 0;
639
+		right: 0;
640
+		background-color: rgba(0, 0, 0, 0.4);
641
+		transition-property: opacity;
642
+		transition-duration: 0.3s;
643
+		opacity: 0;
644
+		/* #ifndef APP-NVUE */
645
+		z-index: 99;
646
+		/* #endif */
647
+	}
648
+
649
+	.uni-calendar--mask-show {
650
+		opacity: 1
651
+	}
652
+
653
+	.uni-calendar--fixed {
654
+		position: fixed;
655
+		bottom: calc(var(--window-bottom));
656
+		left: 0;
657
+		right: 0;
658
+		transition-property: transform;
659
+		transition-duration: 0.3s;
660
+		transform: translateY(460px);
661
+		/* #ifndef APP-NVUE */
662
+		z-index: 99;
663
+		/* #endif */
664
+	}
665
+
666
+	.uni-calendar--ani-show {
667
+		transform: translateY(0);
668
+	}
669
+
670
+	.uni-calendar__content {
671
+		background-color: #fff;
672
+	}
673
+
674
+	.uni-calendar__content-mobile {
675
+		border-top-left-radius: 10px;
676
+		border-top-right-radius: 10px;
677
+		box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
678
+	}
679
+
680
+	.uni-calendar__header {
681
+		position: relative;
682
+		/* #ifndef APP-NVUE */
683
+		display: flex;
684
+		/* #endif */
685
+		flex-direction: row;
686
+		justify-content: center;
687
+		align-items: center;
688
+		height: 50px;
689
+	}
690
+
691
+	.uni-calendar__header-mobile {
692
+		padding: 10px;
693
+		padding-bottom: 0;
694
+	}
695
+
696
+	.uni-calendar--fixed-top {
697
+		/* #ifndef APP-NVUE */
698
+		display: flex;
699
+		/* #endif */
700
+		flex-direction: row;
701
+		justify-content: space-between;
702
+		border-top-color: rgba(0, 0, 0, 0.4);
703
+		border-top-style: solid;
704
+		border-top-width: 1px;
705
+	}
706
+
707
+	.uni-calendar--fixed-width {
708
+		width: 50px;
709
+	}
710
+
711
+	.uni-calendar__backtoday {
712
+		position: absolute;
713
+		right: 0;
714
+		top: 25rpx;
715
+		padding: 0 5px;
716
+		padding-left: 10px;
717
+		height: 25px;
718
+		line-height: 25px;
719
+		font-size: 12px;
720
+		border-top-left-radius: 25px;
721
+		border-bottom-left-radius: 25px;
722
+		color: #fff;
723
+		background-color: #f1f1f1;
724
+	}
725
+
726
+	.uni-calendar__header-text {
727
+		text-align: center;
728
+		width: 100px;
729
+		font-size: 15px;
730
+		color: #666;
731
+	}
732
+
733
+	.uni-calendar__button-text {
734
+		text-align: center;
735
+		width: 100px;
736
+		font-size: 14px;
737
+		color: $uni-primary;
738
+		/* #ifndef APP-NVUE */
739
+		letter-spacing: 3px;
740
+		/* #endif */
741
+	}
742
+
743
+	.uni-calendar__header-btn-box {
744
+		/* #ifndef APP-NVUE */
745
+		display: flex;
746
+		/* #endif */
747
+		flex-direction: row;
748
+		align-items: center;
749
+		justify-content: center;
750
+		width: 50px;
751
+		height: 50px;
752
+	}
753
+
754
+	.uni-calendar__header-btn {
755
+		width: 9px;
756
+		height: 9px;
757
+		border-left-color: #808080;
758
+		border-left-style: solid;
759
+		border-left-width: 1px;
760
+		border-top-color: #555555;
761
+		border-top-style: solid;
762
+		border-top-width: 1px;
763
+	}
764
+
765
+	.uni-calendar--left {
766
+		transform: rotate(-45deg);
767
+	}
768
+
769
+	.uni-calendar--right {
770
+		transform: rotate(135deg);
771
+	}
772
+
773
+
774
+	.uni-calendar__weeks {
775
+		position: relative;
776
+		/* #ifndef APP-NVUE */
777
+		display: flex;
778
+		/* #endif */
779
+		flex-direction: row;
780
+	}
781
+
782
+	.uni-calendar__weeks-item {
783
+		flex: 1;
784
+	}
785
+
786
+	.uni-calendar__weeks-day {
787
+		flex: 1;
788
+		/* #ifndef APP-NVUE */
789
+		display: flex;
790
+		/* #endif */
791
+		flex-direction: column;
792
+		justify-content: center;
793
+		align-items: center;
794
+		height: 40px;
795
+		border-bottom-color: #F5F5F5;
796
+		border-bottom-style: solid;
797
+		border-bottom-width: 1px;
798
+	}
799
+
800
+	.uni-calendar__weeks-day-text {
801
+		font-size: 12px;
802
+		color: #B2B2B2;
803
+	}
804
+
805
+	.uni-calendar__box {
806
+		position: relative;
807
+		// padding: 0 10px;
808
+		padding-bottom: 7px;
809
+	}
810
+
811
+	.uni-calendar__box-bg {
812
+		/* #ifndef APP-NVUE */
813
+		display: flex;
814
+		/* #endif */
815
+		justify-content: center;
816
+		align-items: center;
817
+		position: absolute;
818
+		top: 0;
819
+		left: 0;
820
+		right: 0;
821
+		bottom: 0;
822
+	}
823
+
824
+	.uni-calendar__box-bg-text {
825
+		font-size: 200px;
826
+		font-weight: bold;
827
+		color: #999;
828
+		opacity: 0.1;
829
+		text-align: center;
830
+		/* #ifndef APP-NVUE */
831
+		line-height: 1;
832
+		/* #endif */
833
+	}
834
+
835
+	.uni-date-changed {
836
+		padding: 0 10px;
837
+		// line-height: 50px;
838
+		text-align: center;
839
+		color: #333;
840
+		border-top-color: #DCDCDC;
841
+		;
842
+		border-top-style: solid;
843
+		border-top-width: 1px;
844
+		flex: 1;
845
+	}
846
+
847
+	.uni-date-btn--ok {
848
+		padding: 20px 15px;
849
+	}
850
+
851
+	.uni-date-changed--time-start {
852
+		/* #ifndef APP-NVUE */
853
+		display: flex;
854
+		/* #endif */
855
+		align-items: center;
856
+	}
857
+
858
+	.uni-date-changed--time-end {
859
+		/* #ifndef APP-NVUE */
860
+		display: flex;
861
+		/* #endif */
862
+		align-items: center;
863
+	}
864
+
865
+	.uni-date-changed--time-date {
866
+		color: #999;
867
+		line-height: 50px;
868
+		margin-right: 5px;
869
+		// opacity: 0.6;
870
+	}
871
+
872
+	.time-picker-style {
873
+		// width: 62px;
874
+		/* #ifndef APP-NVUE */
875
+		display: flex;
876
+		/* #endif */
877
+		justify-content: center;
878
+		align-items: center
879
+	}
880
+
881
+	.mr-10 {
882
+		margin-right: 10px;
883
+	}
884
+
885
+	.dialog-close {
886
+		position: absolute;
887
+		top: 0;
888
+		right: 0;
889
+		bottom: 0;
890
+		/* #ifndef APP-NVUE */
891
+		display: flex;
892
+		/* #endif */
893
+		flex-direction: row;
894
+		align-items: center;
895
+		padding: 0 25px;
896
+		margin-top: 10px;
897
+	}
898
+
899
+	.dialog-close-plus {
900
+		width: 16px;
901
+		height: 2px;
902
+		background-color: #737987;
903
+		border-radius: 2px;
904
+		transform: rotate(45deg);
905
+	}
906
+
907
+	.dialog-close-rotate {
908
+		position: absolute;
909
+		transform: rotate(-45deg);
910
+	}
911
+
912
+	.uni-datetime-picker--btn {
913
+		border-radius: 100px;
914
+		height: 40px;
915
+		line-height: 40px;
916
+		background-color: $uni-primary;
917
+		color: #fff;
918
+		font-size: 16px;
919
+		letter-spacing: 2px;
920
+	}
921
+
922
+	/* #ifndef APP-NVUE */
923
+	.uni-datetime-picker--btn:active {
924
+		opacity: 0.7;
925
+	}
926
+	/* #endif */
927
+</style>

+ 22 - 0
components/uni-datetime-picker/i18n/en.json

@@ -0,0 +1,22 @@
1
+{
2
+	"uni-datetime-picker.selectDate": "select date",
3
+	"uni-datetime-picker.selectTime": "select time",
4
+	"uni-datetime-picker.selectDateTime": "select datetime",
5
+	"uni-datetime-picker.startDate": "start date",
6
+	"uni-datetime-picker.endDate": "end date",
7
+	"uni-datetime-picker.startTime": "start time",
8
+	"uni-datetime-picker.endTime": "end time",
9
+	"uni-datetime-picker.ok": "ok",
10
+	"uni-datetime-picker.clear": "clear",
11
+	"uni-datetime-picker.cancel": "cancel",
12
+	"uni-datetime-picker.year": "-",
13
+	"uni-datetime-picker.month": "",
14
+	"uni-calender.MON": "MON",
15
+	"uni-calender.TUE": "TUE",
16
+	"uni-calender.WED": "WED",
17
+	"uni-calender.THU": "THU",
18
+	"uni-calender.FRI": "FRI",
19
+	"uni-calender.SAT": "SAT",
20
+	"uni-calender.SUN": "SUN",
21
+	"uni-calender.confirm": "confirm"
22
+}

+ 8 - 0
components/uni-datetime-picker/i18n/index.js

@@ -0,0 +1,8 @@
1
+import en from './en.json'
2
+import zhHans from './zh-Hans.json'
3
+import zhHant from './zh-Hant.json'
4
+export default {
5
+	en,
6
+	'zh-Hans': zhHans,
7
+	'zh-Hant': zhHant
8
+}

+ 22 - 0
components/uni-datetime-picker/i18n/zh-Hans.json

@@ -0,0 +1,22 @@
1
+{
2
+	"uni-datetime-picker.selectDate": "选择日期",
3
+	"uni-datetime-picker.selectTime": "选择时间",
4
+	"uni-datetime-picker.selectDateTime": "选择日期时间",
5
+	"uni-datetime-picker.startDate": "开始日期",
6
+	"uni-datetime-picker.endDate": "结束日期",
7
+	"uni-datetime-picker.startTime": "开始时间",
8
+	"uni-datetime-picker.endTime": "结束时间",
9
+	"uni-datetime-picker.ok": "确定",
10
+	"uni-datetime-picker.clear": "清除",
11
+	"uni-datetime-picker.cancel": "取消",
12
+	"uni-datetime-picker.year": "年",
13
+	"uni-datetime-picker.month": "月",
14
+	"uni-calender.SUN": "日",
15
+	"uni-calender.MON": "一",
16
+	"uni-calender.TUE": "二",
17
+	"uni-calender.WED": "三",
18
+	"uni-calender.THU": "四",
19
+	"uni-calender.FRI": "五",
20
+	"uni-calender.SAT": "六",
21
+	"uni-calender.confirm": "确认"
22
+}

+ 22 - 0
components/uni-datetime-picker/i18n/zh-Hant.json

@@ -0,0 +1,22 @@
1
+{
2
+  "uni-datetime-picker.selectDate": "選擇日期",
3
+  "uni-datetime-picker.selectTime": "選擇時間",
4
+  "uni-datetime-picker.selectDateTime": "選擇日期時間",
5
+  "uni-datetime-picker.startDate": "開始日期",
6
+  "uni-datetime-picker.endDate": "結束日期",
7
+  "uni-datetime-picker.startTime": "開始时间",
8
+  "uni-datetime-picker.endTime": "結束时间",
9
+  "uni-datetime-picker.ok": "確定",
10
+  "uni-datetime-picker.clear": "清除",
11
+  "uni-datetime-picker.cancel": "取消",
12
+  "uni-datetime-picker.year": "年",
13
+  "uni-datetime-picker.month": "月",
14
+  "uni-calender.SUN": "日",
15
+  "uni-calender.MON": "一",
16
+  "uni-calender.TUE": "二",
17
+  "uni-calender.WED": "三",
18
+  "uni-calender.THU": "四",
19
+  "uni-calender.FRI": "五",
20
+  "uni-calender.SAT": "六",
21
+  "uni-calender.confirm": "確認"
22
+}

+ 45 - 0
components/uni-datetime-picker/keypress.js

@@ -0,0 +1,45 @@
1
+// #ifdef H5
2
+export default {
3
+  name: 'Keypress',
4
+  props: {
5
+    disable: {
6
+      type: Boolean,
7
+      default: false
8
+    }
9
+  },
10
+  mounted () {
11
+    const keyNames = {
12
+      esc: ['Esc', 'Escape'],
13
+      tab: 'Tab',
14
+      enter: 'Enter',
15
+      space: [' ', 'Spacebar'],
16
+      up: ['Up', 'ArrowUp'],
17
+      left: ['Left', 'ArrowLeft'],
18
+      right: ['Right', 'ArrowRight'],
19
+      down: ['Down', 'ArrowDown'],
20
+      delete: ['Backspace', 'Delete', 'Del']
21
+    }
22
+    const listener = ($event) => {
23
+      if (this.disable) {
24
+        return
25
+      }
26
+      const keyName = Object.keys(keyNames).find(key => {
27
+        const keyName = $event.key
28
+        const value = keyNames[key]
29
+        return value === keyName || (Array.isArray(value) && value.includes(keyName))
30
+      })
31
+      if (keyName) {
32
+        // 避免和其他按键事件冲突
33
+        setTimeout(() => {
34
+          this.$emit(keyName, {})
35
+        }, 0)
36
+      }
37
+    }
38
+    document.addEventListener('keyup', listener)
39
+    this.$once('hook:beforeDestroy', () => {
40
+      document.removeEventListener('keyup', listener)
41
+    })
42
+  },
43
+	render: () => {}
44
+}
45
+// #endif

+ 930 - 0
components/uni-datetime-picker/time-picker.vue

@@ -0,0 +1,930 @@
1
+<template>
2
+	<view class="uni-datetime-picker">
3
+		<view @click="initTimePicker">
4
+			<slot>
5
+				<view class="uni-datetime-picker-timebox-pointer"
6
+					:class="{'uni-datetime-picker-disabled': disabled, 'uni-datetime-picker-timebox': border}">
7
+					<text class="uni-datetime-picker-text">{{time}}</text>
8
+					<view v-if="!time" class="uni-datetime-picker-time">
9
+						<text class="uni-datetime-picker-text">{{selectTimeText}}</text>
10
+					</view>
11
+				</view>
12
+			</slot>
13
+		</view>
14
+		<view v-if="visible" id="mask" class="uni-datetime-picker-mask" @click="tiggerTimePicker"></view>
15
+		<view v-if="visible" class="uni-datetime-picker-popup" :class="[dateShow && timeShow ? '' : 'fix-nvue-height']"
16
+			:style="fixNvueBug">
17
+			<view class="uni-title">
18
+				<text class="uni-datetime-picker-text">{{selectTimeText}}</text>
19
+			</view>
20
+			<view v-if="dateShow" class="uni-datetime-picker__container-box">
21
+				<picker-view class="uni-datetime-picker-view" :indicator-style="indicatorStyle" :value="ymd"
22
+					@change="bindDateChange">
23
+					<picker-view-column>
24
+						<view class="uni-datetime-picker-item" v-for="(item,index) in years" :key="index">
25
+							<text class="uni-datetime-picker-item">{{lessThanTen(item)}}</text>
26
+						</view>
27
+					</picker-view-column>
28
+					<picker-view-column>
29
+						<view class="uni-datetime-picker-item" v-for="(item,index) in months" :key="index">
30
+							<text class="uni-datetime-picker-item">{{lessThanTen(item)}}</text>
31
+						</view>
32
+					</picker-view-column>
33
+					<picker-view-column>
34
+						<view class="uni-datetime-picker-item" v-for="(item,index) in days" :key="index">
35
+							<text class="uni-datetime-picker-item">{{lessThanTen(item)}}</text>
36
+						</view>
37
+					</picker-view-column>
38
+				</picker-view>
39
+				<!-- 兼容 nvue 不支持伪类 -->
40
+				<text class="uni-datetime-picker-sign sign-left">-</text>
41
+				<text class="uni-datetime-picker-sign sign-right">-</text>
42
+			</view>
43
+			<view v-if="timeShow" class="uni-datetime-picker__container-box">
44
+				<picker-view class="uni-datetime-picker-view" :class="[hideSecond ? 'time-hide-second' : '']"
45
+					:indicator-style="indicatorStyle" :value="hms" @change="bindTimeChange">
46
+					<picker-view-column>
47
+						<view class="uni-datetime-picker-item" v-for="(item,index) in hours" :key="index">
48
+							<text class="uni-datetime-picker-item">{{lessThanTen(item)}}</text>
49
+						</view>
50
+					</picker-view-column>
51
+					<picker-view-column>
52
+						<view class="uni-datetime-picker-item" v-for="(item,index) in minutes" :key="index">
53
+							<text class="uni-datetime-picker-item">{{lessThanTen(item)}}</text>
54
+						</view>
55
+					</picker-view-column>
56
+					<picker-view-column v-if="!hideSecond">
57
+						<view class="uni-datetime-picker-item" v-for="(item,index) in seconds" :key="index">
58
+							<text class="uni-datetime-picker-item">{{lessThanTen(item)}}</text>
59
+						</view>
60
+					</picker-view-column>
61
+				</picker-view>
62
+				<!-- 兼容 nvue 不支持伪类 -->
63
+				<text class="uni-datetime-picker-sign" :class="[hideSecond ? 'sign-center' : 'sign-left']">:</text>
64
+				<text v-if="!hideSecond" class="uni-datetime-picker-sign sign-right">:</text>
65
+			</view>
66
+			<view class="uni-datetime-picker-btn">
67
+				<view @click="clearTime">
68
+					<text class="uni-datetime-picker-btn-text">{{clearText}}</text>
69
+				</view>
70
+				<view class="uni-datetime-picker-btn-group">
71
+					<view class="uni-datetime-picker-cancel" @click="tiggerTimePicker">
72
+						<text class="uni-datetime-picker-btn-text">{{cancelText}}</text>
73
+					</view>
74
+					<view @click="setTime">
75
+						<text class="uni-datetime-picker-btn-text">{{okText}}</text>
76
+					</view>
77
+				</view>
78
+			</view>
79
+		</view>
80
+		<!-- #ifdef H5 -->
81
+		<!-- <keypress v-if="visible" @esc="tiggerTimePicker" @enter="setTime" /> -->
82
+		<!-- #endif -->
83
+	</view>
84
+</template>
85
+
86
+<script>
87
+	// #ifdef H5
88
+	import keypress from './keypress'
89
+	// #endif
90
+	import {
91
+		initVueI18n
92
+	} from '@dcloudio/uni-i18n'
93
+	import messages from './i18n/index.js'
94
+	const {	t	} = initVueI18n(messages)
95
+
96
+	/**
97
+	 * DatetimePicker 时间选择器
98
+	 * @description 可以同时选择日期和时间的选择器
99
+	 * @tutorial https://ext.dcloud.net.cn/plugin?id=xxx
100
+	 * @property {String} type = [datetime | date | time] 显示模式
101
+	 * @property {Boolean} multiple = [true|false] 是否多选
102
+	 * @property {String|Number} value 默认值
103
+	 * @property {String|Number} start 起始日期或时间
104
+	 * @property {String|Number} end 起始日期或时间
105
+	 * @property {String} return-type = [timestamp | string]
106
+	 * @event {Function} change  选中发生变化触发
107
+	 */
108
+
109
+	export default {
110
+		name: 'UniDatetimePicker',
111
+		components: {
112
+			// #ifdef H5
113
+			keypress
114
+			// #endif
115
+		},
116
+		data() {
117
+			return {
118
+				indicatorStyle: `height: 50px;`,
119
+				visible: false,
120
+				fixNvueBug: {},
121
+				dateShow: true,
122
+				timeShow: true,
123
+				title: '日期和时间',
124
+				// 输入框当前时间
125
+				time: '',
126
+				// 当前的年月日时分秒
127
+				year: 1920,
128
+				month: 0,
129
+				day: 0,
130
+				hour: 0,
131
+				minute: 0,
132
+				second: 0,
133
+				// 起始时间
134
+				startYear: 1920,
135
+				startMonth: 1,
136
+				startDay: 1,
137
+				startHour: 0,
138
+				startMinute: 0,
139
+				startSecond: 0,
140
+				// 结束时间
141
+				endYear: 2120,
142
+				endMonth: 12,
143
+				endDay: 31,
144
+				endHour: 23,
145
+				endMinute: 59,
146
+				endSecond: 59,
147
+			}
148
+		},
149
+		props: {
150
+			type: {
151
+				type: String,
152
+				default: 'datetime'
153
+			},
154
+			value: {
155
+				type: [String, Number],
156
+				default: ''
157
+			},
158
+			modelValue: {
159
+				type: [String, Number],
160
+				default: ''
161
+			},
162
+			start: {
163
+				type: [Number, String],
164
+				default: ''
165
+			},
166
+			end: {
167
+				type: [Number, String],
168
+				default: ''
169
+			},
170
+			returnType: {
171
+				type: String,
172
+				default: 'string'
173
+			},
174
+			disabled: {
175
+				type: [Boolean, String],
176
+				default: false
177
+			},
178
+			border: {
179
+				type: [Boolean, String],
180
+				default: true
181
+			},
182
+			hideSecond: {
183
+				type: [Boolean, String],
184
+				default: false
185
+			}
186
+		},
187
+		watch: {
188
+			value: {
189
+				handler(newVal, oldVal) {
190
+					if (newVal) {
191
+						this.parseValue(this.fixIosDateFormat(newVal)) //兼容 iOS、safari 日期格式
192
+						this.initTime(false)
193
+					} else {
194
+						this.time = ''
195
+						this.parseValue(Date.now())
196
+					}
197
+				},
198
+				immediate: true
199
+			},
200
+			type: {
201
+				handler(newValue) {
202
+					if (newValue === 'date') {
203
+						this.dateShow = true
204
+						this.timeShow = false
205
+						this.title = '日期'
206
+					} else if (newValue === 'time') {
207
+						this.dateShow = false
208
+						this.timeShow = true
209
+						this.title = '时间'
210
+					} else {
211
+						this.dateShow = true
212
+						this.timeShow = true
213
+						this.title = '日期和时间'
214
+					}
215
+				},
216
+				immediate: true
217
+			},
218
+			start: {
219
+				handler(newVal) {
220
+					this.parseDatetimeRange(this.fixIosDateFormat(newVal), 'start') //兼容 iOS、safari 日期格式
221
+				},
222
+				immediate: true
223
+			},
224
+			end: {
225
+				handler(newVal) {
226
+					this.parseDatetimeRange(this.fixIosDateFormat(newVal), 'end') //兼容 iOS、safari 日期格式
227
+				},
228
+				immediate: true
229
+			},
230
+
231
+			// 月、日、时、分、秒可选范围变化后,检查当前值是否在范围内,不在则当前值重置为可选范围第一项
232
+			months(newVal) {
233
+				this.checkValue('month', this.month, newVal)
234
+			},
235
+			days(newVal) {
236
+				this.checkValue('day', this.day, newVal)
237
+			},
238
+			hours(newVal) {
239
+				this.checkValue('hour', this.hour, newVal)
240
+			},
241
+			minutes(newVal) {
242
+				this.checkValue('minute', this.minute, newVal)
243
+			},
244
+			seconds(newVal) {
245
+				this.checkValue('second', this.second, newVal)
246
+			}
247
+		},
248
+		computed: {
249
+			// 当前年、月、日、时、分、秒选择范围
250
+			years() {
251
+				return this.getCurrentRange('year')
252
+			},
253
+
254
+			months() {
255
+				return this.getCurrentRange('month')
256
+			},
257
+
258
+			days() {
259
+				return this.getCurrentRange('day')
260
+			},
261
+
262
+			hours() {
263
+				return this.getCurrentRange('hour')
264
+			},
265
+
266
+			minutes() {
267
+				return this.getCurrentRange('minute')
268
+			},
269
+
270
+			seconds() {
271
+				return this.getCurrentRange('second')
272
+			},
273
+
274
+			// picker 当前值数组
275
+			ymd() {
276
+				return [this.year - this.minYear, this.month - this.minMonth, this.day - this.minDay]
277
+			},
278
+			hms() {
279
+				return [this.hour - this.minHour, this.minute - this.minMinute, this.second - this.minSecond]
280
+			},
281
+
282
+			// 当前 date 是 start
283
+			currentDateIsStart() {
284
+				return this.year === this.startYear && this.month === this.startMonth && this.day === this.startDay
285
+			},
286
+
287
+			// 当前 date 是 end
288
+			currentDateIsEnd() {
289
+				return this.year === this.endYear && this.month === this.endMonth && this.day === this.endDay
290
+			},
291
+
292
+			// 当前年、月、日、时、分、秒的最小值和最大值
293
+			minYear() {
294
+				return this.startYear
295
+			},
296
+			maxYear() {
297
+				return this.endYear
298
+			},
299
+			minMonth() {
300
+				if (this.year === this.startYear) {
301
+					return this.startMonth
302
+				} else {
303
+					return 1
304
+				}
305
+			},
306
+			maxMonth() {
307
+				if (this.year === this.endYear) {
308
+					return this.endMonth
309
+				} else {
310
+					return 12
311
+				}
312
+			},
313
+			minDay() {
314
+				if (this.year === this.startYear && this.month === this.startMonth) {
315
+					return this.startDay
316
+				} else {
317
+					return 1
318
+				}
319
+			},
320
+			maxDay() {
321
+				if (this.year === this.endYear && this.month === this.endMonth) {
322
+					return this.endDay
323
+				} else {
324
+					return this.daysInMonth(this.year, this.month)
325
+				}
326
+			},
327
+			minHour() {
328
+				if (this.type === 'datetime') {
329
+					if (this.currentDateIsStart) {
330
+						return this.startHour
331
+					} else {
332
+						return 0
333
+					}
334
+				}
335
+				if (this.type === 'time') {
336
+					return this.startHour
337
+				}
338
+			},
339
+			maxHour() {
340
+				if (this.type === 'datetime') {
341
+					if (this.currentDateIsEnd) {
342
+						return this.endHour
343
+					} else {
344
+						return 23
345
+					}
346
+				}
347
+				if (this.type === 'time') {
348
+					return this.endHour
349
+				}
350
+			},
351
+			minMinute() {
352
+				if (this.type === 'datetime') {
353
+					if (this.currentDateIsStart && this.hour === this.startHour) {
354
+						return this.startMinute
355
+					} else {
356
+						return 0
357
+					}
358
+				}
359
+				if (this.type === 'time') {
360
+					if (this.hour === this.startHour) {
361
+						return this.startMinute
362
+					} else {
363
+						return 0
364
+					}
365
+				}
366
+			},
367
+			maxMinute() {
368
+				if (this.type === 'datetime') {
369
+					if (this.currentDateIsEnd && this.hour === this.endHour) {
370
+						return this.endMinute
371
+					} else {
372
+						return 59
373
+					}
374
+				}
375
+				if (this.type === 'time') {
376
+					if (this.hour === this.endHour) {
377
+						return this.endMinute
378
+					} else {
379
+						return 59
380
+					}
381
+				}
382
+			},
383
+			minSecond() {
384
+				if (this.type === 'datetime') {
385
+					if (this.currentDateIsStart && this.hour === this.startHour && this.minute === this.startMinute) {
386
+						return this.startSecond
387
+					} else {
388
+						return 0
389
+					}
390
+				}
391
+				if (this.type === 'time') {
392
+					if (this.hour === this.startHour && this.minute === this.startMinute) {
393
+						return this.startSecond
394
+					} else {
395
+						return 0
396
+					}
397
+				}
398
+			},
399
+			maxSecond() {
400
+				if (this.type === 'datetime') {
401
+					if (this.currentDateIsEnd && this.hour === this.endHour && this.minute === this.endMinute) {
402
+						return this.endSecond
403
+					} else {
404
+						return 59
405
+					}
406
+				}
407
+				if (this.type === 'time') {
408
+					if (this.hour === this.endHour && this.minute === this.endMinute) {
409
+						return this.endSecond
410
+					} else {
411
+						return 59
412
+					}
413
+				}
414
+			},
415
+
416
+			/**
417
+			 * for i18n
418
+			 */
419
+			selectTimeText() {
420
+				return t("uni-datetime-picker.selectTime")
421
+			},
422
+			okText() {
423
+				return t("uni-datetime-picker.ok")
424
+			},
425
+			clearText() {
426
+				return t("uni-datetime-picker.clear")
427
+			},
428
+			cancelText() {
429
+				return t("uni-datetime-picker.cancel")
430
+			}
431
+		},
432
+
433
+		mounted() {
434
+			// #ifdef APP-NVUE
435
+			const res = uni.getSystemInfoSync();
436
+			this.fixNvueBug = {
437
+				top: res.windowHeight / 2,
438
+				left: res.windowWidth / 2
439
+			}
440
+			// #endif
441
+		},
442
+
443
+		methods: {
444
+			/**
445
+			 * @param {Object} item
446
+			 * 小于 10 在前面加个 0
447
+			 */
448
+
449
+			lessThanTen(item) {
450
+				return item < 10 ? '0' + item : item
451
+			},
452
+
453
+			/**
454
+			 * 解析时分秒字符串,例如:00:00:00
455
+			 * @param {String} timeString
456
+			 */
457
+			parseTimeType(timeString) {
458
+				if (timeString) {
459
+					let timeArr = timeString.split(':')
460
+					this.hour = Number(timeArr[0])
461
+					this.minute = Number(timeArr[1])
462
+					this.second = Number(timeArr[2])
463
+				}
464
+			},
465
+
466
+			/**
467
+			 * 解析选择器初始值,类型可以是字符串、时间戳,例如:2000-10-02、'08:30:00'、 1610695109000
468
+			 * @param {String | Number} datetime
469
+			 */
470
+			initPickerValue(datetime) {
471
+				let defaultValue = null
472
+				if (datetime) {
473
+					defaultValue = this.compareValueWithStartAndEnd(datetime, this.start, this.end)
474
+				} else {
475
+					defaultValue = Date.now()
476
+					defaultValue = this.compareValueWithStartAndEnd(defaultValue, this.start, this.end)
477
+				}
478
+				this.parseValue(defaultValue)
479
+			},
480
+
481
+			/**
482
+			 * 初始值规则:
483
+			 * - 用户设置初始值 value
484
+			 * 	- 设置了起始时间 start、终止时间 end,并 start < value < end,初始值为 value, 否则初始值为 start
485
+			 * 	- 只设置了起始时间 start,并 start < value,初始值为 value,否则初始值为 start
486
+			 * 	- 只设置了终止时间 end,并 value < end,初始值为 value,否则初始值为 end
487
+			 * 	- 无起始终止时间,则初始值为 value
488
+			 * - 无初始值 value,则初始值为当前本地时间 Date.now()
489
+			 * @param {Object} value
490
+			 * @param {Object} dateBase
491
+			 */
492
+			compareValueWithStartAndEnd(value, start, end) {
493
+				let winner = null
494
+				value = this.superTimeStamp(value)
495
+				start = this.superTimeStamp(start)
496
+				end = this.superTimeStamp(end)
497
+
498
+				if (start && end) {
499
+					if (value < start) {
500
+						winner = new Date(start)
501
+					} else if (value > end) {
502
+						winner = new Date(end)
503
+					} else {
504
+						winner = new Date(value)
505
+					}
506
+				} else if (start && !end) {
507
+					winner = start <= value ? new Date(value) : new Date(start)
508
+				} else if (!start && end) {
509
+					winner = value <= end ? new Date(value) : new Date(end)
510
+				} else {
511
+					winner = new Date(value)
512
+				}
513
+
514
+				return winner
515
+			},
516
+
517
+			/**
518
+			 * 转换为可比较的时间戳,接受日期、时分秒、时间戳
519
+			 * @param {Object} value
520
+			 */
521
+			superTimeStamp(value) {
522
+				let dateBase = ''
523
+				if (this.type === 'time' && value && typeof value === 'string') {
524
+					const now = new Date()
525
+					const year = now.getFullYear()
526
+					const month = now.getMonth() + 1
527
+					const day = now.getDate()
528
+					dateBase = year + '/' + month + '/' + day + ' '
529
+				}
530
+				if (Number(value) && typeof value !== NaN) {
531
+					value = parseInt(value)
532
+					dateBase = 0
533
+				}
534
+				return this.createTimeStamp(dateBase + value)
535
+			},
536
+
537
+			/**
538
+			 * 解析默认值 value,字符串、时间戳
539
+			 * @param {Object} defaultTime
540
+			 */
541
+			parseValue(value) {
542
+				if (!value) {
543
+					return
544
+				}
545
+				if (this.type === 'time' && typeof value === "string") {
546
+					this.parseTimeType(value)
547
+				} else {
548
+					let defaultDate = null
549
+					defaultDate = new Date(value)
550
+					if (this.type !== 'time') {
551
+						this.year = defaultDate.getFullYear()
552
+						this.month = defaultDate.getMonth() + 1
553
+						this.day = defaultDate.getDate()
554
+					}
555
+					if (this.type !== 'date') {
556
+						this.hour = defaultDate.getHours()
557
+						this.minute = defaultDate.getMinutes()
558
+						this.second = defaultDate.getSeconds()
559
+					}
560
+				}
561
+				if (this.hideSecond) {
562
+					this.second = 0
563
+				}
564
+			},
565
+
566
+			/**
567
+			 * 解析可选择时间范围 start、end,年月日字符串、时间戳
568
+			 * @param {Object} defaultTime
569
+			 */
570
+			parseDatetimeRange(point, pointType) {
571
+				// 时间为空,则重置为初始值
572
+				if (!point) {
573
+					if (pointType === 'start') {
574
+						this.startYear = 1920
575
+						this.startMonth = 1
576
+						this.startDay = 1
577
+						this.startHour = 0
578
+						this.startMinute = 0
579
+						this.startSecond = 0
580
+					}
581
+					if (pointType === 'end') {
582
+						this.endYear = 2120
583
+						this.endMonth = 12
584
+						this.endDay = 31
585
+						this.endHour = 23
586
+						this.endMinute = 59
587
+						this.endSecond = 59
588
+					}
589
+					return
590
+				}
591
+				if (this.type === 'time') {
592
+					const pointArr = point.split(':')
593
+					this[pointType + 'Hour'] = Number(pointArr[0])
594
+					this[pointType + 'Minute'] = Number(pointArr[1])
595
+					this[pointType + 'Second'] = Number(pointArr[2])
596
+				} else {
597
+					if (!point) {
598
+						pointType === 'start' ? this.startYear = this.year - 60 : this.endYear = this.year + 60
599
+						return
600
+					}
601
+					if (Number(point) && Number(point) !== NaN) {
602
+						point = parseInt(point)
603
+					}
604
+					// datetime 的 end 没有时分秒, 则不限制
605
+					const hasTime = /[0-9]:[0-9]/
606
+					if (this.type === 'datetime' && pointType === 'end' && typeof point === 'string' && !hasTime.test(
607
+							point)) {
608
+						point = point + ' 23:59:59'
609
+					}
610
+					const pointDate = new Date(point)
611
+					this[pointType + 'Year'] = pointDate.getFullYear()
612
+					this[pointType + 'Month'] = pointDate.getMonth() + 1
613
+					this[pointType + 'Day'] = pointDate.getDate()
614
+					if (this.type === 'datetime') {
615
+						this[pointType + 'Hour'] = pointDate.getHours()
616
+						this[pointType + 'Minute'] = pointDate.getMinutes()
617
+						this[pointType + 'Second'] = pointDate.getSeconds()
618
+					}
619
+				}
620
+			},
621
+
622
+			// 获取 年、月、日、时、分、秒 当前可选范围
623
+			getCurrentRange(value) {
624
+				const range = []
625
+				for (let i = this['min' + this.capitalize(value)]; i <= this['max' + this.capitalize(value)]; i++) {
626
+					range.push(i)
627
+				}
628
+				return range
629
+			},
630
+
631
+			// 字符串首字母大写
632
+			capitalize(str) {
633
+				return str.charAt(0).toUpperCase() + str.slice(1)
634
+			},
635
+
636
+			// 检查当前值是否在范围内,不在则当前值重置为可选范围第一项
637
+			checkValue(name, value, values) {
638
+				if (values.indexOf(value) === -1) {
639
+					this[name] = values[0]
640
+				}
641
+			},
642
+
643
+			// 每个月的实际天数
644
+			daysInMonth(year, month) { // Use 1 for January, 2 for February, etc.
645
+				return new Date(year, month, 0).getDate();
646
+			},
647
+
648
+			//兼容 iOS、safari 日期格式
649
+			fixIosDateFormat(value) {
650
+				if (typeof value === 'string') {
651
+					value = value.replace(/-/g, '/')
652
+				}
653
+				return value
654
+			},
655
+
656
+			/**
657
+			 * 生成时间戳
658
+			 * @param {Object} time
659
+			 */
660
+			createTimeStamp(time) {
661
+				if (!time) return
662
+				if (typeof time === "number") {
663
+					return time
664
+				} else {
665
+					time = time.replace(/-/g, '/')
666
+					if (this.type === 'date') {
667
+						time = time + ' ' + '00:00:00'
668
+					}
669
+					return Date.parse(time)
670
+				}
671
+			},
672
+
673
+			/**
674
+			 * 生成日期或时间的字符串
675
+			 */
676
+			createDomSting() {
677
+				const yymmdd = this.year +
678
+					'-' +
679
+					this.lessThanTen(this.month) +
680
+					'-' +
681
+					this.lessThanTen(this.day)
682
+
683
+				let hhmmss = this.lessThanTen(this.hour) +
684
+					':' +
685
+					this.lessThanTen(this.minute)
686
+
687
+				if (!this.hideSecond) {
688
+					hhmmss = hhmmss + ':' + this.lessThanTen(this.second)
689
+				}
690
+
691
+				if (this.type === 'date') {
692
+					return yymmdd
693
+				} else if (this.type === 'time') {
694
+					return hhmmss
695
+				} else {
696
+					return yymmdd + ' ' + hhmmss
697
+				}
698
+			},
699
+
700
+			/**
701
+			 * 初始化返回值,并抛出 change 事件
702
+			 */
703
+			initTime(emit = true) {
704
+				this.time = this.createDomSting()
705
+				if (!emit) return
706
+				if (this.returnType === 'timestamp' && this.type !== 'time') {
707
+					this.$emit('change', this.createTimeStamp(this.time))
708
+					this.$emit('input', this.createTimeStamp(this.time))
709
+					this.$emit('update:modelValue', this.createTimeStamp(this.time))
710
+				} else {
711
+					this.$emit('change', this.time)
712
+					this.$emit('input', this.time)
713
+					this.$emit('update:modelValue', this.time)
714
+				}
715
+			},
716
+
717
+			/**
718
+			 * 用户选择日期或时间更新 data
719
+			 * @param {Object} e
720
+			 */
721
+			bindDateChange(e) {
722
+				const val = e.detail.value
723
+				this.year = this.years[val[0]]
724
+				this.month = this.months[val[1]]
725
+				this.day = this.days[val[2]]
726
+			},
727
+			bindTimeChange(e) {
728
+				const val = e.detail.value
729
+				this.hour = this.hours[val[0]]
730
+				this.minute = this.minutes[val[1]]
731
+				this.second = this.seconds[val[2]]
732
+			},
733
+
734
+			/**
735
+			 * 初始化弹出层
736
+			 */
737
+			initTimePicker() {
738
+				if (this.disabled) return
739
+				const value = this.fixIosDateFormat(this.value)
740
+				this.initPickerValue(value)
741
+				this.visible = !this.visible
742
+			},
743
+
744
+			/**
745
+			 * 触发或关闭弹框
746
+			 */
747
+			tiggerTimePicker(e) {
748
+				this.visible = !this.visible
749
+			},
750
+
751
+			/**
752
+			 * 用户点击“清空”按钮,清空当前值
753
+			 */
754
+			clearTime() {
755
+				this.time = ''
756
+				this.$emit('change', this.time)
757
+				this.$emit('input', this.time)
758
+				this.$emit('update:modelValue', this.time)
759
+				this.tiggerTimePicker()
760
+			},
761
+
762
+			/**
763
+			 * 用户点击“确定”按钮
764
+			 */
765
+			setTime() {
766
+				this.initTime()
767
+				this.tiggerTimePicker()
768
+			}
769
+		}
770
+	}
771
+</script>
772
+
773
+<style lang="scss">
774
+	$uni-primary: #007aff !default;
775
+
776
+	.uni-datetime-picker {
777
+		/* #ifndef APP-NVUE */
778
+		/* width: 100%; */
779
+		/* #endif */
780
+	}
781
+
782
+	.uni-datetime-picker-view {
783
+		height: 130px;
784
+		width: 270px;
785
+		/* #ifndef APP-NVUE */
786
+		cursor: pointer;
787
+		/* #endif */
788
+	}
789
+
790
+	.uni-datetime-picker-item {
791
+		height: 50px;
792
+		line-height: 50px;
793
+		text-align: center;
794
+		font-size: 14px;
795
+	}
796
+
797
+	.uni-datetime-picker-btn {
798
+		margin-top: 60px;
799
+		/* #ifndef APP-NVUE */
800
+		display: flex;
801
+		cursor: pointer;
802
+		/* #endif */
803
+		flex-direction: row;
804
+		justify-content: space-between;
805
+	}
806
+
807
+	.uni-datetime-picker-btn-text {
808
+		font-size: 14px;
809
+		color: $uni-primary;
810
+	}
811
+
812
+	.uni-datetime-picker-btn-group {
813
+		/* #ifndef APP-NVUE */
814
+		display: flex;
815
+		/* #endif */
816
+		flex-direction: row;
817
+	}
818
+
819
+	.uni-datetime-picker-cancel {
820
+		margin-right: 30px;
821
+	}
822
+
823
+	.uni-datetime-picker-mask {
824
+		position: fixed;
825
+		bottom: 0px;
826
+		top: 0px;
827
+		left: 0px;
828
+		right: 0px;
829
+		background-color: rgba(0, 0, 0, 0.4);
830
+		transition-duration: 0.3s;
831
+		z-index: 998;
832
+	}
833
+
834
+	.uni-datetime-picker-popup {
835
+		border-radius: 8px;
836
+		padding: 30px;
837
+		width: 270px;
838
+		/* #ifdef APP-NVUE */
839
+		height: 500px;
840
+		/* #endif */
841
+		/* #ifdef APP-NVUE */
842
+		width: 330px;
843
+		/* #endif */
844
+		background-color: #fff;
845
+		position: fixed;
846
+		top: 50%;
847
+		left: 50%;
848
+		transform: translate(-50%, -50%);
849
+		transition-duration: 0.3s;
850
+		z-index: 999;
851
+	}
852
+
853
+	.fix-nvue-height {
854
+		/* #ifdef APP-NVUE */
855
+		height: 330px;
856
+		/* #endif */
857
+	}
858
+
859
+	.uni-datetime-picker-time {
860
+		color: grey;
861
+	}
862
+
863
+	.uni-datetime-picker-column {
864
+		height: 50px;
865
+	}
866
+
867
+	.uni-datetime-picker-timebox {
868
+
869
+		border: 1px solid #E5E5E5;
870
+		border-radius: 5px;
871
+		padding: 7px 10px;
872
+		/* #ifndef APP-NVUE */
873
+		box-sizing: border-box;
874
+		cursor: pointer;
875
+		/* #endif */
876
+	}
877
+
878
+	.uni-datetime-picker-timebox-pointer {
879
+		/* #ifndef APP-NVUE */
880
+		cursor: pointer;
881
+		/* #endif */
882
+	}
883
+
884
+
885
+	.uni-datetime-picker-disabled {
886
+		opacity: 0.4;
887
+		/* #ifdef H5 */
888
+		cursor: not-allowed !important;
889
+		/* #endif */
890
+	}
891
+
892
+	.uni-datetime-picker-text {
893
+		font-size: 14px;
894
+		line-height: 50px
895
+	}
896
+
897
+	.uni-datetime-picker-sign {
898
+		position: absolute;
899
+		top: 53px;
900
+		/* 减掉 10px 的元素高度,兼容nvue */
901
+		color: #999;
902
+		/* #ifdef APP-NVUE */
903
+		font-size: 16px;
904
+		/* #endif */
905
+	}
906
+
907
+	.sign-left {
908
+		left: 86px;
909
+	}
910
+
911
+	.sign-right {
912
+		right: 86px;
913
+	}
914
+
915
+	.sign-center {
916
+		left: 135px;
917
+	}
918
+
919
+	.uni-datetime-picker__container-box {
920
+		position: relative;
921
+		display: flex;
922
+		align-items: center;
923
+		justify-content: center;
924
+		margin-top: 40px;
925
+	}
926
+
927
+	.time-hide-second {
928
+		width: 180px;
929
+	}
930
+</style>

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 1015 - 0
components/uni-datetime-picker/uni-datetime-picker.vue


+ 410 - 0
components/uni-datetime-picker/util.js

@@ -0,0 +1,410 @@
1
+class Calendar {
2
+	constructor({
3
+		date,
4
+		selected,
5
+		startDate,
6
+		endDate,
7
+		range,
8
+		// multipleStatus
9
+	} = {}) {
10
+		// 当前日期
11
+		this.date = this.getDate(new Date()) // 当前初入日期
12
+		// 打点信息
13
+		this.selected = selected || [];
14
+		// 范围开始
15
+		this.startDate = startDate
16
+		// 范围结束
17
+		this.endDate = endDate
18
+		this.range = range
19
+		// 多选状态
20
+		this.cleanMultipleStatus()
21
+		// 每周日期
22
+		this.weeks = {}
23
+		// this._getWeek(this.date.fullDate)
24
+		// this.multipleStatus = multipleStatus
25
+		this.lastHover = false
26
+	}
27
+	/**
28
+	 * 设置日期
29
+	 * @param {Object} date
30
+	 */
31
+	setDate(date) {
32
+		this.selectDate = this.getDate(date)
33
+		this._getWeek(this.selectDate.fullDate)
34
+	}
35
+
36
+	/**
37
+	 * 清理多选状态
38
+	 */
39
+	cleanMultipleStatus() {
40
+		this.multipleStatus = {
41
+			before: '',
42
+			after: '',
43
+			data: []
44
+		}
45
+	}
46
+
47
+	/**
48
+	 * 重置开始日期
49
+	 */
50
+	resetSatrtDate(startDate) {
51
+		// 范围开始
52
+		this.startDate = startDate
53
+
54
+	}
55
+
56
+	/**
57
+	 * 重置结束日期
58
+	 */
59
+	resetEndDate(endDate) {
60
+		// 范围结束
61
+		this.endDate = endDate
62
+	}
63
+
64
+	/**
65
+	 * 获取任意时间
66
+	 */
67
+	getDate(date, AddDayCount = 0, str = 'day') {
68
+		if (!date) {
69
+			date = new Date()
70
+		}
71
+		if (typeof date !== 'object') {
72
+			date = date.replace(/-/g, '/')
73
+		}
74
+		const dd = new Date(date)
75
+		switch (str) {
76
+			case 'day':
77
+				dd.setDate(dd.getDate() + AddDayCount) // 获取AddDayCount天后的日期
78
+				break
79
+			case 'month':
80
+				if (dd.getDate() === 31) {
81
+					dd.setDate(dd.getDate() + AddDayCount)
82
+				} else {
83
+					dd.setMonth(dd.getMonth() + AddDayCount) // 获取AddDayCount天后的日期
84
+				}
85
+				break
86
+			case 'year':
87
+				dd.setFullYear(dd.getFullYear() + AddDayCount) // 获取AddDayCount天后的日期
88
+				break
89
+		}
90
+		const y = dd.getFullYear()
91
+		const m = dd.getMonth() + 1 < 10 ? '0' + (dd.getMonth() + 1) : dd.getMonth() + 1 // 获取当前月份的日期,不足10补0
92
+		const d = dd.getDate() < 10 ? '0' + dd.getDate() : dd.getDate() // 获取当前几号,不足10补0
93
+		return {
94
+			fullDate: y + '-' + m + '-' + d,
95
+			year: y,
96
+			month: m,
97
+			date: d,
98
+			day: dd.getDay()
99
+		}
100
+	}
101
+
102
+
103
+	/**
104
+	 * 获取上月剩余天数
105
+	 */
106
+	_getLastMonthDays(firstDay, full) {
107
+		let dateArr = []
108
+		for (let i = firstDay; i > 0; i--) {
109
+			const beforeDate = new Date(full.year, full.month - 1, -i + 1).getDate()
110
+			dateArr.push({
111
+				date: beforeDate,
112
+				month: full.month - 1,
113
+				disable: true
114
+			})
115
+		}
116
+		return dateArr
117
+	}
118
+	/**
119
+	 * 获取本月天数
120
+	 */
121
+	_currentMonthDys(dateData, full) {
122
+		let dateArr = []
123
+		let fullDate = this.date.fullDate
124
+		for (let i = 1; i <= dateData; i++) {
125
+			let isinfo = false
126
+			let nowDate = full.year + '-' + (full.month < 10 ?
127
+				full.month : full.month) + '-' + (i < 10 ?
128
+				'0' + i : i)
129
+			// 是否今天
130
+			let isDay = fullDate === nowDate
131
+			// 获取打点信息
132
+			let info = this.selected && this.selected.find((item) => {
133
+				if (this.dateEqual(nowDate, item.date)) {
134
+					return item
135
+				}
136
+			})
137
+
138
+			// 日期禁用
139
+			let disableBefore = true
140
+			let disableAfter = true
141
+			if (this.startDate) {
142
+				// let dateCompBefore = this.dateCompare(this.startDate, fullDate)
143
+				// disableBefore = this.dateCompare(dateCompBefore ? this.startDate : fullDate, nowDate)
144
+				disableBefore = this.dateCompare(this.startDate, nowDate)
145
+			}
146
+
147
+			if (this.endDate) {
148
+				// let dateCompAfter = this.dateCompare(fullDate, this.endDate)
149
+				// disableAfter = this.dateCompare(nowDate, dateCompAfter ? this.endDate : fullDate)
150
+				disableAfter = this.dateCompare(nowDate, this.endDate)
151
+			}
152
+			let multiples = this.multipleStatus.data
153
+			let checked = false
154
+			let multiplesStatus = -1
155
+			if (this.range) {
156
+				if (multiples) {
157
+					multiplesStatus = multiples.findIndex((item) => {
158
+						return this.dateEqual(item, nowDate)
159
+					})
160
+				}
161
+				if (multiplesStatus !== -1) {
162
+					checked = true
163
+				}
164
+			}
165
+			let data = {
166
+				fullDate: nowDate,
167
+				year: full.year,
168
+				date: i,
169
+				multiple: this.range ? checked : false,
170
+				beforeMultiple: this.isLogicBefore(nowDate, this.multipleStatus.before, this.multipleStatus.after),
171
+				afterMultiple: this.isLogicAfter(nowDate, this.multipleStatus.before, this.multipleStatus.after),
172
+				month: full.month,
173
+				disable: !(disableBefore && disableAfter),
174
+				isDay,
175
+				userChecked: false
176
+			}
177
+			if (info) {
178
+				data.extraInfo = info
179
+			}
180
+
181
+			dateArr.push(data)
182
+		}
183
+		return dateArr
184
+	}
185
+	/**
186
+	 * 获取下月天数
187
+	 */
188
+	_getNextMonthDays(surplus, full) {
189
+		let dateArr = []
190
+		for (let i = 1; i < surplus + 1; i++) {
191
+			dateArr.push({
192
+				date: i,
193
+				month: Number(full.month) + 1,
194
+				disable: true
195
+			})
196
+		}
197
+		return dateArr
198
+	}
199
+
200
+	/**
201
+	 * 获取当前日期详情
202
+	 * @param {Object} date
203
+	 */
204
+	getInfo(date) {
205
+		if (!date) {
206
+			date = new Date()
207
+		}
208
+		const dateInfo = this.canlender.find(item => item.fullDate === this.getDate(date).fullDate)
209
+		return dateInfo
210
+	}
211
+
212
+	/**
213
+	 * 比较时间大小
214
+	 */
215
+	dateCompare(startDate, endDate) {
216
+		// 计算截止时间
217
+		startDate = new Date(startDate.replace('-', '/').replace('-', '/'))
218
+		// 计算详细项的截止时间
219
+		endDate = new Date(endDate.replace('-', '/').replace('-', '/'))
220
+		if (startDate <= endDate) {
221
+			return true
222
+		} else {
223
+			return false
224
+		}
225
+	}
226
+
227
+	/**
228
+	 * 比较时间是否相等
229
+	 */
230
+	dateEqual(before, after) {
231
+		// 计算截止时间
232
+		before = new Date(before.replace('-', '/').replace('-', '/'))
233
+		// 计算详细项的截止时间
234
+		after = new Date(after.replace('-', '/').replace('-', '/'))
235
+		if (before.getTime() - after.getTime() === 0) {
236
+			return true
237
+		} else {
238
+			return false
239
+		}
240
+	}
241
+
242
+	/**
243
+	 *  比较真实起始日期
244
+	 */
245
+
246
+	isLogicBefore(currentDay, before, after) {
247
+		let logicBefore = before
248
+		if (before && after) {
249
+			logicBefore = this.dateCompare(before, after) ? before : after
250
+		}
251
+		return this.dateEqual(logicBefore, currentDay)
252
+	}
253
+
254
+	isLogicAfter(currentDay, before, after) {
255
+		let logicAfter = after
256
+		if (before && after) {
257
+			logicAfter = this.dateCompare(before, after) ? after : before
258
+		}
259
+		return this.dateEqual(logicAfter, currentDay)
260
+	}
261
+
262
+	/**
263
+	 * 获取日期范围内所有日期
264
+	 * @param {Object} begin
265
+	 * @param {Object} end
266
+	 */
267
+	geDateAll(begin, end) {
268
+		var arr = []
269
+		var ab = begin.split('-')
270
+		var ae = end.split('-')
271
+		var db = new Date()
272
+		db.setFullYear(ab[0], ab[1] - 1, ab[2])
273
+		var de = new Date()
274
+		de.setFullYear(ae[0], ae[1] - 1, ae[2])
275
+		var unixDb = db.getTime() - 24 * 60 * 60 * 1000
276
+		var unixDe = de.getTime() - 24 * 60 * 60 * 1000
277
+		for (var k = unixDb; k <= unixDe;) {
278
+			k = k + 24 * 60 * 60 * 1000
279
+			arr.push(this.getDate(new Date(parseInt(k))).fullDate)
280
+		}
281
+		return arr
282
+	}
283
+
284
+	/**
285
+	 *  获取多选状态
286
+	 */
287
+	setMultiple(fullDate) {
288
+		let {
289
+			before,
290
+			after
291
+		} = this.multipleStatus
292
+		if (!this.range) return
293
+		if (before && after) {
294
+			if (!this.lastHover) {
295
+				this.lastHover = true
296
+				return
297
+			}
298
+			this.multipleStatus.before = fullDate
299
+			this.multipleStatus.after = ''
300
+			this.multipleStatus.data = []
301
+			this.multipleStatus.fulldate = ''
302
+			this.lastHover = false
303
+		} else {
304
+			if (!before) {
305
+				this.multipleStatus.before = fullDate
306
+				this.lastHover = false
307
+			} else {
308
+				this.multipleStatus.after = fullDate
309
+				if (this.dateCompare(this.multipleStatus.before, this.multipleStatus.after)) {
310
+					this.multipleStatus.data = this.geDateAll(this.multipleStatus.before, this.multipleStatus
311
+						.after);
312
+				} else {
313
+					this.multipleStatus.data = this.geDateAll(this.multipleStatus.after, this.multipleStatus
314
+						.before);
315
+				}
316
+				this.lastHover = true
317
+			}
318
+		}
319
+		this._getWeek(fullDate)
320
+	}
321
+
322
+	/**
323
+	 *  鼠标 hover 更新多选状态
324
+	 */
325
+	setHoverMultiple(fullDate) {
326
+		let {
327
+			before,
328
+			after
329
+		} = this.multipleStatus
330
+
331
+		if (!this.range) return
332
+		if (this.lastHover) return
333
+
334
+		if (!before) {
335
+			this.multipleStatus.before = fullDate
336
+		} else {
337
+			this.multipleStatus.after = fullDate
338
+			if (this.dateCompare(this.multipleStatus.before, this.multipleStatus.after)) {
339
+				this.multipleStatus.data = this.geDateAll(this.multipleStatus.before, this.multipleStatus.after);
340
+			} else {
341
+				this.multipleStatus.data = this.geDateAll(this.multipleStatus.after, this.multipleStatus.before);
342
+			}
343
+		}
344
+		this._getWeek(fullDate)
345
+	}
346
+
347
+	/**
348
+	 * 更新默认值多选状态
349
+	 */
350
+	setDefaultMultiple(before, after) {
351
+		this.multipleStatus.before = before
352
+		this.multipleStatus.after = after
353
+		if (before && after) {
354
+			if (this.dateCompare(before, after)) {
355
+				this.multipleStatus.data = this.geDateAll(before, after);
356
+				this._getWeek(after)
357
+			} else {
358
+				this.multipleStatus.data = this.geDateAll(after, before);
359
+				this._getWeek(before)
360
+			}
361
+		}
362
+	}
363
+
364
+	/**
365
+	 * 获取每周数据
366
+	 * @param {Object} dateData
367
+	 */
368
+	_getWeek(dateData) {
369
+		const {
370
+			fullDate,
371
+			year,
372
+			month,
373
+			date,
374
+			day
375
+		} = this.getDate(dateData)
376
+		let firstDay = new Date(year, month - 1, 1).getDay()
377
+		let currentDay = new Date(year, month, 0).getDate()
378
+		let dates = {
379
+			lastMonthDays: this._getLastMonthDays(firstDay, this.getDate(dateData)), // 上个月末尾几天
380
+			currentMonthDys: this._currentMonthDys(currentDay, this.getDate(dateData)), // 本月天数
381
+			nextMonthDays: [], // 下个月开始几天
382
+			weeks: []
383
+		}
384
+		let canlender = []
385
+		const surplus = 42 - (dates.lastMonthDays.length + dates.currentMonthDys.length)
386
+		dates.nextMonthDays = this._getNextMonthDays(surplus, this.getDate(dateData))
387
+		canlender = canlender.concat(dates.lastMonthDays, dates.currentMonthDys, dates.nextMonthDays)
388
+		let weeks = {}
389
+		// 拼接数组  上个月开始几天 + 本月天数+ 下个月开始几天
390
+		for (let i = 0; i < canlender.length; i++) {
391
+			if (i % 7 === 0) {
392
+				weeks[parseInt(i / 7)] = new Array(7)
393
+			}
394
+			weeks[parseInt(i / 7)][i % 7] = canlender[i]
395
+		}
396
+		this.canlender = canlender
397
+		this.weeks = weeks
398
+	}
399
+
400
+	//静态方法
401
+	// static init(date) {
402
+	// 	if (!this.instance) {
403
+	// 		this.instance = new Calendar(date);
404
+	// 	}
405
+	// 	return this.instance;
406
+	// }
407
+}
408
+
409
+
410
+export default Calendar

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import App from './App'
4 4
 import wx from 'weixin-jsapi'
5 5
 // import VConsole from 'vconsole';
6 6
 // new VConsole();
7
-console.info('v2.4.14');
7
+console.info('v2.4.15');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 90 - 1
pages/inspectList/inspectList.vue

@@ -62,9 +62,10 @@
62 62
                   <text class="p_title">检查项目:</text>
63 63
                   <text class="p_info">{{ item.inspectName || "-" }}</text>
64 64
                 </view>
65
-                <view>
65
+                <view class="btn">
66 66
                   <text class="p_title">预约时间:</text>
67 67
                   <text class="p_info">{{ item.yyTime || "-" }}</text>
68
+									<button @click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button>
68 69
                 </view>
69 70
                 <view>
70 71
                   <text class="p_title">预约叫号:</text>
@@ -103,6 +104,8 @@
103 104
     <!-- 弹窗 -->
104 105
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
105 106
       @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
107
+		<!-- 弹窗 -->
108
+		<inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></inspectRemoveModel>
106 109
   </view>
107 110
 </template>
108 111
 <script>
@@ -119,6 +122,11 @@
119 122
   export default {
120 123
     data() {
121 124
       return {
125
+				currentInspect: null,
126
+				// 弹窗model1
127
+				models1: {
128
+				  disjunctor: false,
129
+				},
122 130
         // 记录当前滚动条的位置
123 131
         scrollYY: 0,
124 132
         // 建单的对象
@@ -181,6 +189,70 @@
181 189
       fjjCondition,
182 190
     },
183 191
     methods: {
192
+			// 修改预约时间->知道了
193
+			know1() {
194
+			  this.models1.disjunctor = false;
195
+			},
196
+			// 修改预约时间->确定
197
+			ok1(data) {
198
+				console.log(data);
199
+				const { yyTime} = data;
200
+				if (!yyTime) {
201
+				  //没有填写预约时间
202
+				  uni.showModal({
203
+				    title: "提示",
204
+				    content: "请填写预约时间!",
205
+				    showCancel: false,
206
+				    success: function(res) {
207
+				      if (res.confirm) {
208
+				        console.log("用户点击确定");
209
+				      } else if (res.cancel) {
210
+				        console.log("用户点击取消");
211
+				      }
212
+				    },
213
+				  });
214
+				  return;
215
+				}
216
+			  this.models1.disjunctor = false;
217
+			  let postData = {
218
+			    inspectCode: this.currentInspect.inspectCode,
219
+					yyTime
220
+			  };
221
+			  uni.showLoading({
222
+			    title: '加载中',
223
+			    mask: true,
224
+			  })
225
+			  post('/workerOrder/updateInspectYytime', postData).then(res => {
226
+			    uni.hideLoading();
227
+			    if (res.status == 200) {
228
+			      this.idx = 0;
229
+			      this.totalNum = -1;
230
+			      this.waitingOrders(0);
231
+			    } else {
232
+			      uni.showToast({
233
+			        icon: "none",
234
+			        title: "修改失败",
235
+			      });
236
+			    }
237
+			  })
238
+			},
239
+			// 修改预约时间->取消
240
+			cancel1() {
241
+			  this.models1.disjunctor = false;
242
+			},
243
+			// 修改预约时间
244
+			changeYyTime(item) {
245
+			  this.currentInspect = item;
246
+			  this.models1 = {
247
+			    disjunctor: true,
248
+			    content: `您要修改[${item.inspectName||''}]的预约时间`,
249
+			    icon: "warn",
250
+			    operate: {
251
+			      ok: "确定",
252
+			      cancel: "取消",
253
+			    },
254
+			  };
255
+			},
184 256
       // 更多筛选
185 257
       moreFilter() {
186 258
         uni.showLoading({
@@ -404,6 +476,13 @@
404 476
             this.triggered = false;
405 477
             this.freshing = true;
406 478
             this.totalNum = res.totalNum;
479
+						res.list = res.list.map(v => {
480
+							if(v.yyTime){
481
+								let [date, time] = v.yyTime.split(" ");
482
+								v.yyTime = new Date(date).Format('yyyy-MM-dd') + " " + time.slice(0, -3);
483
+							}
484
+							return v;
485
+						})
407 486
             if (idx === 0) {
408 487
               this.zxzData = res.list;
409 488
             } else {
@@ -699,6 +778,15 @@
699 778
                   margin-left: 40rpx;
700 779
                   display: flex;
701 780
                 }
781
+								.btn{
782
+									button {
783
+									  font-size: 28rpx;
784
+									  color: #49b856;
785
+									  height: 50rpx;
786
+									  line-height: 50rpx;
787
+									  margin: 0;
788
+									}
789
+								}
702 790
 
703 791
                 .p_title {
704 792
                   width: 160rpx;
@@ -710,6 +798,7 @@
710 798
                   &.red {
711 799
                     color: red;
712 800
                   }
801
+									
713 802
                 }
714 803
 
715 804
                 .num {

+ 280 - 189
pages/patientInformationInfo/patientInformationInfo.vue

@@ -1,197 +1,288 @@
1 1
 <template>
2
-  <view class="patientInformationInfo" v-if="Object.keys(infoDATA).length > 0">
3
-    <view class="page_head">
4
-      <view class="title">{{ infoDATA.patientName }}</view>
5
-      <view class="patientCode">{{ infoDATA.patientCode }}</view>
6
-      <view class="info">
7
-        <view class="bedNum">
8
-          <text class="info_h">床号</text>
9
-          <text class="info_b">{{ infoDATA.bedNum || "-" }}</text>
10
-        </view>
11
-        <view :class="infoDATA.careLevel?'bedNum':'waitingCount'">
12
-          <text class="info_h">待检查数</text>
13
-          <text class="info_b">{{ infoDATA.watingCount }}</text>
14
-        </view>
15
-        <view class="bedNum" v-if="infoDATA.careLevel">
16
-          <text class="info_h">护理等级</text>
17
-          <text class="info_b">{{ infoDATA.careLevel.name }}</text>
18
-        </view>
19
-        <view class="waitingCount" v-if="infoDATA.illnessState">
20
-          <text class="info_h">病情级别</text>
21
-          <text class="info_b">{{ infoDATA.illnessState.name }}</text>
22
-        </view>
23
-      </view>
24
-    </view>
25
-    <view class="page_item" v-for="item in infoDATA.inspects" :key="item.id">
26
-      <view class="page_item_info">
27
-        <view class="page_item_info_title">检查项目:<text>{{ item.inspectName || "-" }}</text></view>
28
-        <view class="page_item_info_title">检查科室:<text>{{
2
+	<view class="patientInformationInfo" v-if="Object.keys(infoDATA).length > 0">
3
+		<view class="page_head">
4
+			<view class="title">{{ infoDATA.patientName }}</view>
5
+			<view class="patientCode">{{ infoDATA.patientCode }}</view>
6
+			<view class="info">
7
+				<view class="bedNum">
8
+					<text class="info_h">床号</text>
9
+					<text class="info_b">{{ infoDATA.bedNum || "-" }}</text>
10
+				</view>
11
+				<view :class="infoDATA.careLevel?'bedNum':'waitingCount'">
12
+					<text class="info_h">待检查数</text>
13
+					<text class="info_b">{{ infoDATA.watingCount }}</text>
14
+				</view>
15
+				<view class="bedNum" v-if="infoDATA.careLevel">
16
+					<text class="info_h">护理等级</text>
17
+					<text class="info_b">{{ infoDATA.careLevel.name }}</text>
18
+				</view>
19
+				<view class="waitingCount" v-if="infoDATA.illnessState">
20
+					<text class="info_h">病情级别</text>
21
+					<text class="info_b">{{ infoDATA.illnessState.name }}</text>
22
+				</view>
23
+			</view>
24
+		</view>
25
+		<view class="page_item" v-for="item in infoDATA.inspects" :key="item.id">
26
+			<view class="page_item_info">
27
+				<view class="page_item_info_title">检查项目:<text>{{ item.inspectName || "-" }}</text></view>
28
+				<view class="page_item_info_title">检查科室:<text>{{
29 29
             item.execDept ? item.execDept.dept : "-"
30 30
           }}</text></view>
31
-        <view class="page_item_info_title">预约时间:<text>{{ item.yyTime || "-" }}</text></view>
32
-        <view class="page_item_info_title">预约叫号:<text>{{ item.reservationNumber || "-" }}</text></view>
33
-        <view class="page_item_info_title">是否紧急:<text :class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text>
34
-        </view>
35
-      </view>
36
-    </view>
37
-    <view v-if="infoDATA.inspects.length == 0" class="zwsj">
38
-      <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
39
-      <view class="zwsj-txt">暂无检查信息</view>
40
-    </view>
41
-  </view>
31
+				<view class="page_item_info_title btn">预约时间:<text>{{ item.yyTime || "-" }}</text><button
32
+						@click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button></view>
33
+				<view class="page_item_info_title">预约叫号:<text>{{ item.reservationNumber || "-" }}</text></view>
34
+				<view class="page_item_info_title">是否紧急:<text
35
+						:class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text>
36
+				</view>
37
+			</view>
38
+		</view>
39
+		<view v-if="!infoDATA.inspects || infoDATA.inspects.length == 0" class="zwsj">
40
+			<image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
41
+			<view class="zwsj-txt">暂无检查信息</view>
42
+		</view>
43
+		<!-- 弹窗 -->
44
+		<inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></inspectRemoveModel>
45
+	</view>
42 46
 </template>
43 47
 <script>
44
-  import {
45
-    get,
46
-    post,
47
-    SM,
48
-    webHandle
49
-  } from "../../http/http.js";
50
-  export default {
51
-    data() {
52
-      return {
53
-        infoDATA: {},
54
-      };
55
-    },
56
-    methods: {
57
-      // 请求详细页面的数据
58
-      getInfo(patientCode) {
59
-        uni.showLoading({
60
-          title: "加载中",
61
-          mask: true,
62
-        });
63
-        post("/nurse/workOrder/getPatientInspectInfo", {
64
-          patientCode,
65
-        }).then((res) => {
66
-          uni.hideLoading();
67
-          if (res.status == 200) {
68
-            this.infoDATA = res.data;
69
-          } else {
70
-            uni.showToast({
71
-              icon: "none",
72
-              title: "请求失败!",
73
-            });
74
-          }
75
-        });
76
-      },
77
-    },
78
-    onLoad(options) {
79
-      let {
80
-        patientCode
81
-      } = options;
82
-      this.getInfo(patientCode);
83
-      // #ifdef APP-PLUS
84
-      webHandle("no", "app");
85
-      // #endif
86
-      // #ifdef H5
87
-      webHandle("no", "wx");
88
-      // #endif
89
-    },
90
-  };
48
+	import {
49
+		get,
50
+		post,
51
+		SM,
52
+		webHandle
53
+	} from "../../http/http.js";
54
+	export default {
55
+		data() {
56
+			return {
57
+				options: {},
58
+				infoDATA: {},
59
+				// 弹窗model1
60
+				models1: {
61
+				  disjunctor: false,
62
+				},
63
+			};
64
+		},
65
+		methods: {
66
+			// 修改预约时间->知道了
67
+			know1() {
68
+			  this.models1.disjunctor = false;
69
+			},
70
+			// 修改预约时间->确定
71
+			ok1(data) {
72
+				console.log(data);
73
+				const { yyTime} = data;//暂时这样
74
+				if (!yyTime) {
75
+				  //没有填写预约时间
76
+				  uni.showModal({
77
+				    title: "提示",
78
+				    content: "请填写预约时间!",
79
+				    showCancel: false,
80
+				    success: function(res) {
81
+				      if (res.confirm) {
82
+				        console.log("用户点击确定");
83
+				      } else if (res.cancel) {
84
+				        console.log("用户点击取消");
85
+				      }
86
+				    },
87
+				  });
88
+				  return;
89
+				}
90
+			  this.models1.disjunctor = false;
91
+			  let postData = {
92
+			    inspectCode: this.currentInspect.inspectCode,
93
+			  	yyTime
94
+			  };
95
+			  uni.showLoading({
96
+			    title: '加载中',
97
+			    mask: true,
98
+			  })
99
+			  post('/workerOrder/updateInspectYytime', postData).then(res => {
100
+			    uni.hideLoading();
101
+			    if (res.status == 200) {
102
+						this.getInfo(this.options.patientCode);
103
+			    } else {
104
+			      uni.showToast({
105
+			        icon: "none",
106
+			        title: "修改失败",
107
+			      });
108
+			    }
109
+			  })
110
+			},
111
+			// 修改预约时间->取消
112
+			cancel1() {
113
+			  this.models1.disjunctor = false;
114
+			},
115
+			// 修改预约时间
116
+			changeYyTime(item) {
117
+			  this.currentInspect = item;
118
+			  this.models1 = {
119
+			    disjunctor: true,
120
+			    content: `您要修改[${item.inspectName||''}]的预约时间`,
121
+			    icon: "warn",
122
+			    operate: {
123
+			      ok: "确定",
124
+			      cancel: "取消",
125
+			    },
126
+			  };
127
+			},
128
+			// 请求详细页面的数据
129
+			getInfo(patientCode) {
130
+				uni.showLoading({
131
+					title: "加载中",
132
+					mask: true,
133
+				});
134
+				post("/nurse/workOrder/getPatientInspectInfo", {
135
+					patientCode,
136
+				}).then((res) => {
137
+					uni.hideLoading();
138
+					if (res.status == 200) {
139
+						if (res.data.inspects && Array.isArray(res.data.inspects)) {
140
+							res.data.inspects = res.data.inspects.map(v => {
141
+								if (v.yyTime) {
142
+									let [date, time] = v.yyTime.split(" ");
143
+									v.yyTime = new Date(date).Format('yyyy-MM-dd') + " " + time.slice(0, -
144
+										3);
145
+								}
146
+								return v;
147
+							})
148
+						}
149
+						this.infoDATA = res.data;
150
+					} else {
151
+						uni.showToast({
152
+							icon: "none",
153
+							title: "请求失败!",
154
+						});
155
+					}
156
+				});
157
+			},
158
+		},
159
+		onLoad(options) {
160
+			this.options = options;
161
+			this.getInfo(this.options.patientCode);
162
+			// #ifdef APP-PLUS
163
+			webHandle("no", "app");
164
+			// #endif
165
+			// #ifdef H5
166
+			webHandle("no", "wx");
167
+			// #endif
168
+		},
169
+	};
91 170
 </script>
92 171
 <style lang="less">
93
-  .patientInformationInfo {
94
-    padding: 0 20rpx;
95
-
96
-    .zwsj {
97
-      text-align: center;
98
-
99
-      .zwsj-img {
100
-        width: 560rpx;
101
-      }
102
-
103
-      .zwsj-txt {
104
-        font-size: 36rpx;
105
-        font-weight: 700;
106
-        margin-top: 20rpx;
107
-        text-align: center;
108
-      }
109
-    }
110
-
111
-    .page_head {
112
-      background-color: #49b856;
113
-      color: #fff;
114
-
115
-      .title {
116
-        font-size: 48rpx;
117
-        padding-top: 24rpx;
118
-        text-align: center;
119
-      }
120
-
121
-      .patientCode {
122
-        padding-bottom: 12rpx;
123
-        font-size: 28rpx;
124
-        text-align: center;
125
-      }
126
-
127
-      .info {
128
-        padding-bottom: 24rpx;
129
-        margin: 8rpx 0;
130
-        height: 80rpx;
131
-        display: flex;
132
-        justify-content: center;
133
-        align-items: center;
134
-
135
-        .bedNum,
136
-        .waitingCount {
137
-          width: 300rpx;
138
-          height: 100%;
139
-          display: flex;
140
-          flex-direction: column;
141
-          justify-content: center;
142
-          align-items: center;
143
-
144
-          .info_h {
145
-            font-size: 30rpx;
146
-          }
147
-
148
-          .info_b {
149
-            font-size: 26rpx;
150
-          }
151
-        }
152
-
153
-        .bedNum {
154
-          position: relative;
155
-
156
-          &:after {
157
-            content: "";
158
-            position: absolute;
159
-            width: 4rpx;
160
-            height: 50rpx;
161
-            right: -2rpx;
162
-            top: 15rpx;
163
-            background-color: #fff;
164
-          }
165
-        }
166
-      }
167
-    }
168
-
169
-    .page_item {
170
-      margin-top: 16rpx;
171
-      margin-bottom: 16rpx;
172
-      background: #fff;
173
-      border-radius: 8rpx;
174
-      overflow: hidden;
175
-      padding: 0 16rpx;
176
-      border: 2rpx solid #e5e9ed;
177
-
178
-      .page_item_info {
179
-        padding: 20rpx 16rpx;
180
-        text-align: left;
181
-        line-height: 60rpx;
182
-        font-size: 30rpx;
183
-
184
-        .page_item_info_title {
185
-          font-weight: 700;
186
-
187
-          text {
188
-            font-weight: normal;
189
-            &.red{
190
-              color: red;
191
-            }
192
-          }
193
-        }
194
-      }
195
-    }
196
-  }
172
+	.patientInformationInfo {
173
+		padding: 0 20rpx;
174
+
175
+		.zwsj {
176
+			text-align: center;
177
+
178
+			.zwsj-img {
179
+				width: 560rpx;
180
+			}
181
+
182
+			.zwsj-txt {
183
+				font-size: 36rpx;
184
+				font-weight: 700;
185
+				margin-top: 20rpx;
186
+				text-align: center;
187
+			}
188
+		}
189
+
190
+		.page_head {
191
+			background-color: #49b856;
192
+			color: #fff;
193
+
194
+			.title {
195
+				font-size: 48rpx;
196
+				padding-top: 24rpx;
197
+				text-align: center;
198
+			}
199
+
200
+			.patientCode {
201
+				padding-bottom: 12rpx;
202
+				font-size: 28rpx;
203
+				text-align: center;
204
+			}
205
+
206
+			.info {
207
+				padding-bottom: 24rpx;
208
+				margin: 8rpx 0;
209
+				height: 80rpx;
210
+				display: flex;
211
+				justify-content: center;
212
+				align-items: center;
213
+
214
+				.bedNum,
215
+				.waitingCount {
216
+					width: 300rpx;
217
+					height: 100%;
218
+					display: flex;
219
+					flex-direction: column;
220
+					justify-content: center;
221
+					align-items: center;
222
+
223
+					.info_h {
224
+						font-size: 30rpx;
225
+					}
226
+
227
+					.info_b {
228
+						font-size: 26rpx;
229
+					}
230
+				}
231
+
232
+				.bedNum {
233
+					position: relative;
234
+
235
+					&:after {
236
+						content: "";
237
+						position: absolute;
238
+						width: 4rpx;
239
+						height: 50rpx;
240
+						right: -2rpx;
241
+						top: 15rpx;
242
+						background-color: #fff;
243
+					}
244
+				}
245
+			}
246
+		}
247
+
248
+		.page_item {
249
+			margin-top: 16rpx;
250
+			margin-bottom: 16rpx;
251
+			background: #fff;
252
+			border-radius: 8rpx;
253
+			overflow: hidden;
254
+			padding: 0 16rpx;
255
+			border: 2rpx solid #e5e9ed;
256
+
257
+			.page_item_info {
258
+				padding: 20rpx 16rpx;
259
+				text-align: left;
260
+				line-height: 60rpx;
261
+				font-size: 30rpx;
262
+
263
+				.page_item_info_title {
264
+					font-weight: 700;
265
+
266
+					&.btn {
267
+						display: flex;
268
+						button {
269
+							font-size: 28rpx;
270
+							color: #49b856;
271
+							height: 50rpx;
272
+							line-height: 50rpx;
273
+							margin: 0;
274
+						}
275
+					}
276
+
277
+					text {
278
+						font-weight: normal;
279
+
280
+						&.red {
281
+							color: red;
282
+						}
283
+					}
284
+				}
285
+			}
286
+		}
287
+	}
197 288
 </style>

+ 13 - 13
pages/promptPage/promptPage.vue

@@ -1,12 +1,17 @@
1 1
 <template>
2
-	<view class="Scanning_B">
3
-		<view class="Scanning_top">
2
+	<view class="Scanning_B" v-if="status !== null">
3
+		<view class="Scanning_top" v-if="status == 200">
4 4
 			<view class="Scanning_top_icon">
5 5
 				<text class="cubeic-ok icon_transport transport-duigou"></text>
6 6
 			</view>
7 7
 		</view>
8
+		<view class="Scanning_top" v-else>
9
+			<view class="Scanning_top_icon">
10
+				<text class="cubeic-close icon_transport transport-shibai"></text>
11
+			</view>
12
+		</view>
8 13
 		<view class="Scanning_cont">
9
-			<view>您已经成功接收{{deptName}}的{{num}}个药包,包括:{{drugBagsCodes}}</view>
14
+			<view>{{content}}</view>
10 15
 		</view>
11 16
 		<view class="foot_btn">
12 17
 			<view class="btn3" @click="showAlert()">知道了</view>
@@ -23,9 +28,8 @@
23 28
 		data() {
24 29
 			return {
25 30
 				options: {},
26
-				num: '',
27
-				deptName: '',
28
-				drugBagsCodes: {},
31
+				content: '',
32
+				status: null,
29 33
 			};
30 34
 		},
31 35
 		methods: {
@@ -45,15 +49,11 @@
45 49
 					})
46 50
 					.then((result) => {
47 51
 						uni.hideLoading();
52
+						this.status = result.status;
48 53
 						if (result.status == 200) {
49
-							this.num = result.num;
50
-							this.deptName = result.deptName;
51
-							this.drugBagsCodes = result.drugBagsCodes;
54
+							this.content = `您已经成功接收${result.deptName}的${result.num}个药包,包括:${result.drugBagsCodes}`;
52 55
 						} else {
53
-							uni.showToast({
54
-								icon: "none",
55
-								title: '请求失败',
56
-							});
56
+							this.content = result.error;
57 57
 						}
58 58
 					})
59 59
 			}

+ 58 - 15
pages/receipt_infopage/receipt_infopage.vue

@@ -269,10 +269,13 @@
269 269
                 <text class="text1">预约时间</text>
270 270
                 <text class="text2">{{ item.yyTime || "-" }}</text>
271 271
               </view>
272
-              <view class="page_item_foot_text"
272
+              <!-- <view class="page_item_foot_text"
273 273
                 v-show="item.inspectState.value==1||item.inspectState.value==2||item.inspectState.value==4">
274 274
                 <view class="btn" @click.stop="remove(item)">移除</view>
275
-              </view>
275
+              </view> -->
276
+							<view class="page_item_foot_text">
277
+							  <view class="btn" @click.stop="remove(item)">移除</view>
278
+							</view>
276 279
             </view>
277 280
           </view>
278 281
         </view>
@@ -344,13 +347,12 @@
344 347
       @know="know" :operate="models.operate" @ok="ok" @cancel="cancel" :textareaFlag="textareaFlag"
345 348
       @textareaInput="textareaInput"></showModel>
346 349
     <!-- 弹窗 -->
347
-    <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
348
-      @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></showModel>
350
+    <inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content"
351
+      @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1" :remove="true"></inspectRemoveModel>
349 352
   </view>
350 353
 </template>
351 354
 <script>
352 355
   import smallScreen from "../../components/smallScreen/smallScreen.vue";
353
-  import showModel from "../../components/showModel/showModel.vue";
354 356
   import {
355 357
     get,
356 358
     post,
@@ -422,17 +424,51 @@
422 424
       know1() {
423 425
         this.models1.disjunctor = false;
424 426
         // this.getInfo(this.dataId);
425
-        //baba
426 427
         uni.navigateTo({
427 428
           url: '../receiptpage/receiptpage',
428 429
         });
429 430
       },
430 431
       // 移除检查->确定
431
-      ok1() {
432
+      ok1(data) {
433
+				console.log(data);
434
+				const { value, yyTime} = data;
435
+				if (!value) {
436
+				  //没有选择移除原因
437
+				  uni.showModal({
438
+				    title: "提示",
439
+				    content: "请选择移除原因!",
440
+				    showCancel: false,
441
+				    success: function(res) {
442
+				      if (res.confirm) {
443
+				        console.log("用户点击确定");
444
+				      } else if (res.cancel) {
445
+				        console.log("用户点击取消");
446
+				      }
447
+				    },
448
+				  });
449
+				  return;
450
+				}else if (value == 2 && !yyTime) {
451
+				  //没有填写预约时间
452
+				  uni.showModal({
453
+				    title: "提示",
454
+				    content: "请填写预约时间!",
455
+				    showCancel: false,
456
+				    success: function(res) {
457
+				      if (res.confirm) {
458
+				        console.log("用户点击确定");
459
+				      } else if (res.cancel) {
460
+				        console.log("用户点击取消");
461
+				      }
462
+				    },
463
+				  });
464
+				  return;
465
+				}
432 466
         this.models1.disjunctor = false;
433 467
         let postData = {
434 468
           gdId: this.infoDATA.id,
435 469
           inspectId: this.currentInspect.id,
470
+					reason: value == 1 ? 'checkDone' : 'modificationTime',
471
+					yyTime: value == 1 ? undefined : yyTime,
436 472
         };
437 473
         uni.showLoading({
438 474
           title: '移除中',
@@ -441,15 +477,22 @@
441 477
         post('/workerOrder/removeInspectByOderId', postData).then(res => {
442 478
           uni.hideLoading();
443 479
           if (res.state == 200) {
444
-            this.models1 = {
445
-              disjunctor: true,
446
-              content: "移除成功",
447
-            };
480
+            uni.showToast({
481
+              icon: 'none',
482
+              title: '移除成功!',
483
+							success() {
484
+								setTimeout(() => {
485
+										uni.navigateTo({
486
+										  url: '../receiptpage/receiptpage',
487
+										});
488
+								}, 1500)
489
+							}
490
+            })
448 491
           } else {
449 492
             uni.showToast({
450
-              icon: "none",
451
-              title: "移除失败",
452
-            });
493
+              icon: 'none',
494
+              title: '移除失败!',
495
+            })
453 496
           }
454 497
         })
455 498
       },
@@ -462,7 +505,7 @@
462 505
         this.currentInspect = item;
463 506
         this.models1 = {
464 507
           disjunctor: true,
465
-          content: "是否移除该检查信息",
508
+          content: "请选择您移除检查的原因?检查移除后将会自动完成或删除工单!",
466 509
           icon: "warn",
467 510
           operate: {
468 511
             ok: "确定",

+ 1 - 0
pages/scanning_B/scanning_B.vue

@@ -423,6 +423,7 @@
423 423
       this.res = JSON.parse(options.res);
424 424
       this.infoDATA = JSON.parse(options.infoDATA); //详细信息
425 425
       console.log(this.infoDATA);
426
+      console.log(this.res);
426 427
       // #ifdef APP-PLUS
427 428
       webHandle("no", "app");
428 429
       // #endif