parent
c258155972
commit
4e104166af
@ -0,0 +1,41 @@ |
|||||||
|
import request from '@/config/axios' |
||||||
|
|
||||||
|
// 查询列表-分页
|
||||||
|
export const getClassTypePage = async (params) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/sch-class-type/page', params }) |
||||||
|
} |
||||||
|
|
||||||
|
// 查询详情
|
||||||
|
export const getClassType = async (id) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/sch-class-type/get?id=' + id }) |
||||||
|
} |
||||||
|
|
||||||
|
// 新增
|
||||||
|
export const createClassType = async (data) => { |
||||||
|
return await request.post({ url: '/admin-api/crm/sch-class-type/create', data: data }) |
||||||
|
} |
||||||
|
|
||||||
|
// 修改
|
||||||
|
export const updateClassType = async (params) => { |
||||||
|
return await request.put({ url: '/admin-api/crm/sch-class-type/update', data: params }) |
||||||
|
} |
||||||
|
|
||||||
|
// 删除
|
||||||
|
export const deleteClassType = async (id) => { |
||||||
|
return await request.delete({ url: '/admin-api/crm/sch-class-type/delete?typeId=' + id }) |
||||||
|
} |
||||||
|
|
||||||
|
// 修改状态
|
||||||
|
export const updateClassTypeStatus = async (data) => { |
||||||
|
return request.put({ url: '/admin-api/crm/sch-class-type/status/update', data }) |
||||||
|
} |
||||||
|
|
||||||
|
// 批量修改状态
|
||||||
|
export const batchUpdateClassTypeStatus = async (data) => { |
||||||
|
return request.put({ url: '/admin-api/crm/sch-class-type/status/batch-update', data }) |
||||||
|
} |
||||||
|
|
||||||
|
// 批量删除
|
||||||
|
export const batchDeleteClassType = async (ids) => { |
||||||
|
return await request.delete({ url: '/admin-api/crm/sch-class-type/batch-delete?ids=' + ids }) |
||||||
|
} |
@ -0,0 +1,112 @@ |
|||||||
|
<template> |
||||||
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="500px"> |
||||||
|
<el-form |
||||||
|
ref="formRef" |
||||||
|
v-loading="formLoading" |
||||||
|
:model="formData" |
||||||
|
:rules="formRules" |
||||||
|
label-width="80px" |
||||||
|
> |
||||||
|
<el-form-item label="名称" prop="label"> |
||||||
|
<el-input v-model="formData.label" placeholder="请输入名称" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="编码" prop="value"> |
||||||
|
<el-input v-model="formData.value" placeholder="请输入编码" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="排序" prop="sort"> |
||||||
|
<el-input v-model="formData.sort" placeholder="请输入排序" type="number" :min="0" /> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item label="备注" prop="remark"> |
||||||
|
<el-input |
||||||
|
type="textarea" |
||||||
|
v-model="formData.remark" |
||||||
|
placeholder="请输入备注" |
||||||
|
:autosize="{ minRows: 4, maxRows: 8 }" |
||||||
|
/> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
<template #footer> |
||||||
|
<el-button :disabled="formLoading" type="primary" @click="submitForm">确 定</el-button> |
||||||
|
<el-button @click="dialogVisible = false">取 消</el-button> |
||||||
|
</template> |
||||||
|
</Dialog> |
||||||
|
</template> |
||||||
|
<script name="DialogCartype" setup> |
||||||
|
import * as dictApi from '@/api/system/dict/dict.data' |
||||||
|
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({ |
||||||
|
label: undefined, |
||||||
|
value: undefined, |
||||||
|
sort: 1, |
||||||
|
dictType: 'license_type', |
||||||
|
status: 0, |
||||||
|
remark: '' |
||||||
|
}) |
||||||
|
const formRules = reactive({ |
||||||
|
label: [{ required: true, message: '名称不能为空', trigger: 'blur' }], |
||||||
|
value: [{ required: true, message: '编码不能为空', trigger: 'blur' }] |
||||||
|
}) |
||||||
|
const formRef = ref() // 表单 Ref |
||||||
|
|
||||||
|
/** 打开弹窗 */ |
||||||
|
const open = async (type, id) => { |
||||||
|
dialogVisible.value = true |
||||||
|
dialogTitle.value = type == 'update' ? '修改驾照类型' : '新增驾照类型' |
||||||
|
formType.value = type |
||||||
|
resetForm() |
||||||
|
// 修改时,设置数据 |
||||||
|
if (id) { |
||||||
|
formLoading.value = true |
||||||
|
try { |
||||||
|
formData.value = await dictApi.getDictData(id) |
||||||
|
} finally { |
||||||
|
formLoading.value = false |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
defineExpose({ open }) // 提供 open 方法,用于打开弹窗 |
||||||
|
|
||||||
|
/** 提交表单 */ |
||||||
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调 |
||||||
|
const submitForm = async () => { |
||||||
|
// 校验表单 |
||||||
|
if (!formRef.value) return |
||||||
|
const valid = await formRef.value.validate() |
||||||
|
if (!valid) return |
||||||
|
// 提交请求 |
||||||
|
formLoading.value = true |
||||||
|
try { |
||||||
|
if (formType.value === 'create') { |
||||||
|
await dictApi.createDictData(formData.value) |
||||||
|
message.success(t('common.createSuccess')) |
||||||
|
} else { |
||||||
|
await dictApi.updateDictData(formData.value) |
||||||
|
message.success(t('common.updateSuccess')) |
||||||
|
} |
||||||
|
dialogVisible.value = false |
||||||
|
// 发送操作成功的事件 |
||||||
|
emit('success') |
||||||
|
} finally { |
||||||
|
formLoading.value = false |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** 重置表单 */ |
||||||
|
const resetForm = () => { |
||||||
|
formData.value = { |
||||||
|
label: undefined, |
||||||
|
value: undefined, |
||||||
|
dictType: 'license_type', |
||||||
|
status: 0, |
||||||
|
sort: 1, |
||||||
|
remark: '' |
||||||
|
} |
||||||
|
formRef.value?.resetFields() |
||||||
|
} |
||||||
|
</script> |
@ -0,0 +1,113 @@ |
|||||||
|
<template> |
||||||
|
<div> |
||||||
|
<el-form ref="queryForm" :model="searchForm" label-width="0" inline> |
||||||
|
<el-form-item> |
||||||
|
<el-input |
||||||
|
v-model="searchForm.label" |
||||||
|
placeholder="请输入名称" |
||||||
|
clearable |
||||||
|
style="width: 180px" |
||||||
|
@keyup.enter="handleQuery" |
||||||
|
/> |
||||||
|
</el-form-item> |
||||||
|
<el-form-item> |
||||||
|
<el-button @click="handleQuery">搜索</el-button> |
||||||
|
<el-button @click="resetQuery">重置</el-button> |
||||||
|
<el-button type="primary" @click="openForm('create', null)">新增</el-button> |
||||||
|
</el-form-item> |
||||||
|
</el-form> |
||||||
|
<el-table v-loading="loading" :data="tableList"> |
||||||
|
<el-table-column prop="label" label="名称" /> |
||||||
|
<el-table-column prop="value" label="编码" /> |
||||||
|
<el-table-column prop="sort" label="排序" width="100px" /> |
||||||
|
<el-table-column prop="remark" label="备注" /> |
||||||
|
<el-table-column |
||||||
|
label="创建时间" |
||||||
|
prop="createTime" |
||||||
|
width="180px" |
||||||
|
:formatter="dateFormatter" |
||||||
|
/> |
||||||
|
<el-table-column label="更新人" prop="updator " width="150px" /> |
||||||
|
<el-table-column label="操作"> |
||||||
|
<template #default="{ row }"> |
||||||
|
<el-button type="primary" text @click="openForm('update', row.id)"> 修改 </el-button> |
||||||
|
<el-button type="danger" text @click="handleDelete(row.id)">删除</el-button> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
</el-table> |
||||||
|
<Pagination |
||||||
|
v-model:limit="searchForm.pageSize" |
||||||
|
v-model:page="searchForm.pageNo" |
||||||
|
:total="total" |
||||||
|
@pagination="handleQuery" |
||||||
|
/> |
||||||
|
|
||||||
|
<DialogCartype ref="cartypeDialog" @success="handleQuery" /> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script setup name="CartypeSetting"> |
||||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||||
|
import * as dictApi from '@/api/system/dict/dict.data' |
||||||
|
import DialogCartype from './DialogCartype.vue' |
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化 |
||||||
|
const message = useMessage() // 消息弹窗 |
||||||
|
|
||||||
|
const searchForm = ref({ |
||||||
|
dictType: 'license_type', |
||||||
|
label: '', |
||||||
|
pageNo: 1, |
||||||
|
pageSize: 20 |
||||||
|
}) |
||||||
|
|
||||||
|
const total = ref(0) |
||||||
|
const cartypeDialog = ref() |
||||||
|
const tableList = ref([]) |
||||||
|
const loading = ref(false) |
||||||
|
|
||||||
|
function handleQuery() { |
||||||
|
searchForm.value.pageNo = 1 |
||||||
|
getList() |
||||||
|
} |
||||||
|
function resetQuery() { |
||||||
|
searchForm.value = { |
||||||
|
dictType: 'license_type', |
||||||
|
label: '', |
||||||
|
pageSize: 20, |
||||||
|
pageNo: 1 |
||||||
|
} |
||||||
|
getList() |
||||||
|
} |
||||||
|
async function getList() { |
||||||
|
loading.value = true |
||||||
|
try { |
||||||
|
const data = await dictApi.getDictDataPage(searchForm.value) |
||||||
|
tableList.value = data.list |
||||||
|
total.value = data.total |
||||||
|
} finally { |
||||||
|
loading.value = false |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
function openForm(type, id = null) { |
||||||
|
cartypeDialog.value.open(type, id) |
||||||
|
} |
||||||
|
|
||||||
|
async function handleDelete(id) { |
||||||
|
try { |
||||||
|
// 删除的二次确认 |
||||||
|
await message.delConfirm() |
||||||
|
// 发起删除 |
||||||
|
await dictApi.deleteDictData(id) |
||||||
|
message.success(t('common.delSuccess')) |
||||||
|
// 刷新列表 |
||||||
|
await getList() |
||||||
|
} catch {} |
||||||
|
} |
||||||
|
onMounted(() => { |
||||||
|
getList() |
||||||
|
}) |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped></style> |
@ -0,0 +1,21 @@ |
|||||||
|
<template> |
||||||
|
<div> |
||||||
|
<el-tabs v-model="tabIndex" type="border-card"> |
||||||
|
<el-tab-pane label="驾照类型" :name="0" v-if="checkPermi(['school:setting:cartype'])"> |
||||||
|
<SettingCartype v-if="tabIndex == 0" /> |
||||||
|
</el-tab-pane> |
||||||
|
<!-- <el-tab-pane label="销售提成" :name="10" v-if="checkPermi(['basic:setting:comission'])"> |
||||||
|
<BSSalerComission v-if="tabIndex == 10" /> |
||||||
|
</el-tab-pane> --> |
||||||
|
</el-tabs> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script setup name="SchoolSetting"> |
||||||
|
import SettingCartype from './Comp/SettingCartype.vue' |
||||||
|
import { checkPermi } from '@/utils/permission' |
||||||
|
|
||||||
|
const tabIndex = ref(0) |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped></style> |
Loading…
Reference in new issue