|
@@ -9,7 +9,7 @@
|
|
|
<!-- 筛选 -->
|
|
|
<Row :gutter="8">
|
|
|
<Col span="10">
|
|
|
- 供应商名称 <Input v-model="filtInfoData.supplierName" placeholder="请输入供应商名称" style="width:80%"/>
|
|
|
+ 供应商名称 <Input v-model="filtInfoData.shopName" placeholder="请输入供应商名称" style="width:80%"/>
|
|
|
</Col>
|
|
|
<Col span="2">
|
|
|
<Button type="primary" @click="getData">查询</Button>
|
|
@@ -69,7 +69,7 @@ export default defineComponent({
|
|
|
setup() {
|
|
|
const route = useRoute()
|
|
|
let filtInfoData = reactive({ // 搜索
|
|
|
- limit:10,offset:0,status:1,supplierName:''
|
|
|
+ limit:10,offset:0,status:1,shopName:''
|
|
|
})
|
|
|
|
|
|
let TabData = ref([]) // 列表数据
|
|
@@ -89,7 +89,7 @@ export default defineComponent({
|
|
|
function resetData(){
|
|
|
filtInfoData.offset = 0
|
|
|
filtInfoData.limit = 10
|
|
|
- filtInfoData.supplierName = ''
|
|
|
+ filtInfoData.shopName = ''
|
|
|
filtInfoData.status = 1
|
|
|
getData()
|
|
|
}
|