2024-05-16 16:33:20 +08:00
|
|
|
<template>
|
|
|
|
|
<div>
|
2024-06-07 17:01:46 +08:00
|
|
|
<el-form ref="queryForm" :model="searchForm" label-width="0" inline @submit.prevent>
|
2024-05-16 16:33:20 +08:00
|
|
|
<el-form-item>
|
|
|
|
|
<el-input
|
2024-06-07 17:01:46 +08:00
|
|
|
v-model="searchForm.sourceName"
|
2024-05-16 16:33:20 +08:00
|
|
|
placeholder="请输入名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
2024-08-20 18:10:36 +08:00
|
|
|
<el-form-item>
|
|
|
|
|
<el-radio-group v-model="searchForm.status" @change="handleQuery">
|
|
|
|
|
<el-radio :label="0"> 开启 </el-radio>
|
|
|
|
|
<el-radio :label="1"> 关闭 </el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
2024-05-16 16:33:20 +08:00
|
|
|
<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"
|
|
|
|
|
row-key="sourceId"
|
|
|
|
|
:tree-props="{ children: 'children' }"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column prop="sourceName" label="来源名称" />
|
2024-06-07 17:01:46 +08:00
|
|
|
<el-table-column prop="sort" label="排序" width="100px" />
|
2024-05-16 16:33:20 +08:00
|
|
|
<el-table-column prop="remark" label="备注" />
|
2024-06-07 17:01:46 +08:00
|
|
|
<el-table-column
|
|
|
|
|
label="创建时间"
|
|
|
|
|
prop="createTime"
|
|
|
|
|
width="180px"
|
|
|
|
|
:formatter="dateFormatter"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="状态">
|
|
|
|
|
<template #default="{ row }">
|
|
|
|
|
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="row.status" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2024-05-16 16:33:20 +08:00
|
|
|
<el-table-column label="操作">
|
2024-06-07 17:01:46 +08:00
|
|
|
<template #default="{ row }">
|
|
|
|
|
<el-button type="primary" text @click="openForm('update', row)">修改</el-button>
|
|
|
|
|
<el-button type="primary" text @click="openForm('createChildren', row)"> 新增 </el-button>
|
|
|
|
|
<el-button type="danger" text @click="handleDelete(row.sourceId)">删除</el-button>
|
2024-05-16 16:33:20 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<DialogSource ref="sourceDialog" @success="handleQuery" />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="ClueSource">
|
2024-06-07 17:01:46 +08:00
|
|
|
import { handleTree } from '@/utils/tree'
|
|
|
|
|
import * as SourceApi from '@/api/clue/source'
|
|
|
|
|
import { dateFormatter } from '@/utils/formatTime'
|
2024-05-16 16:33:20 +08:00
|
|
|
import DialogSource from './DialogSource.vue'
|
2024-06-07 17:01:46 +08:00
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
const { t } = useI18n() // 国际化
|
2024-05-16 16:33:20 +08:00
|
|
|
|
|
|
|
|
const searchForm = ref({
|
2024-08-20 18:10:36 +08:00
|
|
|
sourceName: undefined,
|
|
|
|
|
status: 0
|
2024-05-16 16:33:20 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const sourceDialog = ref()
|
|
|
|
|
const tableList = ref([])
|
|
|
|
|
const loading = ref(false)
|
|
|
|
|
|
|
|
|
|
function handleQuery() {
|
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
function resetQuery() {
|
|
|
|
|
searchForm.value = {
|
2024-08-20 18:10:36 +08:00
|
|
|
sourceName: '',
|
|
|
|
|
status: 0
|
2024-05-16 16:33:20 +08:00
|
|
|
}
|
|
|
|
|
getList()
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-07 17:01:46 +08:00
|
|
|
async function getList() {
|
|
|
|
|
loading.value = true
|
|
|
|
|
try {
|
|
|
|
|
const data = await SourceApi.getSourcePage(searchForm.value)
|
|
|
|
|
tableList.value = handleTree(data, 'sourceId')
|
|
|
|
|
} finally {
|
|
|
|
|
loading.value = false
|
|
|
|
|
}
|
2024-05-16 16:33:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function openForm(type, info) {
|
|
|
|
|
sourceDialog.value.open(type, info)
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-07 17:01:46 +08:00
|
|
|
async function handleDelete(id) {
|
2024-05-16 16:33:20 +08:00
|
|
|
try {
|
|
|
|
|
// 删除的二次确认
|
|
|
|
|
await message.delConfirm()
|
|
|
|
|
// 发起删除
|
2024-06-07 17:01:46 +08:00
|
|
|
await SourceApi.deleteSource(id)
|
2024-05-16 16:33:20 +08:00
|
|
|
message.success(t('common.delSuccess'))
|
|
|
|
|
// 刷新列表
|
|
|
|
|
await getList()
|
|
|
|
|
} catch {}
|
|
|
|
|
}
|
2024-06-07 17:01:46 +08:00
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
getList()
|
|
|
|
|
})
|
2024-05-16 16:33:20 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|