123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <template>
- <div>
- <el-dialog :visible.sync="visible" append-to-body width="50%">
- <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
- ref="multipleTable"
- :data="tableData"
- style="width: 100%"
- size="mini"
- border>
- <el-table-column
- prop="sonum"
- label="订单号">
- </el-table-column>
- <el-table-column
- prop="type"
- label="订单类型">
- </el-table-column>
- <el-table-column
- prop="tradefield"
- label="领域">
- </el-table-column>
- <el-table-column
- prop="rebate_userate"
- label="订单使用返利占比">
- </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>
- </el-dialog>
- <slot name="input"></slot>
- </div>
- </template>
- <script>
- export default {
- data () {
- return {
- visible:false,
- param:{
- "id": 20230105110003,
- "version":1,
- "content": {
- "where":{
- "condition":""
- }
- }
- },
- tableData: [],
- total:0,
- currentPage:0
- }
- },
- methods:{
- async listData () {
- this.param.content.istool = 1
- const res = await this.$api.requested(this.param)
- this.tableData = res.data
- this.total = res.total
- this.currentPage = res.pageNumber
- console.log(this.tableData);
-
- },
- 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)
- }
- },
- created () {
- this.listData()
- },
- }
- </script>
- <style>
- </style>
|