| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <template>
- <div>
- <div class="flex-align-center flex-between mt-10">
- <el-input style="width:200px" size="small" suffix-icon="el-icon-search" v-model="param.content.where.condition" placeholder="搜索" @keyup.enter.native="listData(param.content.pageNumber = 1)" @clear="listData(param.content.pageNumber = 1)" clearable></el-input>
- </div>
- <div>
- <el-table
- height="60vh"
- ref="multipleTable"
- :data="tableData"
- style="width: 100%"
- size="mini"
- border>
- <el-table-column
- prop="enterprisename"
- :label="qiyi ? '企业名称' : '经销商名称'"
- width="180">
- </el-table-column>
- <el-table-column
- prop="agentnum"
- :label="qiyi ? '企业编号' : '经销商编号'"
- width="180">
- </el-table-column>
- <el-table-column
- prop="contact"
- label="联系人"
- width="90">
- </el-table-column>
- <el-table-column
- label="地址"
- width="180">
- <template slot-scope="scope">
- {{scope.row.province}}{{scope.row.city}}{{scope.row.county}}{{scope.row.address}}
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- width="90">
- <template slot-scope="scope">
- <el-button type="text" size="small" @click="selectRow(scope.row)">选 择</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div style="margin-top:16px;text-align:right">
- <el-pagination
- background
- small
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-size="param.content.pageSize"
- layout="total, prev, pager, next, jumper"
- :total="total">
- </el-pagination>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- props:['id'],
- data () {
- return {
- param:{
- "id": "",
- "content": {
- "pageNumber":1,
- "pageSize":20,
- "where":{
- "condition":""
- }
- }
- },
- tableData: [],
- total:0,
- currentPage:0
- }
- },
- props:{
- qiyi: {
- type:Boolean,
- default: () => false
- }
- },
- methods:{
- async listData () {
- this.param.id = this.id
- const res = await this.$api.requested(this.param)
- this.tableData = res.data
- this.total = res.total
- this.currentPage = res.pageNumber
- },
- handleSizeChange(val) {
- // console.log(`每页 ${val} 条`);
- this.param.content.pageSize = val
- this.listData()
- },
- handleCurrentChange(val) {
- // console.log(`当前页: ${val}`);
- this.param.content.pageNumber = val
- this.listData()
- },
- selectRow (row) {
- this.$emit('selectRow',row)
- }
- },
- mounted () {}
- }
- </script>
- <style>
- </style>
|