| | |
| | | <GlobalWindow |
| | | :title="title" |
| | | width="100%" |
| | | :withFooter="false" |
| | | :visible.sync="visible" |
| | | > |
| | | <TableLayout :permissions="['business:integral:query']"> |
| | | <!-- 搜索表单 --> |
| | | <el-form ref="searchForm" slot="search-form" id='curSearchForm' :model="searchForm" label-width="100px" inline> |
| | | <el-form ref="searchForm" slot="search-form" id='curSearchForm' :model="searchForm" label-width="100px" > |
| | | <el-form-item label="" prop="type"> |
| | | <el-select v-model="searchForm.type" placeholder="请选择收支类型" @change="search" > |
| | | <el-option :key="0" :value="0" label="收入"></el-option> |
| | |
| | | <el-option :key="20" :value="25" label="订单结算退回"></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | <div class="date-style" style="display: inline"> |
| | | <el-form-item label="交易时间" prop="starttime" > |
| | | <el-date-picker |
| | | style="width: 190px" |
| | |
| | | placeholder="截止时间" |
| | | ></el-date-picker> |
| | | </el-form-item> |
| | | </div> |
| | | <section> |
| | | <el-button type="primary" @click="search">搜索</el-button> |
| | | <el-button type="primary" :loading="isWorking.export" v-permissions="['business:integral:exportExcel']" @click="exportExcel">导出</el-button> |
| | |
| | | <el-table |
| | | v-loading="isWorking.search" |
| | | :data="tableData.list" |
| | | :height="tableHeight" |
| | | stripe |
| | | border |
| | | > |
| | |
| | | } |
| | | </script> |
| | | <style scoped> |
| | | .table-pagination{ |
| | | /*.table-pagination{ |
| | | position: fixed !important; |
| | | bottom: 50px; |
| | | } |
| | | bottom: 0px; |
| | | }*/ |
| | | .header-b{ |
| | | display: inline-block; |
| | | font-size: 16px; |