mirror of
				https://gitee.com/hhyykk/ipms-sjy-ui.git
				synced 2025-10-31 10:18:43 +08:00 
			
		
		
		
	feat: 新增商品属性(值)模块页面
This commit is contained in:
		
							
								
								
									
										94
									
								
								src/views/mall/product/property/form.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										94
									
								
								src/views/mall/product/property/form.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,94 @@ | |||||||
|  | <template> | ||||||
|  |   <Dialog :title="modelTitle" v-model="modelVisible"> | ||||||
|  |     <el-form | ||||||
|  |       ref="formRef" | ||||||
|  |       :model="formData" | ||||||
|  |       :rules="formRules" | ||||||
|  |       label-width="80px" | ||||||
|  |       v-loading="formLoading" | ||||||
|  |     > | ||||||
|  |       <el-form-item label="名称" prop="name"> | ||||||
|  |         <el-input v-model="formData.name" placeholder="请输入名称" /> | ||||||
|  |       </el-form-item> | ||||||
|  |       <el-form-item label="备注" prop="remark"> | ||||||
|  |         <el-input v-model="formData.remark" type="textarea" placeholder="请输入内容" /> | ||||||
|  |       </el-form-item> | ||||||
|  |     </el-form> | ||||||
|  |     <template #footer> | ||||||
|  |       <div class="dialog-footer"> | ||||||
|  |         <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button> | ||||||
|  |         <el-button @click="modelVisible = false">取 消</el-button> | ||||||
|  |       </div> | ||||||
|  |     </template> | ||||||
|  |   </Dialog> | ||||||
|  | </template> | ||||||
|  | <script setup lang="ts"> | ||||||
|  | import * as PropertyApi from '@/api/mall/product/property' | ||||||
|  |  | ||||||
|  | const { t } = useI18n() // 国际化 | ||||||
|  | const message = useMessage() // 消息弹窗 | ||||||
|  |  | ||||||
|  | const modelVisible = ref(false) // 弹窗的是否展示 | ||||||
|  | const modelTitle = ref('') // 弹窗的标题 | ||||||
|  | const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 | ||||||
|  | const formType = ref('') // 表单的类型:create - 新增;update - 修改 | ||||||
|  | const defaultFormData: PropertyApi.PropertyVO = { | ||||||
|  |   id: undefined, | ||||||
|  |   name: '' | ||||||
|  | } | ||||||
|  | const formData = ref({ ...defaultFormData }) | ||||||
|  | const formRules = reactive({ | ||||||
|  |   name: [{ required: true, message: '名称不能为空', trigger: 'blur' }] | ||||||
|  | }) | ||||||
|  | const formRef = ref() // 表单 Ref | ||||||
|  |  | ||||||
|  | /** 打开弹窗 */ | ||||||
|  | const openModal = async (type: string, id?: number) => { | ||||||
|  |   modelVisible.value = true | ||||||
|  |   modelTitle.value = t('action.' + type) | ||||||
|  |   formType.value = type | ||||||
|  |   resetForm() | ||||||
|  |   // 修改时,设置数据 | ||||||
|  |   if (id) { | ||||||
|  |     formLoading.value = true | ||||||
|  |     try { | ||||||
|  |       formData.value = await PropertyApi.getProperty(id) | ||||||
|  |     } finally { | ||||||
|  |       formLoading.value = false | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗 | ||||||
|  |  | ||||||
|  | /** 提交表单 */ | ||||||
|  | const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调 | ||||||
|  | const submitForm = async () => { | ||||||
|  |   // 校验表单 | ||||||
|  |   if (!formRef) return | ||||||
|  |   const valid = await formRef.value.validate() | ||||||
|  |   if (!valid) return | ||||||
|  |   // 提交请求 | ||||||
|  |   formLoading.value = true | ||||||
|  |   try { | ||||||
|  |     const data = formData.value as PropertyApi.PropertyVO | ||||||
|  |     if (formType.value === 'create') { | ||||||
|  |       await PropertyApi.createProperty(data) | ||||||
|  |       message.success(t('common.createSuccess')) | ||||||
|  |     } else { | ||||||
|  |       await PropertyApi.updateProperty(data) | ||||||
|  |       message.success(t('common.updateSuccess')) | ||||||
|  |     } | ||||||
|  |     modelVisible.value = false | ||||||
|  |     // 发送操作成功的事件 | ||||||
|  |     emit('success') | ||||||
|  |   } finally { | ||||||
|  |     formLoading.value = false | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 重置表单 */ | ||||||
|  | const resetForm = () => { | ||||||
|  |   formData.value = { ...defaultFormData } | ||||||
|  |   formRef.value?.resetFields() | ||||||
|  | } | ||||||
|  | </script> | ||||||
							
								
								
									
										149
									
								
								src/views/mall/product/property/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										149
									
								
								src/views/mall/product/property/index.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,149 @@ | |||||||
|  | <template> | ||||||
|  |   <content-wrap> | ||||||
|  |     <!-- 搜索工作栏 --> | ||||||
|  |     <el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px"> | ||||||
|  |       <el-form-item label="名称" prop="name"> | ||||||
|  |         <el-input | ||||||
|  |           v-model="queryParams.name" | ||||||
|  |           placeholder="请输入名称" | ||||||
|  |           clearable | ||||||
|  |           @keyup.enter="handleQuery" | ||||||
|  |         /> | ||||||
|  |       </el-form-item> | ||||||
|  |       <el-form-item label="创建时间" prop="createTime"> | ||||||
|  |         <el-date-picker | ||||||
|  |           v-model="queryParams.createTime" | ||||||
|  |           value-format="YYYY-MM-DD HH:mm:ss" | ||||||
|  |           type="daterange" | ||||||
|  |           range-separator="-" | ||||||
|  |           start-placeholder="开始日期" | ||||||
|  |           end-placeholder="结束日期" | ||||||
|  |           :default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]" | ||||||
|  |         /> | ||||||
|  |       </el-form-item> | ||||||
|  |       <el-form-item> | ||||||
|  |         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button> | ||||||
|  |         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button> | ||||||
|  |         <el-button type="primary" @click="openModal('create')" v-hasPermi="['infra:config:create']"> | ||||||
|  |           <Icon icon="ep:plus" class="mr-5px" /> 新增 | ||||||
|  |         </el-button> | ||||||
|  |       </el-form-item> | ||||||
|  |     </el-form> | ||||||
|  |  | ||||||
|  |     <!-- 列表 --> | ||||||
|  |     <el-table v-loading="loading" :data="list" align="center"> | ||||||
|  |       <el-table-column label="编号" align="center" prop="id" /> | ||||||
|  |       <el-table-column label="名称" align="center" :show-overflow-tooltip="true"> | ||||||
|  |         <template #default="scope"> | ||||||
|  |           <router-link :to="'/property/value/' + scope.row.id" class="link-type"> | ||||||
|  |             <span>{{ scope.row.name }}</span> | ||||||
|  |           </router-link> | ||||||
|  |         </template> | ||||||
|  |       </el-table-column> | ||||||
|  |       <el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true" /> | ||||||
|  |       <el-table-column | ||||||
|  |         label="创建时间" | ||||||
|  |         align="center" | ||||||
|  |         prop="createTime" | ||||||
|  |         width="180" | ||||||
|  |         :formatter="dateFormatter" | ||||||
|  |       /> | ||||||
|  |       <el-table-column label="操作" align="center"> | ||||||
|  |         <template #default="scope"> | ||||||
|  |           <el-button | ||||||
|  |             link | ||||||
|  |             type="primary" | ||||||
|  |             @click="openModal('update', scope.row.id)" | ||||||
|  |             v-hasPermi="['infra:config:update']" | ||||||
|  |           > | ||||||
|  |             编辑 | ||||||
|  |           </el-button> | ||||||
|  |           <el-button | ||||||
|  |             link | ||||||
|  |             type="danger" | ||||||
|  |             @click="handleDelete(scope.row.id)" | ||||||
|  |             v-hasPermi="['infra:config:delete']" | ||||||
|  |           > | ||||||
|  |             删除 | ||||||
|  |           </el-button> | ||||||
|  |         </template> | ||||||
|  |       </el-table-column> | ||||||
|  |     </el-table> | ||||||
|  |     <!-- 分页 --> | ||||||
|  |     <Pagination | ||||||
|  |       :total="total" | ||||||
|  |       v-model:page="queryParams.pageNo" | ||||||
|  |       v-model:limit="queryParams.pageSize" | ||||||
|  |       @pagination="getList" | ||||||
|  |     /> | ||||||
|  |   </content-wrap> | ||||||
|  |  | ||||||
|  |   <!-- 表单弹窗:添加/修改 --> | ||||||
|  |   <property-form ref="modalRef" @success="getList" /> | ||||||
|  | </template> | ||||||
|  | <script setup lang="ts" name="Config"> | ||||||
|  | import { dateFormatter } from '@/utils/formatTime' | ||||||
|  | import * as PropertyApi from '@/api/mall/product/property' | ||||||
|  | import PropertyForm from './form.vue' | ||||||
|  | const message = useMessage() // 消息弹窗 | ||||||
|  | const { t } = useI18n() // 国际化 | ||||||
|  |  | ||||||
|  | const loading = ref(true) // 列表的加载中 | ||||||
|  | const total = ref(0) // 列表的总页数 | ||||||
|  | const list = ref([]) // 列表的数据 | ||||||
|  | const queryParams = reactive({ | ||||||
|  |   pageNo: 1, | ||||||
|  |   pageSize: 10, | ||||||
|  |   name: undefined, | ||||||
|  |   createTime: [] | ||||||
|  | }) | ||||||
|  | const queryFormRef = ref() // 搜索的表单 | ||||||
|  |  | ||||||
|  | /** 查询参数列表 */ | ||||||
|  | const getList = async () => { | ||||||
|  |   loading.value = true | ||||||
|  |   try { | ||||||
|  |     const data = await PropertyApi.getPropertyPage(queryParams) | ||||||
|  |     list.value = data.list | ||||||
|  |     total.value = data.total | ||||||
|  |   } finally { | ||||||
|  |     loading.value = false | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 搜索按钮操作 */ | ||||||
|  | const handleQuery = () => { | ||||||
|  |   queryParams.pageNo = 1 | ||||||
|  |   getList() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 重置按钮操作 */ | ||||||
|  | const resetQuery = () => { | ||||||
|  |   queryFormRef.value.resetFields() | ||||||
|  |   handleQuery() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 添加/修改操作 */ | ||||||
|  | const modalRef = ref() | ||||||
|  | const openModal = (type: string, id?: number) => { | ||||||
|  |   modalRef.value.openModal(type, id) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 删除按钮操作 */ | ||||||
|  | const handleDelete = async (id: number) => { | ||||||
|  |   try { | ||||||
|  |     // 删除的二次确认 | ||||||
|  |     await message.delConfirm() | ||||||
|  |     // 发起删除 | ||||||
|  |     await PropertyApi.deleteProperty(id) | ||||||
|  |     message.success(t('common.delSuccess')) | ||||||
|  |     // 刷新列表 | ||||||
|  |     await getList() | ||||||
|  |   } catch {} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 初始化 **/ | ||||||
|  | onMounted(() => { | ||||||
|  |   getList() | ||||||
|  | }) | ||||||
|  | </script> | ||||||
							
								
								
									
										101
									
								
								src/views/mall/product/property/value/form.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										101
									
								
								src/views/mall/product/property/value/form.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,101 @@ | |||||||
|  | <template> | ||||||
|  |   <Dialog :title="modelTitle" v-model="modelVisible"> | ||||||
|  |     <el-form | ||||||
|  |       ref="formRef" | ||||||
|  |       :model="formData" | ||||||
|  |       :rules="formRules" | ||||||
|  |       label-width="80px" | ||||||
|  |       v-loading="formLoading" | ||||||
|  |     > | ||||||
|  |       <el-form-item label="属性id" prop="category"> | ||||||
|  |         <el-input v-model="formData.propertyId" disabled="" /> | ||||||
|  |       </el-form-item> | ||||||
|  |       <el-form-item label="名称" prop="name"> | ||||||
|  |         <el-input v-model="formData.name" placeholder="请输入名称" /> | ||||||
|  |       </el-form-item> | ||||||
|  |       <el-form-item label="备注" prop="remark"> | ||||||
|  |         <el-input v-model="formData.remark" type="textarea" placeholder="请输入内容" /> | ||||||
|  |       </el-form-item> | ||||||
|  |     </el-form> | ||||||
|  |     <template #footer> | ||||||
|  |       <div class="dialog-footer"> | ||||||
|  |         <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button> | ||||||
|  |         <el-button @click="modelVisible = false">取 消</el-button> | ||||||
|  |       </div> | ||||||
|  |     </template> | ||||||
|  |   </Dialog> | ||||||
|  | </template> | ||||||
|  | <script setup lang="ts"> | ||||||
|  | import * as PropertyApi from '@/api/mall/product/property' | ||||||
|  |  | ||||||
|  | const { t } = useI18n() // 国际化 | ||||||
|  | const message = useMessage() // 消息弹窗 | ||||||
|  |  | ||||||
|  | const modelVisible = ref(false) // 弹窗的是否展示 | ||||||
|  | const modelTitle = ref('') // 弹窗的标题 | ||||||
|  | const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用 | ||||||
|  | const formType = ref('') // 表单的类型:create - 新增;update - 修改 | ||||||
|  | const defaultFormData: PropertyApi.PropertyValueVO = { | ||||||
|  |   id: undefined, | ||||||
|  |   propertyId: undefined, | ||||||
|  |   name: '', | ||||||
|  |   remark: '' | ||||||
|  | } | ||||||
|  | const formData = ref({ ...defaultFormData }) | ||||||
|  | const formRules = reactive({ | ||||||
|  |   propertyId: [{ required: true, message: '属性不能为空', trigger: 'blur' }], | ||||||
|  |   name: [{ required: true, message: '名称不能为空', trigger: 'blur' }] | ||||||
|  | }) | ||||||
|  | const formRef = ref() // 表单 Ref | ||||||
|  |  | ||||||
|  | /** 打开弹窗 */ | ||||||
|  | const openModal = async (type: string, propertyId: number, id?: number) => { | ||||||
|  |   modelVisible.value = true | ||||||
|  |   modelTitle.value = t('action.' + type) | ||||||
|  |   formType.value = type | ||||||
|  |   defaultFormData.propertyId = propertyId | ||||||
|  |   resetForm() | ||||||
|  |   // 修改时,设置数据 | ||||||
|  |   if (id) { | ||||||
|  |     formLoading.value = true | ||||||
|  |     try { | ||||||
|  |       formData.value = await PropertyApi.getPropertyValue(id) | ||||||
|  |     } finally { | ||||||
|  |       formLoading.value = false | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | defineExpose({ openModal }) // 提供 openModal 方法,用于打开弹窗 | ||||||
|  |  | ||||||
|  | /** 提交表单 */ | ||||||
|  | const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调 | ||||||
|  | const submitForm = async () => { | ||||||
|  |   // 校验表单 | ||||||
|  |   if (!formRef) return | ||||||
|  |   const valid = await formRef.value.validate() | ||||||
|  |   if (!valid) return | ||||||
|  |   // 提交请求 | ||||||
|  |   formLoading.value = true | ||||||
|  |   try { | ||||||
|  |     const data = formData.value as PropertyApi.PropertyValueVO | ||||||
|  |     if (formType.value === 'create') { | ||||||
|  |       await PropertyApi.createPropertyValue(data) | ||||||
|  |       message.success(t('common.createSuccess')) | ||||||
|  |     } else { | ||||||
|  |       await PropertyApi.updatePropertyValue(data) | ||||||
|  |       message.success(t('common.updateSuccess')) | ||||||
|  |     } | ||||||
|  |     modelVisible.value = false | ||||||
|  |     // 发送操作成功的事件 | ||||||
|  |     emit('success') | ||||||
|  |   } finally { | ||||||
|  |     formLoading.value = false | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 重置表单 */ | ||||||
|  | const resetForm = () => { | ||||||
|  |   formData.value = { ...defaultFormData } | ||||||
|  |   formRef.value?.resetFields() | ||||||
|  | } | ||||||
|  | </script> | ||||||
							
								
								
									
										162
									
								
								src/views/mall/product/property/value/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										162
									
								
								src/views/mall/product/property/value/index.vue
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,162 @@ | |||||||
|  | <template> | ||||||
|  |   <content-wrap> | ||||||
|  |     <!-- 搜索工作栏 --> | ||||||
|  |     <el-form :model="queryParams" ref="queryFormRef" :inline="true" label-width="68px"> | ||||||
|  |       <el-form-item label="属性项" prop="propertyId"> | ||||||
|  |         <el-select v-model="queryParams.propertyId"> | ||||||
|  |           <el-option | ||||||
|  |             v-for="item in propertyOptions" | ||||||
|  |             :key="item.id" | ||||||
|  |             :label="item.name" | ||||||
|  |             :value="item.id" | ||||||
|  |           /> | ||||||
|  |         </el-select> | ||||||
|  |       </el-form-item> | ||||||
|  |       <el-form-item label="名称" prop="name"> | ||||||
|  |         <el-input | ||||||
|  |           v-model="queryParams.name" | ||||||
|  |           placeholder="请输入名称" | ||||||
|  |           clearable | ||||||
|  |           @keyup.enter="handleQuery" | ||||||
|  |         /> | ||||||
|  |       </el-form-item> | ||||||
|  |       <el-form-item> | ||||||
|  |         <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button> | ||||||
|  |         <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button> | ||||||
|  |         <el-button type="primary" @click="openModal('create')" v-hasPermi="['infra:config:create']"> | ||||||
|  |           <Icon icon="ep:plus" class="mr-5px" /> 新增 | ||||||
|  |         </el-button> | ||||||
|  |       </el-form-item> | ||||||
|  |     </el-form> | ||||||
|  |  | ||||||
|  |     <!-- 列表 --> | ||||||
|  |     <el-table v-loading="loading" :data="list" align="center"> | ||||||
|  |       <el-table-column label="编号" align="center" prop="id" /> | ||||||
|  |       <el-table-column label="名称" align="center" prop="name" :show-overflow-tooltip="true" /> | ||||||
|  |       <el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true" /> | ||||||
|  |       <el-table-column | ||||||
|  |         label="创建时间" | ||||||
|  |         align="center" | ||||||
|  |         prop="createTime" | ||||||
|  |         width="180" | ||||||
|  |         :formatter="dateFormatter" | ||||||
|  |       /> | ||||||
|  |       <el-table-column label="操作" align="center"> | ||||||
|  |         <template #default="scope"> | ||||||
|  |           <el-button | ||||||
|  |             link | ||||||
|  |             type="primary" | ||||||
|  |             @click="openModal('update', scope.row.id)" | ||||||
|  |             v-hasPermi="['infra:config:update']" | ||||||
|  |           > | ||||||
|  |             编辑 | ||||||
|  |           </el-button> | ||||||
|  |           <el-button | ||||||
|  |             link | ||||||
|  |             type="danger" | ||||||
|  |             @click="handleDelete(scope.row.id)" | ||||||
|  |             v-hasPermi="['infra:config:delete']" | ||||||
|  |           > | ||||||
|  |             删除 | ||||||
|  |           </el-button> | ||||||
|  |         </template> | ||||||
|  |       </el-table-column> | ||||||
|  |     </el-table> | ||||||
|  |     <!-- 分页 --> | ||||||
|  |     <Pagination | ||||||
|  |       :total="total" | ||||||
|  |       v-model:page="queryParams.pageNo" | ||||||
|  |       v-model:limit="queryParams.pageSize" | ||||||
|  |       @pagination="getList" | ||||||
|  |     /> | ||||||
|  |   </content-wrap> | ||||||
|  |  | ||||||
|  |   <!-- 表单弹窗:添加/修改 --> | ||||||
|  |   <value-form ref="modalRef" @success="getList" /> | ||||||
|  | </template> | ||||||
|  | <script setup lang="ts" name="Config"> | ||||||
|  | import { dateFormatter } from '@/utils/formatTime' | ||||||
|  | import * as PropertyApi from '@/api/mall/product/property' | ||||||
|  | import ValueForm from './form.vue' | ||||||
|  | const message = useMessage() // 消息弹窗 | ||||||
|  | const { t } = useI18n() // 国际化 | ||||||
|  |  | ||||||
|  | const loading = ref(true) // 列表的加载中 | ||||||
|  | const total = ref(0) // 列表的总页数 | ||||||
|  | const list = ref([]) // 列表的数据 | ||||||
|  | const propertyOptions = ref<any[]>([]) | ||||||
|  | const defaultPropertyId = ref() | ||||||
|  | const queryParams = reactive<any>({ | ||||||
|  |   pageNo: 1, | ||||||
|  |   pageSize: 10, | ||||||
|  |   name: undefined, | ||||||
|  |   propertyId: undefined | ||||||
|  | }) | ||||||
|  | const queryFormRef = ref() // 搜索的表单 | ||||||
|  |  | ||||||
|  | /** 查询参数列表 */ | ||||||
|  | const getList = async () => { | ||||||
|  |   loading.value = true | ||||||
|  |   try { | ||||||
|  |     const data = await PropertyApi.getPropertyValuePage(queryParams) | ||||||
|  |     list.value = data.list | ||||||
|  |     total.value = data.total | ||||||
|  |   } finally { | ||||||
|  |     loading.value = false | ||||||
|  |   } | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 属性项下拉框数据 */ | ||||||
|  | const getPropertyList = async () => { | ||||||
|  |   const data = await PropertyApi.getPropertyList({}) | ||||||
|  |   propertyOptions.value = data | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 查询字典类型详细 */ | ||||||
|  | const getProperty = async (propertyId: number) => { | ||||||
|  |   const data = await PropertyApi.getProperty(propertyId) | ||||||
|  |   queryParams.propertyId = data.id | ||||||
|  |   defaultPropertyId.value = data.id | ||||||
|  |   await getList() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 搜索按钮操作 */ | ||||||
|  | const handleQuery = () => { | ||||||
|  |   queryParams.pageNo = 1 | ||||||
|  |   getList() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 重置按钮操作 */ | ||||||
|  | const resetQuery = () => { | ||||||
|  |   queryFormRef.value.resetFields() | ||||||
|  |   handleQuery() | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 添加/修改操作 */ | ||||||
|  | const modalRef = ref() | ||||||
|  | const openModal = (type: string, id?: number) => { | ||||||
|  |   modalRef.value.openModal(type, defaultPropertyId, id) | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 删除按钮操作 */ | ||||||
|  | const handleDelete = async (id: number) => { | ||||||
|  |   try { | ||||||
|  |     // 删除的二次确认 | ||||||
|  |     await message.delConfirm() | ||||||
|  |     // 发起删除 | ||||||
|  |     await PropertyApi.deleteProperty(id) | ||||||
|  |     message.success(t('common.delSuccess')) | ||||||
|  |     // 刷新列表 | ||||||
|  |     await getList() | ||||||
|  |   } catch {} | ||||||
|  | } | ||||||
|  |  | ||||||
|  | /** 初始化 **/ | ||||||
|  | const router = useRouter() | ||||||
|  | onMounted(() => { | ||||||
|  |   const propertyId: number = | ||||||
|  |     router.currentRoute.value.params && (router.currentRoute.value.params.propertyId as any) | ||||||
|  |   getProperty(propertyId) | ||||||
|  |   getPropertyList() | ||||||
|  | }) | ||||||
|  | </script> | ||||||
		Reference in New Issue
	
	Block a user
	 Siyu Kong
					Siyu Kong