generated from Leo_Ding/web-template
220 lines
6.9 KiB
Vue
220 lines
6.9 KiB
Vue
<template>
|
|
<a-modal :open="modal.open" :title="modal.title" :width="640" :confirm-loading="modal.confirmLoading"
|
|
:after-close="onAfterClose" :cancel-text="cancelText" :ok-text="okText" @ok="handleOk" @cancel="handleCancel">
|
|
<a-form ref="formRef" :model="formData" :rules="formRules">
|
|
<a-card class="mb-8-2">
|
|
<a-row :gutter="12">
|
|
<a-row :gutter="16">
|
|
<a-col :span="12">
|
|
<a-form-item label="年份" name="year">
|
|
<a-select v-model:value="formData.year" placeholder="请选择年份">
|
|
<a-select-option v-for="y in yearOptions" :key="y" :value="y">{{ y }}</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :span="12">
|
|
<a-form-item label="月份" name="month">
|
|
<a-select v-model:value="formData.month" placeholder="请选择月份">
|
|
<!-- <a-select-option v-for="m in 12" :key="m" :value="m.toString().padStart(2, '0')">-->
|
|
<a-select-option v-for="m in 12" :key="m">
|
|
{{ m }} 月
|
|
</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<a-col :span="24">
|
|
<a-form-item :label="'事件'" name="title">
|
|
<a-input :placeholder="'请输入名称'" v-model:value="formData.title"></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-item :label="'顺序'" name="sequence">
|
|
<a-input-number :placeholder="'请输入顺序'" v-model:value="formData.sequence"></a-input-number>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :span="24">
|
|
<a-form-item :label="'状态'" name="status">
|
|
<a-radio-group v-model:value="formData.status" :options="[
|
|
{ label: '启用', value: 'enabled' },
|
|
{ label: '停用', value: 'disabled' },
|
|
]"></a-radio-group>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
</a-card>
|
|
</a-form>
|
|
</a-modal>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { cloneDeep } from 'lodash-es'
|
|
import { ref } from 'vue'
|
|
import { config } from '@/config'
|
|
import apis from '@/apis'
|
|
import { useForm, useModal } from '@/hooks'
|
|
import { message } from 'ant-design-vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import dayjs from 'dayjs'
|
|
import { createMenu, getMenu, updateMenu } from '@/apis/modules/imgmgt'
|
|
const emit = defineEmits(['ok'])
|
|
const { t } = useI18n() // 解构出t方法
|
|
const { modal, showModal, hideModal, showLoading, hideLoading } = useModal()
|
|
const { formRecord, formData, formRef, formRules, resetForm } = useForm()
|
|
const cancelText = ref(t('button.cancel'))
|
|
const okText = ref(t('button.confirm'))
|
|
const rolesValue = ref([])
|
|
const roles = ref([])
|
|
const img = ref('')
|
|
formRules.value = {
|
|
title: { required: true, message: '请输入事件' },
|
|
year: { required: true, message: '请输入年份' },
|
|
month: { required: true, message: '请输入月份' },
|
|
status: [{ required: true, message: '请选择状态', trigger: 'change' }],
|
|
sequence: [{ required: true, message: '请选择顺序', trigger: 'change' }],
|
|
}
|
|
/**
|
|
* select 年月
|
|
*/
|
|
const yearOptions = [];
|
|
const currentYear = new Date().getFullYear();
|
|
for (let i = currentYear - 20; i <= currentYear + 20; i++) {
|
|
yearOptions.push(i);
|
|
}
|
|
|
|
/**
|
|
* select 选择框
|
|
*/
|
|
const handleChange = (value) => {
|
|
rolesValue.value = value
|
|
}
|
|
const imgChange = (value) => {
|
|
formData.value.img = value
|
|
}
|
|
/**
|
|
* 新建
|
|
*/
|
|
function handleCreate() {
|
|
showModal({
|
|
type: 'create',
|
|
title: '添加公司动态',
|
|
})
|
|
formData.value.status = 'enabled'
|
|
}
|
|
|
|
/**
|
|
* 编辑
|
|
*/
|
|
async function handleEdit(record = {}) {
|
|
showModal({
|
|
type: 'edit',
|
|
// 80对应about
|
|
title: t('pages.system.user.edit'),
|
|
})
|
|
const { data, success } = await apis.importantEvents.getMenu(record.id).catch()
|
|
if (!success) {
|
|
hideModal()
|
|
return
|
|
}
|
|
formData.value = { ...data }
|
|
formData.value.pushAt=dayjs(data.pushAt)
|
|
console.log(formData.value)
|
|
img.value = config('http.apiBasic') + data.img
|
|
}
|
|
|
|
/**
|
|
* 确定
|
|
*/
|
|
function handleOk() {
|
|
|
|
formRef.value.validateFields().then(async (values) => {
|
|
console.log(values)
|
|
try {
|
|
showLoading()
|
|
const params = {
|
|
...values,
|
|
// pushAt:dayjs(formData.value.pushAt).format("YYYY-MM-DD"),
|
|
}
|
|
let result = null
|
|
console.log(modal.value.type)
|
|
switch (modal.value.type) {
|
|
case 'create':
|
|
result = await apis.importantEvents.createMenu(params).catch(() => {
|
|
throw new Error()
|
|
})
|
|
break
|
|
case 'edit':
|
|
// result = await apis.imgmgt.updateMenu(formData.value.id, params).catch(() => {
|
|
result = await apis.importantEvents.updateMenu(formData.value.id, params).catch(() => {
|
|
throw new Error()
|
|
})
|
|
break
|
|
}
|
|
hideLoading()
|
|
if (config('http.code.success') === result?.success) {
|
|
hideModal()
|
|
emit('ok')
|
|
}
|
|
} catch (error) {
|
|
console.log(error)
|
|
hideLoading()
|
|
}
|
|
})
|
|
.catch((e) => {
|
|
console.log(e)
|
|
hideLoading()
|
|
})
|
|
}
|
|
|
|
/**
|
|
* 对权限组 过数据格式
|
|
*/
|
|
function formatArr(data, type = '') {
|
|
const rolesArr = []
|
|
data.forEach((item) => {
|
|
roles.value.forEach((r) => {
|
|
if (type === 'edit') {
|
|
if (item.role_id === r.value) {
|
|
rolesArr.push({
|
|
value: item.role_id,
|
|
label: r.label,
|
|
})
|
|
return
|
|
}
|
|
} else if (r.value === item) {
|
|
rolesArr.push({
|
|
role_id: item,
|
|
role_name: r.label,
|
|
})
|
|
return
|
|
}
|
|
})
|
|
})
|
|
return rolesArr
|
|
}
|
|
|
|
/**
|
|
* 取消
|
|
*/
|
|
function handleCancel() {
|
|
img.value = ''
|
|
hideModal()
|
|
}
|
|
|
|
/**
|
|
* 关闭后
|
|
*/
|
|
function onAfterClose() {
|
|
resetForm()
|
|
hideLoading()
|
|
}
|
|
|
|
defineExpose({
|
|
handleCreate,
|
|
handleEdit,
|
|
})
|
|
</script>
|
|
|
|
<style lang="less" scoped></style>
|