refactor(vendor): 优化供应商管理页面代码结构
- 移除表格组件后多余的空行 - 将仓库相关接口调用分离到独立的仓库模块 - 更新导入语句以反映新的模块划分master
parent
e7dc01b8bf
commit
2a9cf42a06
|
|
@ -128,7 +128,7 @@
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<pagination
|
<pagination
|
||||||
v-show="total>0"
|
v-show="total>0"
|
||||||
:total="total"
|
:total="total"
|
||||||
|
|
@ -216,7 +216,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listVendor, getVendor, delVendor, addVendor, updateVendor, exportVendor, listAllWarehouse } from "@/api/base/vendor";
|
import { listVendor, getVendor, delVendor, addVendor, updateVendor, exportVendor } from "@/api/base/vendor";
|
||||||
|
import {listAllWarehouse} from "@/api/base/warehouse";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "Vendor",
|
name: "Vendor",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue