公共退款界面

This commit is contained in:
wanyongkang
2020-12-03 16:58:00 +08:00
parent f578d412c1
commit 9c1f1b13b3

View File

@@ -39,55 +39,60 @@
</template> </template>
<script> <script>
export default { export default {
name: "treeTable", name: 'treeTable',
components: { components: {
phoneHide: () => import("@/components/common/phonehide") phoneHide: () => import('@/components/common/phonehide')
}, },
data() { data () {
return { return {
loading: false, loading: false,
retData: { TotalCount: 0, Data: [] }, retData: { TotalCount: 0, Data: [] },
dateRange:[], dateRange: [],
products:[], products: [],
searchModel: { searchModel: {
OrderTypes:[], OrderTypes: [],
PageIndex: 1, PageIndex: 1,
keyWord: "", keyWord: '',
ProductIds:null, ProductIds: null
} }
} }
}, },
created() { created () {
this.$store.commit("setCurrentNav","订单管理>>退款订单") this.$store.commit('setCurrentNav', '订单管理>>退款订单')
this.get(); this.get()
this.getProduct(); this.getProduct()
}, },
methods: { methods: {
search(){ search () {
this.searchModel.PageIndex=1; this.searchModel.PageIndex = 1
this.get(); this.get()
}, },
get() { get () {
if (this.dateRange && this.dateRange.length == 2) { if (this.dateRange && this.dateRange.length == 2) {
this.searchModel.Btime = this.dateRange[0]; this.searchModel.Btime = this.dateRange[0]
this.searchModel.Etime = this.dateRange[1]; this.searchModel.Etime = this.dateRange[1]
} }
this.$api.get("course/v1/order/OpenRefundOrders", this.searchModel).then(res => { // this.$api.get('course/v1/order/OpenRefundOrders', this.searchModel).then(res => {
this.retData = res; // this.retData = res
}); // })
this.$api.get(this.$api.phpURL + 'order/OpenRefund/getList', this.searchModel).then(res => {
this.retData.Data = res.data.list
this.retData.TotalCount = res.data.count
})
}, },
getProduct() { getProduct () {
this.loading = true; // this.$api.get('course/v1/product/OpenPage', this.searchModel).then(res => {
this.$api.get("course/v1/product/OpenPage", this.searchModel).then(res => { // this.products = res.Data
this.products = res.Data; // })
this.loading = false; this.$api.get(this.$api.phpURL + 'product/OpenProduct/getOpenList').then(res => {
}); this.products = res.Data = res.data
})
}, },
dataExport(){ dataExport () {
this.$api.getDownloadFile("/course/v1/order/OpenExportRefundOrders", this.searchModel); this.$api.getDownloadFile('/course/v1/order/OpenExportRefundOrders', this.searchModel)
} }
} }
}; }
</script> </script>
<style scoped> <style scoped>
.red{ .red{