123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- <template>
- <a-card :bordered="false">
- <div v-show="visible">
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="48">
- <a-col :md="6" :sm="24">
- <a-form-item label="编码/名称">
- <a-input v-model="queryParam.keyword" placeholder="编码/名称"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="设备旧号">
- <a-input v-model="queryParam.zbh" placeholder="请输入设备旧号"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="设备等级">
- <a-select v-model="queryParam.sblevel" placeholder="请选择">
- <a-select-option
- v-for="(label,value) in levelMap"
- :key="value"
- :label="label"
- :value="parseInt(value)">{{ label }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="设备类型">
- <a-tree-select
- style="width: 100%"
- :dropdownStyle="{ maxHeight: '400px', overflow: 'auto' }"
- :treeData="treeData"
- :treeNodeFilterProp="'title'"
- :showSearch="true"
- v-model="queryParam.typeId"
- placeholder="请选择"
- >
- </a-tree-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="维护等级">
- <a-select v-model="queryParam.standardLevel" placeholder="请选择">
- <a-select-option
- v-for="(label,value) in standardLevelMap"
- :key="value"
- :label="label"
- :value="parseInt(value)">{{ label }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="周期类型">
- <a-select v-model="queryParam.periodType" placeholder="请选择">
- <a-select-option
- v-for="(label,value) in periodTypeMap"
- :key="value"
- :label="label"
- :value="parseInt(value)">{{ label }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="执行人姓名">
- <a-input v-model="queryParam.checkUserName" placeholder="请输入执行人姓名"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="任务状态">
- <a-select
- v-model="queryParam.status"
- placeholder="请选择">
- <a-select-option
- v-for="(label,value) in statusMap"
- :key="value"
- :label="label"
- :value="parseInt(value)">{{ label }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="起始日期">
- <a-date-picker
- v-model="queryParam.searchStartTime"
- style="width: 100%"
- :format="BaseTool.Date.PICKER_NORM_DATETIME_PATTERN"
- />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="结束日期">
- <a-date-picker
- v-model="queryParam.searchEndTime"
- style="width: 100%"
- :format="BaseTool.Date.PICKER_NORM_DATETIME_PATTERN"
- />
- </a-form-item>
- </a-col>
- <a-col :md="24" :sm="24">
- <span class="table-page-search-submitButtons">
- <a-button type="primary" @click="handleOk">查询</a-button>
- <a-button style="margin-left: 8px" @click="resetSearchForm">重置</a-button>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <div class="table-operator">
- <a-button v-if="$auth('check-polling-jobs-add')" type="primary" icon="plus" @click="$refs.baseModal.base()">新增</a-button>
- <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>
- <a-button style="margin-left: 8px" type="success" @click="handleSeven">本周</a-button>
- <a-button style="margin-left: 8px" type="success" @click="handleMonth">本月</a-button>
- <a-button style="margin-left: 8px" type="success" @click="handleTuiCalendar">日历图</a-button>
- <a-button style="margin-left: 8px" type="primary" @click="handleExecuteBatch" v-if="selectedRowKeys.length > 0">
- <a-icon style="margin-left: 8px" type="plus"/>
- 批量接收
- </a-button>
- <a-button style="margin-left: 8px" type="primary" v-if="selectedRowKeys.length > 0" @click="handleFinishBatch">
- <a-icon type="plus"/>
- 批量完成
- </a-button>
- <a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && ($auth('check-spot-jobs-edit') || $auth('check-polling-jobs-edit'))">
- <a-menu slot="overlay">
- <a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
- <a-menu-item key="1"><a-icon type="delete" /><a>删除</a></a-menu-item>
- </a-popconfirm>
- </a-menu>
- <a-button style="margin-left: 8px">
- 批量操作 <a-icon type="down" />
- </a-button>
- </a-dropdown>
- </div>
- <s-table
- ref="table"
- size="default"
- rowKey="id"
- :columns="columns"
- :scroll="{x: 1, y: BaseTool.Constant.scrollY }"
- :data="loadData"
- :alert="options.alert"
- :rowSelection="options.rowSelection"
- showPagination="auto"
- >
- <span slot="action" slot-scope="record">
- <template>
- <a @click="handleView(record)">查看</a>
- <template v-if="record.status == DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE">
- <a-divider type="vertical" />
- <a @click="handleExecute(record)">接收</a>
- </template>
- <template v-if="record.status === DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING">
- <a-divider type="vertical" />
- <a @click="handleFinish(record)">完成</a>
- </template>
- <template v-if="record.status == DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE || record.status === DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING">
- <a-divider type="vertical" />
- <a @click="handleEdit(record)">修改</a>
- </template>
- <!-- <a-divider type="vertical" />-->
- <!-- <a-popconfirm v-if="$auth('check-jobs-del')" title="是否要删除该条数据?" @confirm="batchDelete(record.id)">-->
- <!-- <a>删除</a>-->
- <!-- </a-popconfirm>-->
- </template>
- </span>
- <span slot="status" slot-scope="text">
- <badge
- :status="DictCache.COLOR.JOB_STATUS[text]"
- :text="statusMap[text]" />
- </span>
- <span slot="stopFlag" slot-scope="text">
- <badge
- :status="DictCache.COLOR.YES_NO[text]"
- :text="sbStatusMap[text]" />
- </span>
- </s-table>
- </div>
- <base-form :check-type="checkType" ref="baseModal" @ok="handleOk"/>
- <detail :check-type="checkType" ref="detailModal" @ok="handleOk"/>
- </a-card>
- </template>
- <script>
- import { STable, Ellipsis } from '@/components'
- import BaseForm from './modules/BaseForm'
- import Detail from './modules/Detail'
- import { getCheckJobPage, deleteCheckJobs, fetchCheckJob, exportCheckJob, executeJob, executeJobBatch, finishJobBatch, queryTuiCalendarIgnores } from '@/api/check/checkjob'
- import { fetchSbTypeTree } from '@/api/sb/type'
- import DictCache from '@/utils/dict'
- export default {
- name: 'CheckJobList',
- components: {
- STable,
- Ellipsis,
- BaseForm,
- Detail
- },
- props: {
- /**
- * 检查类型: 1-负责 2-巡检
- */
- checkType: {
- type: Number,
- default: 1
- },
- filter: {
- type: Number,
- default: -1
- },
- status: {
- type: Number,
- default: null
- },
- receiveOvertime: {
- type: Boolean,
- default: null
- },
- statusList: {
- type: Array,
- default: () => {
- return [DictCache.VALUE.CHECK_JOB_STATUS.NOT_EXECUTE, DictCache.VALUE.CHECK_JOB_STATUS.EXECUTING]
- }
- }
- },
- data () {
- this.names = ['负责', '巡检']
- return {
- visible: true,
- // 查询参数
- queryParam: {
- type: this.checkType,
- searchStartTime: null,
- searchEndTime: null,
- filter: this.filter,
- status: this.status,
- receiveOvertime: this.receiveOvertime,
- statusList: this.statusList
- },
- treeData: [],
- // 表头
- columns: [
- {
- title: '序号',
- dataIndex: 'index',
- customRender: (text, record, index) => {
- return `${(this.$refs.table.localPagination.current - 1) * this.$refs.table.localPagination.pageSize + index + 1}`
- },
- checked: true,
- width: '100px'
- },
- {
- title: '标准编码',
- dataIndex: 'standardNo',
- checked: true,
- width: '150px'
- },
- {
- title: '设备新号',
- dataIndex: 'sbNo',
- checked: true,
- width: '150px'
- },
- {
- title: '设备名称',
- dataIndex: 'sbName',
- checked: true,
- width: '200px'
- },
- {
- title: '设备部位',
- dataIndex: 'partName',
- checked: true,
- width: '150px'
- },
- {
- title: '维护等级',
- dataIndex: 'standardLevel',
- width: '100px',
- checked: true,
- customRender: (text, record, index) => {
- return this.BaseTool.Table.getMapText(this.standardLevelMap, text)
- }
- },
- {
- title: '任务要求',
- dataIndex: 'requirement',
- checked: true,
- width: '200px'
- },
- {
- title: '计划周期',
- dataIndex: 'period',
- checked: true,
- width: '150px',
- customRender: (text, record, index) => {
- return text + this.BaseTool.Table.getMapText(this.periodTypeMap, record.periodType)
- }
- },
- /* {
- title: '计划名称',
- dataIndex: 'planName',
- checked: true
- }, */
- {
- title: '负责人',
- dataIndex: 'checkUserName',
- checked: true,
- width: '150px'
- },
- // {
- // title: '负责部件',
- // dataIndex: 'partName',
- // checked: true
- // },
- /* {
- title: '截至日期',
- dataIndex: 'endTime',
- checked: true,
- width: '200px'
- }, */
- {
- title: '标准工时',
- dataIndex: 'standardHours',
- checked: true,
- width: '200px'
- },
- {
- title: '实际工时',
- dataIndex: 'realHours',
- checked: true,
- width: '200px'
- },
- {
- title: '实际结束时间',
- dataIndex: 'actualEndTime',
- checked: true,
- width: '200px'
- },
- {
- title: '执行日期',
- dataIndex: 'startTime',
- checked: true,
- fixed: 'right',
- width: '200px'
- },
- {
- title: '实际执行日期',
- dataIndex: 'actualStartTime',
- checked: true,
- fixed: 'right',
- width: '200px',
- customRender: (text, record, index) => {
- return (text == null ? '暂无' : this.BaseTool.Date.formatter(text, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN))
- }
- },
- {
- title: '是否延期',
- dataIndex: 'receiveOvertime',
- checked: true,
- fixed: 'right',
- width: '100px',
- customRender: (text, record, index) => {
- return ((text === null || text === 0) ? '否' : '是')
- }
- },
- {
- title: '任务状态',
- dataIndex: 'status',
- width: '100px',
- fixed: 'right',
- checked: true,
- scopedSlots: { customRender: 'status' }
- },
- {
- title: '操作',
- key: 'action',
- width: '150px',
- fixed: 'right',
- align: 'center',
- scopedSlots: { customRender: 'action' },
- checked: true
- }
- ],
- // 下拉框map
- levelMap: {},
- standardLevelMap: {},
- statusMap: {},
- sbStatusMap: {},
- periodTypeMap: {},
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- parameter = {
- ...parameter,
- ...this.queryParam,
- dataScope: {
- }
- }
- return getCheckJobPage(Object.assign(parameter, this.queryParam))
- .then(res => {
- return res.data
- })
- },
- selectedRowKeys: [],
- selectedRows: [],
- options: {
- alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
- rowSelection: {
- selectedRowKeys: this.selectedRowKeys,
- onChange: this.onSelectChange
- }
- },
- optionAlertShow: false
- }
- },
- created () {
- // 下拉框map
- this.statusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_JOB_STATUS)
- this.sbStatusMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.YES_NO)
- this.periodTypeMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_PLAN_PERIOD_TYPE)
- this.levelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.SBINFO_LEVEL)
- this.standardLevelMap = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.CHECK_PLAN_LEVEL)
- fetchSbTypeTree().then(res => {
- this.treeData = res.data
- })
- this.tableOption()
- },
- methods: {
- tableOption () {
- if (!this.optionAlertShow) {
- this.options = {
- alert: { show: true, clear: () => { this.selectedRowKeys = [] } },
- rowSelection: {
- selectedRowKeys: this.selectedRowKeys,
- onChange: this.onSelectChange,
- getCheckboxProps: record => ({
- props: {
- disabled: false,
- name: record.id
- }
- })
- }
- }
- this.optionAlertShow = true
- } else {
- this.options = {
- alert: false,
- rowSelection: null
- }
- this.optionAlertShow = false
- }
- },
- batchDelete (id) {
- let ids = []
- if (this.BaseTool.String.isBlank(id)) {
- const length = this.selectedRows.length
- if (length === 0) {
- this.$message.info('请选择要删除的记录')
- return
- }
- ids = this.selectedRows.map(item => item.id)
- } else {
- ids = [id]
- }
- deleteCheckJobs(ids).then(res => {
- this.$message.info('删除成功')
- this.handleOk()
- this.$refs.table.clearSelected()
- })
- },
- handleEdit (record) {
- fetchCheckJob({ id: record.id }).then(res => {
- const modal = this.$refs.baseModal
- modal.base(res.data)
- })
- },
- handleFinish (record) {
- fetchCheckJob({ id: record.id }).then(res => {
- const modal = this.$refs.baseModal
- modal.base(res.data)
- })
- },
- handleExecute (record) {
- executeJob({ id: record.id }).then(res => {
- this.handleOk()
- })
- },
- handleView (record) {
- fetchCheckJob({ id: record.id }).then(res => {
- const modal = this.$refs.detailModal
- modal.base(res.data)
- })
- },
- handleOk () {
- this.visible = true
- this.queryParam.searchStartTime = this.queryParam.searchStartTime ? this.BaseTool.Date.formatter(this.queryParam.searchStartTime, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN) : null
- this.queryParam.searchEndTime = this.queryParam.searchEndTime ? this.BaseTool.Date.formatter(this.queryParam.searchEndTime, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN) : null
- this.$refs.table.refresh()
- },
- onSelectChange (selectedRowKeys, selectedRows) {
- this.selectedRowKeys = selectedRowKeys
- this.selectedRows = selectedRows
- },
- resetSearchForm () {
- this.queryParam = {
- type: this.checkType,
- searchStartTime: null,
- searchEndTime: null,
- filter: this.filter,
- status: this.status,
- statusList: this.statusList
- }
- this.$refs.table.refresh(true)
- },
- handleSeven () {
- var now = new Date()
- var nowTime = now.getTime()
- var day = now.getDay()
- var oneDayTime = 24 * 60 * 60 * 1000
- // 显示周一
- var MondayTime = nowTime - (day - 1) * oneDayTime
- // 显示周日
- var SundayTime = nowTime + (7 - day) * oneDayTime
- // 初始化日期时间
- var monday = new Date(MondayTime)
- var sunday = new Date(SundayTime)
- this.queryParam.searchStartTime = this.BaseTool.Date.formatter(monday, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
- this.queryParam.searchEndTime = this.BaseTool.Date.formatter(sunday, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
- this.$refs.table.refresh()
- },
- handleMonth () {
- var now = new Date() // 当前日期
- var nowMonth = now.getMonth() // 当前月
- var nowYear = now.getFullYear() // 当前年
- // 本月的开始时间
- var monthStartDate = new Date(nowYear, nowMonth, 1)
- // 本月的结束时间
- var monthEndDate = new Date(nowYear, nowMonth + 1, 0)
- this.queryParam.searchStartTime = this.BaseTool.Date.formatter(monthStartDate, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
- this.queryParam.searchEndTime = this.BaseTool.Date.formatter(monthEndDate, this.BaseTool.Date.PICKER_NORM_DATETIME_PATTERN)
- this.$refs.table.refresh()
- },
- getBeforeDate (num, time) {
- const n = num
- let d = ''
- if (time) {
- d = new Date(time)
- } else {
- d = new Date()
- }
- let year = d.getFullYear()
- let mon = d.getMonth() + 1
- let day = d.getDate()
- if (day <= n) {
- if (mon > 1) {
- mon = mon - 1
- } else {
- year = year - 1
- mon = 12
- }
- }
- d.setDate(d.getDate() - n)
- year = d.getFullYear()
- mon = d.getMonth() + 1
- day = d.getDate()
- const s = year + '-' + (mon < 10 ? ('0' + mon) : mon) + '-' + (day < 10 ? ('0' + day) : day)
- return s
- },
- handleExecuteBatch () {
- let ids = []
- const length = this.selectedRowKeys.length
- if (length === 0) {
- this.$message.info('请选择记录')
- return
- }
- console.log(this.selectedRowKeys)
- ids = this.selectedRowKeys
- executeJobBatch(ids).then(res => {
- this.$message.info('接收成功')
- this.handleOk()
- })
- },
- handleFinishBatch () {
- let ids = []
- const length = this.selectedRowKeys.length
- if (length === 0) {
- this.$message.info('请选择记录')
- return
- }
- ids = this.selectedRowKeys
- finishJobBatch(ids).then(res => {
- this.$message.info('完成成功')
- this.handleOk()
- })
- },
- handleTuiCalendar () {
- const that = this
- queryTuiCalendarIgnores({ type: 2 }).then(res => {
- const a = document.createElement('a')
- a.target = '_blank'
- a.href = '/tui-calendar/checkJobCalendar.html?'
- localStorage.setItem('calendarList', JSON.stringify(res.data.calendarList))
- var scheduleList = res.data.scheduleList
- scheduleList.forEach((item) => {
- item.start = that.BaseTool.Moment(item.start, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN)
- item.end = that.BaseTool.Moment(item.end, this.BaseTool.Date.PICKER_NORM_DATE_PATTERN)
- })
- localStorage.setItem('scheduleList', JSON.stringify(scheduleList))
- a.click()
- })
- },
- doExport () {
- const parameter = {
- ...this.queryParam,
- searchStartTime: this.queryParam.searchStartTime,
- searchEndTime: this.queryParam.searchEndTime
- }
- exportCheckJob(parameter).then(file => {
- this.BaseTool.UPLOAD.downLoadExportExcel(file)
- })
- }
- }
- }
- </script>
|