diff --git a/api/appUser.js b/api/appUser.js index 84f0262..a68d21c 100755 --- a/api/appUser.js +++ b/api/appUser.js @@ -251,12 +251,12 @@ export function getStoreItems(kind = 'product', page = 1, page_size = 20, filter if (filters.category_id !== undefined && filters.category_id !== null && filters.category_id > 0) { data.category_id = filters.category_id } - return authRequest({ url: '/api/app/store/items', method: 'GET', data }) + return request({ url: '/api/app/store/items', method: 'GET', data }) } export function getProductCategories() { - return authRequest({ url: '/api/app/product_categories', method: 'GET' }) + return request({ url: '/api/app/product_categories', method: 'GET' }) } export function getTasks(page = 1, page_size = 20) { diff --git a/pages/cabinet/index.vue b/pages/cabinet/index.vue index de49fc5..4675af7 100755 --- a/pages/cabinet/index.vue +++ b/pages/cabinet/index.vue @@ -256,7 +256,7 @@ import { onShow, onReachBottom, onShareAppMessage, onPullDownRefresh } from '@dc import { getInventory, getProductDetail, redeemInventory, requestShipping, cancelShipping, listAddresses, getShipments, createAddressShare, createShippingFeeOrder } from '@/api/appUser' import { getSynthesisRecipes, doSynthesis } from '@/api/synthesis.js' import { vibrateShort } from '@/utils/vibrate.js' -import { checkPhoneBound, checkPhoneBoundSync } from '@/utils/checkPhone.js' +import { checkPhoneBoundSync } from '@/utils/checkPhone.js' import { executePaymentFlow } from '@/utils/payment.js' // #ifdef MP-TOUTIAO import customTabBarToutiao from '@/components/app-tab-bar-toutiao.vue' diff --git a/pages/index/index.vue b/pages/index/index.vue index 83345a2..818f82b 100755 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -144,7 +144,6 @@