| ¶Ô±ÈÐÂÎļþ |
| | |
| | | <template> |
| | | <TableLayout :permissions="['business:jkline:query']"> |
| | | <!-- æç´¢è¡¨å --> |
| | | <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline> |
| | | <el-form-item label="åç§°" prop="name"> |
| | | <el-input v-model="searchForm.name" placeholder="请è¾å
¥åç§°" clearable @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="æå±ä¸»çº¿è·¯" prop="categoryId"> |
| | | <el-select v-model="searchForm.categoryId" clearable filterable placeholder="è¯·éæ©æå±ä¸»çº¿è·¯" @change="search"> |
| | | <el-option v-for="item in categoryList" :key="item.id" :label="item.name" :value="item.id"> |
| | | </el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item label="è¿é车è¾" prop="carCode"> |
| | | <el-input v-model="searchForm.carCode" placeholder="请è¾å
¥è¿é车è¾" clearable @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="åºå·" prop="code"> |
| | | <el-input v-model="searchForm.code" placeholder="请è¾å
¥åºå·" @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | | <section> |
| | | <el-button type="primary" @click="search">æç´¢</el-button> |
| | | <el-button type="primary" :loading="isWorking.export" v-permissions="['business:jkline:exportExcel']" @click="exportExcel">导åº</el-button> |
| | | <el-button @click="reset">éç½®</el-button> |
| | | </section> |
| | | </el-form> |
| | | <!-- è¡¨æ ¼åå页 --> |
| | | <template v-slot:table-wrap> |
| | | <ul class="toolbar" v-permissions="['business:jkline:create', 'business:jkline:delete']"> |
| | | <li><el-button type="primary" @click="$refs.operaJkLineWindow.open('æ°å»ºäº¤æ§-线路信æ¯è¡¨')" icon="el-icon-plus" v-permissions="['business:jkline:create']">æ°å»º</el-button></li> |
| | | <li><el-button icon="el-icon-upload" type="primary" @click="$refs.OperaJkLineImportWindowRef.open('线路导å
¥')" v-permissions="['business:jkline:create']">线路导å
¥</el-button></li> |
| | | <li><el-button type="danger" @click="deleteByIdInBatch" icon="el-icon-delete" v-permissions="['business:jkline:delete']">å é¤</el-button></li> |
| | | </ul> |
| | | <el-table |
| | | :height="tableHeightNew" |
| | | v-loading="isWorking.search" |
| | | :data="tableData.list" |
| | | stripe |
| | | @selection-change="handleSelectionChange" |
| | | > |
| | | <el-table-column type="selection" width="55"></el-table-column> |
| | | <el-table-column prop="name" label="åç§°" min-width="200px" show-tooltip-when-overflow></el-table-column> |
| | | <el-table-column prop="categoryName" label="æå±ä¸»çº¿è·¯" min-width="140px"></el-table-column> |
| | | <el-table-column prop="carCode" label="æå±è½¦è¾" min-width="100px"></el-table-column> |
| | | <el-table-column prop="maxCustomer" label="客æ·é" min-width="100px"></el-table-column> |
| | | <el-table-column prop="maxOrder" label="订åé" min-width="100px"></el-table-column> |
| | | <el-table-column prop="weeks" label="é
é卿" min-width="140px"></el-table-column> |
| | | <el-table-column prop="code" label="åºå·" min-width="100px"></el-table-column> |
| | | <el-table-column prop="editDate" label="æ´æ°æ¶é´" min-width="150px"></el-table-column> |
| | | <el-table-column |
| | | v-if="containPermissions(['business:jkline:update', 'business:jkline:delete'])" |
| | | label="æä½" |
| | | min-width="120" |
| | | fixed="right" |
| | | > |
| | | <template slot-scope="{row}"> |
| | | <el-button type="text" @click="$refs.operaJkLineWindow.open('ç¼è¾äº¤æ§-线路信æ¯è¡¨', row)" icon="el-icon-edit" v-permissions="['business:jkline:update']">ç¼è¾</el-button> |
| | | <el-button type="text" class="red" @click="deleteById(row)" icon="el-icon-delete" v-permissions="['business:jkline:delete']">å é¤</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | <pagination |
| | | @size-change="handleSizeChange" |
| | | @current-change="handlePageChange" |
| | | :pagination="tableData.pagination" |
| | | > |
| | | </pagination> |
| | | </template> |
| | | <!-- æ°å»º/ä¿®æ¹ --> |
| | | <OperaJkLineWindow ref="operaJkLineWindow" @success="handlePageChange"/> |
| | | <OperaJkLineImportWindow ref="OperaJkLineImportWindowRef" @success="handlePageChange" /> |
| | | </TableLayout> |
| | | </template> |
| | | |
| | | <script> |
| | | import BaseTable from '@/components/base/BaseTable' |
| | | import TableLayout from '@/layouts/TableLayout' |
| | | import Pagination from '@/components/common/Pagination' |
| | | import OperaJkLineWindow from '@/components/business/OperaJkLineWindow' |
| | | import OperaJkLineImportWindow from '@/components/business/OperaJkLineImportWindow' |
| | | import { fetchCateList } from '@/api/business/category' |
| | | export default { |
| | | name: 'JkLine', |
| | | extends: BaseTable, |
| | | components: { TableLayout, Pagination, OperaJkLineWindow,OperaJkLineImportWindow }, |
| | | data () { |
| | | return { |
| | | // æç´¢ |
| | | searchForm: { |
| | | name: '', |
| | | categoryId: '', |
| | | carCode: '', |
| | | code: '' |
| | | }, |
| | | categoryList: [] |
| | | } |
| | | }, |
| | | created () { |
| | | this.config({ |
| | | module: '交æ§-线路信æ¯è¡¨', |
| | | api: '/business/jkLine', |
| | | 'field.id': 'id', |
| | | 'field.main': 'id' |
| | | }) |
| | | this.search() |
| | | this.loadCategory() |
| | | }, |
| | | methods: { |
| | | loadCategory () { |
| | | fetchCateList({ type: 4 }).then(res => { |
| | | this.categoryList = res || [] |
| | | }) |
| | | } |
| | | } |
| | | } |
| | | </script> |