@@ -363,14 +363,16 @@ import {
363
363
Tooltip ,
364
364
TreeSelect ,
365
365
Upload ,
366
+ Tag ,
367
+ Divider ,
366
368
UploadChangeParam ,
367
369
} from " ant-design-vue" ;
368
370
import {cloneDeep } from ' lodash-es' ;
369
371
import {getUnitList } from " /@/api/product/productUnit" ;
370
372
import {getCategoryList } from " /@/api/product/productCategory" ;
371
373
import {ProductUnitQueryReq } from " /@/api/product/model/productUnitModel" ;
372
374
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" ;
374
376
import {getAttributeById , getAttributeList } from " @/api/product/productAttribute" ;
375
377
import {useMessage } from " @/hooks/web/useMessage" ;
376
378
import BatchSetPriceModal from " @/views/product/info/components/BatchSetPriceModal.vue" ;
@@ -386,7 +388,7 @@ import {ProductAttributeListReq} from "@/api/product/model/productAttributeModel
386
388
import {ProductAttributeModel , ProductStockModel , Unit } from " @/views/product/info/model/productInfoModel" ;
387
389
import {meTable , stock , productInfo , formState } from " @/views/product/info/info.data" ;
388
390
389
- const VNodes = {
391
+ const VNodes = defineComponent ( {
390
392
props: {
391
393
vnodes: {
392
394
type: Object ,
@@ -396,7 +398,7 @@ const VNodes = {
396
398
render() {
397
399
return this .vnodes ;
398
400
},
399
- };
401
+ }) ;
400
402
401
403
export default defineComponent ({
402
404
name: ' ProductInfoModal' ,
@@ -423,6 +425,8 @@ export default defineComponent({
423
425
' v-nodes' : VNodes ,
424
426
' a-textarea' : Textarea ,
425
427
' plus-outlined' : PlusOutlined ,
428
+ ' a-divider' : Divider ,
429
+ ' a-tag' : Tag ,
426
430
BatchSetPriceModal ,
427
431
BatchSetStockModal ,
428
432
UnitModal ,
@@ -454,8 +458,8 @@ export default defineComponent({
454
458
const skuTwo = reactive ([]);
455
459
const skuThree = reactive ([]);
456
460
457
- const priceModalForm = ref <BatchSetPriceModal >();
458
- const stockModalForm = ref <BatchSetStockModal >();
461
+ const priceModalForm = ref <any >();
462
+ const stockModalForm = ref <any >();
459
463
const [registerModal, {openModal}] = useModal ();
460
464
461
465
const model = ref ({});
@@ -477,7 +481,6 @@ export default defineComponent({
477
481
}
478
482
479
483
function handleCancel() {
480
- close ();
481
484
if (formState .productId ) {
482
485
clearData ()
483
486
}
@@ -1029,11 +1032,11 @@ export default defineComponent({
1029
1032
file .type === " image/bmp" ;
1030
1033
const isLt2M = file .size / 1024 / 1024 < 2 ;
1031
1034
if (! isPNG ) {
1032
- createMessage .error (` ${file .name },该文件不是图片类型 ` );
1035
+ createMessage .warn (` ${file .name },该文件不是图片类型 ` );
1033
1036
return isPNG || Upload .LIST_IGNORE
1034
1037
}
1035
1038
if (! isLt2M ) {
1036
- createMessage .error (` ${file .name },该文件超过2MB大小限制 ` );
1039
+ createMessage .warn (` ${file .name },该文件超过2MB大小限制 ` );
1037
1040
return isLt2M || Upload .LIST_IGNORE
1038
1041
}
1039
1042
}
@@ -1116,20 +1119,20 @@ export default defineComponent({
1116
1119
1117
1120
async function handleOk() {
1118
1121
if (! formState .productName ) {
1119
- createMessage .error (' 请输入商品名称' );
1122
+ createMessage .warn (' 请输入商品名称' );
1120
1123
return ;
1121
1124
}
1122
1125
if (unitChecked .value ) {
1123
1126
if (! formState .productUnitId ) {
1124
- createMessage .error (' 请选择商品单位' );
1127
+ createMessage .warn (' 请选择商品单位' );
1125
1128
return ;
1126
1129
}
1127
1130
} else if (! formState .productUnit ) {
1128
- createMessage .error (' 请输入商品单位' );
1131
+ createMessage .warn (' 请输入商品单位' );
1129
1132
return ;
1130
1133
}
1131
1134
if (meTable .dataSource .length === 0 ) {
1132
- createMessage .error (' 请插入一行数据,录入商品条码价格信息' );
1135
+ createMessage .warn (' 请插入一行数据,录入商品条码价格信息' );
1133
1136
return ;
1134
1137
}
1135
1138
// 检查库存信息是否为空
0 commit comments