index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <template>
  2. <div class="gasReport">
  3. <customHeader>瓦斯巡检地点管理</customHeader>
  4. <div class="report-container">
  5. <div class="search-area">
  6. <a-row>
  7. <a-col :span="4">
  8. <div class="area-item">
  9. <div class="item-text">巡检卡ID:</div>
  10. <a-input style="width: 240px" v-model:value="searchId" placeholder="请输入巡检卡ID" />
  11. </div>
  12. </a-col>
  13. <a-col :span="20">
  14. <a-button type="primary" preIcon="ant-design:search-outlined" style="margin-left: 10px;"
  15. @click="getSearchCardId">查询</a-button>
  16. <a-button preIcon="ant-design:sync-outlined" style="margin: 0px 15px"
  17. @click="getReset">重置</a-button>
  18. <a-button type="primary" preIcon="ant-design:import-outlined" @click="getupload">导入</a-button>
  19. <a-button type="primary" preIcon="ant-design:download-outlined" style="margin: 0px 15px"
  20. @click="getdownload">导出</a-button>
  21. <a-button type="primary" preIcon="ant-design:sync-outlined" style="margin-right: 15px;"
  22. @click="handlerTask">任务管理</a-button>
  23. <a-button type="primary" preIcon="ant-design:appstore-outlined" style="margin-right: 15px;"
  24. @click="handlerTeam">区队管理</a-button>
  25. <a-dropdown>
  26. <template #overlay>
  27. <a-menu @click="handlerFilter">
  28. <a-menu-item key="1">
  29. <UserOutlined />
  30. 一次
  31. </a-menu-item>
  32. <a-menu-divider />
  33. <a-menu-item key="2">
  34. <UserOutlined />
  35. 两次
  36. </a-menu-item>
  37. </a-menu>
  38. </template>
  39. <a-button type="primary">
  40. 巡检次数筛选
  41. <DownOutlined />
  42. </a-button>
  43. </a-dropdown>
  44. </a-col>
  45. </a-row>
  46. </div>
  47. <a-table :columns="columns" size="small" :data-source="tableData" :scroll="{ y: 500 }" class="tableW"
  48. :pagination="pagination" @change="pageChange">
  49. <template #action="{ record }">
  50. <a class="table-action-link" @click="handlerEdit(record)">编辑</a>
  51. <a class="table-action-link" @click="handlerDel(record)">删除</a>
  52. <a class="table-action-link" @click="moveUp(record)">上移</a>
  53. <a class="table-action-link" @click="moveDown(record)">下移</a>
  54. </template>
  55. <template #bodyCell="{ column, text }">
  56. <template v-if="column.dataIndex == 'insType'">
  57. <div v-if="text == '2'">
  58. <div class="table-text">第一次</div>
  59. <div>第二次</div>
  60. </div>
  61. <div v-else>第一次</div>
  62. </template>
  63. <template
  64. v-if="column.dataIndex == 'afterNoon' || column.dataIndex == 'morning' || column.dataIndex == 'evening'">
  65. <div v-if="text == '1'">
  66. <div class="table-text text-y ">是</div>
  67. <!-- <div class="text-y">否</div> -->
  68. </div>
  69. <div v-else>
  70. <div class="table-text text-y">是</div>
  71. <!-- <div class="text-n">是</div> -->
  72. <div class="table-text text-y">是</div>
  73. </div>
  74. </template>
  75. </template>
  76. </a-table>
  77. <!-- 任务管理弹窗 -->
  78. <a-modal v-model:visible="visibleTask" width="850px" :footer="null" :title="titleTask" centered
  79. destroyOnClose>
  80. <inspectTask @handleTaskSubmit="handleTaskSubmit" @handleTaskCancel="handleTaskCancel"></inspectTask>
  81. </a-modal>
  82. <!-- 编辑弹窗 -->
  83. <a-modal v-model:visible="visibleEdit" width="650px" :footer="null" :title="titleEdit" centered
  84. destroyOnClose>
  85. <inspectEdit :inspectEditData="inspectEditData" @confirmEdit="confirmEdit" @cancelEdit="cancelEdit">
  86. </inspectEdit>
  87. </a-modal>
  88. <!-- 删除弹窗 -->
  89. <a-modal v-model:visible="visibleDel" width="450px" :footer="null" :title="titleDel" centered
  90. destroyOnClose>
  91. <inspectDel @handleDelCard="handleDelCard" @handleDelCardInfo="handleDelCardInfo"
  92. @handleCancelDelCard="handleCancelDelCard"></inspectDel>
  93. </a-modal>
  94. <!-- 导入弹窗 -->
  95. <a-modal v-model:visible="visibleUploadorDown" width="450px" :footer="null" :title="titleUploadorDown"
  96. centered destroyOnClose>
  97. <uploadOrdown :modalType="modalType" @handlerComfirm="handlerComfirm" @handlerCancel="handlerCancel">
  98. </uploadOrdown>
  99. </a-modal>
  100. <!-- 区队管理弹窗 -->
  101. <a-modal v-model:visible="visibleTeam" width="850px" :footer="null" :title="titleTeam" centered
  102. destroyOnClose>
  103. <inspectTeam></inspectTeam>
  104. </a-modal>
  105. </div>
  106. </div>
  107. </template>
  108. <script setup lang="ts">
  109. import { ref, onMounted, computed, reactive } from 'vue';
  110. import customHeader from '/@/components/vent/customHeader.vue';
  111. import inspectTask from './components/inspectTask.vue'
  112. import inspectEdit from './components/inspectEdit.vue'
  113. import inspectDel from './components/inspectDel.vue'
  114. import uploadOrdown from './components/uploadOrdown.vue'
  115. import inspectTeam from './components/inspectTeam.vue'
  116. import { message } from 'ant-design-vue';
  117. import { columns, pagination } from './gasInspect.data'
  118. import { list, importByExcel, exportGasByExcel, moveOrderNum, edit, deleteCard, taskSubmit, clearCardInfo, teamList } from './gasInspect.api'
  119. let searchId = ref('')
  120. let tableData = ref<any[]>([])//巡检列表
  121. let visibleTask = ref(false)//控制任务管理弹窗的显示与隐藏
  122. let titleTask = ref('')
  123. let visibleEdit = ref(false)//控制编辑弹窗的显示与隐藏
  124. let titleEdit = ref('')//编辑弹窗标题
  125. let visibleTeam=ref(false)//控制区队管理弹窗的显示与隐藏
  126. let titleTeam=ref('')//区队管理弹窗标题
  127. let inspectEditData = reactive({})//编辑弹窗数据
  128. let visibleDel = ref(false)//控制删除弹窗的显示与隐藏
  129. let titleDel = ref('')//删除弹窗标题
  130. let inspectDelData = ref('')
  131. let visibleUploadorDown = ref(false)//控制导入/导出弹窗的显示与隐藏
  132. let titleUploadorDown = ref('')
  133. let modalType = ref('')//判断当前是导入/导出弹窗
  134. //打开任务管理弹窗
  135. let handlerTask = () => {
  136. visibleTask.value = true
  137. titleTask.value = '瓦斯巡检任务管理'
  138. }
  139. //任务管理下发
  140. async function handleTaskSubmit(param) {
  141. let res = await taskSubmit({ ...param })
  142. console.log(res, '任务管理下发')
  143. if (res) {
  144. visibleTask.value = false
  145. queryByIdList()
  146. }
  147. }
  148. //任务管理弹窗关闭
  149. let handleTaskCancel = () => {
  150. visibleTask.value = false
  151. }
  152. //打开编辑弹窗
  153. let handlerEdit = (record) => {
  154. visibleEdit.value = true
  155. titleEdit.value = '瓦斯巡检点编辑'
  156. inspectEditData = Object.assign({}, record)
  157. }
  158. //编辑提交
  159. async function confirmEdit(param) {
  160. let res = await edit({ ...param })
  161. if (res) {
  162. visibleEdit.value = false
  163. queryByIdList()
  164. }
  165. }
  166. //编辑取消
  167. let cancelEdit = () => {
  168. visibleEdit.value = false
  169. }
  170. //代开删除弹窗
  171. let handlerDel = (record) => {
  172. visibleDel.value = true
  173. titleDel.value = '瓦斯巡检点删除'
  174. inspectDelData.value = record.id
  175. }
  176. //删除巡检卡
  177. async function handleDelCard() {
  178. let res = await deleteCard({ id: inspectDelData.value })
  179. if (res) {
  180. visibleDel.value = false
  181. inspectDelData.value = ''
  182. queryByIdList()
  183. }
  184. }
  185. //删除巡检卡信息
  186. async function handleDelCardInfo() {
  187. let res = await clearCardInfo({ id: inspectDelData.value })
  188. console.log(res, '瓦斯巡检卡信息删除')
  189. if (res) {
  190. visibleDel.value = false
  191. inspectDelData.value = ''
  192. queryByIdList()
  193. }
  194. }
  195. //取消删除巡检卡或者巡检卡信息
  196. let handleCancelDelCard = () => {
  197. inspectDelData.value = ''
  198. visibleDel.value = false
  199. }
  200. //打开区队管理弹窗
  201. let handlerTeam=()=>{
  202. visibleTeam.value=true
  203. titleTeam.value='区队管理'
  204. }
  205. //通过id(巡检卡id)查询
  206. async function queryByIdList() {
  207. let res = await list({ id: searchId.value, pageNo: pagination.current, pageSize: pagination.pageSize })
  208. console.log(res, '列表查询---')
  209. tableData.value = res.map((el: any) => {
  210. return {
  211. morning: el.insType,
  212. afterNoon: el.insType,
  213. evening: el.insType,
  214. ...el
  215. }
  216. })
  217. pagination.total = res.total
  218. }
  219. //查询
  220. let getSearchCardId = () => {
  221. queryByIdList()
  222. }
  223. //重置
  224. let getReset = () => {
  225. searchId.value = ''
  226. queryByIdList()
  227. }
  228. //分页切换
  229. let pageChange=(val)=> {
  230. pagination.current = val.current;
  231. pagination.pageSize = val.pageSize;
  232. queryByIdList()
  233. }
  234. //导入
  235. let getupload = () => {
  236. modalType.value = 'upload'
  237. visibleUploadorDown.value = true
  238. titleUploadorDown.value = '导入'
  239. }
  240. //确定导入
  241. async function handlerComfirm(param) {
  242. if (modalType.value == 'upload') {
  243. let res = await importByExcel(param)
  244. if (res.code == 200) {
  245. visibleUploadorDown.value = false
  246. message.success('导入成功')
  247. queryByIdList()
  248. }
  249. } else {
  250. let res = await exportGasByExcel({ insType: param.insType })
  251. console.log(res, '导出数据')
  252. if (res) {
  253. let filename = `${new Date().getTime()}.xlsx`;
  254. downFilePublic(res, filename);
  255. visibleUploadorDown.value = false
  256. message.success('导出成功')
  257. }
  258. }
  259. }
  260. //导出
  261. let getdownload = () => {
  262. modalType.value = 'download'
  263. visibleUploadorDown.value = true
  264. titleUploadorDown.value = '导出'
  265. }
  266. //导入/导出取消
  267. let handlerCancel = () => {
  268. visibleUploadorDown.value = false
  269. }
  270. // 下载公用方法
  271. function downFilePublic(content, fileName) {
  272. const blob = new Blob([content], { type: 'application/xlsx;charset=UTF-8' }); // 构造一个blob对象来处理数据
  273. // 对于<a>标签,只有 Firefox 和 Chrome(内核) 支持 download 属性
  274. // IE10以上支持blob但是依然不支持download
  275. if ('download' in document.createElement('a')) {
  276. // 支持a标签download的浏览器
  277. const link = document.createElement('a'); // 创建a标签
  278. link.download = fileName; // a标签添加属性
  279. link.style.display = 'none';
  280. link.href = URL.createObjectURL(blob);
  281. document.body.appendChild(link);
  282. link.click(); // 执行下载
  283. URL.revokeObjectURL(link.href); // 释放url
  284. document.body.removeChild(link); // 释放标签
  285. } else {
  286. // 其他浏览器
  287. navigator.msSaveBlob(blob, fileName);
  288. }
  289. }
  290. //列表上移
  291. async function moveUp(param) {
  292. let res = await moveOrderNum({ id: param.id, moveType: 'upp' })
  293. console.log(res, '向上移动')
  294. if (res) {
  295. queryByIdList()
  296. }
  297. }
  298. //列表下移
  299. async function moveDown(param) {
  300. let res = await moveOrderNum({ id: param.id, moveType: 'bel' })
  301. console.log(res, '向下移动')
  302. if (res) {
  303. queryByIdList()
  304. }
  305. }
  306. //巡检次数筛选
  307. let handlerFilter = (param) => {
  308. let data = param.key
  309. switch (data) {
  310. case '1':
  311. pagination.current = 1
  312. tableData.value = tableData.value.filter(v => v.insType == '1')
  313. break;
  314. case '2':
  315. pagination.current = 2
  316. tableData.value = tableData.value.filter(v => v.insType == '2')
  317. break;
  318. }
  319. }
  320. onMounted(() => {
  321. queryByIdList()
  322. })
  323. </script>
  324. <style lang="less" scoped>
  325. .gasReport {
  326. width: 100%;
  327. height: 100%;
  328. padding: 80px 10px 15px 10px;
  329. box-sizing: border-box;
  330. position: relative;
  331. .search-area {
  332. margin: 20px 0px;
  333. .area-item {
  334. display: flex;
  335. align-items: center;
  336. .item-text {
  337. color: #fff;
  338. }
  339. }
  340. }
  341. .table-text {
  342. margin-bottom: 5px;
  343. }
  344. .text-y {
  345. color: #0be716;
  346. }
  347. .text-n {
  348. color: #ff0000;
  349. }
  350. .zxm-picker,
  351. .zxm-input {
  352. border: 1px solid #3ad8ff77 !important;
  353. background-color: #ffffff00 !important;
  354. color: #fff !important;
  355. }
  356. }
  357. :deep(.zxm-table-thead > tr > th:last-child) {
  358. border-right: 1px solid #91e9fe !important;
  359. }
  360. :deep(.zxm-picker-input > input) {
  361. color: #fff;
  362. }
  363. :deep(.zxm-select:not(.zxm-select-customize-input) .zxm-select-selector) {
  364. border: 1px solid #3ad8ff77 !important;
  365. background-color: #ffffff00 !important;
  366. }
  367. :deep(.zxm-select-selection-item) {
  368. color: #fff !important;
  369. }
  370. </style>