Skip to content

Commit 2425a24

Browse files
committed
Fix: Fix the TS code and Vue warning information of the product eairps#129
1 parent ec507af commit 2425a24

File tree

5 files changed

+38
-33
lines changed

5 files changed

+38
-33
lines changed

web/src/views/product/info/components/BatchEditModal.vue

+12-12
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464
<script lang="ts">
6565
import { ref, reactive } from 'vue';
6666
import {
67-
Button,
67+
Button, Col,
6868
Form,
6969
FormItem,
7070
InputNumber,
71-
Modal, Popconfirm,
71+
Modal, Row,
7272
Select,
7373
SelectOption,
7474
Spin,
@@ -78,10 +78,10 @@ import {
7878
import {getCategoryList} from "/@/api/product/productCategory"
7979
import {UpdateBatchProductInfoReq} from "/@/api/product/model/productModel"
8080
import {updateBatchProductInfo} from "/@/api/product/product"
81-
import {useMessage} from "@/hooks/web/useMessage";
8281
8382
export default {
8483
name: 'BatchEditModal',
84+
emits: ['success'],
8585
components: {
8686
'a-modal': Modal,
8787
'a-button': Button,
@@ -93,22 +93,22 @@ export default {
9393
'a-select': Select,
9494
'a-select-option': SelectOption,
9595
'a-tree-select': TreeSelect,
96-
'a-popconfirm': Popconfirm,
96+
'a-row': Row,
97+
'a-col': Col,
9798
},
9899
setup(_, context) {
99100
const title = ref('批量编辑商品信息');
100101
const openBatchEditModal = ref(false);
101102
102-
const color = ref(null);
103-
const weight = ref(null);
104-
const expiryNum = ref(null);
105-
const categoryId = ref(null);
106-
const enableSerialNumber = ref(null);
107-
const enableBatchNumber = ref(null);
108-
const remark = ref(null);
103+
const color = ref('');
104+
const weight = ref(0);
105+
const expiryNum = ref(0);
106+
const categoryId = ref(0);
107+
const enableSerialNumber = ref('');
108+
const enableBatchNumber = ref('');
109+
const remark = ref('');
109110
const categoryTree = reactive([]);
110111
const productIds = ref([])
111-
const {createMessage} = useMessage();
112112
113113
const confirmLoading = ref(false);
114114
const formRef = ref();

web/src/views/product/info/components/BatchSetPriceModal.vue

+5-4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import {Rule} from 'ant-design-vue/es/form';
2525
2626
export default {
2727
name: 'BatchSetPriceModal',
28+
emits: ['ok'],
2829
components: {
2930
'a-modal': Modal,
3031
'a-button': Button,
@@ -37,7 +38,7 @@ export default {
3738
const title = ref('批量设置');
3839
const openPriceModal = ref(false);
3940
const isReadOnly = ref(false);
40-
const batchPrice = ref('');
41+
const batchPrice = ref(0);
4142
const batchType = ref('');
4243
const model = reactive({});
4344
const labelCol = {
@@ -71,7 +72,7 @@ export default {
7172
}
7273
};
7374
74-
const edit = (record) => {
75+
const edit = () => {
7576
openPriceModal.value = true
7677
};
7778
@@ -82,12 +83,12 @@ export default {
8283
const handleOk = () => {
8384
const price = batchPrice.value
8485
context.emit('ok', price, batchType.value);
85-
batchPrice.value = null;
86+
batchPrice.value = 0;
8687
close();
8788
};
8889
8990
const handleCancel = () => {
90-
batchPrice.value = null;
91+
batchPrice.value = 0;
9192
close();
9293
};
9394

web/src/views/product/info/components/BatchSetStockModal.vue

+5-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@
1818
</template>
1919

2020
<script lang="ts">
21-
import { ref, reactive, UnwrapRef } from 'vue';
21+
import { ref, reactive} from 'vue';
2222
import {Button, Form, FormItem, InputNumber, Modal, Spin} from "ant-design-vue";
2323
2424
export default {
2525
name: 'BatchSetStockModal',
26+
emits: ['ok'],
2627
components: {
2728
'a-modal': Modal,
2829
'a-button': Button,
@@ -35,7 +36,7 @@ export default {
3536
const title = ref('批量设置');
3637
const openStockModal = ref(false);
3738
const isReadOnly = ref(false);
38-
const batchNumber = ref('');
39+
const batchNumber = ref(0);
3940
const batchType = ref('');
4041
const model = reactive({});
4142
const labelCol = {
@@ -72,12 +73,12 @@ export default {
7273
const handleOk = () => {
7374
const stockNumber = batchNumber.value
7475
context.emit('ok', stockNumber, batchType.value);
75-
batchNumber.value = null;
76+
batchNumber.value = 0;
7677
close();
7778
};
7879
7980
const handleCancel = () => {
80-
batchNumber.value = null;
81+
batchNumber.value = 0;
8182
close();
8283
};
8384

web/src/views/product/info/components/ProductInfoModal.vue

+15-12
Original file line numberDiff line numberDiff line change
@@ -363,14 +363,16 @@ import {
363363
Tooltip,
364364
TreeSelect,
365365
Upload,
366+
Tag,
367+
Divider,
366368
UploadChangeParam,
367369
} from "ant-design-vue";
368370
import {cloneDeep} from 'lodash-es';
369371
import {getUnitList} from "/@/api/product/productUnit";
370372
import {getCategoryList} from "/@/api/product/productCategory";
371373
import {ProductUnitQueryReq} from "/@/api/product/model/productUnitModel";
372374
import {DefaultOptionType} from "ant-design-vue/es/vc-tree-select/TreeSelect";
373-
import {getProductCode, getProductInfoDetail, addOrUpdateProduct} from "@/api/product/product";
375+
import {getProductInfoDetail, addOrUpdateProduct} from "@/api/product/product";
374376
import {getAttributeById, getAttributeList} from "@/api/product/productAttribute";
375377
import {useMessage} from "@/hooks/web/useMessage";
376378
import BatchSetPriceModal from "@/views/product/info/components/BatchSetPriceModal.vue";
@@ -386,7 +388,7 @@ import {ProductAttributeListReq} from "@/api/product/model/productAttributeModel
386388
import {ProductAttributeModel, ProductStockModel, Unit} from "@/views/product/info/model/productInfoModel";
387389
import {meTable, stock, productInfo, formState} from "@/views/product/info/info.data";
388390
389-
const VNodes = {
391+
const VNodes = defineComponent({
390392
props: {
391393
vnodes: {
392394
type: Object,
@@ -396,7 +398,7 @@ const VNodes = {
396398
render() {
397399
return this.vnodes;
398400
},
399-
};
401+
});
400402
401403
export default defineComponent({
402404
name: 'ProductInfoModal',
@@ -423,6 +425,8 @@ export default defineComponent({
423425
'v-nodes': VNodes,
424426
'a-textarea': Textarea,
425427
'plus-outlined': PlusOutlined,
428+
'a-divider': Divider,
429+
'a-tag': Tag,
426430
BatchSetPriceModal,
427431
BatchSetStockModal,
428432
UnitModal,
@@ -454,8 +458,8 @@ export default defineComponent({
454458
const skuTwo = reactive([]);
455459
const skuThree = reactive([]);
456460
457-
const priceModalForm = ref<BatchSetPriceModal>();
458-
const stockModalForm = ref<BatchSetStockModal>();
461+
const priceModalForm = ref<any>();
462+
const stockModalForm = ref<any>();
459463
const [registerModal, {openModal}] = useModal();
460464
461465
const model = ref({});
@@ -477,7 +481,6 @@ export default defineComponent({
477481
}
478482
479483
function handleCancel() {
480-
close();
481484
if (formState.productId) {
482485
clearData()
483486
}
@@ -1029,11 +1032,11 @@ export default defineComponent({
10291032
file.type === "image/bmp";
10301033
const isLt2M = file.size / 1024 / 1024 < 2;
10311034
if (!isPNG) {
1032-
createMessage.error(`${file.name},该文件不是图片类型`);
1035+
createMessage.warn(`${file.name},该文件不是图片类型`);
10331036
return isPNG || Upload.LIST_IGNORE
10341037
}
10351038
if (!isLt2M) {
1036-
createMessage.error(`${file.name},该文件超过2MB大小限制`);
1039+
createMessage.warn(`${file.name},该文件超过2MB大小限制`);
10371040
return isLt2M || Upload.LIST_IGNORE
10381041
}
10391042
}
@@ -1116,20 +1119,20 @@ export default defineComponent({
11161119
11171120
async function handleOk() {
11181121
if (!formState.productName) {
1119-
createMessage.error('请输入商品名称');
1122+
createMessage.warn('请输入商品名称');
11201123
return;
11211124
}
11221125
if (unitChecked.value) {
11231126
if (!formState.productUnitId) {
1124-
createMessage.error('请选择商品单位');
1127+
createMessage.warn('请选择商品单位');
11251128
return;
11261129
}
11271130
} else if (!formState.productUnit) {
1128-
createMessage.error('请输入商品单位');
1131+
createMessage.warn('请输入商品单位');
11291132
return;
11301133
}
11311134
if (meTable.dataSource.length === 0) {
1132-
createMessage.error('请插入一行数据,录入商品条码价格信息');
1135+
createMessage.warn('请插入一行数据,录入商品条码价格信息');
11331136
return;
11341137
}
11351138
// 检查库存信息是否为空

web/src/views/product/info/components/SelectProductModal.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {BasicModal, useModalInner} from "@/components/Modal";
1414
export default defineComponent({
1515
name: 'productModal',
1616
components: {BasicModal, BasicTable, TableAction},
17-
emits: ['selectedRows', 'register', 'handleCheckSuccess'],
17+
emits: ['register', 'handleCheckSuccess'],
1818
setup(_, context) {
1919
const getTitle = ref('选择商品');
2020
const { createMessage } = useMessage();

0 commit comments

Comments
 (0)