资金明细和软路由操作

This commit is contained in:
“wanyongkang”
2023-07-11 18:14:02 +08:00
parent d37382305c
commit b5895bf145
2 changed files with 14 additions and 4 deletions

View File

@@ -5,6 +5,11 @@
border
style="width: 100%">
<el-table-column
prop="create_time"
label="购买时间"
width="180">
</el-table-column>
<el-table-column
prop="username"
label="会员"
width="180">
@@ -104,6 +109,9 @@ export default {
},
handleCurrentChange() {
this.get();
},
changeLineStatus(r) {
this.$api.post(this.$api.phpURL + 'ros/order/setIsend', {r}).then(res => {})
}
}
}

View File

@@ -3,8 +3,8 @@
* @version: 123
* @Author: kangkang
* @Date: 2020-09-30 21:48:44
* @LastEditors: kangkang
* @LastEditTime: 2020-10-30 17:05:42
* @LastEditors: wanyongkang 937888580@qq.com
* @LastEditTime: 2022-09-13 23:43:18
-->
<template>
<div v-loading="loading">
@@ -73,12 +73,14 @@ export default {
},
created () {
this.$store.commit('setCurrentNav', '订单管理>>资金明细')
this.getAmountDetail()
// this.getAmountDetail()
},
methods: {
search () {
this.searchModel.PageIndex = 1
this.getAmountDetail()
if (this.searchModel.keyWord.trim().length>8) {
this.getAmountDetail()
}
},
getAmountDetail () {
this.loading = true