1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- Page({
-
- data: {
- nozzleId:'',
- quantify:'元',
- fastInputs:[10,20,50,100,200,500],
- type:[
- { name:'金额',checked:true},
- { name:'升数',checked:false}
- ]
- },
-
- onLoad(options) {
- const id = decodeURIComponent(options.q)
- this.setData({
- nozzleId:id
- })
- wx.showToast({
- title: id,
- })
- },
-
- onReady() {
- },
-
- onShow() {
- },
-
- onHide() {
- },
-
- onUnload() {
- },
-
- onPullDownRefresh() {
- },
-
- onReachBottom() {
- },
-
- onShareAppMessage() {
- },
-
- onTypeChange(event) {
- var type = event.detail.value;
- if(type == '升数') {
- this.setData({
- quantify:'升'
- })
- } else {
- this.setData({
- quantify:'元'
- })
- }
- }
- })
|