123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741 |
- let date = new Date()
- let times = []
- var weekday = new Array(7)
- weekday[0] = '周日'
- weekday[1] = '周一'
- weekday[2] = '周二'
- weekday[3] = '周三'
- weekday[4] = '周四'
- weekday[5] = '周五'
- weekday[6] = '周六'
- for (let i = 0; i < 15; i++) {
- let stamp = date.setDate(date.getDate() + (i == 0 ? 0 : 1))
- let year = new Date(stamp).getFullYear()
- let month =
- new Date(stamp).getMonth() + 1 < 10 ?
- '0' + (new Date(stamp).getMonth() + 1) :
- new Date(stamp).getMonth() + 1
- let day =
- new Date(stamp).getDate() < 10 ?
- '0' + new Date(stamp).getDate() :
- new Date(stamp).getDate()
- let week = weekday[new Date(stamp).getDay()]
- times.push({
- date: `${year + '-' + month + '-' + day}`,
- day: `${month + '-' + day}`,
- week: week
- })
- }
- const app = getApp()
- import {
- get,
- post
- } from '../../utils/http'
- import {
- timestampToDate
- } from '../../utils/time'
- Page({
-
- data: {
- times,
- time: '',
- currentTimestamp: 0,
- currentDateIndex: 0,
- currentSwiperIndex: 0,
- currentTimeIndex: -2,
- currentDeviceIndex: -1,
- money: 0,
- projectTime: [],
- projectData: {},
- projectList: [],
- deviceList: [],
- currentChangeTime: null,
- currentChangeDevice: null,
- source: 'project',
- inFirstIn: false,
- inSecIn: false,
- ids: '',
- needTime: 0,
- showStore: false,
- storeList: [],
- },
-
-
- toBuyNow: function () {
-
-
-
-
-
-
-
-
-
-
-
- let {
- projectData,
- currentDateIndex,
- projectList,
- time
- } = this.data
- let dataIds = []
- if (this.data.onType == 'one') {
- dataIds = [{
- id: this.data.keyData.id
- }]
- } else {
- for (let i = 0; i < projectList.length; i++) {
- let ins = {}
- ins.id = projectList[i].id
- if (projectList[i].selectMaterial) {
- ins.product_id = projectList[i].selectMaterial.id
- }
- dataIds.push(ins)
- }
- }
- console.log(dataIds)
-
- wx.showLoading({
- title: '预约中',
- mask: true
- });
- post(
- 'v2/api/order/add', {
- order_data: JSON.stringify(dataIds),
- store_id: projectData.store_id,
- order_day: times[currentDateIndex].date,
- order_time: time,
- type: this.data.onType,
- share_user_id: app.globalData.shareUserId || '',
- },
- (res) => {
- console.log('xxxxxx')
- console.log(res.data)
- let currentPage = getCurrentPages();
- let previousPage = currentPage[currentPage.length - 2];
- previousPage.setData({
- selectProductCar: []
- })
-
- wx.hideLoading();
-
- wx.requestSubscribeMessage({
- tmplIds: ['RNife3ZhTYYpUuT26ylGQj8W0v07IPo2TGe941iR3y8'],
- success(res) {
- console.log(res);
- let status = ''
- if (res['RNife3ZhTYYpUuT26ylGQj8W0v07IPo2TGe941iR3y8'] == 'reject') {
- status = 2
- } else {
- status = 1
- }
- get('/v2/api/activity/push', {
- type: 2,
- status,
- }, res => {})
- },
- })
-
- if (app.globalData.isSkinPlan || app.globalData.isTestSkin) {
- let url = app.globalData.isTestSkin ? '/v2/api/order/skin' : 'v2/api/order/recommend'
- get(url, {
- type: 2
- }, (res) => {
- if (res.code == 200) {
- this.globalData.isSkinPlan = false
- this.globalData.isTestSkin = false
- }
- })
- }
- wx.redirectTo({
- url: `/pages/orderBySuccess/orderBySuccess?&store_id=${this.data.projectData.store_id}&&orderdata=` + JSON.stringify(res.data),
- })
- })
- },
- knowSubmit: function () {
- this.setData({
- inFirstIn: false,
- inSecIn: false
- })
- let version3 = wx.getStorageSync('version3')
- if (!version3 || version3 != 1) {
- this.setData({
- inSecIn: true
- })
- wx.setStorageSync('version3', 1)
- }
- },
- noneEnoughPeople() {
- },
-
- onLoad: function (options) {
- let date = new Date()
- let currentTimestamp = date.getTime() / 1000 + 60 * 2
- let _time = timestampToDate(currentTimestamp, 'H:i')
- let projectList = {}
- if (options.type == 'one') {
- projectList = JSON.parse(options.data).items
- this.setData({
- keyData: JSON.parse(options.data)
- })
- } else {
- projectList = JSON.parse(options.data)
- }
- let ids = ''
- let needTime = 0
- for (let i = 0; i < projectList.length; i++) {
- ids = ids + ',' + projectList[i].id
- needTime = needTime + projectList[i].use_time
- }
-
-
- let projectData = {}
-
-
-
- console.log('app.globalData.storeData')
- console.log(app.globalData.storeData)
- console.log('app.globalData.storeData')
- projectData.store_id = app.globalData.storeData.id
- projectData.storeData = app.globalData.storeData
- this.setData({
- onType: options.type,
- money: options.money,
- ids: ids.substring(1, ids.length),
- projectList: projectList,
- projectData: projectData,
- source: 'project',
- currentTimestamp: currentTimestamp,
- time: _time,
- needTime: needTime,
- })
- this.getHourDate()
-
- if (projectData.store_id == 17) {
- this.getStoreList()
- }
-
- this.getTime()
- let lat1 = app.address.latitude
- let lng1 = app.address.longitude
- this.setData({
- lat1: lat1,
- lng1: lng1,
- })
- },
- getHourDate() {
- let dataTime = this.data.time.split(':')
- let needTime = this.data.needTime
- let minHour = parseInt((dataTime[1] * 1 + needTime * 1) / 60)
- let dataHour = Number(minHour) + Number(dataTime[0])
- let min = null
- if ((Number(dataTime[1]) + needTime) > 60) {
- min = (Number(dataTime[1]) + needTime) % 60
- } else if ((Number(dataTime[1]) + needTime) === 60) {
- min = 0
- } else {
- min = (Number(dataTime[1]) + needTime)
- }
- let dataHourShow = dataHour > 23 ? '(明天)' + (dataHour * 1 - 24) : dataHour
- this.setData({
- showTimes: dataHourShow + ":" + (min < 10 ? `0${min}` : min)
- })
- },
-
- onReady: function () {},
-
- onShow: function () {
- let version2 = wx.getStorageSync('version2')
- if (!version2 || version2 != 1) {
- this.setData({
- inFirstIn: true
- })
- wx.setStorageSync('version2', 1)
- } else {
- let version3 = wx.getStorageSync('version3')
- if (!version3 || version3 != 1) {
- this.setData({
- inSecIn: true
- })
- wx.setStorageSync('version3', 1)
- }
- }
- },
-
- onHide: function () {},
-
- onUnload: function () {},
-
- onPullDownRefresh: function () {},
-
- onReachBottom: function () {},
-
- onShareAppMessage: function () {},
-
- onChangeDate(e) {
- let {
- currentDateIndex
- } = this.data
- if (currentDateIndex != e.currentTarget.dataset.index) {
- this.setData({
- currentDateIndex: e.currentTarget.dataset.index,
- currentChangeDevice: null,
- currentChangeTime: null,
- currentTimeIndex: -2,
- currentSwiperIndex: 0,
- currentDeviceIndex: -1,
- deviceList: []
- },
- () => {
- this.getTime()
- }
- )
- }
- },
-
- onChangeSwiper(e) {
- this.setData({
- currentSwiperIndex: e.currentTarget.dataset.index
- })
- },
-
- changeSwiper(e) {
- this.setData({
- currentSwiperIndex: e.detail.current
- })
- },
-
- onChangeTime(e) {
- console.log('eeeee')
- let {
- projectTime,
- currentSwiperIndex,
- currentChangeTime,
- currentTimeIndex
- } = this.data
- projectTime[currentSwiperIndex].list.forEach((item, index) => {
- if (item.index == e.currentTarget.dataset.index) {
- currentChangeTime = item
- }
- })
- if (currentTimeIndex != e.currentTarget.dataset.index) {
- console.log('asdasdasdasd')
- console.log(currentChangeTime)
- this.setData({
- currentTimeIndex: e.currentTarget.dataset.index,
- currentChangeTime,
- time: currentChangeTime.order_time,
- currentChangeDevice: null,
- currentDeviceIndex: -1
- })
-
-
-
-
-
- this.getHourDate()
-
- }
- },
-
- bindTimeChange(e) {
- let that = this
- let {
- projectData,
- currentDateIndex,
- projectTime,
- currentSwiperIndex,
- time
- } = this.data
- get(
- 'v2/api/product/check_time', {
- ids: this.data.ids,
- store_id: projectData.store_id,
- order_day: times[currentDateIndex].date,
- order_time: e.detail.value
- },
- (res) => {
- console.log(res)
- if (res.data.status == 1) {
- that.setData({
- time: e.detail.value,
- currentTimeIndex: -1
- })
- that.getHourDate()
- } else {
- }
- }
- )
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- },
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- onChangeDevice(e) {
- let {
- deviceList
- } = this.data
- this.setData({
- currentDeviceIndex: e.currentTarget.dataset.index,
- currentChangeDevice: deviceList[e.currentTarget.dataset.index]
- })
- },
-
- getTime() {
- let {
- projectData,
- currentDateIndex,
- projectTime,
- currentSwiperIndex,
- time
- } = this.data
- get(
- 'v2/api/product/order_time', {
- ids: this.data.ids,
- store_id: projectData.store_id,
- order_day: times[currentDateIndex].date,
- },
- (res) => {
- projectTime[0] = res.data.day
- projectTime[1] = res.data.night
- let sum = 0
- let defaultTimeIndex = -1
- projectTime.forEach((item, index) => {
- if (item.active == 1) {
- currentSwiperIndex = index
- }
- item.list.forEach((item, index) => {
- item.index = sum
- sum++
-
- if (item.status == 1 && defaultTimeIndex == -1) {
- defaultTimeIndex = item.index
- }
- })
- })
- this.setData({
- projectTime,
- currentSwiperIndex
- }, () => {
-
-
-
-
-
-
-
- this.bindTimeChange({
- detail: {
- value: time
- }
- })
- })
- }
- )
- },
-
- getProjectDevice() {
- let {
- currentTimeIndex,
- time,
- projectTime,
- currentSwiperIndex,
- projectData,
- currentDateIndex
- } = this.data
- let order_time_id
- if (currentTimeIndex != -1) {
- projectTime[currentSwiperIndex].list.forEach((item, index) => {
- if (item.index == currentTimeIndex) {
- order_time_id = item.time_id
- }
- })
- } else {
- order_time_id = time
- }
- console.log(projectData)
- console.log(order_time_id)
- return new Promise((resolve, reject) => {
- get(
- 'api/project/device', {
- store_id: projectData.store_id,
- project_id: projectData.id,
- order_day: times[currentDateIndex].date,
- order_time_id: order_time_id,
- use_time: projectData.use_time
- },
- (res) => {
- this.setData({
- deviceList: res.data
- },
- () => {
- this.onChangeDevice({
- currentTarget: {
- dataset: {
- index: 0
- }
- }
- })
- }
- )
- resolve()
- console.log(res)
- },
- (rej) => {
- this.setData({
- currentTimeIndex: -2,
- currentChangeTime: null
- })
- console.log(rej)
- }
- )
- })
- },
-
- addOrder() {
- let {
- projectData,
- currentTimeIndex,
- time,
- currentDateIndex,
- currentChangeTime,
- currentChangeDevice,
- deviceList
- } = this.data
- if (currentTimeIndex == -1) {
- currentChangeTime = {
- order_day: times[currentDateIndex].date,
- time_id: time,
- order_time: time
- }
- }
- console.log(currentChangeTime)
- if (currentChangeTime == null) {
- wx.showToast({
- title: '请选择预约时间',
- icon: 'none'
- })
- } else if (
- new Date(
- `${currentChangeTime.order_day} ${currentChangeTime.order_time}`
- ) <= new Date()
- ) {
- wx.showToast({
- title: '所选时间已超时,请重新选择',
- icon: 'none'
- })
- } else if (currentChangeDevice == null) {
- let _title = '请选择设备'
- if (deviceList.length == 0) {
- _title = '当前所选时间无可用设备'
- }
- wx.showToast({
- title: _title,
- icon: 'none'
- })
- } else {
- wx.navigateTo({
- url: `/pages/orderConfirm/orderConfirm?source=${
- this.data.source
- }&data=${JSON.stringify(projectData)}&deviceData=${JSON.stringify(
- currentChangeDevice
- )}&timeData=${JSON.stringify(currentChangeTime)}`
- })
- }
- },
-
- changeStore() {
- console.log(this.data.projectData.storeData);
- wx.navigateTo({
- url: `/pages/store/store?isSelectProduct=true&&project_id=${JSON.stringify(this.data.ids)}&&defaultStore=${JSON.stringify(this.data.projectData.storeData)}`,
- })
- },
-
- getStoreInfo(store_id) {
- get(
- 'api/store/info', {
- store_id
- },
- (res) => {
- let projectData = this.data.projectData
- projectData.store_id = res.data.id
- projectData.storeData = res.data
- this.setData({
- projectData,
-
- })
- this.getTime()
-
- if (res.data.id == 17) {
- this.getStoreList()
- }
- }
- )
- },
-
- getStoreList() {
- get(
- 'api/store', {
- page: 1,
- limit: 10,
- },
- (res) => {
-
-
-
-
-
-
-
-
-
-
- this.setData({
- storeList: res.data.list
- })
- }
- )
- },
-
- onChangeStore(e) {
- let storeId = e.currentTarget.dataset.item.id
- this.getStoreInfo(storeId)
- },
-
-
-
-
-
-
- })
|