|
@@ -20,16 +20,16 @@
|
|
</view>
|
|
</view>
|
|
<view class="cell hflex acenter">
|
|
<view class="cell hflex acenter">
|
|
<view class="label">拍摄预算</view>
|
|
<view class="label">拍摄预算</view>
|
|
- <u-input placeholder="请输入您的预算资金" v-model="money" border="none" > </u-input>
|
|
|
|
|
|
+ <u-input placeholder="请输入您的预算资金" v-model="price" border="none" > </u-input>
|
|
</view>
|
|
</view>
|
|
<view class="cell hflex acenter jbetween" @click="show_youhui = true">
|
|
<view class="cell hflex acenter jbetween" @click="show_youhui = true">
|
|
<view class="label">优惠券</view>
|
|
<view class="label">优惠券</view>
|
|
- <u-input placeholder="不使用" v-model="youhui" border="none" :disabled="true" disabledColor="#FFFFFF" > </u-input>
|
|
|
|
|
|
+ <u-input placeholder="不使用" v-model="coupon.name || '不使用'" border="none" :disabled="true" disabledColor="#FFFFFF" > </u-input>
|
|
<image src="static/down.png" mode="aspectFill"></image>
|
|
<image src="static/down.png" mode="aspectFill"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom hflex acenter jcenter">
|
|
<view class="bottom hflex acenter jcenter">
|
|
- <view class="btn">提交表单</view>
|
|
|
|
|
|
+ <view class="btn" @click="submit">提交表单</view>
|
|
</view>
|
|
</view>
|
|
<u-popup :show="show_time" mode="bottom" :round="14" @close="toclose">
|
|
<u-popup :show="show_time" mode="bottom" :round="14" @close="toclose">
|
|
<time-box :list="timelist" @sure="selecttime" @close="toclose"></time-box>
|
|
<time-box :list="timelist" @sure="selecttime" @close="toclose"></time-box>
|
|
@@ -54,13 +54,18 @@
|
|
name: '',
|
|
name: '',
|
|
mobile: '',
|
|
mobile: '',
|
|
time: '',
|
|
time: '',
|
|
|
|
+ date: '',
|
|
address: '',
|
|
address: '',
|
|
- money: '',
|
|
|
|
|
|
+ price: '',
|
|
youhui: '',
|
|
youhui: '',
|
|
show_time: false,
|
|
show_time: false,
|
|
show_youhui: false,
|
|
show_youhui: false,
|
|
youhui_list: [],
|
|
youhui_list: [],
|
|
- timelist: []
|
|
|
|
|
|
+ timelist: [],
|
|
|
|
+ coupon: {
|
|
|
|
+ id: '',
|
|
|
|
+ name: ''
|
|
|
|
+ },
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onLoad() {
|
|
onLoad() {
|
|
@@ -76,6 +81,26 @@
|
|
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ submit() {
|
|
|
|
+ var _this = this
|
|
|
|
+ $api.req({
|
|
|
|
+ url: 'shoot-appointment',
|
|
|
|
+ method: 'POST',
|
|
|
|
+ data: {
|
|
|
|
+ name: _this.name,
|
|
|
|
+ mobile: _this.mobile,
|
|
|
|
+ date: _this.date,
|
|
|
|
+ address: _this.address,
|
|
|
|
+ price: _this.price,
|
|
|
|
+ coupon_id: _this.coupon.id ? _this.coupon.id : '0',
|
|
|
|
+ }
|
|
|
|
+ }, function(res) {
|
|
|
|
+ if(res.code == 10000) {
|
|
|
|
+ $api.info(res.msg)
|
|
|
|
+ uni.navigateBack()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
selectyouhui(e) {
|
|
selectyouhui(e) {
|
|
this.youhui = this.youhui_list[e].title
|
|
this.youhui = this.youhui_list[e].title
|
|
this.toclose()
|
|
this.toclose()
|
|
@@ -94,32 +119,34 @@
|
|
this.youhui_list.push(youhui)
|
|
this.youhui_list.push(youhui)
|
|
}
|
|
}
|
|
|
|
|
|
- this.timelist = [
|
|
|
|
- {
|
|
|
|
- id: 1,
|
|
|
|
- name: '11月7日 星期二'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: 2,
|
|
|
|
- name: '11月8日 星期三'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: 3,
|
|
|
|
- name: '11月9日 星期四'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: 4,
|
|
|
|
- name: '11月10日 星期五'
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- id: 5,
|
|
|
|
- name: '11月11日 星期六'
|
|
|
|
- },
|
|
|
|
- ]
|
|
|
|
|
|
+ const days = 7; // 近7天
|
|
|
|
+ const week = ['日', '一', '二', '三', '四', '五', '六']; // 星期
|
|
|
|
+
|
|
|
|
+ const dateList = Array.from({ length: days }, (v, i) => i).map(day => {
|
|
|
|
+ const date = new Date();
|
|
|
|
+ date.setDate(date.getDate() + day);
|
|
|
|
+ let month = date.getMonth() + 1
|
|
|
|
+ if(month < 10) {
|
|
|
|
+ month = '0' + month
|
|
|
|
+ }
|
|
|
|
+ let today = date.getDate()
|
|
|
|
+ if(today<10) {
|
|
|
|
+ today = '0' + today
|
|
|
|
+ }
|
|
|
|
+ return date.getFullYear() + '-' + month + '-' + today + ' 星期' + week[date.getDay()];
|
|
|
|
+ });
|
|
|
|
+ for(var i=0;i<dateList.length;i++) {
|
|
|
|
+ this.timelist.push({
|
|
|
|
+ id: i+1,
|
|
|
|
+ name: dateList[i],
|
|
|
|
+ value: dateList[i].slice(0,10)
|
|
|
|
+ })
|
|
|
|
+ }
|
|
},
|
|
},
|
|
selecttime(e) {
|
|
selecttime(e) {
|
|
console.log(e);
|
|
console.log(e);
|
|
this.time = this.timelist[e].name
|
|
this.time = this.timelist[e].name
|
|
|
|
+ this.date = this.timelist[e].value
|
|
this.toclose()
|
|
this.toclose()
|
|
},
|
|
},
|
|
toclose() {
|
|
toclose() {
|