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
| // pages/calculator/index.js
| // import { imageUrl } from '../../utils/config'
| // import { calculatorOption, calculatorSave, decodePhone, bindPhone } from '../../api/index'
| import { getBjParamConfig, saveRenovationCalculator } from '../../api/index'
| // import Ls from '../../utils/storage'
| // let ls = new Ls
| Page({
|
| /**
| * 页面的初始数据
| */
| data: {
| // background: imageUrl + 'calculator/background.jpg',
| userPhone: '',
| type: '',
| info: '',
| area: '',
| money: '',
| typeArray: ['精装', '毛坯'],
| infoArray: [
| '一室一厅', '两室一厅', '两室两厅', '三室两厅',
| '四室两厅', '五室两厅及以上'
| ],
| calculatorOptions: [],
| showPopup: false,
| activePicker: '',
| pickerIndex: 0,
| // 展示计算结果
| showResultMoney: false,
| containerContentStyle: 'hidden;'
| },
|
| onLoad: function (options) {
| let that = this
| this.getCalculatorOption()
| const userInfo = wx.getStorageSync('member')
| if (userInfo.phone) {
| that.setData({ userPhone: userInfo.phone })
| }
| },
| // 返回上一页
| navigateBack () {
| wx.navigateBack({
| delta: 1,
| })
| },
|
| // picker 选择
| onChange (e) {
| this.setData({ pickerIndex: e.detail.index })
| },
|
| // input 输入
| inputTyping (e) {
| this.setData({ [e.currentTarget.dataset.index]: e.detail.value })
| },
|
| // 选择房屋类型、户型信息
| toSelectType (e) {
| let index = e.currentTarget.dataset.index
| let { activePicker } = this.data
| if ( activePicker === index) {
| this.setData({ showPopup: true })
| } else {
| this.setData({
| pickerIndex: 0,
| activePicker: index,
| showPopup: true
| })
| }
| },
|
| // 取消选择
| cancelPicker () {
| this.setData({ showPopup: false })
| },
|
| // 确认选择
| confirmPicker () {
| let { activePicker, pickerIndex } = this.data
| this.setData({ [activePicker]: pickerIndex, showPopup: false })
| },
|
| // 获取用户手机号
| getPhoneNumber (e) {
| // console.log(e)
| let that = this
| decodePhone({ code: e.detail.code })
| .then(res => {
| if (res.phone === undefined || res.phone.length === null || !res.phone) {
| wx.showToast({
| title: res.msg,
| icon: 'none'
| })
| } else {
| bindPhone({ phone: res.phone })
| .then(newInfo => {
| ls.set('userInfo', newInfo.member)
| that.setData({ userPhone: res.phone })
| that.submit()
| })
| }
| })
| },
|
| // 立即计算
| submit () {
| // console.log('立即计算')
| let { userPhone } = this.data
| const res = wx.getStorageSync('member')
|
| if (userPhone) {
| let { type, info, area, money, typeArray, infoArray, calculatorOptions: options } = this.data
| let submitData = {}
| submitData.name = res.name
| submitData.phone = res.phone
|
| if (type === '') {
| wx.showToast({
| title: '请选择房屋类型',
| icon: 'none'
| })
| return false
| }
| if (info === '') {
| wx.showToast({
| title: '请选择户型信息',
| icon: 'none'
| })
| return false
| }
| if (area === '') {
| wx.showToast({
| title: '请输入房屋面积',
| icon: 'none'
| })
| return false
| }
| if (money === '') {
| wx.showToast({
| title: '请输入装修预算',
| icon: 'none'
| })
| return false
| }
|
| submitData = ['房屋类型:' + typeArray[type], '户型信息:' + infoArray[info], '房屋面积:' + area + '㎡', '装修预算:' + money + '万元'].join('-')
| for (let i in options) {
| options[i].money = (money * options[i].rate / 100).toFixed(2)
| let childList = options[i].childList
| for(let j in childList) {
| childList[j].money = (money * childList[j].rate / 100).toFixed(2)
| }
| }
| this.setData({ calculatorOptions: options, showResultMoney: true, containerContentStyle: 'auto' })
| this.submitCalculatorResult(submitData)
| }
| },
|
| // 提交计算结果
| submitCalculatorResult (data) {
| saveRenovationCalculator({ info: data }).then(res => {
| // console.log(res)
| if (res.success) {
| wx.showToast({
| title: '计算成功',
| icon: 'none'
| })
| } else {
| console.log(res.msg)
| }
| })
| },
|
| // 获取计算器配置
| getCalculatorOption () {
| getBjParamConfig().then(res => {
| this.setData({ calculatorOptions: res.data })
| })
| },
| onReady: function () {
|
| },
|
| /**
| * 生命周期函数--监听页面显示
| */
| onShow: function () {
|
| },
|
| /**
| * 生命周期函数--监听页面隐藏
| */
| onHide: function () {
|
| },
|
| /**
| * 生命周期函数--监听页面卸载
| */
| onUnload: function () {
|
| },
|
| /**
| * 页面相关事件处理函数--监听用户下拉动作
| */
| onPullDownRefresh: function () {
|
| },
|
| /**
| * 页面上拉触底事件的处理函数
| */
| onReachBottom: function () {
|
| },
|
| /**
| * 用户点击右上角分享
| */
| onShareAppMessage: function () {
|
| }
| })
|
|