1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import {get} from '../../utils/http'
- Page({
-
- data: {
- qrCodeUrl:"",
- date:"",
- },
-
- getQrCode(){
- get('v2/api/order/url',{
- store_id:wx.getStorageSync('store_id')
- },(res=>{
- this.setData({
- qrCodeUrl:res.data
- })
- }))
- },
-
- onLoad: function (options) {
- this.getQrCode()
- },
-
- onReady: function () {
- },
-
- onShow: function () {
- },
-
- onHide: function () {
- },
-
- onUnload: function () {
- },
-
- onPullDownRefresh: function () {
- },
-
- onReachBottom: function () {
- },
-
- onShareAppMessage: function () {
- }
- })
|