299 lines
9.1 KiB
Vue
299 lines
9.1 KiB
Vue
<template>
|
|
<ContentWrap>
|
|
<!-- 搜索工作栏 -->
|
|
<el-form
|
|
class="-mb-15px"
|
|
:model="queryParams"
|
|
ref="queryFormRef"
|
|
:inline="true"
|
|
label-width="100px"
|
|
>
|
|
<el-form-item label="产品名称" prop="projectName">
|
|
<el-input
|
|
v-model="queryParams.projectName"
|
|
placeholder="请输入产品名称"
|
|
clearable
|
|
@keyup.enter="handleQuery"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="申请部门" prop="deptId">
|
|
<el-tree-select
|
|
v-model="queryParams.deptId"
|
|
:data="deptTree"
|
|
:props="defaultProps"
|
|
check-strictly
|
|
class="!w-240px"
|
|
node-key="id"
|
|
placeholder="请选择申请部门"
|
|
/>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="申请上线日期" prop="onlineDate">
|
|
<el-date-picker
|
|
v-model="queryParams.onlineDate"
|
|
value-format="YYYY-MM-DD HH:mm:ss"
|
|
type="daterange"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
:default-time="[new Date('1 00:00:00'), new Date('1 23:59:59')]"
|
|
class="!w-240px"
|
|
/>
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
<el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
|
|
<el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
@click="openFormAdd('create')"
|
|
v-hasPermi="['tts:online-application:create']"
|
|
>
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新增
|
|
</el-button>
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
@click="handleExport"
|
|
:loading="exportLoading"
|
|
v-hasPermi="['tts:online-application:export']"
|
|
>
|
|
<Icon icon="ep:download" class="mr-5px" /> 导出
|
|
</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</ContentWrap>
|
|
|
|
<!-- 列表 -->
|
|
<ContentWrap>
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
|
|
<el-table-column label="唯一主键" align="center" prop="id" />
|
|
<el-table-column label="产品名称" align="center" prop="projectName" />
|
|
<!-- <el-table-column label="项目类型" align="center" prop="projectType">
|
|
<template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.TTS_PROJECT_TYPE" :value="scope.row.projectType" />
|
|
</template>
|
|
</el-table-column> -->
|
|
<el-table-column label="申请人" align="center" prop="userId">
|
|
|
|
<template #default="scope">
|
|
{{getName(userOptions, scope.row.userId, 'id', 'nickname')}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="申请部门" align="center" prop="deptId">
|
|
<template #default="scope">
|
|
{{getName(deptTreeList, scope.row.deptId, 'id', 'name')}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="测试完成日期" align="center" prop="testCompletionDate" />
|
|
<el-table-column label="申请上线日期" align="center" prop="onlineDate" />
|
|
<el-table-column label="上线系统是否涉及第三方系统" align="center" prop="externalSystem" >
|
|
<template #default="scope">
|
|
{{scope.row.externalSystem ? '是' : '否'}}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="审批状态" align="center" prop="auditStatus" width="110">
|
|
<template #default="scope">
|
|
<dict-tag :type="DICT_TYPE.CRM_AUDIT_STATUS" :value="scope.row.auditStatus" />
|
|
</template>
|
|
</el-table-column>
|
|
<!-- <el-table-column label="上线注意事项" align="center" prop="precautions" />
|
|
<el-table-column label="失败应急处理" align="center" prop="emergencyManagement" />
|
|
<el-table-column label="申请人签字" align="center" prop="applicantSign" />
|
|
<el-table-column label="工作流编号" align="center" prop="processInstanceId" />
|
|
<el-table-column label="创建者" align="center" prop="creator" /> -->
|
|
<!-- <el-table-column
|
|
label="创建时间"
|
|
align="center"
|
|
prop="createTime"
|
|
:formatter="dateFormatter"
|
|
width="180px"
|
|
/>
|
|
<el-table-column label="更新者" align="center" prop="updater" />
|
|
<el-table-column
|
|
label="更新时间"
|
|
align="center"
|
|
prop="updateTime"
|
|
:formatter="dateFormatter"
|
|
width="180px"
|
|
/> -->
|
|
<el-table-column label="操作" fixed="right" align="center" min-width="120px">
|
|
<template #default="scope">
|
|
<!-- <el-button
|
|
link
|
|
type="primary"
|
|
@click="openFormEdit(scope.row)"
|
|
v-hasPermi="['tts:online-application:update']"
|
|
>
|
|
编辑
|
|
</el-button> -->
|
|
<el-button
|
|
v-if="scope.row.auditStatus !== 0"
|
|
link
|
|
type="primary"
|
|
@click="handleProcessDetail(scope.row)"
|
|
>
|
|
进度
|
|
</el-button>
|
|
<el-button
|
|
link
|
|
type="primary"
|
|
@click="openFormDetail(scope.row)"
|
|
|
|
>
|
|
详情
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!-- 分页 -->
|
|
<Pagination
|
|
:total="total"
|
|
v-model:page="queryParams.pageNo"
|
|
v-model:limit="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
</ContentWrap>
|
|
|
|
<!-- 表单弹窗:添加/修改 -->
|
|
<!-- <OnlineApplicationForm ref="formRef" @success="getList" /> -->
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
|
import { dateFormatter } from '@/utils/formatTime'
|
|
import download from '@/utils/download'
|
|
import { OnlineApplicationApi, OnlineApplicationVO } from '@/api/task/online'
|
|
import * as DeptApi from '@/api/system/dept'
|
|
import { defaultProps, handleTree } from '@/utils/tree'
|
|
import * as UserApi from '@/api/system/user'
|
|
|
|
/** 上线申请 列表 */
|
|
defineOptions({ name: 'OnlineApplication' })
|
|
|
|
const userOptions = ref<UserApi.UserVO[]>([]) // 用户列表
|
|
const message = useMessage() // 消息弹窗
|
|
const { t } = useI18n() // 国际化
|
|
const deptTree = ref() // 部门树形结构
|
|
const deptTreeList = ref() // 部门
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
const list = ref<OnlineApplicationVO[]>([]) // 列表的数据
|
|
const total = ref(0) // 列表的总页数
|
|
const queryParams = reactive({
|
|
pageNo: 1,
|
|
pageSize: 10,
|
|
projectName: undefined,
|
|
projectType: undefined,
|
|
deptId: undefined,
|
|
userId: undefined,
|
|
testCompletionDate: [],
|
|
onlineDate: [],
|
|
externalSystem: undefined,
|
|
precautions: undefined,
|
|
emergencyManagement: undefined,
|
|
applicantSign: undefined,
|
|
processInstanceId: undefined,
|
|
auditStatus: undefined,
|
|
creator: undefined,
|
|
createTime: [],
|
|
updater: undefined,
|
|
updateTime: []
|
|
})
|
|
const queryFormRef = ref() // 搜索的表单
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
|
/** 查询列表 */
|
|
const getList = async () => {
|
|
loading.value = true
|
|
try {
|
|
const data = await OnlineApplicationApi.getOnlineApplicationPage(queryParams)
|
|
list.value = data.list
|
|
total.value = data.total
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
|
|
/** 搜索按钮操作 */
|
|
const handleQuery = () => {
|
|
queryParams.pageNo = 1
|
|
getList()
|
|
}
|
|
|
|
/** 重置按钮操作 */
|
|
const resetQuery = () => {
|
|
queryFormRef.value.resetFields()
|
|
handleQuery()
|
|
}
|
|
|
|
/** 添加/修改操作 */
|
|
const { push } = useRouter()
|
|
const router = useRouter() // 路由
|
|
const formRef = ref()
|
|
const openForm = (type: string, id?: number) => {
|
|
formRef.value.open(type, id)
|
|
}
|
|
|
|
//新增
|
|
const openFormAdd = () => {
|
|
push({ name: 'OnlineAppAdd' })
|
|
}
|
|
|
|
// 编辑
|
|
const openFormEdit = (row: Object) => {
|
|
router.push({ name: 'OnlineAppEdit', query: { id: row.id} })
|
|
}
|
|
const openFormDetail = (row: Object) => {
|
|
router.push({ name: 'OnlineAppDetail', query: { id: row.id} })
|
|
}
|
|
|
|
/** 查看审批 */
|
|
const handleProcessDetail = (row) => {
|
|
router.push({ name: 'BpmProcessInstanceDetail', query: { id: row.processInstanceId } })
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (id: number) => {
|
|
try {
|
|
// 删除的二次确认
|
|
await message.delConfirm()
|
|
// 发起删除
|
|
await OnlineApplicationApi.deleteOnlineApplication(id)
|
|
message.success(t('common.delSuccess'))
|
|
// 刷新列表
|
|
await getList()
|
|
} catch {}
|
|
}
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = async () => {
|
|
try {
|
|
// 导出的二次确认
|
|
await message.exportConfirm()
|
|
// 发起导出
|
|
exportLoading.value = true
|
|
const data = await OnlineApplicationApi.exportOnlineApplication(queryParams)
|
|
download.excel(data, '上线申请.xls')
|
|
} catch {
|
|
} finally {
|
|
exportLoading.value = false
|
|
}
|
|
}
|
|
|
|
const getName = (opt, val, id, name) => {
|
|
const arr = opt.filter(v => v[id] == val)
|
|
return arr.length ? arr[0][name] : ''
|
|
}
|
|
|
|
/** 初始化 **/
|
|
onMounted(async() => {
|
|
deptTreeList.value = await DeptApi.getSimpleDeptList()
|
|
deptTree.value = handleTree(deptTreeList.value)
|
|
// 获得用户列表
|
|
userOptions.value = await UserApi.getSimpleUserList()
|
|
getList()
|
|
|
|
})
|
|
</script> |