100 lines
3.0 KiB
Vue
100 lines
3.0 KiB
Vue
<template>
|
|
<div v-loading="loading">
|
|
<div class="heior_box">
|
|
<el-button
|
|
size="small"
|
|
type="primary"
|
|
icon="el-icon-sold-out"
|
|
@click="dataExport"
|
|
v-if="$local.isRoot()"
|
|
>导出</el-button>
|
|
<div class="search-box">
|
|
<el-date-picker
|
|
size="small"
|
|
v-model="dateRange"
|
|
type="daterange"
|
|
range-separator="至"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
></el-date-picker>
|
|
<el-input
|
|
v-model="searchModel.keyWord"
|
|
placeholder="请输入订单号、用户名"
|
|
clearable
|
|
size="small"
|
|
>
|
|
<el-button slot="append" icon="el-icon-search" @click="search"></el-button>
|
|
</el-input>
|
|
</div>
|
|
</div>
|
|
<el-table :data="retData.Data" row-key="Id" border size="medium" :height="$getHeight(100)">
|
|
<el-table-column prop="CreateTime" label="创建日期" width="180"></el-table-column>
|
|
<el-table-column prop="OrderNo" label="订单号" ></el-table-column>
|
|
<el-table-column prop="TradeNo" label="支付流水号"></el-table-column>
|
|
<el-table-column prop="UserName" label="用户" width="120">
|
|
<template slot-scope="scope">
|
|
<phoneHide :text="scope.row.UserName"></phoneHide>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="OrderAmount" label="充值金额" width="180"></el-table-column>
|
|
</el-table>
|
|
<div class="block">
|
|
<el-pagination
|
|
v-if="retData.Data.length>0"
|
|
@current-change="get"
|
|
:current-page.sync="searchModel.PageIndex"
|
|
:page-size="50"
|
|
layout="total,prev, pager, next"
|
|
:total="retData.TotalCount"
|
|
></el-pagination>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: "treeTable",
|
|
components: {
|
|
cutTip: () => import("@/components/common/cutTip"),
|
|
phoneHide: () => import("@/components/common/phonehide")
|
|
},
|
|
data() {
|
|
return {
|
|
loading: false,
|
|
options: [],
|
|
retData: { TotalCount: 0, Data: [] },
|
|
dateRange: [],
|
|
searchModel: {
|
|
PageIndex: 1,
|
|
keyWord: "",
|
|
Btime: "",
|
|
Etime: "",
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.$store.commit("setCurrentNav", "订单管理>>充值订单");
|
|
this.get();
|
|
},
|
|
methods: {
|
|
search() {
|
|
this.searchModel.PageIndex = 1;
|
|
this.get();
|
|
},
|
|
get() {
|
|
if (this.dateRange && this.dateRange.length == 2) {
|
|
this.searchModel.Btime = this.dateRange[0];
|
|
this.searchModel.Etime = this.dateRange[1];
|
|
}
|
|
this.$api.get("baseinfo/v1/chargeorder/page", this.searchModel).then(res => {
|
|
this.retData = res;
|
|
});
|
|
},
|
|
dataExport() {
|
|
this.$api.getDownloadFile("/baseinfo/v1/chargeorder/ExportOrder", this.searchModel);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
</style>
|