You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.1 KiB
109 lines
2.1 KiB
// pages/pbService/library/bookinfo/index.js
|
|
import commonApi from "../../../../utils/https/common"
|
|
Page({
|
|
|
|
/**
|
|
* 页面的初始数据
|
|
*/
|
|
data: {
|
|
info:null
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad: function (options) {
|
|
let item = JSON.parse(decodeURIComponent(options.item))
|
|
this.setData({
|
|
info:item
|
|
})
|
|
|
|
},
|
|
getBook:function(){
|
|
commonApi.user_post("pbservice/Booking/loginNeedAuth").then(res=>{
|
|
if(res.code==1 && res.data && res.data.card_no){
|
|
let card_no = res.data.card_no;
|
|
commonApi.user_post("pbservice/Booking/deliveryCurrent",{
|
|
card_no:card_no
|
|
}).then(res=>{
|
|
if(res && res.data){
|
|
commonApi.user_post("pbservice/Booking/borrow",{
|
|
book_rec_no:this.data.info.bookRecNo,
|
|
card_no:card_no,
|
|
appartment_code:res.data.appartmentcode
|
|
}).then(r=>{
|
|
if(r.code==1){
|
|
wx.showToast({
|
|
title: '借阅成功',
|
|
icon:'success'
|
|
});
|
|
}
|
|
console.log(r)
|
|
})
|
|
}
|
|
else {
|
|
wx.showToast({
|
|
title: '请先设置默认取书点',
|
|
icon: 'none'
|
|
})
|
|
setTimeout(()=>{
|
|
wx.navigateTo({
|
|
url: '../getpoint/index?from=orderbook',
|
|
});
|
|
},1000)
|
|
}
|
|
})
|
|
}
|
|
})
|
|
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面初次渲染完成
|
|
*/
|
|
onReady: function () {
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面显示
|
|
*/
|
|
onShow: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面隐藏
|
|
*/
|
|
onHide: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面卸载
|
|
*/
|
|
onUnload: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面相关事件处理函数--监听用户下拉动作
|
|
*/
|
|
onPullDownRefresh: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 页面上拉触底事件的处理函数
|
|
*/
|
|
onReachBottom: function () {
|
|
|
|
},
|
|
|
|
/**
|
|
* 用户点击右上角分享
|
|
*/
|
|
onShareAppMessage: function () {
|
|
|
|
}
|
|
})
|