Compare commits

..

No commits in common. "ff37e3a1275c77bf79010898a3143f997c48d731" and "8c8d557c2ad41d8ba6c8202e773ff6b407e382e1" have entirely different histories.

3 changed files with 9 additions and 13 deletions

View File

@ -403,12 +403,3 @@ export function directUpgradeRecordList(params) {
params
})
}
// 根据商品类型获取商品
export function getGoodsListByType(params) {
return request({
url: '/sale/manage/wares/find-all-maker',
method: 'get',
params
})
}

View File

@ -1,3 +1,9 @@
<!--
* @Descripttion:
* @version:
* @Author: kBank
* @Date: 2023-02-23 15:59:57
-->
<template>
<div class="page">
<!-- <topBar v-if="topList.length > 0"

View File

@ -156,12 +156,11 @@ export default {
getData() {
api
.getGoodsListByType({
specialArea: this.isArea,
isMakerGift: 3
.waresList({
specialArea: this.isArea
})
.then((res) => {
this.allGoods = res.data || []
this.allGoods = res.data
})
},