salary
parent
4c692c48e3
commit
c1cd205267
@ -0,0 +1,16 @@ |
|||||||
|
import request from '@/config/axios' |
||||||
|
|
||||||
|
// 查询列表
|
||||||
|
export const getSignPage = async (params) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/sign/page', params }) |
||||||
|
} |
||||||
|
|
||||||
|
// 查询详情
|
||||||
|
export const getSign = async (id) => { |
||||||
|
return await request.get({ url: '/admin-api/crm/sign/get?id=' + id }) |
||||||
|
} |
||||||
|
|
||||||
|
// 新增
|
||||||
|
export const createSign = async (data) => { |
||||||
|
return await request.post({ url: '/admin-api/crm/sign/create', data: data }) |
||||||
|
} |
@ -0,0 +1,107 @@ |
|||||||
|
<template> |
||||||
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="800px"> |
||||||
|
<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="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="DialogExtraFee" 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: '', |
||||||
|
sort: 1, |
||||||
|
remark: '' |
||||||
|
}) |
||||||
|
const formRules = reactive({ |
||||||
|
label: [{ 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 (!formData.value.value) { |
||||||
|
formData.value.value = formData.value.label |
||||||
|
} |
||||||
|
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: '', |
||||||
|
sort: 1, |
||||||
|
status: 0, |
||||||
|
dictType: 'extra_pay_type', |
||||||
|
remark: '' |
||||||
|
} |
||||||
|
formRef.value?.resetFields() |
||||||
|
} |
||||||
|
</script> |
@ -0,0 +1,107 @@ |
|||||||
|
<template> |
||||||
|
<Dialog :title="dialogTitle" v-model="dialogVisible" width="800px"> |
||||||
|
<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="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="DialogIntention" 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: '', |
||||||
|
sort: 1, |
||||||
|
remark: '' |
||||||
|
}) |
||||||
|
const formRules = reactive({ |
||||||
|
label: [{ 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 (!formData.value.value) { |
||||||
|
formData.value.value = formData.value.label |
||||||
|
} |
||||||
|
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: '', |
||||||
|
sort: 1, |
||||||
|
status: 0, |
||||||
|
dictType: 'intention_state', |
||||||
|
remark: '' |
||||||
|
} |
||||||
|
formRef.value?.resetFields() |
||||||
|
} |
||||||
|
</script> |
@ -0,0 +1,126 @@ |
|||||||
|
<template> |
||||||
|
<div> |
||||||
|
<el-form ref="queryForm" :model="searchForm" label-width="0" inline> |
||||||
|
<el-form-item> |
||||||
|
<el-input |
||||||
|
v-model="searchForm.name" |
||||||
|
placeholder="请输入名称" |
||||||
|
clearable |
||||||
|
@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="sort" label="排序" width="100px" /> |
||||||
|
<el-table-column prop="remark" label="备注" /> |
||||||
|
<el-table-column |
||||||
|
label="创建时间" |
||||||
|
prop="createTime" |
||||||
|
width="180px" |
||||||
|
:formatter="dateFormatter" |
||||||
|
/> |
||||||
|
<el-table-column label="操作"> |
||||||
|
<template #default="scope"> |
||||||
|
<el-button |
||||||
|
type="primary" |
||||||
|
:disabled="!scope.row.editable" |
||||||
|
text |
||||||
|
@click="openForm('update', scope.row.id)" |
||||||
|
> |
||||||
|
修改 |
||||||
|
</el-button> |
||||||
|
<el-button |
||||||
|
type="danger" |
||||||
|
:disabled="!scope.row.editable" |
||||||
|
text |
||||||
|
@click="handleDelete(scope.row.id)" |
||||||
|
> |
||||||
|
删除 |
||||||
|
</el-button> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
</el-table> |
||||||
|
<Pagination |
||||||
|
v-model:limit="searchForm.pageSize" |
||||||
|
v-model:page="searchForm.pageNo" |
||||||
|
:total="total" |
||||||
|
@pagination="getList" |
||||||
|
/> |
||||||
|
|
||||||
|
<DialogExtraFee ref="intentionDialog" @success="handleQuery" /> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script setup name="ExtraFeeType"> |
||||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||||
|
import DialogExtraFee from './DialogExtraFee.vue' |
||||||
|
import * as dictApi from '@/api/system/dict/dict.data' |
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化 |
||||||
|
const message = useMessage() // 消息弹窗 |
||||||
|
|
||||||
|
const searchForm = ref({ |
||||||
|
label: '', |
||||||
|
pageSize: 20, |
||||||
|
pageNo: 1, |
||||||
|
dictType: 'extra_pay_type' |
||||||
|
}) |
||||||
|
|
||||||
|
const total = ref(0) |
||||||
|
const intentionDialog = ref() |
||||||
|
const tableList = ref([]) |
||||||
|
const loading = ref(false) |
||||||
|
|
||||||
|
function handleQuery() { |
||||||
|
searchForm.value.pageNo = 1 |
||||||
|
getList() |
||||||
|
} |
||||||
|
function resetQuery() { |
||||||
|
searchForm.value = { |
||||||
|
label: '', |
||||||
|
pageSize: 20, |
||||||
|
pageNo: 1, |
||||||
|
dictType: 'extra_pay_type' |
||||||
|
} |
||||||
|
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) { |
||||||
|
intentionDialog.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(() => { |
||||||
|
handleQuery() |
||||||
|
}) |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped></style> |
@ -0,0 +1,126 @@ |
|||||||
|
<template> |
||||||
|
<div> |
||||||
|
<el-form ref="queryForm" :model="searchForm" label-width="0" inline> |
||||||
|
<el-form-item> |
||||||
|
<el-input |
||||||
|
v-model="searchForm.name" |
||||||
|
placeholder="请输入名称" |
||||||
|
clearable |
||||||
|
@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="sort" label="排序" width="100px" /> |
||||||
|
<el-table-column prop="remark" label="备注" /> |
||||||
|
<el-table-column |
||||||
|
label="创建时间" |
||||||
|
prop="createTime" |
||||||
|
width="180px" |
||||||
|
:formatter="dateFormatter" |
||||||
|
/> |
||||||
|
<el-table-column label="操作"> |
||||||
|
<template #default="scope"> |
||||||
|
<el-button |
||||||
|
type="primary" |
||||||
|
:disabled="!scope.row.editable" |
||||||
|
text |
||||||
|
@click="openForm('update', scope.row.id)" |
||||||
|
> |
||||||
|
修改 |
||||||
|
</el-button> |
||||||
|
<el-button |
||||||
|
type="danger" |
||||||
|
:disabled="!scope.row.editable" |
||||||
|
text |
||||||
|
@click="handleDelete(scope.row.id)" |
||||||
|
> |
||||||
|
删除 |
||||||
|
</el-button> |
||||||
|
</template> |
||||||
|
</el-table-column> |
||||||
|
</el-table> |
||||||
|
<Pagination |
||||||
|
v-model:limit="searchForm.pageSize" |
||||||
|
v-model:page="searchForm.pageNo" |
||||||
|
:total="total" |
||||||
|
@pagination="getList" |
||||||
|
/> |
||||||
|
|
||||||
|
<DialogIntention ref="intentionDialog" @success="handleQuery" /> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script setup name="IntentionStatus"> |
||||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||||
|
import DialogIntention from './DialogIntention.vue' |
||||||
|
import * as dictApi from '@/api/system/dict/dict.data' |
||||||
|
|
||||||
|
const { t } = useI18n() // 国际化 |
||||||
|
const message = useMessage() // 消息弹窗 |
||||||
|
|
||||||
|
const searchForm = ref({ |
||||||
|
label: '', |
||||||
|
pageSize: 20, |
||||||
|
pageNo: 1, |
||||||
|
dictType: 'intention_state' |
||||||
|
}) |
||||||
|
|
||||||
|
const total = ref(0) |
||||||
|
const intentionDialog = ref() |
||||||
|
const tableList = ref([]) |
||||||
|
const loading = ref(false) |
||||||
|
|
||||||
|
function handleQuery() { |
||||||
|
searchForm.value.pageNo = 1 |
||||||
|
getList() |
||||||
|
} |
||||||
|
function resetQuery() { |
||||||
|
searchForm.value = { |
||||||
|
label: '', |
||||||
|
pageSize: 20, |
||||||
|
pageNo: 1, |
||||||
|
dictType: 'intention_state' |
||||||
|
} |
||||||
|
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) { |
||||||
|
intentionDialog.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(() => { |
||||||
|
handleQuery() |
||||||
|
}) |
||||||
|
</script> |
||||||
|
|
||||||
|
<style lang="scss" scoped></style> |
Loading…
Reference in new issue