From 2d95cc0f94335eee717406e7a777c1193a42081c Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期六, 25 四月 2026 15:00:34 +0800
Subject: [PATCH] 天津宝东 1.销售台账填完信息后,可以导出模版供客户直接盖章 2.销售台账打印报价单,可以多选销售订单,得相同公司名称,样式随意发挥 3.销售台账子表格产品的库存状态改为库存数量
---
src/views/basicData/product/index.vue | 18 +++++++++---------
1 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/views/basicData/product/index.vue b/src/views/basicData/product/index.vue
index 10b51bf..85add2a 100644
--- a/src/views/basicData/product/index.vue
+++ b/src/views/basicData/product/index.vue
@@ -77,7 +77,7 @@
<div class="right">
<div style="margin-bottom: 10px" v-if="isShowButton">
<el-button type="primary" @click="openModelDia('add')">
- 鏂板瑙勬牸鍨嬪彿
+ 鏂板灏哄
</el-button>
<ImportExcel :product-id="currentId" @uploadSuccess="getModelList" />
<el-button
@@ -132,7 +132,7 @@
</el-dialog>
<el-dialog
v-model="modelDia"
- title="瑙勬牸鍨嬪彿"
+ title="灏哄"
width="400px"
@close="closeModelDia"
@keydown.enter.prevent
@@ -146,10 +146,10 @@
>
<el-row>
<el-col :span="24">
- <el-form-item label="瑙勬牸鍨嬪彿锛�" prop="model">
+ <el-form-item label="灏哄锛�" prop="model">
<el-input
v-model="modelForm.model"
- placeholder="璇疯緭鍏ヨ鏍煎瀷鍙�"
+ placeholder="璇疯緭鍏ュ昂瀵�"
clearable
@keydown.enter.prevent
/>
@@ -294,7 +294,7 @@
const expandedKeys = ref([]);
const tableColumn = ref([
{
- label: "瑙勬牸鍨嬪彿",
+ label: "灏哄",
prop: "model",
},
{
@@ -397,7 +397,7 @@
form.value.productName = data.productName;
}
};
-// 鎵撳紑瑙勬牸鍨嬪彿寮规
+// 鎵撳紑灏哄寮规
const openModelDia = (type, data) => {
modelOperationType.value = type;
modelDia.value = true;
@@ -474,7 +474,7 @@
getModelList();
};
-// 鎻愪氦瑙勬牸鍨嬪彿淇敼
+// 鎻愪氦灏哄淇敼
const submitModelForm = () => {
proxy.$refs.modelFormRef.validate((valid) => {
if (valid) {
@@ -497,7 +497,7 @@
selectedRows.value = selection;
};
-// 鏌ヨ瑙勬牸鍨嬪彿
+// 鏌ヨ灏哄
const pagination = (obj) => {
page.current = obj.page;
page.size = obj.limit;
@@ -516,7 +516,7 @@
tableLoading.value = false;
});
};
-// 鍒犻櫎瑙勬牸鍨嬪彿
+// 鍒犻櫎灏哄
const handleDelete = () => {
let ids = [];
if (selectedRows.value.length > 0) {
--
Gitblit v1.9.3