@ -0,0 +1,64 @@ | |||
import {defHttp} from '/@/utils/http/axios'; | |||
import { useMessage } from "/@/hooks/web/useMessage"; | |||
const { createConfirm } = useMessage(); | |||
enum Api { | |||
list = '/appletProduct/appletProduct/list', | |||
save='/appletProduct/appletProduct/add', | |||
edit='/appletProduct/appletProduct/edit', | |||
deleteOne = '/appletProduct/appletProduct/delete', | |||
deleteBatch = '/appletProduct/appletProduct/deleteBatch', | |||
importExcel = '/appletProduct/appletProduct/importExcel', | |||
exportXls = '/appletProduct/appletProduct/exportXls', | |||
} | |||
/** | |||
* 导出api | |||
* @param params | |||
*/ | |||
export const getExportUrl = Api.exportXls; | |||
/** | |||
* 导入api | |||
*/ | |||
export const getImportUrl = Api.importExcel; | |||
/** | |||
* 列表接口 | |||
* @param params | |||
*/ | |||
export const list = (params) => | |||
defHttp.get({url: Api.list, params}); | |||
/** | |||
* 删除单个 | |||
*/ | |||
export const deleteOne = (params,handleSuccess) => { | |||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => { | |||
handleSuccess(); | |||
}); | |||
} | |||
/** | |||
* 批量删除 | |||
* @param params | |||
*/ | |||
export const batchDelete = (params, handleSuccess) => { | |||
createConfirm({ | |||
iconType: 'warning', | |||
title: '确认删除', | |||
content: '是否删除选中数据', | |||
okText: '确认', | |||
cancelText: '取消', | |||
onOk: () => { | |||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => { | |||
handleSuccess(); | |||
}); | |||
} | |||
}); | |||
} | |||
/** | |||
* 保存或者更新 | |||
* @param params | |||
*/ | |||
export const saveOrUpdate = (params, isUpdate) => { | |||
let url = isUpdate ? Api.edit : Api.save; | |||
return defHttp.post({url: url, params}); | |||
} |
@ -0,0 +1,156 @@ | |||
import {BasicColumn} from '/@/components/Table'; | |||
import {FormSchema} from '/@/components/Table'; | |||
import { rules} from '/@/utils/helper/validator'; | |||
import { render } from '/@/utils/common/renderUtils'; | |||
import { getWeekMonthQuarterYear } from '/@/utils'; | |||
//列表数据 | |||
export const columns: BasicColumn[] = [ | |||
{ | |||
title: '产品名称', | |||
align:"center", | |||
dataIndex: 'name' | |||
}, | |||
{ | |||
title: '产品描述', | |||
align:"center", | |||
dataIndex: 'info' | |||
}, | |||
{ | |||
title: '类型', | |||
align:"center", | |||
dataIndex: 'type_dictText' | |||
}, | |||
{ | |||
title: '分类', | |||
align:"center", | |||
dataIndex: 'classId_dictText' | |||
}, | |||
{ | |||
title: '原价', | |||
align:"center", | |||
dataIndex: 'originalPrice' | |||
}, | |||
{ | |||
title: '现价', | |||
align:"center", | |||
dataIndex: 'currentPrice' | |||
}, | |||
{ | |||
title: '单位', | |||
align:"center", | |||
dataIndex: 'unit' | |||
}, | |||
{ | |||
title: '已出售', | |||
align:"center", | |||
dataIndex: 'sold' | |||
}, | |||
]; | |||
//查询数据 | |||
export const searchFormSchema: FormSchema[] = [ | |||
{ | |||
label: "类型", | |||
field: 'type', | |||
component: 'JSelectMultiple', | |||
componentProps:{ | |||
dictCode:"applet_product_type" | |||
}, | |||
//colProps: {span: 6}, | |||
}, | |||
{ | |||
label: "分类", | |||
field: 'classId', | |||
component: 'JSelectMultiple', | |||
componentProps:{ | |||
dictCode:"applet_product_category,name,id" | |||
}, | |||
//colProps: {span: 6}, | |||
}, | |||
]; | |||
//表单数据 | |||
export const formSchema: FormSchema[] = [ | |||
{ | |||
label: '产品名称', | |||
field: 'name', | |||
component: 'Input', | |||
}, | |||
{ | |||
label: '产品描述', | |||
field: 'info', | |||
component: 'Input', | |||
}, | |||
{ | |||
label: '类型', | |||
field: 'type', | |||
component: 'JDictSelectTag', | |||
componentProps:{ | |||
dictCode:"applet_product_type" | |||
}, | |||
}, | |||
{ | |||
label: '分类', | |||
field: 'classId', | |||
component: 'JDictSelectTag', | |||
componentProps:{ | |||
dictCode:"applet_product_category,name,id" | |||
}, | |||
}, | |||
{ | |||
label: '原价', | |||
field: 'originalPrice', | |||
component: 'InputNumber', | |||
}, | |||
{ | |||
label: '现价', | |||
field: 'currentPrice', | |||
component: 'InputNumber', | |||
}, | |||
{ | |||
label: '单位', | |||
field: 'unit', | |||
component: 'Input', | |||
}, | |||
{ | |||
label: '详情', | |||
field: 'detail', | |||
component: 'JEditor', | |||
}, | |||
{ | |||
label: '已出售', | |||
field: 'sold', | |||
component: 'InputNumber', | |||
}, | |||
{ | |||
label: '产品内容', | |||
field: 'content', | |||
component: 'Input', | |||
}, | |||
// TODO 主键隐藏字段,目前写死为ID | |||
{ | |||
label: '', | |||
field: 'id', | |||
component: 'Input', | |||
show: false | |||
}, | |||
]; | |||
// 高级查询数据 | |||
export const superQuerySchema = { | |||
name: {title: '产品名称',order: 0,view: 'text', type: 'string',}, | |||
info: {title: '产品描述',order: 1,view: 'text', type: 'string',}, | |||
type: {title: '类型',order: 2,view: 'list', type: 'string',dictCode: 'applet_product_type',}, | |||
classId: {title: '分类',order: 3,view: 'list', type: 'string',dictTable: "applet_product_category", dictCode: 'id', dictText: 'name',}, | |||
originalPrice: {title: '原价',order: 4,view: 'number', type: 'number',}, | |||
currentPrice: {title: '现价',order: 5,view: 'number', type: 'number',}, | |||
unit: {title: '单位',order: 6,view: 'text', type: 'string',}, | |||
sold: {title: '已出售',order: 8,view: 'number', type: 'number',}, | |||
}; | |||
/** | |||
* 流程表单调用这个方法获取formSchema | |||
* @param param | |||
*/ | |||
export function getBpmFormSchema(_formData): FormSchema[]{ | |||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema | |||
return formSchema; | |||
} |
@ -0,0 +1,228 @@ | |||
<template> | |||
<div> | |||
<!--引用表格--> | |||
<BasicTable @register="registerTable" :rowSelection="rowSelection"> | |||
<!--插槽:table标题--> | |||
<template #tableTitle> | |||
<a-button type="primary" v-auth="'appletProduct:applet_product:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button> | |||
<a-button type="primary" v-auth="'appletProduct:applet_product:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button> | |||
<j-upload-button type="primary" v-auth="'appletProduct:applet_product:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button> | |||
<a-dropdown v-if="selectedRowKeys.length > 0"> | |||
<template #overlay> | |||
<a-menu> | |||
<a-menu-item key="1" @click="batchHandleDelete"> | |||
<Icon icon="ant-design:delete-outlined"></Icon> | |||
删除 | |||
</a-menu-item> | |||
</a-menu> | |||
</template> | |||
<a-button v-auth="'appletProduct:applet_product:deleteBatch'">批量操作 | |||
<Icon icon="mdi:chevron-down"></Icon> | |||
</a-button> | |||
</a-dropdown> | |||
<!-- 高级查询 --> | |||
<super-query :config="superQueryConfig" @search="handleSuperQuery" /> | |||
</template> | |||
<!--操作栏--> | |||
<template #action="{ record }"> | |||
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/> | |||
</template> | |||
<!--字段回显插槽--> | |||
<template v-slot:bodyCell="{ column, record, index, text }"> | |||
<template v-if="column.dataIndex==='detail'"> | |||
<!--富文本件字段回显插槽--> | |||
<div v-html="text"></div> | |||
</template> | |||
</template> | |||
</BasicTable> | |||
<!-- 表单区域 --> | |||
<AppletProductModal @register="registerModal" @success="handleSuccess"></AppletProductModal> | |||
<!-- 规格管理弹窗 --> | |||
<AppletProductSpecModal @register="registerSpecModal" @success="handleSuccess"></AppletProductSpecModal> | |||
</div> | |||
</template> | |||
<script lang="ts" name="appletProduct-appletProduct" setup> | |||
import {ref, reactive, computed, unref} from 'vue'; | |||
import {BasicTable, useTable, TableAction} from '/@/components/Table'; | |||
import {useModal} from '/@/components/Modal'; | |||
import { useListPage } from '/@/hooks/system/useListPage' | |||
import AppletProductModal from './components/AppletProductModal.vue' | |||
import AppletProductSpecModal from './components/AppletProductSpecModal.vue' | |||
import {columns, searchFormSchema, superQuerySchema} from './AppletProduct.data'; | |||
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl} from './AppletProduct.api'; | |||
import { downloadFile } from '/@/utils/common/renderUtils'; | |||
import { useUserStore } from '/@/store/modules/user'; | |||
import { useMessage } from '/@/hooks/web/useMessage'; | |||
import { getDateByPicker } from '/@/utils'; | |||
//日期个性化选择 | |||
const fieldPickers = reactive({ | |||
}); | |||
const queryParam = reactive<any>({}); | |||
const checkedKeys = ref<Array<string | number>>([]); | |||
const userStore = useUserStore(); | |||
const { createMessage } = useMessage(); | |||
//注册model | |||
const [registerModal, {openModal}] = useModal(); | |||
//注册规格管理model | |||
const [registerSpecModal, {openModal: openSpecModal}] = useModal(); | |||
//注册table数据 | |||
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({ | |||
tableProps:{ | |||
title: '产品表', | |||
api: list, | |||
columns, | |||
canResize:true, | |||
formConfig: { | |||
//labelWidth: 120, | |||
schemas: searchFormSchema, | |||
autoSubmitOnEnter:true, | |||
showAdvancedButton:true, | |||
fieldMapToNumber: [ | |||
], | |||
fieldMapToTime: [ | |||
], | |||
}, | |||
actionColumn: { | |||
width: 180, | |||
fixed:'right' | |||
}, | |||
beforeFetch: (params) => { | |||
if (params && fieldPickers) { | |||
for (let key in fieldPickers) { | |||
if (params[key]) { | |||
params[key] = getDateByPicker(params[key], fieldPickers[key]); | |||
} | |||
} | |||
} | |||
return Object.assign(params, queryParam); | |||
}, | |||
}, | |||
exportConfig: { | |||
name:"产品表", | |||
url: getExportUrl, | |||
params: queryParam, | |||
}, | |||
importConfig: { | |||
url: getImportUrl, | |||
success: handleSuccess | |||
}, | |||
}) | |||
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext | |||
// 高级查询配置 | |||
const superQueryConfig = reactive(superQuerySchema); | |||
/** | |||
* 高级查询事件 | |||
*/ | |||
function handleSuperQuery(params) { | |||
Object.keys(params).map((k) => { | |||
queryParam[k] = params[k]; | |||
}); | |||
reload(); | |||
} | |||
/** | |||
* 新增事件 | |||
*/ | |||
function handleAdd() { | |||
openModal(true, { | |||
isUpdate: false, | |||
showFooter: true, | |||
}); | |||
} | |||
/** | |||
* 编辑事件 | |||
*/ | |||
function handleEdit(record: Recordable) { | |||
openModal(true, { | |||
record, | |||
isUpdate: true, | |||
showFooter: true, | |||
}); | |||
} | |||
/** | |||
* 详情 | |||
*/ | |||
function handleDetail(record: Recordable) { | |||
openModal(true, { | |||
record, | |||
isUpdate: true, | |||
showFooter: false, | |||
}); | |||
} | |||
/** | |||
* 规格管理 | |||
*/ | |||
function handleSpec(record: Recordable) { | |||
openSpecModal(true, { | |||
record, | |||
}); | |||
} | |||
/** | |||
* 删除事件 | |||
*/ | |||
async function handleDelete(record) { | |||
await deleteOne({id: record.id}, handleSuccess); | |||
} | |||
/** | |||
* 批量删除事件 | |||
*/ | |||
async function batchHandleDelete() { | |||
await batchDelete({ids: selectedRowKeys.value}, handleSuccess); | |||
} | |||
/** | |||
* 成功回调 | |||
*/ | |||
function handleSuccess() { | |||
(selectedRowKeys.value = []) && reload(); | |||
} | |||
/** | |||
* 操作栏 | |||
*/ | |||
function getTableAction(record){ | |||
return [ | |||
{ | |||
label: '编辑', | |||
onClick: handleEdit.bind(null, record), | |||
auth: 'appletProduct:applet_product:edit' | |||
}, | |||
{ | |||
label: '规格', | |||
onClick: handleSpec.bind(null, record), | |||
//auth: 'appletProductSpec:applet_product_spec:list' | |||
} | |||
] | |||
} | |||
/** | |||
* 下拉操作栏 | |||
*/ | |||
function getDropDownAction(record){ | |||
return [ | |||
{ | |||
label: '详情', | |||
onClick: handleDetail.bind(null, record), | |||
}, { | |||
label: '删除', | |||
popConfirm: { | |||
title: '是否确认删除', | |||
confirm: handleDelete.bind(null, record), | |||
placement: 'topLeft', | |||
}, | |||
auth: 'appletProduct:applet_product:delete' | |||
} | |||
] | |||
} | |||
</script> | |||
<style lang="less" scoped> | |||
:deep(.ant-picker),:deep(.ant-input-number){ | |||
width: 100%; | |||
} | |||
</style> |
@ -0,0 +1,65 @@ | |||
import {defHttp} from '/@/utils/http/axios'; | |||
import { useMessage } from "/@/hooks/web/useMessage"; | |||
const { createConfirm } = useMessage(); | |||
enum Api { | |||
list = '/appletProductSpec/appletProductSpec/list', | |||
save='/appletProductSpec/appletProductSpec/add', | |||
edit='/appletProductSpec/appletProductSpec/edit', | |||
deleteOne = '/appletProductSpec/appletProductSpec/delete', | |||
deleteBatch = '/appletProductSpec/appletProductSpec/deleteBatch', | |||
importExcel = '/appletProductSpec/appletProductSpec/importExcel', | |||
exportXls = '/appletProductSpec/appletProductSpec/exportXls', | |||
} | |||
/** | |||
* 导出api | |||
* @param params | |||
*/ | |||
export const getExportUrl = Api.exportXls; | |||
/** | |||
* 导入api | |||
*/ | |||
export const getImportUrl = Api.importExcel; | |||
/** | |||
* 列表接口 | |||
* @param params | |||
*/ | |||
export const list = (params) => | |||
defHttp.get({url: Api.list, params}); | |||
/** | |||
* 删除单个 | |||
*/ | |||
export const deleteOne = (params,handleSuccess) => { | |||
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => { | |||
handleSuccess(); | |||
}); | |||
} | |||
/** | |||
* 批量删除 | |||
* @param params | |||
*/ | |||
export const batchDelete = (params, handleSuccess) => { | |||
createConfirm({ | |||
iconType: 'warning', | |||
title: '确认删除', | |||
content: '是否删除选中数据', | |||
okText: '确认', | |||
cancelText: '取消', | |||
onOk: () => { | |||
return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => { | |||
handleSuccess(); | |||
}); | |||
} | |||
}); | |||
} | |||
/** | |||
* 保存或者更新 | |||
* @param params | |||
*/ | |||
export const saveOrUpdate = (params, isUpdate) => { | |||
let url = isUpdate ? Api.edit : Api.save; | |||
return defHttp.post({url: url, params}); | |||
} |
@ -0,0 +1,107 @@ | |||
import {BasicColumn} from '/@/components/Table'; | |||
import {FormSchema} from '/@/components/Table'; | |||
import { rules} from '/@/utils/helper/validator'; | |||
import { render } from '/@/utils/common/renderUtils'; | |||
//列表数据 | |||
export const columns: BasicColumn[] = [ | |||
{ | |||
title: '规格名称', | |||
align:"center", | |||
dataIndex: 'specName' | |||
}, | |||
{ | |||
title: '规格值', | |||
align:"center", | |||
dataIndex: 'specValue' | |||
}, | |||
{ | |||
title: '价格', | |||
align:"center", | |||
dataIndex: 'price' | |||
}, | |||
{ | |||
title: '排序', | |||
align:"center", | |||
dataIndex: 'sortOrder' | |||
}, | |||
{ | |||
title: '创建时间', | |||
align:"center", | |||
dataIndex: 'createTime', | |||
customRender: ({ text }) => { | |||
return !text ? "" : render.renderDate(text); | |||
} | |||
}, | |||
]; | |||
//查询数据 | |||
export const searchFormSchema: FormSchema[] = [ | |||
{ | |||
label: "规格名称", | |||
field: 'specName', | |||
component: 'Input', | |||
colProps: {span: 6}, | |||
}, | |||
{ | |||
label: "规格值", | |||
field: 'specValue', | |||
component: 'Input', | |||
colProps: {span: 6}, | |||
}, | |||
]; | |||
//表单数据 | |||
export const formSchema: FormSchema[] = [ | |||
{ | |||
label: '规格名称', | |||
field: 'specName', | |||
component: 'Input', | |||
required: true, | |||
}, | |||
{ | |||
label: '规格值', | |||
field: 'specValue', | |||
component: 'Input', | |||
required: true, | |||
}, | |||
{ | |||
label: '价格', | |||
field: 'price', | |||
component: 'InputNumber', | |||
componentProps: { | |||
precision: 2, | |||
min: 0, | |||
}, | |||
}, | |||
{ | |||
label: '排序', | |||
field: 'sortOrder', | |||
component: 'InputNumber', | |||
componentProps: { | |||
min: 0, | |||
}, | |||
}, | |||
{ | |||
label: '产品ID', | |||
field: 'productId', | |||
component: 'Input', | |||
show: false, | |||
}, | |||
// TODO 主键隐藏字段,目前写死为ID | |||
{ | |||
label: '', | |||
field: 'id', | |||
component: 'Input', | |||
show: false | |||
}, | |||
]; | |||
/** | |||
* 流程表单调用这个方法获取formSchema | |||
* @param param | |||
*/ | |||
export function getBpmFormSchema(_formData): FormSchema[]{ | |||
// 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema | |||
return formSchema; | |||
} |
@ -0,0 +1,70 @@ | |||
<template> | |||
<div style="min-height: 400px"> | |||
<BasicForm @register="registerForm"></BasicForm> | |||
<div style="width: 100%;text-align: center" v-if="!formDisabled"> | |||
<a-button @click="submitForm" pre-icon="ant-design:check" type="primary">提 交</a-button> | |||
</div> | |||
</div> | |||
</template> | |||
<script lang="ts"> | |||
import {BasicForm, useForm} from '/@/components/Form/index'; | |||
import {computed, defineComponent} from 'vue'; | |||
import {defHttp} from '/@/utils/http/axios'; | |||
import { propTypes } from '/@/utils/propTypes'; | |||
import {getBpmFormSchema} from '../AppletProduct.data'; | |||
import {saveOrUpdate} from '../AppletProduct.api'; | |||
export default defineComponent({ | |||
name: "AppletProductForm", | |||
components:{ | |||
BasicForm | |||
}, | |||
props:{ | |||
formData: propTypes.object.def({}), | |||
formBpm: propTypes.bool.def(true), | |||
}, | |||
setup(props){ | |||
const [registerForm, { setFieldsValue, setProps, getFieldsValue }] = useForm({ | |||
labelWidth: 150, | |||
schemas: getBpmFormSchema(props.formData), | |||
showActionButtonGroup: false, | |||
baseColProps: {span: 24} | |||
}); | |||
const formDisabled = computed(()=>{ | |||
if(props.formData.disabled === false){ | |||
return false; | |||
} | |||
return true; | |||
}); | |||
let formData = {}; | |||
const queryByIdUrl = '/appletProduct/appletProduct/queryById'; | |||
async function initFormData(){ | |||
let params = {id: props.formData.dataId}; | |||
const data = await defHttp.get({url: queryByIdUrl, params}); | |||
formData = {...data} | |||
//设置表单的值 | |||
await setFieldsValue(formData); | |||
//默认是禁用 | |||
await setProps({disabled: formDisabled.value}) | |||
} | |||
async function submitForm() { | |||
let data = getFieldsValue(); | |||
let params = Object.assign({}, formData, data); | |||
console.log('表单数据', params) | |||
await saveOrUpdate(params, true) | |||
} | |||
initFormData(); | |||
return { | |||
registerForm, | |||
formDisabled, | |||
submitForm, | |||
} | |||
} | |||
}); | |||
</script> |
@ -0,0 +1,99 @@ | |||
<template> | |||
<BasicModal v-bind="$attrs" @register="registerModal" destroyOnClose :title="title" :width="800" @ok="handleSubmit"> | |||
<BasicForm @register="registerForm" name="AppletProductForm" /> | |||
</BasicModal> | |||
</template> | |||
<script lang="ts" setup> | |||
import {ref, computed, unref, reactive} from 'vue'; | |||
import {BasicModal, useModalInner} from '/@/components/Modal'; | |||
import {BasicForm, useForm} from '/@/components/Form/index'; | |||
import {formSchema} from '../AppletProduct.data'; | |||
import {saveOrUpdate} from '../AppletProduct.api'; | |||
import { useMessage } from '/@/hooks/web/useMessage'; | |||
import { getDateByPicker } from '/@/utils'; | |||
const { createMessage } = useMessage(); | |||
// Emits声明 | |||
const emit = defineEmits(['register','success']); | |||
const isUpdate = ref(true); | |||
const isDetail = ref(false); | |||
//表单配置 | |||
const [registerForm, { setProps,resetFields, setFieldsValue, validate, scrollToField }] = useForm({ | |||
labelWidth: 150, | |||
schemas: formSchema, | |||
showActionButtonGroup: false, | |||
baseColProps: {span: 24} | |||
}); | |||
//表单赋值 | |||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => { | |||
//重置表单 | |||
await resetFields(); | |||
setModalProps({confirmLoading: false,showCancelBtn:!!data?.showFooter,showOkBtn:!!data?.showFooter}); | |||
isUpdate.value = !!data?.isUpdate; | |||
isDetail.value = !!data?.showFooter; | |||
if (unref(isUpdate)) { | |||
//表单赋值 | |||
await setFieldsValue({ | |||
...data.record, | |||
}); | |||
} | |||
// 隐藏底部时禁用整个表单 | |||
setProps({ disabled: !data?.showFooter }) | |||
}); | |||
//日期个性化选择 | |||
const fieldPickers = reactive({ | |||
}); | |||
//设置标题 | |||
const title = computed(() => (!unref(isUpdate) ? '新增' : !unref(isDetail) ? '详情' : '编辑')); | |||
//表单提交事件 | |||
async function handleSubmit(v) { | |||
try { | |||
let values = await validate(); | |||
// 预处理日期数据 | |||
changeDateValue(values); | |||
setModalProps({confirmLoading: true}); | |||
//提交表单 | |||
await saveOrUpdate(values, isUpdate.value); | |||
//关闭弹窗 | |||
closeModal(); | |||
//刷新列表 | |||
emit('success'); | |||
} catch ({ errorFields }) { | |||
if (errorFields) { | |||
const firstField = errorFields[0]; | |||
if (firstField) { | |||
scrollToField(firstField.name, { behavior: 'smooth', block: 'center' }); | |||
} | |||
} | |||
return Promise.reject(errorFields); | |||
} finally { | |||
setModalProps({confirmLoading: false}); | |||
} | |||
} | |||
/** | |||
* 处理日期值 | |||
* @param formData 表单数据 | |||
*/ | |||
const changeDateValue = (formData) => { | |||
if (formData && fieldPickers) { | |||
for (let key in fieldPickers) { | |||
if (formData[key]) { | |||
formData[key] = getDateByPicker(formData[key], fieldPickers[key]); | |||
} | |||
} | |||
} | |||
}; | |||
</script> | |||
<style lang="less" scoped> | |||
/** 时间和数字输入框样式 */ | |||
:deep(.ant-input-number) { | |||
width: 100%; | |||
} | |||
:deep(.ant-calendar-picker) { | |||
width: 100%; | |||
} | |||
</style> |
@ -0,0 +1,73 @@ | |||
<template> | |||
<BasicModal | |||
v-bind="$attrs" | |||
@register="registerModal" | |||
:title="getTitle" | |||
@ok="handleSubmit" | |||
width="800px" | |||
:height="500" | |||
destroyOnClose | |||
> | |||
<BasicForm @register="registerForm" /> | |||
</BasicModal> | |||
</template> | |||
<script lang="ts" setup> | |||
import { ref, computed, unref } from 'vue'; | |||
import { BasicModal, useModalInner } from '/@/components/Modal'; | |||
import { BasicForm, useForm } from '/@/components/Form/index'; | |||
import { formSchema } from '../AppletProductSpec.data'; | |||
import { saveOrUpdate } from '../AppletProductSpec.api'; | |||
import { useMessage } from '/@/hooks/web/useMessage'; | |||
const emit = defineEmits(['register', 'success']); | |||
const { createMessage } = useMessage(); | |||
const isUpdate = ref(true); | |||
const [registerForm, { resetFields, setFieldsValue, validate }] = useForm({ | |||
labelWidth: 100, | |||
schemas: formSchema, | |||
showActionButtonGroup: false, | |||
}); | |||
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => { | |||
//重置表单数据 | |||
await resetFields(); | |||
setModalProps({ confirmLoading: false }); | |||
isUpdate.value = !!data?.isUpdate; | |||
if (unref(isUpdate)) { | |||
// 编辑 | |||
setFieldsValue({ | |||
...data.record, | |||
}); | |||
} else { | |||
// 新增 | |||
setFieldsValue({ | |||
productId: data.productId, | |||
}); | |||
} | |||
}); | |||
const getTitle = computed(() => (!unref(isUpdate) ? '新增产品规格' : '编辑产品规格')); | |||
async function handleSubmit() { | |||
try { | |||
let values = await validate(); | |||
setModalProps({ confirmLoading: true }); | |||
//提交数据 | |||
await saveOrUpdate(values, unref(isUpdate)); | |||
closeModal(); | |||
emit('success'); | |||
createMessage.success(unref(isUpdate) ? '编辑成功!' : '新增成功!'); | |||
} finally { | |||
setModalProps({ confirmLoading: false }); | |||
} | |||
} | |||
</script> | |||
<style lang="less" scoped> | |||
:deep(.ant-picker),:deep(.ant-input-number){ | |||
width: 100%; | |||
} | |||
</style> |
@ -0,0 +1,175 @@ | |||
<template> | |||
<BasicModal | |||
v-bind="$attrs" | |||
@register="registerModal" | |||
:title="getTitle" | |||
@ok="handleSubmit" | |||
width="1200px" | |||
:height="600" | |||
destroyOnClose | |||
> | |||
<div> | |||
<a-button type="primary" @click="handleAdd" style="margin-bottom: 16px;">新增规格</a-button> | |||
<div v-if="loading">加载中...</div> | |||
<div v-else> | |||
<a-table :dataSource="tableData" :columns="tableColumns" :pagination="false"> | |||
<template #bodyCell="{ column, record }"> | |||
<template v-if="column.key === 'action'"> | |||
<a-space> | |||
<a @click="handleEdit(record)">编辑</a> | |||
<a @click="handleDelete(record)">删除</a> | |||
</a-space> | |||
</template> | |||
</template> | |||
</a-table> | |||
</div> | |||
</div> | |||
<!-- 表单区域 --> | |||
<AppletProductSpecForm @register="registerForm" @success="handleSuccess"></AppletProductSpecForm> | |||
</BasicModal> | |||
</template> | |||
<script lang="ts" setup> | |||
import {ref, computed, unref, onMounted} from 'vue'; | |||
import {BasicModal, useModalInner} from '/@/components/Modal'; | |||
import {useModal} from '/@/components/Modal'; | |||
import AppletProductSpecForm from './AppletProductSpecForm.vue' | |||
import {list, deleteOne} from '../AppletProductSpec.api'; | |||
import { useMessage } from '/@/hooks/web/useMessage'; | |||
const emit = defineEmits(['register', 'success']); | |||
const { createMessage } = useMessage(); | |||
//注册model | |||
const [registerForm, {openModal: openFormModal}] = useModal(); | |||
const [registerModal, {setModalProps, closeModal}] = useModalInner(async (data) => { | |||
console.log('弹窗数据:', data); | |||
//重置表单数据 | |||
setModalProps({confirmLoading: false}); | |||
productId.value = data?.record?.id || ''; | |||
console.log('设置产品ID:', productId.value); | |||
// 加载数据 | |||
loadData(); | |||
}); | |||
const productId = ref<string>(''); | |||
const loading = ref(false); | |||
const tableData = ref([]); | |||
const getTitle = computed(() => '产品规格管理'); | |||
// 表格列配置 | |||
const tableColumns = [ | |||
{ | |||
title: '规格名称', | |||
dataIndex: 'specName', | |||
key: 'specName', | |||
}, | |||
{ | |||
title: '规格值', | |||
dataIndex: 'specValue', | |||
key: 'specValue', | |||
}, | |||
{ | |||
title: '价格', | |||
dataIndex: 'price', | |||
key: 'price', | |||
}, | |||
{ | |||
title: '排序', | |||
dataIndex: 'sortOrder', | |||
key: 'sortOrder', | |||
}, | |||
{ | |||
title: '操作', | |||
key: 'action', | |||
width: 150, | |||
}, | |||
]; | |||
// 加载数据 | |||
async function loadData() { | |||
if (!unref(productId)) return; | |||
loading.value = true; | |||
try { | |||
const params = { | |||
productId: unref(productId), | |||
pageNo: 1, | |||
pageSize: 100 | |||
}; | |||
console.log('查询参数:', params); | |||
const result = await list(params); | |||
console.log('查询结果:', result); | |||
if (result && result.records) { | |||
tableData.value = result.records; | |||
} else { | |||
tableData.value = []; | |||
} | |||
} catch (error) { | |||
console.error('加载数据失败:', error); | |||
createMessage.error('加载数据失败!'); | |||
tableData.value = []; | |||
} finally { | |||
loading.value = false; | |||
} | |||
} | |||
/** | |||
* 新增事件 | |||
*/ | |||
function handleAdd() { | |||
console.log('新增规格,产品ID:', unref(productId)); | |||
openFormModal(true, { | |||
isUpdate: false, | |||
showFooter: true, | |||
productId: unref(productId), | |||
}); | |||
} | |||
/** | |||
* 编辑事件 | |||
*/ | |||
function handleEdit(record: Recordable) { | |||
console.log('编辑规格:', record); | |||
openFormModal(true, { | |||
record, | |||
isUpdate: true, | |||
showFooter: true, | |||
productId: unref(productId), | |||
}); | |||
} | |||
/** | |||
* 删除事件 | |||
*/ | |||
async function handleDelete(record) { | |||
console.log('删除规格:', record); | |||
try { | |||
await deleteOne({id: record.id}, handleSuccess); | |||
createMessage.success('删除成功!'); | |||
} catch (error) { | |||
console.error('删除失败:', error); | |||
createMessage.error('删除失败!'); | |||
} | |||
} | |||
/** | |||
* 成功回调 | |||
*/ | |||
function handleSuccess() { | |||
console.log('操作成功,刷新列表'); | |||
loadData(); | |||
} | |||
/** | |||
* 提交事件 | |||
*/ | |||
function handleSubmit() { | |||
closeModal(); | |||
} | |||
</script> | |||
<style lang="less" scoped> | |||
:deep(.ant-picker),:deep(.ant-input-number){ | |||
width: 100%; | |||
} | |||
</style> |