|
@@ -16,34 +16,34 @@
|
|
|
</a-popconfirm>
|
|
|
</template>
|
|
|
</BasicTable>
|
|
|
- <BasicModal title="任务表单" @register="registerModal1" @ok="handleSubmit">
|
|
|
+ <BasicModal :destroy-on-close="true" title="任务表单" @register="registerModal1" @ok="handleSubmit">
|
|
|
<BasicForm @register="registerForm" />
|
|
|
</BasicModal>
|
|
|
- <BasicModal title="任务详情列表" :show-cancel-btn="false" :width="1200" @register="registerModal2">
|
|
|
+ <BasicModal :destroy-on-close="true" title="任务详情列表" :show-ok-btn="false" :width="1200" @register="registerModal2">
|
|
|
+ <a-space class="search-area mb-10px">
|
|
|
+ <div class="item-text">巡检地址:</div>
|
|
|
+ <a-input style="width: 240px" v-model:value="searchParams2.deviceName" placeholder="请输入巡检地址" />
|
|
|
+ <a-button type="primary" preIcon="ant-design:search-outlined" class="ml-10px" @click="tableContext2.reload()">查询</a-button>
|
|
|
+ </a-space>
|
|
|
<BasicTable @register="registerTable2">
|
|
|
<!-- <template #action="{ record }"> </template> -->
|
|
|
<template #bodyCell="{ column, text }">
|
|
|
- <template v-if="column.dataIndex == 'isSensor'">
|
|
|
- <div v-if="text == '1'">
|
|
|
- <div class="table-text text-y">是</div>
|
|
|
- </div>
|
|
|
- <div v-else>
|
|
|
- <div class="table-text text-n">否</div>
|
|
|
- </div>
|
|
|
- </template>
|
|
|
<template v-if="column.dataIndex == 'checkState'">
|
|
|
- <div v-if="text == '1'">
|
|
|
- <div class="table-text text-y">已检</div>
|
|
|
+ <div v-if="text == true">
|
|
|
+ <div class="table-text color-green">已检</div>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- <div class="table-text text-n">未检</div>
|
|
|
+ <div class="table-text color-red">未检</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</template>
|
|
|
</BasicTable>
|
|
|
</BasicModal>
|
|
|
- <BasicModal :width="1200" :show-cancel-btn="false" @register="registerModal3">
|
|
|
+ <BasicModal :destroy-on-close="true" :width="1200" :show-ok-btn="false" @register="registerModal3">
|
|
|
<a-space class="search-area mb-10px">
|
|
|
+ <div class="item-text">巡检地址:</div>
|
|
|
+ <a-input style="width: 240px" v-model:value="searchParams3.deviceName" placeholder="请输入巡检地址" />
|
|
|
+ <a-button type="primary" preIcon="ant-design:search-outlined" class="ml-10px" @click="reload()">查询</a-button>
|
|
|
<a-popconfirm title="确认操作" ok-text="确定" cancel-text="取消" @confirm="handlePatch('add')">
|
|
|
<a-button type="primary" preIcon="ant-design:plus-outlined">添加</a-button>
|
|
|
</a-popconfirm>
|
|
@@ -54,20 +54,20 @@
|
|
|
<BasicTable :rowSelection="rowSelection" @register="registerTable3">
|
|
|
<!-- <template #action="{ record }"> </template> -->
|
|
|
<template #bodyCell="{ column, text }">
|
|
|
- <template v-if="column.dataIndex == 'isSensor'">
|
|
|
- <div v-if="text == '1'">
|
|
|
- <div class="table-text text-y">是</div>
|
|
|
+ <template v-if="column.dataIndex == 'isSelect'">
|
|
|
+ <div v-if="text == true">
|
|
|
+ <div class="table-text color-green">是</div>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- <div class="table-text text-n">否</div>
|
|
|
+ <div class="table-text">否</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
- <template v-if="column.dataIndex == 'checkState'">
|
|
|
- <div v-if="text == '1'">
|
|
|
- <div class="table-text text-y">已检</div>
|
|
|
+ <template v-if="column.dataIndex == 'isOtherSelect'">
|
|
|
+ <div v-if="text == true">
|
|
|
+ <div class="table-text color-green">是</div>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- <div class="table-text text-n">未检</div>
|
|
|
+ <div class="table-text">否</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</template>
|
|
@@ -80,7 +80,7 @@
|
|
|
<script setup lang="ts">
|
|
|
import { ref, onMounted, nextTick } from 'vue';
|
|
|
import customHeader from '/@/components/vent/customHeader.vue';
|
|
|
- import { taskColumns, pagination, taskschemas, taskDetailsColumns } from './gasInspect.data';
|
|
|
+ import { taskColumns, pagination, taskschemas, taskDetailsColumns, taskManageColumns } from './gasInspect.data';
|
|
|
import { deleteTeam, getManageTasklist, operateGasCheckTaskDetail, taskDetailsList, teamAdd, teamEdit, teamList } from './gasInspect.api';
|
|
|
import { BasicTable } from '/@/components/Table';
|
|
|
import { useListPage } from '/@/hooks/system/useListPage';
|
|
@@ -107,9 +107,10 @@
|
|
|
pagination: true,
|
|
|
});
|
|
|
// 任务详情列表
|
|
|
+ const searchParams2 = ref<any>({ deviceName: '' });
|
|
|
const { tableContext: tx2 } = useListPage({
|
|
|
tableProps: {
|
|
|
- api: taskDetailsList,
|
|
|
+ api: () => taskDetailsList({ taskId: selectedRow.value.id, ...searchParams2.value }),
|
|
|
columns: taskDetailsColumns,
|
|
|
pagination,
|
|
|
showActionColumn: false,
|
|
@@ -119,9 +120,10 @@
|
|
|
pagination: true,
|
|
|
});
|
|
|
// 任务管理列表
|
|
|
+ const searchParams3 = ref<any>({ deviceName: '' });
|
|
|
const { tableContext: tx3 } = useListPage({
|
|
|
tableProps: {
|
|
|
- api: () => getManageTasklist({ taskId: selectedRow.value.id }).then((r) => r.map((e, i) => ({ id: i, ...e }))),
|
|
|
+ api: () => getManageTasklist({ taskId: selectedRow.value.id, ...searchParams3.value }).then((r) => r.map((e, i) => ({ id: i, ...e }))),
|
|
|
rowSelection: {
|
|
|
type: 'checkbox',
|
|
|
getCheckboxProps: (record) => {
|
|
@@ -130,7 +132,7 @@
|
|
|
};
|
|
|
},
|
|
|
},
|
|
|
- columns: taskDetailsColumns,
|
|
|
+ columns: taskManageColumns,
|
|
|
pagination,
|
|
|
showActionColumn: false,
|
|
|
showTableSetting: false,
|
|
@@ -139,7 +141,7 @@
|
|
|
pagination: true,
|
|
|
});
|
|
|
const [registerTable1, tableContext1] = tx1;
|
|
|
- const [registerTable2] = tx2;
|
|
|
+ const [registerTable2, tableContext2] = tx2;
|
|
|
const [registerTable3, { reload }, { rowSelection, selectedRows }] = tx3;
|
|
|
const [registerModal1, modalContext1] = useModal();
|
|
|
const [registerModal2, modalContext2] = useModal();
|