CheckJob.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. <template>
  2. <a-card :bordered="false">
  3. <div v-show="visible">
  4. <div class="table-page-search-wrapper">
  5. <a-form layout="inline">
  6. <a-row :gutter="48">
  7. <a-col :md="6" :sm="24">
  8. <a-form-item label="编码/名称">
  9. <a-input v-model="queryParam.keyword" placeholder="编码/名称"/>
  10. </a-form-item>
  11. </a-col>
  12. <a-col :md="6" :sm="24">
  13. <a-form-item label="设备旧号">
  14. <a-input v-model="queryParam.zbh" placeholder="请输入设备旧号"/>
  15. </a-form-item>
  16. </a-col>
  17. <a-col :md="6" :sm="24">
  18. <a-form-item label="设备等级">
  19. <a-select mode="multiple" v-model="queryParam.sbLevelList" placeholder="请选择">
  20. <a-select-option
  21. v-for="(label,value) in levelMap"
  22. :key="value"
  23. :label="label"
  24. :value="parseInt(value)">{{ label }}
  25. </a-select-option>
  26. </a-select>
  27. </a-form-item>
  28. </a-col>
  29. <a-col :md="6" :sm="24">
  30. <a-form-item label="设备类型">
  31. <a-tree-select
  32. style="width: 100%"
  33. :dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
  34. :treeData="treeData"
  35. :treeNodeFilterProp="'title'"
  36. :showSearch="true"
  37. v-model="queryParam.typeId"
  38. placeholder="请选择"
  39. >
  40. </a-tree-select>
  41. </a-form-item>
  42. </a-col>
  43. <a-col :md="6" :sm="24">
  44. <a-form-item label="维护等级">
  45. <a-select mode="multiple" v-model="queryParam.standardLevelList" placeholder="请选择">
  46. <a-select-option
  47. v-for="(label,value) in standardLevelMap"
  48. :key="value"
  49. :label="label"
  50. :value="parseInt(value)">{{ label }}
  51. </a-select-option>
  52. </a-select>
  53. </a-form-item>
  54. </a-col>
  55. <a-col :md="6" :sm="24">
  56. <a-form-item label="周期类型">
  57. <a-select mode="multiple" v-model="queryParam.periodTypeList" placeholder="请选择">
  58. <a-select-option
  59. v-for="(label,value) in periodTypeMap"
  60. :key="value"
  61. :label="label"
  62. :value="parseInt(value)">{{ label }}
  63. </a-select-option>
  64. </a-select>
  65. </a-form-item>
  66. </a-col>
  67. <a-col :md="6" :sm="24">
  68. <a-form-item label="执行人姓名">
  69. <a-input v-model="queryParam.checkUserName" placeholder="请输入执行人姓名"/>
  70. </a-form-item>
  71. </a-col>
  72. <a-col :md="6" :sm="24">
  73. <a-form-item label="任务状态">
  74. <a-select
  75. v-model="queryParam.status"
  76. placeholder="请选择">
  77. <a-select-option
  78. v-for="(label,value) in statusMap"
  79. :key="value"
  80. :label="label"
  81. :value="parseInt(value)">{{ label }}
  82. </a-select-option>
  83. </a-select>
  84. </a-form-item>
  85. </a-col>
  86. <a-col :md="6" :sm="24">
  87. <a-form-item label="起始日期">
  88. <a-date-picker
  89. v-model="queryParam.searchStartTime"
  90. style="width: 100%"
  91. :format="BaseTool.Date.PICKER_NORM_DATE_PATTERN"
  92. />
  93. </a-form-item>
  94. </a-col>
  95. <a-col :md="6" :sm="24">
  96. <a-form-item label="结束日期">
  97. <a-date-picker
  98. v-model="queryParam.searchEndTime"
  99. style="width: 100%"
  100. :format="BaseTool.Date.PICKER_NORM_DATE_PATTERN"
  101. />
  102. </a-form-item>
  103. </a-col>
  104. <a-col :md="24" :sm="24">
  105. <span class="table-page-search-submitButtons">
  106. <a-button type="primary" @click="handleOk">查询</a-button>
  107. <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
  108. </span>
  109. </a-col>
  110. </a-row>
  111. </a-form>
  112. </div>
  113. <div class="table-operator">
  114. <a-button v-if="$auth('check-polling-jobs-add')" type="primary" icon="plus" @click="$refs.baseModal.base()">新增</a-button>
  115. <a-button style="margin-left: 8px" v-if="($auth('check-spot-jobs-export') || $auth('check-polling-jobs-export'))" type="primary" icon="download" @click="doExport">导出</a-button>
  116. <a-button style="margin-left:8px;" type="primary" @click="doImportForUpdate">
  117. <a-icon type="upload"/>
  118. 修改导入
  119. </a-button>
  120. <a-button style="margin-left: 8px" type="success" @click="handleSeven">本周</a-button>
  121. <a-button style="margin-left: 8px" type="success" @click="handleMonth">本月</a-button>
  122. <a-button style="margin-left: 8px" type="success" @click="handleTuiCalendar">日历图</a-button>
  123. <a-button style="margin-left: 8px" type="primary" @click="handleExecuteBatch" v-if="selectedRowKeys.length > 0">
  124. <a-icon style="margin-left: 8px" type="plus"/>
  125. 批量接收
  126. </a-button>
  127. <a-button style="margin-left: 8px" type="primary" v-if="selectedRowKeys.length > 0" @click="handleFinishBatch">
  128. <a-icon type="plus"/>
  129. 批量完成
  130. </a-button>
  131. <a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && ($auth('check-spot-jobs-edit') || $auth('check-polling-jobs-edit'))">
  132. <a-menu slot="overlay">
  133. <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
  134. <a-menu-item key="1"><a-icon type="delete" /><a>删除</a></a-menu-item>
  135. </a-popconfirm>
  136. </a-menu>
  137. <a-button style="margin-left: 8px">
  138. 批量操作 <a-icon type="down" />
  139. </a-button>
  140. </a-dropdown>
  141. </div>
  142. <s-table
  143. ref="table"
  144. size="default"
  145. rowKey="id"
  146. :columns="columns"
  147. :scroll="{x: 1, y: BaseTool.Constant.scrollY }"
  148. :data="loadData"
  149. :alert="options.alert"
  150. :rowSelection="options.rowSelection"
  151. showPagination="auto"
  152. >
  153. <span slot="action" slot-scope="record">
  154. <template>
  155. <a @click="handleView(record)">查看</a>
  156. <template v-if="record.status == DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE">
  157. <a-divider type="vertical" />
  158. <a @click="handleExecute(record)">接收</a>
  159. </template>
  160. <template v-if="record.status === DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING">
  161. <a-divider type="vertical" />
  162. <a @click="handleFinish(record)">完成</a>
  163. </template>
  164. <template v-if="record.status == DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE || record.status === DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING">
  165. <a-divider type="vertical" />
  166. <a @click="handleEdit(record)">修改</a>
  167. </template>
  168. <!-- <a-divider type="vertical" />-->
  169. <!-- <a-popconfirm v-if="$auth('check-jobs-del')" title="是否要删除该条数据?" @confirm="batchDelete(record.id)">-->
  170. <!-- <a>删除</a>-->
  171. <!-- </a-popconfirm>-->
  172. </template>
  173. </span>
  174. <span slot="status" slot-scope="text">
  175. <badge
  176. :status="DictCache.COLOR.JOB_STATUS[text]"
  177. :text="statusMap[text]" />
  178. </span>
  179. <span slot="stopFlag" slot-scope="text">
  180. <badge
  181. :status="DictCache.COLOR.YES_NO[text]"
  182. :text="sbStatusMap[text]" />
  183. </span>
  184. </s-table>
  185. </div>
  186. <base-form :check-type="checkType" ref="baseModal" @ok="handleOk"/>
  187. <detail :check-type="checkType" ref="detailModal" @ok="handleOk"/>
  188. <import-form-update ref="importModalUpdate" @ok="handleOk"/>
  189. </a-card>
  190. </template>
  191. <script>
  192. import { STable, Ellipsis } from '@/components'
  193. import BaseForm from './modules/BaseForm'
  194. import Detail from './modules/Detail'
  195. import { getCheckJobPage, deleteCheckJobs, fetchCheckJob, exportCheckJob, executeJob, executeJobBatch, finishJobBatch, queryTuiCalendarIgnores } from '@/api/check/checkjob'
  196. import { fetchSbTypeTree } from '@/api/sb/type'
  197. import DictCache from '@/utils/dict'
  198. import ImportFormUpdate from './modules/ImportFormUpdate'
  199. export default {
  200. name: 'CheckJobList',
  201. components: {
  202. STable,
  203. Ellipsis,
  204. BaseForm,
  205. ImportFormUpdate,
  206. Detail
  207. },
  208. props: {
  209. /**
  210. * 检查类型: 1-负责 2-巡检
  211. */
  212. checkType: {
  213. type: Number,
  214. default: 1
  215. },
  216. filter: {
  217. type: Number,
  218. default: -1
  219. },
  220. status: {
  221. type: Number,
  222. default: null
  223. },
  224. receiveOvertime: {
  225. type: Boolean,
  226. default: null
  227. },
  228. statusList: {
  229. type: Array,
  230. default: () => {
  231. return [DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE, DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING]
  232. }
  233. }
  234. },
  235. data () {
  236. this.names = ['负责', '巡检']
  237. return {
  238. visible: true,
  239. // 查询参数
  240. queryParam: {
  241. type: this.checkType,
  242. searchStartTime: null,
  243. searchEndTime: null,
  244. filter: this.filter,
  245. status: this.status,
  246. receiveOvertime: this.receiveOvertime,
  247. statusList: this.statusList
  248. },
  249. treeData: [],
  250. // 表头
  251. columns: [
  252. {
  253. title: '序号',
  254. dataIndex: 'index',
  255. customRender: (text, record, index) => {
  256. return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
  257. },
  258. checked: true,
  259. width: '100px'
  260. },
  261. {
  262. title: '标准编码',
  263. dataIndex: 'standardNo',
  264. checked: true,
  265. width: '150px'
  266. },
  267. {
  268. title: '设备新号',
  269. dataIndex: 'sbNo',
  270. checked: true,
  271. width: '150px'
  272. },
  273. {
  274. title: '设备名称',
  275. dataIndex: 'sbName',
  276. checked: true,
  277. width: '200px'
  278. },
  279. {
  280. title: '设备部位',
  281. dataIndex: 'partName',
  282. checked: true,
  283. width: '150px'
  284. },
  285. {
  286. title: '维护等级',
  287. dataIndex: 'standardLevel',
  288. width: '100px',
  289. checked: true,
  290. customRender: (text, record, index) => {
  291. return this.BaseTool.Table.getMapText(this.standardLevelMap, text)
  292. }
  293. },
  294. {
  295. title: '任务要求',
  296. dataIndex: 'requirement',
  297. checked: true,
  298. width: '200px'
  299. },
  300. {
  301. title: '计划周期',
  302. dataIndex: 'period',
  303. checked: true,
  304. width: '150px',
  305. customRender: (text, record, index) => {
  306. return text + this.BaseTool.Table.getMapText(this.periodTypeMap, record.periodType)
  307. }
  308. },
  309. /* {
  310. title: '计划名称',
  311. dataIndex: 'planName',
  312. checked: true
  313. }, */
  314. {
  315. title: '负责人',
  316. dataIndex: 'checkUserName',
  317. checked: true,
  318. width: '150px'
  319. },
  320. // {
  321. // title: '负责部件',
  322. // dataIndex: 'partName',
  323. // checked: true
  324. // },
  325. /* {
  326. title: '截至日期',
  327. dataIndex: 'endTime',
  328. checked: true,
  329. width: '200px'
  330. }, */
  331. {
  332. title: '标准工时',
  333. dataIndex: 'standardHours',
  334. checked: true,
  335. width: '200px'
  336. },
  337. {
  338. title: '实际工时',
  339. dataIndex: 'realHours',
  340. checked: true,
  341. width: '200px'
  342. },
  343. {
  344. title: '实际结束时间',
  345. dataIndex: 'actualEndTime',
  346. checked: true,
  347. width: '200px'
  348. },
  349. {
  350. title: '计划执行日期',
  351. dataIndex: 'startTime',
  352. checked: true,
  353. fixed: 'right',
  354. width: '200px',
  355. sorter: (a, b) => new Date(a.startTime) - new Date(b.startTime)
  356. },
  357. {
  358. title: '实际执行日期',
  359. dataIndex: 'actualStartTime',
  360. checked: true,
  361. fixed: 'right',
  362. width: '200px',
  363. customRender: (text, record, index) => {
  364. return (text == null ? '暂无' : this.BaseTool.Date.formatter(text, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN))
  365. },
  366. sorter: (a, b) => new Date(a.actualStartTime) - new Date(b.actualStartTime)
  367. },
  368. {
  369. title: '是否延期',
  370. dataIndex: 'receiveOvertime',
  371. checked: true,
  372. fixed: 'right',
  373. width: '100px',
  374. customRender: (text, record, index) => {
  375. return ((text === null || text === 0 || !text) ? '否' : '是')
  376. }
  377. },
  378. {
  379. title: '任务状态',
  380. dataIndex: 'status',
  381. width: '100px',
  382. fixed: 'right',
  383. checked: true,
  384. scopedSlots: { customRender: 'status' }
  385. },
  386. {
  387. title: '操作',
  388. key: 'action',
  389. width: '150px',
  390. fixed: 'right',
  391. align: 'center',
  392. scopedSlots: { customRender: 'action' },
  393. checked: true
  394. }
  395. ],
  396. // 下拉框map
  397. levelMap: {},
  398. standardLevelMap: {},
  399. statusMap: {},
  400. sbStatusMap: {},
  401. periodTypeMap: {},
  402. // 加载数据方法 必须为 Promise 对象
  403. loadData: parameter => {
  404. parameter = {
  405. ...parameter,
  406. ...this.queryParam,
  407. record: this.status === 3 ? 1 : null,
  408. dataScope: this.status === 3 ? {
  409. sortBy: 'desc',
  410. sortName: 'actual_start_time'
  411. } : {}
  412. }
  413. return getCheckJobPage(Object.assign(parameter, this.queryParam))
  414. .then(res => {
  415. return res.data
  416. })
  417. },
  418. selectedRowKeys: [],
  419. selectedRows: [],
  420. options: {
  421. alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
  422. rowSelection: {
  423. selectedRowKeys: this.selectedRowKeys,
  424. onChange: this.onSelectChange
  425. }
  426. },
  427. optionAlertShow: false
  428. }
  429. },
  430. created () {
  431. // 下拉框map
  432. this.statusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_JOB_STATUS)
  433. this.sbStatusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.YES_NO)
  434. this.periodTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_PLAN_PERIOD_TYPE)
  435. this.levelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_LEVEL)
  436. this.standardLevelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_PLAN_LEVEL)
  437. fetchSbTypeTree().then(res => {
  438. this.treeData = res.data
  439. })
  440. this.tableOption()
  441. },
  442. methods: {
  443. tableOption () {
  444. if (!this.optionAlertShow) {
  445. this.options = {
  446. alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
  447. rowSelection: {
  448. selectedRowKeys: this.selectedRowKeys,
  449. onChange: this.onSelectChange,
  450. getCheckboxProps: record => ({
  451. props: {
  452. disabled: false,
  453. name: record.id
  454. }
  455. })
  456. }
  457. }
  458. this.optionAlertShow = true
  459. } else {
  460. this.options = {
  461. alert: false,
  462. rowSelection: null
  463. }
  464. this.optionAlertShow = false
  465. }
  466. },
  467. batchDelete (id) {
  468. let ids = []
  469. if (this.BaseTool.String.isBlank(id)) {
  470. const length = this.selectedRows.length
  471. if (length === 0) {
  472. this.$message.info('请选择要删除的记录')
  473. return
  474. }
  475. ids = this.selectedRows.map(item => item.id)
  476. } else {
  477. ids = [id]
  478. }
  479. deleteCheckJobs(ids).then(res => {
  480. this.$message.info('删除成功')
  481. this.handleOk()
  482. this.$refs.table.clearSelected()
  483. })
  484. },
  485. handleEdit (record) {
  486. fetchCheckJob({ id: record.id }).then(res => {
  487. const modal = this.$refs.baseModal
  488. modal.base(res.data)
  489. })
  490. },
  491. handleFinish (record) {
  492. fetchCheckJob({ id: record.id }).then(res => {
  493. const modal = this.$refs.baseModal
  494. modal.base(res.data)
  495. })
  496. },
  497. handleExecute (record) {
  498. executeJob({ id: record.id }).then(res => {
  499. this.handleOk()
  500. })
  501. },
  502. handleView (record) {
  503. fetchCheckJob({ id: record.id }).then(res => {
  504. const modal = this.$refs.detailModal
  505. modal.base(res.data)
  506. })
  507. },
  508. handleOk () {
  509. this.visible = true
  510. console.log(11)
  511. console.log(this.queryParam.searchEndTime)
  512. this.queryParam.searchStartTime = this.queryParam.searchStartTime ? this.BaseTool.Date.formatter(this.queryParam.searchStartTime, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN) + ' 00:00:01' : null
  513. this.queryParam.searchEndTime = this.queryParam.searchEndTime ? this.BaseTool.Date.formatter(this.queryParam.searchEndTime, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN) + ' 23:59:59' : null
  514. this.$refs.table.refresh()
  515. },
  516. onSelectChange (selectedRowKeys, selectedRows) {
  517. this.selectedRowKeys = selectedRowKeys
  518. this.selectedRows = selectedRows
  519. },
  520. resetSearchForm () {
  521. this.queryParam = {
  522. type: this.checkType,
  523. searchStartTime: null,
  524. searchEndTime: null,
  525. filter: this.filter,
  526. status: this.status,
  527. statusList: this.statusList
  528. }
  529. this.$refs.table.refresh(true)
  530. },
  531. handleSeven () {
  532. var now = new Date()
  533. var nowTime = now.getTime()
  534. var day = now.getDay()
  535. var oneDayTime = 24 * 60 * 60 * 1000
  536. // 显示周一
  537. var MondayTime = nowTime - (day - 1) * oneDayTime
  538. // 显示周日
  539. var SundayTime = nowTime + (7 - day) * oneDayTime
  540. // 初始化日期时间
  541. var monday = new Date(MondayTime)
  542. var sunday = new Date(SundayTime)
  543. this.queryParam.searchStartTime = this.BaseTool.Date.formatter(monday, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
  544. this.queryParam.searchEndTime = this.BaseTool.Date.formatter(sunday, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
  545. this.$refs.table.refresh()
  546. },
  547. handleMonth () {
  548. var now = new Date() // 当前日期
  549. var nowMonth = now.getMonth() // 当前月
  550. var nowYear = now.getFullYear() // 当前年
  551. // 本月的开始时间
  552. var monthStartDate = new Date(nowYear, nowMonth, 1)
  553. // 本月的结束时间
  554. var monthEndDate = new Date(nowYear, nowMonth + 1, 0)
  555. this.queryParam.searchStartTime = this.BaseTool.Date.formatter(monthStartDate, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
  556. this.queryParam.searchEndTime = this.BaseTool.Date.formatter(monthEndDate, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
  557. this.$refs.table.refresh()
  558. },
  559. getBeforeDate (num, time) {
  560. const n = num
  561. let d = ''
  562. if (time) {
  563. d = new Date(time)
  564. } else {
  565. d = new Date()
  566. }
  567. let year = d.getFullYear()
  568. let mon = d.getMonth() + 1
  569. let day = d.getDate()
  570. if (day <= n) {
  571. if (mon > 1) {
  572. mon = mon - 1
  573. } else {
  574. year = year - 1
  575. mon = 12
  576. }
  577. }
  578. d.setDate(d.getDate() - n)
  579. year = d.getFullYear()
  580. mon = d.getMonth() + 1
  581. day = d.getDate()
  582. const s = year + '-' + (mon < 10 ? ('0' + mon) : mon) + '-' + (day < 10 ? ('0' + day) : day)
  583. return s
  584. },
  585. handleExecuteBatch () {
  586. let ids = []
  587. const length = this.selectedRowKeys.length
  588. if (length === 0) {
  589. this.$message.info('请选择记录')
  590. return
  591. }
  592. console.log(this.selectedRowKeys)
  593. ids = this.selectedRowKeys
  594. executeJobBatch(ids).then(res => {
  595. this.$message.info('接收成功')
  596. this.handleOk()
  597. })
  598. },
  599. handleFinishBatch () {
  600. let ids = []
  601. const length = this.selectedRowKeys.length
  602. if (length === 0) {
  603. this.$message.info('请选择记录')
  604. return
  605. }
  606. ids = this.selectedRowKeys
  607. finishJobBatch(ids).then(res => {
  608. this.$message.info('完成成功')
  609. this.handleOk()
  610. })
  611. },
  612. handleTuiCalendar () {
  613. const that = this
  614. queryTuiCalendarIgnores({ type: 2 }).then(res => {
  615. const a = document.createElement('a')
  616. a.target = '_blank'
  617. a.href = '/tui-calendar/checkJobCalendar.html?'
  618. localStorage.setItem('calendarList', JSON.stringify(res.data.calendarList))
  619. var scheduleList = res.data.scheduleList
  620. scheduleList.forEach((item) => {
  621. item.start = that.BaseTool.Moment(item.start, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN)
  622. item.end = that.BaseTool.Moment(item.end, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN)
  623. })
  624. localStorage.setItem('scheduleList', JSON.stringify(scheduleList))
  625. a.click()
  626. })
  627. },
  628. doExport () {
  629. const parameter = {
  630. ...this.queryParam,
  631. searchStartTime: this.queryParam.searchStartTime,
  632. searchEndTime: this.queryParam.searchEndTime
  633. }
  634. exportCheckJob(parameter).then(file => {
  635. this.BaseTool.UPLOAD.downLoadExportExcel(file)
  636. })
  637. },
  638. doImportForUpdate () {
  639. this.$refs.importModalUpdate.base(null, null)
  640. }
  641. }
  642. }
  643. </script>