index.vue 12 KB

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