Files
juipvue/src/components/order/openrefunds.vue
wanyongkang 3193537726 初始提交
2020-10-04 10:30:08 +08:00

97 lines
3.1 KiB
Vue

<template>
<div v-loading="loading">
<div class="heior_box">
<el-button size="small" type="primary" icon="el-icon-sold-out" @click="dataExport">导出</el-button>
<div class="search-box">
<el-date-picker
size="small"
v-model="dateRange"
type="daterange"
range-separator=""
start-placeholder="开始日期"
end-placeholder="结束日期"
@change=search
></el-date-picker>
<el-select v-model="searchModel.ProductIds" placeholder="选择产品" collapse-tags multiple clearable size="small" @change=search>
<el-option v-for="item in products" :key="item.Name" :label="item.Name" :value="item.Id"></el-option>
</el-select>
</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="ProductName" label="产品"></el-table-column>
<el-table-column prop="PackageName" label="套餐"></el-table-column>
<el-table-column prop="ConnectCount" label="连接数"></el-table-column>
<el-table-column prop="Accounts" label="账号"></el-table-column>
<el-table-column prop="RefundRestTime" label="剩余时间"></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: {
phoneHide: () => import("@/components/common/phonehide")
},
data() {
return {
loading: false,
retData: { TotalCount: 0, Data: [] },
dateRange:[],
products:[],
searchModel: {
OrderTypes:[],
PageIndex: 1,
keyWord: "",
ProductIds:null,
}
}
},
created() {
this.$store.commit("setCurrentNav","订单管理>>退款订单")
this.get();
this.getProduct();
},
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("course/v1/order/OpenRefundOrders", this.searchModel).then(res => {
this.retData = res;
});
},
getProduct() {
this.loading = true;
this.$api.get("course/v1/product/OpenPage", this.searchModel).then(res => {
this.products = res.Data;
this.loading = false;
});
},
dataExport(){
this.$api.getDownloadFile("/course/v1/order/OpenExportRefundOrders", this.searchModel);
}
}
};
</script>
<style scoped>
.red{
color: red;
}
</style>