From 89380e6260a75d1d3b94de687ebcc2f50d50659d Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 03 Feb 2026 15:44:33 +0800
Subject: [PATCH] feat:环境变量配置调整

---
 applications/task-work-order/src/views/orderView/orderManage/inspectionRequest/index.vue |  290 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 285 insertions(+), 5 deletions(-)

diff --git a/applications/task-work-order/src/views/orderView/orderManage/inspectionRequest/index.vue b/applications/task-work-order/src/views/orderView/orderManage/inspectionRequest/index.vue
index 53f96e2..e50d0aa 100644
--- a/applications/task-work-order/src/views/orderView/orderManage/inspectionRequest/index.vue
+++ b/applications/task-work-order/src/views/orderView/orderManage/inspectionRequest/index.vue
@@ -1,9 +1,289 @@
 <template>
-  <basic-container>
-    基础3管理
-  </basic-container>
+	<basic-container>
+		<el-tabs class="gd-tabs" v-model="activeName" @tab-click="tabsClick">
+			<el-tab-pane :label="`全部(${allTotal})`" name="all"></el-tab-pane>
+			<el-tab-pane :label="`我的巡查任务(${myTotal})`" name="my"></el-tab-pane>
+		</el-tabs>
+		<el-form ref="queryParamsRef" :model="searchParams" class="gd-search-form">
+			<el-form-item label="任务名称" prop="patrolTaskName">
+				<el-input
+					class="gd-input gray"
+					v-model="searchParams.patrolTaskName"
+					placeholder="请输入"
+					clearable
+					@clear="handleSearch"
+				/>
+			</el-form-item>
+
+			<el-form-item label="任务类型" prop="patrolTaskType">
+				<el-select
+					class="gd-select gray"
+					popper-class="gd-select-popper"
+					v-model="searchParams.patrolTaskType"
+					placeholder="请选择"
+					clearable
+					@change="handleSearch"
+				>
+					<el-option
+						v-for="item in dictObj.workOrderType"
+						:key="item.dictKey"
+						:label="item.dictValue"
+						:value="item.dictKey"
+					/>
+				</el-select>
+			</el-form-item>
+
+			<el-form-item label="任务状态" prop="taskStatus">
+				<el-select
+					class="gd-select gray"
+					popper-class="gd-select-popper"
+					v-model="searchParams.taskStatus"
+					placeholder="请选择"
+					clearable
+					@change="handleSearch"
+				>
+					<el-option
+						v-for="item in dictObj.taskStatus"
+						:key="item.dictKey"
+						:label="item.dictValue"
+						:value="item.dictKey"
+					/>
+				</el-select>
+			</el-form-item>
+
+			<el-form-item label="执行时间" prop="executeTime">
+				<el-date-picker
+					class="gd-date-picker gray"
+					popper-class="gd-date-picker-popper"
+					v-model="dateRange"
+					type="daterange"
+					range-separator="-"
+					start-placeholder="开始日期"
+					end-placeholder="结束日期"
+					value-format="YYYY-MM-DD HH:mm:ss"
+					@change="handleSearch"
+				/>
+			</el-form-item>
+
+			<el-form-item class="gd-search-actions">
+				<el-button :icon="RefreshRight" @click="resetForm"></el-button>
+				<el-button class="search-btn" :icon="Search" @click="handleSearch"></el-button>
+			</el-form-item>
+		</el-form>
+
+		<div class="gd-table-toolbar">
+			<el-button v-if="permission.flyOrder_add" :icon="Plus" color="#4C34FF" type="primary" @click="openForm('add')">
+				拆分工单
+			</el-button>
+		</div>
+
+		<div class="gd-table-container" v-loading="loading">
+			<div class="gd-table-content gd-table-content-bg">
+				<el-table class="gd-table" :data="list" @selection-change="handleSelectionChange">
+					<!--					<el-table-column type="selection" width="46" />-->
+					<el-table-column type="index" width="64" label="序号" />
+					<el-table-column prop="patrolTaskName" show-overflow-tooltip label="巡查任务名称" />
+					<el-table-column prop="taskNo" show-overflow-tooltip label="巡查任务编号" />
+					<el-table-column prop="patrolTaskType" show-overflow-tooltip label="巡查任务类型">
+						<template v-slot="{ row }">
+							{{ getDictLabel(row.patrolTaskType, dictObj.workOrderType) }}
+						</template>
+					</el-table-column>
+					<el-table-column prop="taskStatus" show-overflow-tooltip label="巡查任务状态">
+						<template v-slot="{ row }">
+							{{ getDictLabel(row.taskStatus, dictObj.taskStatus) }}
+						</template>
+					</el-table-column>
+					<el-table-column prop="executeTime" show-overflow-tooltip label="任务执行时间" />
+					<el-table-column prop="workOrderName" show-overflow-tooltip label="关联工单" />
+					<el-table-column prop="createTime" show-overflow-tooltip label="巡查任务创建时间" />
+					<el-table-column prop="taskDesc" show-overflow-tooltip label="巡查任务描述" />
+					<el-table-column label="操作" class-name="operation-btns">
+						<template v-slot="{ row }">
+							<el-link type="primary" @click="viewDiaLogView(row)">查看</el-link>
+						</template>
+					</el-table-column>
+				</el-table>
+			</div>
+
+			<div class="gd-pagination-parent">
+				<el-pagination
+					popper-class="gd-select-popper"
+					v-model:current-page="searchParams.current"
+					v-model:page-size="searchParams.size"
+					layout="total, prev, pager, next, sizes"
+					:total="total"
+					@change="getList"
+				/>
+			</div>
+		</div>
+
+		<FormDiaLog ref="dialogRef" @success="getList" v-if="dialogVisible" v-model="dialogVisible" />
+		<ViewDiaLog
+			ref="viewDiaLogRef"
+			@success="getList"
+			@refusalAccept="refusalAccept"
+			v-if="viewDiaLogVisible"
+			v-model="viewDiaLogVisible"
+		/>
+	</basic-container>
 </template>
 <script setup>
