diff --git a/api/model/order.js b/api/model/order.js index 602a5bc..7f8252b 100644 --- a/api/model/order.js +++ b/api/model/order.js @@ -69,6 +69,24 @@ const api = { auth: true, showLoading: true, }, + + fetchVoucher: { + url: '/order/overOrderList', + method: 'POST', + limit : 500, + auth : true, + showLoading : true, + }, + + fetchStore: { + url: '/order/overOrderList', + method: 'POST', + limit : 500, + auth : true, + showLoading : true, + }, + + } export default api \ No newline at end of file diff --git a/api/model/shop.js b/api/model/shop.js index 0073a3e..e8d6190 100644 --- a/api/model/shop.js +++ b/api/model/shop.js @@ -40,6 +40,8 @@ const api = { auth : true, showLoading : true, }, + + } export default api \ No newline at end of file diff --git a/manifest.json b/manifest.json index cbc1ffa..8fadf3d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name" : "unapp模板", - "appid" : "__UNI__197A38F", + "appid" : "__UNI__C572032", "description" : "", "versionName" : "1.0.0", "versionCode" : "100", diff --git a/mixins/list.js b/mixins/list.js index 23bb70e..726f9f1 100644 --- a/mixins/list.js +++ b/mixins/list.js @@ -46,6 +46,8 @@ export default { * @returns {Promise} 返回Promise对象 */ getData(queryParams){ + console.log("queryParams") + console.log(queryParams) return new Promise((success, error) => { if(!this.mixinsListApi){ return console.error('mixinsListApi 缺失'); diff --git a/pages_order/components/verifyRecord/voucherCard.vue b/pages_order/components/verifyRecord/voucherCard.vue index 5da272a..62a028b 100644 --- a/pages_order/components/verifyRecord/voucherCard.vue +++ b/pages_order/components/verifyRecord/voucherCard.vue @@ -1,9 +1,9 @@