index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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 :key="keyActive" :columns="columns" size="small" :data-source="tableData" :scroll="{ y: 650 }" 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 keyActive=ref(0)
  120. let searchId = ref('')
  121. let tableData = ref<any[]>([])//巡检列表
  122. let visibleTask = ref(false)//控制任务管理弹窗的显示与隐藏
  123. let titleTask = ref('')
  124. let visibleEdit = ref(false)//控制编辑弹窗的显示与隐藏
  125. let titleEdit = ref('')//编辑弹窗标题
  126. let visibleTeam=ref(false)//控制区队管理弹窗的显示与隐藏
  127. let titleTeam=ref('')//区队管理弹窗标题
  128. let inspectEditData = reactive({})//编辑弹窗数据
  129. let visibleDel = ref(false)//控制删除弹窗的显示与隐藏
  130. let titleDel = ref('')//删除弹窗标题
  131. let inspectDelData = ref('')
  132. let visibleUploadorDown = ref(false)//控制导入/导出弹窗的显示与隐藏
  133. let titleUploadorDown = ref('')
  134. let modalType = ref('')//判断当前是导入/导出弹窗
  135. //打开任务管理弹窗
  136. let handlerTask = () => {
  137. visibleTask.value = true
  138. titleTask.value = '瓦斯巡检任务管理'
  139. }
  140. //任务管理下发
  141. async function handleTaskSubmit(param) {
  142. let res = await taskSubmit({ ...param })
  143. console.log(res, '任务管理下发')
  144. if (res) {
  145. visibleTask.value = false
  146. queryByIdList()
  147. }
  148. }
  149. //任务管理弹窗关闭
  150. let handleTaskCancel = () => {
  151. visibleTask.value = false
  152. }
  153. //打开编辑弹窗
  154. let handlerEdit = (record) => {
  155. visibleEdit.value = true
  156. titleEdit.value = '瓦斯巡检点编辑'
  157. inspectEditData = Object.assign({}, record)
  158. }
  159. //编辑提交
  160. async function confirmEdit(param) {
  161. let res = await edit({ ...param })
  162. if (res) {
  163. visibleEdit.value = false
  164. queryByIdList()
  165. }
  166. }
  167. //编辑取消
  168. let cancelEdit = () => {
  169. visibleEdit.value = false
  170. }
  171. //代开删除弹窗
  172. let handlerDel = (record) => {
  173. visibleDel.value = true
  174. titleDel.value = '瓦斯巡检点删除'
  175. inspectDelData.value = record.id
  176. }
  177. //删除巡检卡
  178. async function handleDelCard() {
  179. let res = await deleteCard({ id: inspectDelData.value })
  180. if (res) {
  181. visibleDel.value = false
  182. inspectDelData.value = ''
  183. queryByIdList()
  184. }
  185. }
  186. //删除巡检卡信息
  187. async function handleDelCardInfo() {
  188. let res = await clearCardInfo({ id: inspectDelData.value })
  189. console.log(res, '瓦斯巡检卡信息删除')
  190. if (res) {
  191. visibleDel.value = false
  192. inspectDelData.value = ''
  193. queryByIdList()
  194. }
  195. }
  196. //取消删除巡检卡或者巡检卡信息
  197. let handleCancelDelCard = () => {
  198. inspectDelData.value = ''
  199. visibleDel.value = false
  200. }
  201. //打开区队管理弹窗
  202. let handlerTeam=()=>{
  203. visibleTeam.value=true
  204. titleTeam.value='区队管理'
  205. }
  206. //通过id(巡检卡id)查询
  207. async function queryByIdList() {
  208. let res = await list({ id: searchId.value, pageNo: pagination.current, pageSize: pagination.pageSize })
  209. console.log(res, '列表查询---')
  210. keyActive.value=new Date().getTime()
  211. tableData.value = res.records.map((el: any) => {
  212. return {
  213. morning: el.insType,
  214. afterNoon: el.insType,
  215. evening: el.insType,
  216. ...el
  217. }
  218. })
  219. pagination.total =res.total
  220. }
  221. //查询
  222. let getSearchCardId = () => {
  223. pagination.current=1
  224. queryByIdList()
  225. }
  226. //重置
  227. let getReset = () => {
  228. searchId.value = ''
  229. pagination.current=1
  230. queryByIdList()
  231. }
  232. //分页切换
  233. let pageChange=(val)=> {
  234. pagination.current = val.current;
  235. pagination.pageSize = val.pageSize;
  236. queryByIdList()
  237. }
  238. //导入
  239. let getupload = () => {
  240. modalType.value = 'upload'
  241. visibleUploadorDown.value = true
  242. titleUploadorDown.value = '导入'
  243. }
  244. //确定导入
  245. async function handlerComfirm(param) {
  246. if (modalType.value == 'upload') {
  247. let res = await importByExcel(param)
  248. if (res.code == 200) {
  249. visibleUploadorDown.value = false
  250. message.success('导入成功')
  251. queryByIdList()
  252. }
  253. } else {
  254. let res = await exportGasByExcel({ insType: param.insType })
  255. console.log(res, '导出数据')
  256. if (res) {
  257. let filename = `${new Date().getTime()}.xlsx`;
  258. downFilePublic(res, filename);
  259. visibleUploadorDown.value = false
  260. message.success('导出成功')
  261. }
  262. }
  263. }
  264. //导出
  265. let getdownload = () => {
  266. modalType.value = 'download'
  267. visibleUploadorDown.value = true
  268. titleUploadorDown.value = '导出'
  269. }
  270. //导入/导出取消
  271. let handlerCancel = () => {
  272. visibleUploadorDown.value = false
  273. }
  274. // 下载公用方法
  275. function downFilePublic(content, fileName) {
  276. const blob = new Blob([content], { type: 'application/xlsx;charset=UTF-8' }); // 构造一个blob对象来处理数据
  277. // 对于<a>标签,只有 Firefox 和 Chrome(内核) 支持 download 属性
  278. // IE10以上支持blob但是依然不支持download
  279. if ('download' in document.createElement('a')) {
  280. // 支持a标签download的浏览器
  281. const link = document.createElement('a'); // 创建a标签
  282. link.download = fileName; // a标签添加属性
  283. link.style.display = 'none';
  284. link.href = URL.createObjectURL(blob);
  285. document.body.appendChild(link);
  286. link.click(); // 执行下载
  287. URL.revokeObjectURL(link.href); // 释放url
  288. document.body.removeChild(link); // 释放标签
  289. } else {
  290. // 其他浏览器
  291. navigator.msSaveBlob(blob, fileName);
  292. }
  293. }
  294. //列表上移
  295. async function moveUp(param) {
  296. let res = await moveOrderNum({ id: param.id, moveType: 'upp' })
  297. console.log(res, '向上移动')
  298. if (res) {
  299. queryByIdList()
  300. }
  301. }
  302. //列表下移
  303. async function moveDown(param) {
  304. let res = await moveOrderNum({ id: param.id, moveType: 'bel' })
  305. console.log(res, '向下移动')
  306. if (res) {
  307. queryByIdList()
  308. }
  309. }
  310. //巡检次数筛选
  311. let handlerFilter = (param) => {
  312. let data = param.key
  313. switch (data) {
  314. case '1':
  315. pagination.current = 1
  316. tableData.value = tableData.value.filter(v => v.insType == '1')
  317. break;
  318. case '2':
  319. pagination.current = 2
  320. tableData.value = tableData.value.filter(v => v.insType == '2')
  321. break;
  322. }
  323. }
  324. onMounted(() => {
  325. queryByIdList()
  326. })
  327. </script>
  328. <style lang="less" scoped>
  329. .gasReport {
  330. width: 100%;
  331. height: 100%;
  332. padding: 80px 10px 15px 10px;
  333. box-sizing: border-box;
  334. position: relative;
  335. .search-area {
  336. margin: 20px 0px;
  337. .area-item {
  338. display: flex;
  339. align-items: center;
  340. .item-text {
  341. color: #fff;
  342. }
  343. }
  344. }
  345. .table-text {
  346. margin-bottom: 5px;
  347. }
  348. .text-y {
  349. color: #0be716;
  350. }
  351. .text-n {
  352. color: #ff0000;
  353. }
  354. .zxm-picker,
  355. .zxm-input {
  356. border: 1px solid #3ad8ff77 !important;
  357. background-color: #ffffff00 !important;
  358. color: #fff !important;
  359. }
  360. }
  361. :deep(.zxm-table-thead > tr > th:last-child) {
  362. border-right: 1px solid #91e9fe !important;
  363. }
  364. :deep(.zxm-picker-input > input) {
  365. color: #fff;
  366. }
  367. :deep(.zxm-select:not(.zxm-select-customize-input) .zxm-select-selector) {
  368. border: 1px solid #3ad8ff77 !important;
  369. background-color: #ffffff00 !important;
  370. }
  371. :deep(.zxm-select-selection-item) {
  372. color: #fff !important;
  373. }
  374. </style>