134 lines
4.1 KiB
Vue
134 lines
4.1 KiB
Vue
<template>
|
||
<Dialog :title="dialogTitle" v-model="dialogVisible">
|
||
<el-form
|
||
ref="formRef"
|
||
:model="formData"
|
||
:rules="formRules"
|
||
label-width="100px"
|
||
v-loading="formLoading"
|
||
>
|
||
<el-row>
|
||
<el-col :span="8">
|
||
<el-form-item label="项目" prop="projectId">
|
||
<el-select
|
||
v-model="formData.projectId"
|
||
class="!w-240px"
|
||
placeholder="请选择项目"
|
||
>
|
||
<el-option
|
||
v-for="item in projectList"
|
||
:key="item.id"
|
||
:label="item.name"
|
||
:value="item.id"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item label="统计月份" prop="statMonth">
|
||
<el-date-picker
|
||
v-model="formData.statMonth"
|
||
type="month"
|
||
placeholder="选择月"
|
||
:value-format="'YYYYMM'"
|
||
clearable
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="8">
|
||
<el-form-item label="充电量(度)" prop="chargingQuantity">
|
||
<el-input
|
||
v-model="formData.chargingQuantity"
|
||
placeholder="请输入充电量"
|
||
/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</el-form>
|
||
<template #footer>
|
||
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||
</template>
|
||
</Dialog>
|
||
</template>
|
||
<script setup lang="ts">
|
||
import * as ProjectMonthlyStatApi from '@/api/crm/project/monthly'
|
||
import * as ProjectApi from '@/api/crm/project'
|
||
|
||
/** 项目月度统计 表单 */
|
||
defineOptions({ name: 'ProjectMonthlyStatForm' })
|
||
|
||
const { t } = useI18n() // 国际化
|
||
const message = useMessage() // 消息弹窗
|
||
|
||
const dialogVisible = ref(false) // 弹窗的是否展示
|
||
const dialogTitle = ref('') // 弹窗的标题
|
||
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
||
const formData = ref({
|
||
projectId: undefined,
|
||
statMonth: undefined,
|
||
chargingQuantity: undefined
|
||
})
|
||
const formRules = reactive({
|
||
projectId: [{ required: true, message: '项目ID不能为空', trigger: 'blur' }],
|
||
statMonth: [{ required: true, message: '统计月份不能为空', trigger: 'blur' }],
|
||
chargingQuantity: [{ required: true, message: '充电量不能为空', trigger: 'blur' }],
|
||
})
|
||
const formRef = ref() // 表单 Ref
|
||
const projectList = ref()
|
||
|
||
/** 打开弹窗 */
|
||
const open = async (type: string, id?: number) => {
|
||
dialogVisible.value = true
|
||
dialogTitle.value = t('action.' + type)
|
||
formType.value = type
|
||
resetForm()
|
||
// 修改时,设置数据
|
||
if (id) {
|
||
formLoading.value = true
|
||
try {
|
||
formData.value = await ProjectMonthlyStatApi.getProjectMonthlyStat(id)
|
||
} finally {
|
||
formLoading.value = false
|
||
}
|
||
}
|
||
// 获取项目列表
|
||
projectList.value = await ProjectApi.getProjectSimpleList()
|
||
}
|
||
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
||
|
||
/** 提交表单 */
|
||
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
||
const submitForm = async () => {
|
||
// 校验表单
|
||
await formRef.value.validate()
|
||
// 提交请求
|
||
formLoading.value = true
|
||
try {
|
||
const data = formData.value as unknown as ProjectMonthlyStatApi.ProjectMonthlyStatVO
|
||
if (formType.value === 'create') {
|
||
await ProjectMonthlyStatApi.createProjectMonthlyStat(data)
|
||
message.success(t('common.createSuccess'))
|
||
} else {
|
||
await ProjectMonthlyStatApi.updateProjectMonthlyStat(data)
|
||
message.success(t('common.updateSuccess'))
|
||
}
|
||
dialogVisible.value = false
|
||
// 发送操作成功的事件
|
||
emit('success')
|
||
} finally {
|
||
formLoading.value = false
|
||
}
|
||
}
|
||
|
||
/** 重置表单 */
|
||
const resetForm = () => {
|
||
formData.value = {
|
||
projectId: undefined,
|
||
statMonth: undefined,
|
||
chargingQuantity: undefined
|
||
}
|
||
formRef.value?.resetFields()
|
||
}
|
||
</script> |