-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
388 lines (375 loc) · 10.6 KB
/
main.js
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
379
380
381
382
383
384
385
386
387
388
/* eslint-disable camelcase */
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import Vuex from 'vuex'
import cookie from 'js-cookie'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import ViewUI from 'view-design'
import 'view-design/dist/styles/iview.css'
import axios from 'axios'
import VueAxios from 'vue-axios'
Vue.use(VueAxios, axios)
Vue.use(ElementUI)
Vue.use(ViewUI)
Vue.use(Vuex)
Vue.use(cookie)
Vue.prototype.$axios = axios
axios.defaults.baseURL = '/api'
Vue.config.productionTip = false
/* 将全局变量挂在到 cookie 上 */
Vue.prototype.$cookie = cookie
/* 获取某一阶段用户消费情况 */
Vue.prototype.getUserconsumptions = function getUserconsumptions (startdate, enddate) {
return new Promise((resolve, reject) => {
this.$axios({
method: 'GET',
url: 'https://localhost:9090/user/getUserconsumptions',
params: {
startdate: startdate,
enddate: enddate
}
}).then(response => {
let datas = JSON.parse(JSON.stringify(response.data))
/* 将data转换为数组对象 */
let userconsumptions = []
for (let key in datas) {
let userconsumption = {
userid: parseInt(key),
userconsumption: datas[key]
}
userconsumptions.push(userconsumption)
}
resolve(userconsumptions)
}).catch(error => {
reject(error)
})
})
}
/* 获取某一阶段图书信息 */
Vue.prototype.getBooksales = function getBooksales (startdate, enddate) {
return new Promise((resolve, reject) => {
this.$axios({
method: 'GET',
url: 'https://localhost:9090/order/getBookSales',
params: {
startdate: startdate,
enddate: enddate
}
}).then(response => {
let datas = JSON.parse(JSON.stringify(response.data))
/* 将data转换为数组对象 */
let bookSales = []
for (let key in datas) {
let booksale = {
bookid: parseInt(key),
booksale: datas[key]
}
bookSales.push(booksale)
}
resolve(bookSales)
}).catch(error => {
reject(error)
})
})
}
/* 获取图书信息 */
Vue.prototype.getBooks = function getBooks (username, password) {
return new Promise((resolve, reject) => {
this.axios({
method: 'GET',
url: 'https://localhost:9090/book/getBooks', /* 获取图书文字信息 */
params: {
username: username,
password: password
}
}).then(response => {
if (response.status === 200) {
let books = response.data
for (let i = 0; i < books.length; i++) {
this.$set(books[i], 'imageBase64', '')
}
localStorage.setItem('books', JSON.stringify(books))
this.axios({
method: 'GET',
url: 'https://localhost:9090/book/getBookImages', /* 获取图书 base64 图片信息 */
params: {
username: username,
password: password
}
}).then(response => {
if (response.status === 200) {
this.$message({
duration: 1000,
title: '提示信息',
message: '获取图书信息成功',
type: 'success'
})
let bookImages = response.data
for (let i = 0; i < bookImages.length; i++) {
let index = this.bookid_to_index(bookImages[i].bookId)
if (index !== -1) books[index].imageBase64 = bookImages[i].imageBase64
}
localStorage.setItem('books', JSON.stringify(books))
resolve(books)
}
}).catch(error => {
this.$message({
duration: 1000,
title: '提示信息',
message: '权限不够',
type: 'error'
})
reject(error)
})
}
}).catch(error => {
this.$message({
duration: 1000,
title: '提示信息',
message: '权限不够',
type: 'error'
})
reject(error)
})
})
}
/* 成功访问首页 */
Vue.prototype.apiVisitHistory = function apiVisitHistory () {
return new Promise((resolve, reject) => {
this.axios({
method: 'GET',
url: 'https://localhost:9090/user/apiVisitHistory'
}).then(response => {
if (response.status === 200) {
this.$message({
duration: 1000,
title: '提示信息',
message: '访问首页成功',
type: 'success'
})
resolve(response.data)
}
}).catch(error => {
this.$message({
duration: 1000,
title: '提示信息',
message: '访问出错',
type: 'error'
})
reject(error)
})
})
}
/* 获取购物车图书信息 */
Vue.prototype.getCartItems = function getCartItems (searchbookstr) {
return new Promise((resolve, reject) => {
this.axios({
method: 'GET',
url: 'https://localhost:9090/user/getCartItems',
params: {
username: cookie.get('username'),
password: cookie.get('password'),
searchbookstr: searchbookstr
}
}).then(response => {
if (response.status === 200) {
this.$message({
duration: 1000,
title: '提示信息',
message: '获取购物车图书数量成功',
type: 'success'
})
localStorage.setItem('carts', JSON.stringify(response.data))
resolve(response.data)
}
}).catch(error => {
this.$message({
duration: 1000,
title: '提示信息',
message: '权限不够',
type: 'error'
})
reject(error)
})
})
}
/* 更改图书 */
Vue.prototype.changeBookCount = function changeBookCount (bookid, bookcount, isadd) {
return new Promise((resolve, reject) => {
this.axios({
method: 'POST',
url: isadd === true ? 'https://localhost:9090/user/changeBookCountAdd' : 'https://localhost:9090/user/changeBookCountTo',
params: {
username: cookie.get('username'),
password: cookie.get('password'),
bookid: bookid,
bookcount: bookcount
}
}).then(response => {
if (response.status === 200) {
this.$message({
duration: 1000,
title: '提示信息',
message: '更改图书数量成功',
type: 'success'
})
}
resolve(response)
}).catch(error => {
this.$message({
duration: 1000,
title: '提示信息',
message: '更改图书数量失败',
type: 'error'
})
reject(error)
})
})
}
/* 更改图书inventory */
Vue.prototype.changeBookInventory = function changeBookInventory (bookid, changeinventory, isadd) {
JSON.parse(localStorage.getItem('books'))[this.bookid_to_index(bookid)].inventory -= changeinventory
this.axios({
method: 'GET',
url: 'https://localhost:9090/book/changeBookInventory',
params: {
bookid: bookid,
changeinventory: changeinventory,
isadd: isadd
}
}).then(response => {
if (response.status === 200) {
this.$message({
duration: 1000,
title: '提示信息',
message: '更改图书库存成功',
type: 'success'
})
}
}).catch(error => {
console.log(error)
this.$message({
duration: 1000,
title: '提示信息',
message: '更改图书库存失败',
type: 'error'
})
})
}
/* 跳转至书籍详情页 */
Vue.prototype.routeToBookDetails = function routeToBookDetails (bookid) {
cookie.set('bookid', bookid, 1)
this.$router.push({
path: '/bookDetails',
query: {
bookid: bookid
}
})
}
/* 获得用户信息 */
Vue.prototype.getUsers = function getUsers () {
return new Promise((resolve, reject) => {
this.$axios({
method: 'GET',
url: 'https://localhost:9090/user/getUsers',
params: {
username: cookie.get('username'),
password: cookie.get('password')
}
}).then(response => {
localStorage.setItem('users', JSON.stringify(response.data))
resolve(response.data)
}).catch(error => {
reject(error)
})
})
}
/* 根据bookid获取数组下标index */
Vue.prototype.bookid_to_index = function bookid_to_index (bookid) {
let index = -1
JSON.parse(localStorage.getItem('books')).forEach((book, idx) => {
if (book.id === bookid) index = idx
})
return index
}
/* 根据 bookid 获取 globalbooks 中 book */
Vue.prototype.bookid_to_book = function bookid_to_book (bookid) {
let index = this.bookid_to_index(bookid)
if (index === -1) return null
else return JSON.parse(localStorage.getItem('books'))[index]
}
Vue.prototype.userid_to_index = function userid_to_index (userid) {
let index = -1
JSON.parse(localStorage.getItem('users')).forEach((user, idx) => {
if (user.id === userid) index = idx
})
return index
}
Vue.prototype.userid_to_user = function userid_to_user (userid) {
let index = this.userid_to_index(userid)
if (index !== -1) return JSON.parse(localStorage.getItem('users'))[index]
else return null
}
/* 获取订单信息 */
Vue.prototype.getOrders = function getOrders (username, password) {
return new Promise((resolve, reject) => {
this.$axios({
method: 'GET',
url: 'https://localhost:9090/order/getOrders',
params: {
username: username,
password: password
}
}).then(response => {
if (response.status === 200) {
this.$message({
duration: 1000,
title: '提示信息',
message: '获取历史订单信息成功',
type: 'success'
})
localStorage.setItem('orders', JSON.stringify(response.data))
}
resolve(response.data)
}).catch(error => {
reject(error)
})
})
}
/* 获取订单详情物品信息 */
Vue.prototype.getOrderItems = function getOrderItems (username, password) {
return new Promise((resolve, reject) => {
this.$axios({
method: 'GET',
url: 'https://localhost:9090/order/getOrderItems',
params: {
username: username,
password: password
}
}).then(response => {
if (response.status === 200) {
this.$message({
duration: 1000,
title: '提示信息',
message: '获取历史订单信息成功',
type: 'success'
})
localStorage.setItem('orderitems', JSON.stringify(response.data))
resolve(response.data)
}
}).catch(error => {
reject(error)
})
})
}
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: {App},
template: '<App/>'
})