fix: 修改部分组件名称,避免打包时出现文件同名警告

This commit is contained in:
2025-03-14 11:22:08 +08:00
parent b54985f150
commit 70c35b4a1f
5 changed files with 12 additions and 12 deletions

View File

@@ -309,7 +309,7 @@
<el-button type="primary" @click="submitHandle" :loading="queryFormLoading">确定</el-button>
</div>
<!-- 选择商品 -->
<shopList ref="shopList" @success="selectShop" />
<goods-list ref="shopList" @success="selectShop" />
<!-- 选择耗材 -->
<ConsumableList ref="ConsumableList" @success="selectConsumable" />
<el-dialog
@@ -343,13 +343,13 @@ import consApi from "@/api/product/cons";
import vendorApi from "@/api/product/vendor";
import stockApi from "@/api/product/stock";
import dayjs from "dayjs";
import shopList from "./components/shopList.vue";
import goodsList from "./components/goods-list.vue";
import ConsumableList from "./components/consumableList.vue";
import { formatDecimal } from "@/utils/tools.js";
export default {
name: "operation_in",
components: {
shopList,
goodsList,
ConsumableList,
},
data() {