+import { Search, RefreshRight, Plus, Delete } from '@element-plus/icons-vue'
+import { onMounted, ref } from 'vue'
+import { ElMessage, ElMessageBox } from 'element-plus'
+import { getDictionaryByCode } from '@/api/system/dictbiz'
+import { dateRangeFormat, getDictLabel } from '@ztzf/utils'
+import FormDiaLog from './FormDiaLog.vue'
+import { gdPatrolTaskPageApi, gdPatrolTaskRemoveApi } from './inspectionRequestApi'
+import ViewDiaLog from '@/views/orderView/orderManage/inspectionRequest/ViewDiaLog.vue'
+import { useStore } from 'vuex'
+import { airlineListApi } from '@/api/zkxt'
+
+const store = useStore()
+const permission = computed(() => store.state.user.permission)
+
+// 初始化查询参数
+const initSearchParams = () => ({
+	patrolTaskName: '', // 任务名称
+	patrolTaskType: '', // 任务类型
+	taskStatus: '', // 任务状态
+	startTime: '', // 开始时间
+	endTime: '', // 结束时间
+	current: 1, // 当前页
+	size: 10, // 每页大小
+})
+const searchParams = ref(initSearchParams()) // 查询参数
+const dateRange = ref([]) // 执行时间范围
+const total = ref(0) // 总条数
+const allTotal = ref(0) // 全部tab总条数
+const myTotal = ref(0) // 我的巡查任务tab总条数
+const loading = ref(true) // 列表加载中
+const list = ref([]) // 列表数据
+const selectedIds = ref([]) // 勾选的ID列表
+const queryParamsRef = ref(null) // 查询表单实例
+const dialogRef = ref(null)
+const viewDiaLogRef = ref(null)
+const dialogVisible = ref(false)
+const viewDiaLogVisible = ref(false)
+const dictObj = ref({
+	workOrderType: [], // 工单类型
+	deviceLoadDemand: [], // 设备负载需求
+	taskStatus: [], // 巡查任务状态
+})
+const activeName = ref('all')
+provide('dictObj', dictObj)
+
+// 获取列表
+async function getList() {
+	const range = dateRangeFormat(dateRange.value)
+	loading.value = true
+	try {
+		const res = await gdPatrolTaskPageApi({
+			...searchParams.value,
+			startTime: range[0],
+			endTime: range[1],
+			createUser: activeName.value === 'my' ? store.state.user.userInfo.user_id : '',
+		})
+		list.value = res?.data?.data?.records ?? []
+		total.value = res?.data?.data?.total ?? 0
+	} finally {
+		loading.value = false
+	}
+}
+
+function tabsClick(tab, event) {
+	activeName.value = tab.props.name
+	resetForm()
+	handleSearch()
+}
+
+// 查询
+function handleSearch() {
+	searchParams.value.current = 1
+	getList()
+}
+
+// 重置查询
+function resetForm() {
+	queryParamsRef.value?.resetFields()
+	dateRange.value = []
+	searchParams.value.current = 1
+	getList()
+}
+
+// 新增/编辑/查看 弹框
+function openForm(mode, row) {
+	dialogVisible.value = true
+	nextTick(() => {
+		dialogRef.value?.open({ mode, row })
+	})
+}
+
+// 状态:0待签收、1拒绝签收、2已撤回、3待审核、4审核驳回
+// 5审核通过、6待验收、7拒绝验收、8验收通过
+function viewDiaLogView(row) {
+	viewDiaLogVisible.value = true
+	nextTick(() => {
+		let mode = ['1', '4'].includes(row.taskStatus) && permission.value.flyOrder_add ? 'edit' : 'view'
+		viewDiaLogRef.value?.open({ mode, row })
+	})
+}
+
+// 勾选值设置
+function handleSelectionChange(rows) {
+	selectedIds.value = rows.map(item => item.id)
+}
+
+const routeOptions = ref([])
+const getAirName = id => {
+	const item = routeOptions.value.find(item => item.id === id)
+	return item ? item.name : id
+}
+provide('routeOptions', routeOptions)
+provide('getAirName', getAirName)
+function getAirList() {
+	airlineListApi({}).then(res => {
+		routeOptions.value = res.data.data || []
+	})
+}
+
+// 获取字典
+function getDictList() {
+	getDictionaryByCode('workOrderType,deviceLoadDemand,taskStatus').then(res => {
+		dictObj.value = res.data.data
+	})
+}
+
+function refusalAccept(row) {
+	dialogVisible.value = true
+	nextTick(() => {
+		dialogRef.value?.open({ mode: 'edit', row })
+	})
+}
+
+// 获取两个tab的总条数
+async function getTabTotals() {
+	const allRes = await gdPatrolTaskPageApi({
+		current: 1,
+		size: 1,
+		createUser: '',
+	})
+	allTotal.value = allRes?.data?.data?.total ?? 0
+
+	const myRes = await gdPatrolTaskPageApi({
+		current: 1,
+		size: 1,
+		createUser: store.state.user.userInfo.user_id,
+	})
+	myTotal.value = myRes?.data?.data?.total ?? 0
+}
+
+onMounted(() => {
+	getTabTotals()
+	getList()
+	getDictList()
+	getAirList()
+})
 </script>
-<style scoped lang="scss">
-</style>
+<style scoped lang="scss"></style>

--
Gitblit v1.9.3