reservationapplication.vue
14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<template>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail"
style="max-width: 800px; margin: 40px auto 0;">
<a-row>
<a-col :span="24">
<a-form-model-item label="1. 预约时间" prop="appointmentTime">
<a-select placeholder="请选择预约时间段" v-model="model.appointmentTime" v-on:change="changeEvn($event)" >
<a-select-option v-for="appointmentTime in timedateList" :key="appointmentTime.itemValue" :value="appointmentTime.itemValue">{{ appointmentTime.itemText}}</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="2. 时间段:" prop="timeSelection">
<a-select class="extTimeSelection" placeholder="请选择预约时间段" v-model="model.timeSelection" v-on:change="changeEvn2($event)" >
<a-select-option v-for="timeSelection in timeSelectionList" :key="timeSelection" :value="timeSelection">{{ timeSelection }}</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="3. 订单号" prop="orderNumber0" :model="dynamicForm">
<a-input v-model="model.orderNumber0" id="numbers0" placeholder="请输入订单号" ></a-input>
<div class="b123456" v-for="(item, index) in dynamicForm.counter" style="text-align: center;">
<!-- <a-input placeholder="请输入订单号" ></a-input>-->
<input :id="item.id" placeholder='请输入订单号' type='text' class='ant-input'>
</div>
<a @click="addOrderNumber()">我有更多订单号</a>
</a-form-model-item>
</a-col>
<!-- <a-col :span="24">-->
<!-- <a-form-model-item label="4. 车牌号码" prop="carNumber">-->
<!-- <a-input v-model="model.carNumber" placeholder="请输入车牌号"></a-input>-->
<!-- </a-form-model-item>-->
<!-- </a-col>-->
<!-- <a-col :span="24">-->
<!-- <a-form-model-item label="5. 司机名称" prop="driverName">-->
<!-- <a-input v-model="model.driverName" placeholder="请输入司机名称"></a-input>-->
<!-- </a-form-model-item>-->
<!-- </a-col>-->
<!-- <a-col :span="24">-->
<!-- <a-form-model-item label="6. 司机手机号" prop="phoneNumber">-->
<!-- <div class="a123456" >-->
<!-- <a-input v-model="model.phoneNumber" id="number0" placeholder="请输入司机手机号"></a-input>-->
<!-- </div>-->
<!--<!– <a @click="addPhone()">我有更多手机号</a>–>-->
<!-- </a-form-model-item>-->
<!-- </a-col>-->
<!-- <a-col :span="24">-->
<!-- <a-form-model-item label="4.月台组" prop="railwayPlatform">-->
<!-- <a-select placeholder="请选择月台组" v-model="model.railwayPlatform" >-->
<!-- <a-select-option v-for="railwayPlatform in PlatformList" :key="railwayPlatform.code" :value="railwayPlatform.code">{{ railwayPlatform.name}}</a-select-option>-->
<!-- </a-select>-->
<!-- </a-form-model-item>-->
<!-- </a-col>-->
<a-col :span="24">
<a-form-model-item label="5.车型" prop="vehicle">
<j-dict-select-tag type="list" v-model="model.vehicle" dictCode="car_model"
placeholder="请选择车型"/>
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="6.填表人名称" prop="customerName">
<a-input v-model="model.customerName" placeholder="请输入客户名称"></a-input>
</a-form-model-item>
</a-col>
<a-col :span="24">
<a-form-model-item label="7.填表人电话" prop="submitPhone">
<a-input v-model="model.submitPhone" placeholder="请输入填表人电话"></a-input>
</a-form-model-item>
</a-col>
<a-input type="hidden" v-model="model.objective=1"></a-input>
<a-input type="hidden" v-model="model.reservationMethod='H5微信端'"></a-input>
<!-- <j-modal-->
<!-- :visible.sync="modal.visible"-->
<!-- :width="1200"-->
<!-- :title="modal.title"-->
<!-- :ant-btn="modal.title"-->
<!-- :fullscreen.sync="modal.fullscreen"-->
<!-- :switchFullscreen="modal.switchFullscreen"-->
<!-- switchFullscreen-->
<!-- @ok="handleOk"-->
<!-- :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"-->
<!-- @cancel="handleCancel"-->
<!-- cancelText="关闭">-->
<!-- <template v-for="(i,k) of 5">-->
<!-- <p :key="k">这是协议内容,循环5次</p>-->
<!-- </template>-->
<!-- </j-modal>-->
<font color="#6C6C6C"> 注意事项:<br>
1、请在预约时间内拿提单到公司地磅激活IC卡,并在此期间内到门岗室(入厂登记处)点击允许入厂,在预约时间外后激活卡,预约无效。<br>
2. 如要修改预约信息或取消预约,请扫描预约更改二维码填写信息或者拨打电话:0731-88289175,然后再重新预约。</font>
<br>
</a-row>
<a-form-model-item :wrapperCol="{span: 19, offset: 5}">
<a-button type="primary" @click="onSubmit()">下一步</a-button>
</a-form-model-item>
</a-form-model>
</j-form-container>
</a-spin>
</template>
<script>
import {httpAction} from '@/api/manage'
import {getSchedulerPrint, getTime, Platform, searchTimePeriod} from "../../../api/api";
import {getUrlParam} from "../../../api/getUrlParam";
export default {
name: 'ReservationSubmissionForm',
components: {},
props: {
//表单禁用
disabled: {
type: Boolean,
default: false,
required: false
}
},
data() {
return {
modal: {
title: '用户协议',
visible: true,
fullscreen: false,
switchFullscreen: false,
},
dynamicForm: {
counter: []
},
timeSelection:'',
codez:'',
disableSubmit:'',
a:0,
b:0,
timeSelectionList:[],
PlatformList:[],
timedateList:[],
model: {
orderNumber:''
},
labelCol: {
xs: {span: 24},
sm: {span: 5},
},
wxCode:'',
isShow:false,
wrapperCol: {
xs: {span: 24},
sm: {span: 16},
},
confirmLoading: false,
validatorRules: {
appointmentTime: [
{required: true, message: '请选择预约时间!'},
],
timeSelection: [
{required: true, message: '请选择预约时间段!'},
],
orderNumber0: [
{required: true, message: '请输入订单号!'},
{pattern: /^.{6,18}$/, message: '请输入6到18位任意字符!'},
],
customerName: [
{required: true, message: '请输入填表人名称!'},
],
vehicle:[
{ required: true, message: '请选择车型!'},
],
submitPhone: [
{required: true, message: '请输入填表人电话!'},
{pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'},
],
// railwayPlatform:[
// {required: true, message: '请选择月台组!'},
// ]
},
url: {
add: "/reservationsubmission/reservationSubmission/add",
edit: "/reservationsubmission/reservationSubmission/edit",
queryById: "/reservationsubmission/reservationSubmission/queryById"
}
}
},
computed: {
formDisabled() {
return this.disabled
},
},
mounted:function() {
let id = this.$route.query.id;
this.loadForm(id);
this.PlatformTimeSlot(id);
},
created() {
// 判断是微信公众号还是浏览器打开
if (this.checkBrowserType()){
this.getCode();
}
//备份model原始值
this.modelDefault = JSON.parse(JSON.stringify(this.model));
},
methods: {
getCode(){
const code = this.getUrlParam('code')
const local = window.location.href;
if ((code == null || code === '')) {
window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + "wx3f9ef1399cfe4aed" + '&redirect_uri=' + encodeURIComponent(local) + '&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect'
}else {
this.wxCode = code;
}
},
getUrlParam: function (name) {
var reg=new RegExp('(^|&)'+name+'=([^&]*)(&|$)')
var r=window.location.search.substr(1).match(reg)
if(r!=null) return unescape(r[2])
return null
},
checkBrowserType(){
let flag = navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i);
var ua = navigator.userAgent.toLowerCase();
// 检查浏览器是否在微信环境下
if(ua.match(/MicroMessenger/i) == "micromessenger"){
return true;
}
return false;
},
timeSlot(id){
searchTimePeriod(id).then((res) => {
this.timeSelectionList=res;
let els= document.querySelector(".extTimeSelection .ant-select-selection-selected-value");
els.innerText='';
});
},
PlatformTimeSlot(id){
Platform(id).then((res) => {
this.PlatformList=res;
});
},
loadForm(id){
getTime(id).then((res) => {
this.timedateList=res;
})
},
handleOk () {
this.close();
},
handleCancel () {
// this.$router.push('/404')
window.location.replace("http://localhost/404");
},
changeEvn(event){
this.timeSlot(event)
},
PlatformChange(event){
this.PlatformTimeSlot(event)
},
changeEvn2(event){
var str1=event.substring(0, event.indexOf("---"));
if (event.substring(event.indexOf("预约")+2,event.length-1)==0)
{
alert("当前预约次数是不足的,您可以继续预约,不能确保审核通过")
};
let els= document.querySelector(".extTimeSelection .ant-select-selection-selected-value");
if(els!=null)els.innerText=str1;
this.model.timeSelection=str1;
},
add() {
this.edit(this.modelDefault);
},
edit(record) {
this.model = Object.assign({}, record);
this.visible = true;
},
addPhone() {
// 添加手机号方法
let els= document.querySelector(".a123456");
this.a++;
let number="number"+this.a;
let html="<input placeholder='请输入司机手机号' type='text' class='ant-input' id="+number+">";
els.innerHTML=els.innerHTML+html;
},
addOrderNumber() {
//添加订单号方法
this.b++;
let number="numbers"+this.b;
let params = {id: number}
this.dynamicForm.counter.push(params);
},
onSubmit() {
// 截取路径中的code,如果没有就去微信授权,如果已经获取到了就直接传code给后台获取openId
// this.wxCode = getUrlParam('code')
// this.wxCode = "061eZKFa1skE7D03grHa1Z7q9b2eZKFw";
const local = window.location.href;
const code = this.wxCode;
if (!this.wxCode && this.checkBrowserType()) {
window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + "wx3f9ef1399cfe4aed" + '&redirect_uri=' + encodeURIComponent(local) + '&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect'
} else {
this.model.codez=code;
if (this.model.objective == 1) {
this.model.detailed = '';
}
const that = this;
// 触发表单验证
this.model.orderNumber = "";
for (let i = this.b; i >= 0; i--) {
let temp = document.getElementById("numbers" + i).value;
if (temp == null){
continue;
}
if (i==0)
{
this.model.orderNumber = this.model.orderNumber + temp;
}
else {
this.model.orderNumber = this.model.orderNumber + temp + ",";
}
}
this.$refs.form.validate(valid => {
if (valid) {
that.confirmLoading = true;
let httpurl = '';
let method = '';
if (!this.model.id) {
httpurl += this.url.add;
method = 'post';
} else {
httpurl += this.url.edit;
method = 'put';
}
httpAction(httpurl, this.model, method).then((res) => {
if (res.success) {
that.$message.success("预约成功!");
that.$emit('ok');
this.$router.push({
name: "Success",
query:{
description: this.model.driverName,
orderCode: this.model.orderNumber,
contactNumber: res.result.submitPhone,
time: res.result.appointmentTime + " "+res.result.timeSelection,
// railwayPlatform: this.model.railwayPlatform,
title:"预约成功"
}
});
} else {
that.$message.warning(res.message);
let list = this.model.orderNumber.split(',');
this.model.orderNumber = list[list.length - 1];
}
}).finally(() => {
that.confirmLoading = false;
})
}
})
}
}
}
}
</script>