123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- // dispatcher/pages/sweeped_books/sweeped_books.js
- import { routers, viewImage, sharePage, isFn, getGlobalVal } from '../../../utils/util.js'
- import { AgencyVipList, InitBorrowCar, ScanningBooksTwo} from '../../../utils/api.js'
- const { navigateTo, redirectTo, navigateBack } = routers()
- const { globalData } = getApp()
- const { baseImgUrl, thumbnail, qrcodeInvalidToastText } = globalData
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- baseImgUrl,
- thumbnail,
- isLoaded: false,
- isAllCheck: 0,
- isManage: 0,
- totalNum: 0,
- childName:'',
- ids: [],
- pageNo: 1,
- studentId:'',
- isDown: false,
- pageSize: 10,
- isAll: 0,
- totalNumbers: 0,
- list: [
- ],
- nodataArray: {
- text: "暂无图书",
- image: '../../../assets/nodata_1.png',
- margin: '400rpx auto'
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- options.userId = getGlobalVal('userId')
- options.libId = getGlobalVal('list').length > 0 ? getGlobalVal('list')[0].libId : ''
- options.library = getGlobalVal('library')
- this.setData({ options })
- wx.setNavigationBarTitle({
- title: `代办借阅`,
- })
- this.getData(res => {
- this.setData({ isLoaded: 1 })
- })
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- const obj = { navigateTo, redirectTo, navigateBack, viewImage }
- for (const i in obj) {
- this[i] = obj[i]
- }
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- },
-
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- const obj = { navigateTo, redirectTo, navigateBack, viewImage }
- for (const i in obj) {
- this[i] = obj[i]
- }
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- this.setData({ pageNo: 1 })
- this.getData(res => {
- wx.stopPullDownRefresh()
- })
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- const { isAll, isDown } = this.data
- if (isAll) {
- this.setData({ isDown: true })
- return
- } else {
- this.setData({ isLoad: true, isDown: false })
- this.getData(() => {
- this.setData({ isLoad: false })
- })
- }
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- if (isFn(sharePage)) return sharePage()
- },
- /**
- * 选择跳转进入页
- */
- selectNavCtl: function (e) {
- const { id } = e.currentTarget.dataset
- const { options } = this.data
- this.setData({ studentId: id })
- wx.setStorageSync('studentId', id);
- const bookList = getGlobalVal(`presidentBorrowBook_${options.userId}_${options.libId}_${id}`) || []
- console.log(`presidentBorrowBook_${options.userId}_${options.libId}_${id}`)
- console.log(bookList)
- this.setData({bookList })
- this.scanCtl()
- },
- /**
- * 调用微信扫一扫之前判断可借书多少本
- */
- scanCtl: function () {
- const continuousFn = { fn: this.scanCtl, param: { ...arguments } }
- const { libId, vipId } = this.data.options
- const { studentId, options } = this.data
- const bookList = getGlobalVal(`presidentBorrowBook_${options.userId}_${options.libId}_${studentId}`) || []
- console.log(`presidentBorrowBook_${options.userId}_${options.libId}_${studentId}`)
- console.log(bookList)
- InitBorrowCar({ data: { vipId: studentId, libId }, continuousFn }).then(res => {
- const { canBorrowNum, borrowNumTotal } = res.data
- wx.showToast({
- title: `您还可以借${canBorrowNum}本书`,
- icon: 'none'
- })
- // if (canBorrowNum ==0) return
- // // if (this.data.bookList.length > 0) {
- // // navigateTo({ url: 'president/pages/borrow_car/borrow_car', paras: { canBorrowNum } })
- // // return
- // // }
- // if (canBorrowNum > 0) {
- // this.scanFn()
- // }
- console.log(bookList)
- if (bookList.length > 0) {
- navigateTo({ url: 'president/pages/borrow_car/borrow_car', paras: { canBorrowNum } })
- return
- }
- if (canBorrowNum -bookList.length > 0) {
- this.scanFn()
- }
- this.setData({ ...res.data })
- })
- },
- /**
- * 调用微信扫一扫
- */
- scanFn: function () {
- wx.scanCode({
- success: res => {
- const url = res.result
- const detailsId = url.split('_')[1].split('.')[0]
- if (!detailsId) {
- wx.showToast({
- title: qrcodeInvalidToastText,
- icon: 'none'
- })
- return
- }
- this.scanningBooksFn(detailsId)
- }
- })
- },
- /**
- * 获取书籍数据
- */
- getData: function (cb) {
- const continuousFn = { fn: this.getData, param: { ...arguments } }
- const { pageNo, pageSize, list, childName } = this.data
- const { libId } = this.data.options
- AgencyVipList({ data: { libId, pageNo, pageSize, childName }, continuousFn }).then(res => {
- const { list, pages } = res.data
- let listTemp = []
- if (pageNo == 1) {
- listTemp = [].concat(list)
- } else {
- listTemp = [].concat(this.data.list, list)
- }
- const correctListTemp = (res => {
- console.log(res)
- var d = []
- for (let i in res) {
- res[i].number = 0
- }
- return res
- })(listTemp)
- this.setData({ list: correctListTemp, totalNumbers:pages, pageNo: list.length == pageSize ? pageNo + 1 : pageNo, isAll: list.length < pageSize })
- cb && cb(res)
- }).catch(res => {
- cb && cb(res)
- })
- },
- /**
- * 扫一扫借书
- */
- scanningBooksFn: function (detailsId) {
- const continuousFn = { fn: this.scanningBooksFn, param: { ...arguments } }
- const { vipId } = this.data.options
- const { canBorrowNum, bookList, studentId } = this.data
- ScanningBooksTwo({ data: { detailsId, vipId: studentId }, continuousFn }).then(res => {
- const { detailsId} = res.data;
- for (var i in bookList) {
- if (detailsId == bookList[i].detailsId) {
- wx.showToast({
- title: '此二维码已经扫过',
- icon: 'none'
- })
- }
- }
- if (detailsId) {
- navigateTo({ url: 'president/pages/borrow_car/borrow_car', paras: { ...res.data, canBorrowNum } })
- }
- }).catch(res => {
- wx.showToast({
- title: res.msg,
- icon: 'none'
- })
- })
- }
- })
|