| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <template>
- <el-card class="content-z">
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-form-item>
- <j-list-select-tag
- v-model="queryParam.lineId"
- style="width: 150px"
- placeholder="选择线别"
- dict-code="line"
- />
- </a-form-item>
- <a-form-item>
- <j-list-select-tag
- v-if="substationShow"
- v-model="queryParam.substationId"
- :line-id="queryParam.lineId"
- style="width: 150px"
- placeholder="选择所别"
- dict-code="substation"
- />
- </a-form-item>
- <a-form-item>
- <j-dict-select-tag
- v-model="queryParam.xingbie"
- style="width: 150px"
- placeholder="选择行别"
- dict-code="xingbie"
- />
- </a-form-item>
- <a-form-item>
- <j-dict-select-tag
- v-model="queryParam.yylx"
- style="width: 150px"
- placeholder="选择原因类型"
- dict-code="gzyy"
- />
- </a-form-item>
- <a-form-item>
- <a-input
- v-model="queryParam.marker"
- style="width: 150px"
- placeholder="输入公里标"
- />
- </a-form-item>
- <!-- <a-form-item>-->
- <!-- <a-date-picker v-model="queryParam.date1" format="YYYY/MM/DD" placeholder="时间范围" /> - -->
- <!-- <a-date-picker v-model="queryParam.date2" format="YYYY/MM/DD" placeholder="时间范围" />-->
- <!-- </a-form-item>-->
- <a-form-item>
- <a-button type="primary" @click="searchQuery">查询</a-button>
- <a-button style="margin-left: 8px" @click="searchReset">重置</a-button>
- </a-form-item>
- </a-form>
- </div>
- <!-- 操作按钮区域 -->
- <div class="table-operator" style="margin: 15px 0">
- <a-button type="primary" icon="plus" @click="handleAdd">新增</a-button>
- <!-- <a-button ghost type="danger" icon="download" @click="handleExportXls('角色信息')">导出</a-button>-->
- <!-- <a-upload name="file" :show-upload-list="false" :multiple="false" :headers="tokenHeader" :action="url.importExcelUrl" @change="handleImportExcel">-->
- <!-- <a-button ghost type="danger" icon="import">导入</a-button>-->
- <!-- </a-upload>-->
- <a-dropdown v-if="selectedRowKeys.length > 0">
- <a-menu slot="overlay">
- <a-menu-item key="1" @click="batchDel"><a-icon type="delete" />删除</a-menu-item>
- </a-menu>
- <a-button style="margin-left: 8px">
- 批量操作 <a-icon type="down" />
- </a-button>
- </a-dropdown>
- </div>
- <!-- table区域-begin -->
- <div>
- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
- <i class="anticon anticon-info-circle ant-alert-icon" /> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
- <a style="margin-left: 24px" @click="onClearSelected">清空</a>
- </div>
- <a-table
- ref="table"
- size="middle"
- bordered
- row-key="id"
- :columns="columns"
- :data-source="dataSource"
- :pagination="ipagination"
- :loading="loading"
- :row-selection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
- @change="handleTableChange"
- >
- <span slot="action" slot-scope="text, record">
- <a-button size="small" type="primary" @click="handleEdit(record)">
- 编辑
- </a-button>
- <a-divider type="vertical" />
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
- <a-button size="small" type="danger">
- 删除
- </a-button>
- </a-popconfirm>
- </span>
- </a-table>
- <check-and-edit-model ref="modalForm" @ok="modalFormOk" />
- </div>
- <!-- table区域-end -->
- <!-- 表单区域 -->
- </el-card>
- </template>
- <script>
- import { listMixin } from '@/mixin/listMixin'
- import columns from './indexColumns'
- import CheckAndEditModel from './CheckAndEditModel'
- export default {
- components: {
- CheckAndEditModel
- },
- mixins: [listMixin],
- data() {
- return {
- // 查询条件
- substationId: undefined,
- substationShow: true,
- queryParam: {},
- // 表头
- columns: columns(this),
- url: {
- list: '/business/catenary/bus/jlgz/list',
- delete: '/business/catenary/bus/jlgz/',
- exportXlsUrl: '/exportXlsUrl',
- importExcelUrl: `${process.env.VUE_APP_BASE_API}/importExcelUrl`
- }
- }
- },
- watch: {
- 'queryParam.lineId': {
- handler: function(newV, oldV) {
- this.substationShow = false
- this.$nextTick(() => {
- this.queryParam.substationId = undefined
- this.substationId = undefined
- this.substationShow = true
- })
- }
- }
- },
- created() {
- },
- methods: {
- }
- }
- </script>
- <style scoped>
- @import '~@/assets/less/common.less'
- </style>
|