整理商品管理模块

This commit is contained in:
2024-07-25 19:20:53 +08:00
parent 717c89a58e
commit cf0961afdd
48 changed files with 1814 additions and 965 deletions

View File

@@ -1,10 +1,11 @@
<!-- 编辑弹窗 -->
<template>
<ele-modal
:width="500"
:width="800"
:visible="visible"
:maskClosable="false"
:title="isUpdate ? '编辑商品规格' : '添加商品规格'"
:maxable="maxable"
:title="isUpdate ? '编辑规格' : '添加规格'"
:body-style="{ paddingBottom: '28px' }"
@update:visible="updateVisible"
@ok="save"
@@ -13,48 +14,65 @@
ref="formRef"
:model="form"
:rules="rules"
:label-col="styleResponsive ? { md: 5, sm: 5, xs: 24 } : { flex: '90px' }"
:label-col="styleResponsive ? { md: 4, sm: 5, xs: 24 } : { flex: '90px' }"
:wrapper-col="
styleResponsive ? { md: 18, sm: 19, xs: 24 } : { flex: '1' }
styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' }
"
>
<a-form-item label="规格名称" name="specName">
<a-input
allow-clear
:maxlength="100"
placeholder="机型"
placeholder="请输入规格名称"
v-model:value="form.specName"
@pressEnter="save"
/>
</a-form-item>
<a-form-item label="排序号" name="sortNumber" v-if="isUpdate">
<a-input-number
:min="0"
:max="9999"
class="ele-fluid"
placeholder="请输入排序号"
v-model:value="form.sortNumber"
/>
<a-form-item name="specValue">
<a-space direction="vertical" class="ml-[124px]">
<template v-for="(item, index) in spec" :key="index">
<div class="text-left flex items-center leading-10 text-gray-400">
<div class="mr-2">{{ item.value }} :</div>
<CloseCircleOutlined
class="cursor-pointer"
@click="onClose(index)"
/>
</div>
<ele-edit-tag
v-model:data="item.detail"
size="middle"
shape="round"
/>
</template>
<a-card class="ml-[124px]" v-if="showSpecForm">
<a-form-item name="name">
<a-input
allow-clear
placeholder="请输入规格"
v-model:value="name"
/>
</a-form-item>
<a-form-item name="value">
<a-input
allow-clear
placeholder="请输入规格值"
v-model:value="value"
/>
</a-form-item>
<a-space>
<a-button type="primary" @click="addSpecValue">确定</a-button>
<a-button @click="openSpecForm">取消</a-button>
</a-space>
</a-card>
<a-button type="primary" class="mt-5" v-else @click="openSpecForm"
>添加新规格</a-button
>
</a-space>
</a-form-item>
<a-form-item label="描述" name="comments">
<a-textarea
:rows="4"
:maxlength="200"
placeholder="iphone15"
v-model:value="form.comments"
/>
</a-form-item>
<!-- <a-form-item label="状态" name="status">-->
<!-- <a-radio-group v-model:value="form.status">-->
<!-- <a-radio :value="0">已启用</a-radio>-->
<!-- <a-radio :value="1">未启用</a-radio>-->
<!-- </a-radio-group>-->
<!-- </a-form-item>-->
</a-form>
</ele-modal>
</template>
<script lang="ts" setup>
import { CloseCircleOutlined } from '@ant-design/icons-vue';
import { ref, reactive, watch } from 'vue';
import { Form, message } from 'ant-design-vue';
import { assignObject } from 'ele-admin-pro';
@@ -62,7 +80,9 @@
import { Spec } from '@/api/shop/spec/model';
import { useThemeStore } from '@/store/modules/theme';
import { storeToRefs } from 'pinia';
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
import { FormInstance } from 'ant-design-vue/es/form';
import { SpecValue } from '@/api/shop/specValue/model';
// 是否是修改
const isUpdate = ref(false);
@@ -85,16 +105,24 @@
// 提交状态
const loading = ref(false);
// 是否显示最大化切换按钮
const maxable = ref(true);
const showSpecForm = ref(false);
// 表格选中数据
const formRef = ref<FormInstance | null>(null);
const images = ref<ItemType[]>([]);
const spec = ref<SpecValue[]>([]);
const name = ref();
const value = ref();
// 用户信息
const form = reactive<Spec>({
specId: undefined,
specName: '',
specName: undefined,
specValue: undefined,
status: 0,
comments: '',
sortNumber: 100,
status: 0
sortNumber: 100
});
/* 更新visible */
@@ -108,12 +136,48 @@
{
required: true,
type: 'string',
message: '请填写商品规格名称',
message: '请填写规格名称',
trigger: 'blur'
}
]
});
// const validator = (value: string) => {
// return new Promise<void>((_resolve, reject) => {
// setTimeout(() => {
// reject(new Error(value + '不合法, 请重新输入'));
// }, 1000);
// });
// };
// 新增规格
const addSpecValue = () => {
if (!name.value || !value.value) {
message.error(`请输入规格和规格值)`);
return false;
}
const findIndex = spec.value.findIndex((d) => d.value == name.value);
if (findIndex == 0) {
message.error(`${name.value}已存在)`);
return false;
}
spec.value.push({
value: name.value,
detail: [value.value]
});
name.value = '';
value.value = '';
openSpecForm();
};
const openSpecForm = () => {
showSpecForm.value = !showSpecForm.value;
};
const onClose = (index) => {
spec.value.splice(index, 1);
};
const { resetFields } = useForm(form, rules);
/* 保存编辑 */
@@ -125,8 +189,13 @@
.validate()
.then(() => {
loading.value = true;
if (spec.value.length === 0) {
message.error('请添加规格');
return;
}
const formData = {
...form
...form,
specValue: JSON.stringify(spec.value)
};
const saveOrUpdate = isUpdate.value ? updateSpec : addSpec;
saveOrUpdate(formData)
@@ -148,10 +217,15 @@
() => props.visible,
(visible) => {
if (visible) {
images.value = [];
if (props.data) {
assignObject(form, props.data);
if (props.data.specValue) {
spec.value = JSON.parse(props.data.specValue);
}
isUpdate.value = true;
} else {
spec.value = [];
isUpdate.value = false;
}
} else {