|
@@ -20,6 +20,8 @@
|
|
@click="getdownload">导出</a-button>
|
|
@click="getdownload">导出</a-button>
|
|
<a-button type="primary" preIcon="ant-design:sync-outlined" style="margin-right: 15px;"
|
|
<a-button type="primary" preIcon="ant-design:sync-outlined" style="margin-right: 15px;"
|
|
@click="handlerTask">任务管理</a-button>
|
|
@click="handlerTask">任务管理</a-button>
|
|
|
|
+ <a-button type="primary" preIcon="ant-design:appstore-outlined" style="margin-right: 15px;"
|
|
|
|
+ @click="handlerTeam">区队管理</a-button>
|
|
<a-dropdown>
|
|
<a-dropdown>
|
|
<template #overlay>
|
|
<template #overlay>
|
|
<a-menu @click="handlerFilter">
|
|
<a-menu @click="handlerFilter">
|
|
@@ -62,14 +64,14 @@
|
|
v-if="column.dataIndex == 'afterNoon' || column.dataIndex == 'morning' || column.dataIndex == 'evening'">
|
|
v-if="column.dataIndex == 'afterNoon' || column.dataIndex == 'morning' || column.dataIndex == 'evening'">
|
|
<div v-if="text == '1'">
|
|
<div v-if="text == '1'">
|
|
<div class="table-text text-y ">是</div>
|
|
<div class="table-text text-y ">是</div>
|
|
- <div class="text-y">是</div>
|
|
|
|
|
|
+ <!-- <div class="text-y">否</div> -->
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
<div v-else>
|
|
- <div class="table-text text-n">否</div>
|
|
|
|
- <div class="text-n">否</div>
|
|
|
|
|
|
+ <div class="table-text text-y">是</div>
|
|
|
|
+ <!-- <div class="text-n">是</div> -->
|
|
|
|
+ <div class="table-text text-y">是</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
-
|
|
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-table>
|
|
<!-- 任务管理弹窗 -->
|
|
<!-- 任务管理弹窗 -->
|
|
@@ -95,6 +97,11 @@
|
|
<uploadOrdown :modalType="modalType" @handlerComfirm="handlerComfirm" @handlerCancel="handlerCancel">
|
|
<uploadOrdown :modalType="modalType" @handlerComfirm="handlerComfirm" @handlerCancel="handlerCancel">
|
|
</uploadOrdown>
|
|
</uploadOrdown>
|
|
</a-modal>
|
|
</a-modal>
|
|
|
|
+ <!-- 区队管理弹窗 -->
|
|
|
|
+ <a-modal v-model:visible="visibleTeam" width="850px" :footer="null" :title="titleTeam" centered
|
|
|
|
+ destroyOnClose>
|
|
|
|
+ <inspectTeam></inspectTeam>
|
|
|
|
+ </a-modal>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -106,9 +113,10 @@ import inspectTask from './components/inspectTask.vue'
|
|
import inspectEdit from './components/inspectEdit.vue'
|
|
import inspectEdit from './components/inspectEdit.vue'
|
|
import inspectDel from './components/inspectDel.vue'
|
|
import inspectDel from './components/inspectDel.vue'
|
|
import uploadOrdown from './components/uploadOrdown.vue'
|
|
import uploadOrdown from './components/uploadOrdown.vue'
|
|
|
|
+import inspectTeam from './components/inspectTeam.vue'
|
|
import { message } from 'ant-design-vue';
|
|
import { message } from 'ant-design-vue';
|
|
import { columns, pagination } from './gasInspect.data'
|
|
import { columns, pagination } from './gasInspect.data'
|
|
-import { list, importByExcel, exportGasByExcel, moveOrderNum, edit, deleteCard, taskSubmit, clearCardInfo } from './gasInspect.api'
|
|
|
|
|
|
+import { list, importByExcel, exportGasByExcel, moveOrderNum, edit, deleteCard, taskSubmit, clearCardInfo, teamList } from './gasInspect.api'
|
|
|
|
|
|
|
|
|
|
let searchId = ref('')
|
|
let searchId = ref('')
|
|
@@ -117,6 +125,8 @@ let visibleTask = ref(false)//控制任务管理弹窗的显示与隐藏
|
|
let titleTask = ref('')
|
|
let titleTask = ref('')
|
|
let visibleEdit = ref(false)//控制编辑弹窗的显示与隐藏
|
|
let visibleEdit = ref(false)//控制编辑弹窗的显示与隐藏
|
|
let titleEdit = ref('')//编辑弹窗标题
|
|
let titleEdit = ref('')//编辑弹窗标题
|
|
|
|
+let visibleTeam=ref(false)//控制区队管理弹窗的显示与隐藏
|
|
|
|
+let titleTeam=ref('')//区队管理弹窗标题
|
|
let inspectEditData = reactive({})//编辑弹窗数据
|
|
let inspectEditData = reactive({})//编辑弹窗数据
|
|
let visibleDel = ref(false)//控制删除弹窗的显示与隐藏
|
|
let visibleDel = ref(false)//控制删除弹窗的显示与隐藏
|
|
let titleDel = ref('')//删除弹窗标题
|
|
let titleDel = ref('')//删除弹窗标题
|
|
@@ -192,6 +202,11 @@ let handleCancelDelCard = () => {
|
|
inspectDelData.value = ''
|
|
inspectDelData.value = ''
|
|
visibleDel.value = false
|
|
visibleDel.value = false
|
|
}
|
|
}
|
|
|
|
+//打开区队管理弹窗
|
|
|
|
+let handlerTeam=()=>{
|
|
|
|
+ visibleTeam.value=true
|
|
|
|
+ titleTeam.value='区队管理'
|
|
|
|
+}
|
|
|
|
|
|
//通过id(巡检卡id)查询
|
|
//通过id(巡检卡id)查询
|
|
async function queryByIdList() {
|
|
async function queryByIdList() {
|