123456789101112131415161718192021222324252627282930313233 |
- Page({
- data: {
- warehoseIndex: 1,
- warehoseStatus: 2,
- warehoseArray: [{id:1, name:'未抽'},
- {id: 2, name: '已抽'}],
- pCode: '',
- sscCode: ''
- },
- onLoad: function (options) {
- },
- bindPickerChange: function(e) {
- this.setData({
- warehoseIndex: e.detail.value,
- warehoseStatus: this.data.warehoseArray[e.detail.value].id
- })
- },
- bindpCodeInput: function (e) {
- this.setData({
- pCode: e.detail.value
- })
- },
- bindSScCodeInput: function (e) {
- this.setData({
- sscCode: e.detail.value
- })
- },
- search() {
- wx.navigateTo({
- url: `/pages/qc/list?sscCode=${this.data.sscCode}&pCode=${this.data.pCode}&warehoseStatus=${this.data.warehoseStatus}`,
- })
- }
- })
|