Browse Source

供应商仓库列表调整

jiana 2 weeks ago
parent
commit
6bf5815445

+ 3 - 3
src/views/trackManager/auditPlaceShip.vue

@@ -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>
@@ -71,7 +71,7 @@ export default defineComponent({
   setup() {
     const route = useRoute()
     let filtInfoData = reactive({ // 搜索
-      limit:10,offset:0,status:0,supplierName:''
+      limit:10,offset:0,status:0,shopName:''
     })
 
     let TabData = ref([])  // 列表数据
@@ -91,7 +91,7 @@ export default defineComponent({
     function resetData(){
       filtInfoData.offset = 0
       filtInfoData.limit = 10
-      filtInfoData.supplierName = ''
+      filtInfoData.shopName = ''
       filtInfoData.status = 0
       getData()
     }

+ 3 - 3
src/views/trackManager/placeShip.vue

@@ -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()
     }

+ 3 - 3
src/views/trackManager/unPlaceShip.vue

@@ -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:2,supplierName:''
+      limit:10,offset:0,status:2,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 = 2
       getData()
     }