Commit 60a7a860 authored by leiqingsong's avatar leiqingsong

修改空投池超宽度得bug

parent bcf73397
import request from "@/utils/request";
/**
* 获取用户钱包
* @param {*} params userId
*/
export function getMoneyPackage(params) {
return request({
url: "/wallet/getMoneyPackage",
method: "get",
params
})
}
/**
* 获取用户钱包-可提现
* @param {*} params userId
*/
export function getWithdrawalAmount(params) {
return request({
url: "getWithdrawalAmount",
method: "get",
params
})
}
/**
* 提现记录
* @param {*} params userId
* @param {*}yearMonth yyyy-MM-dd
*/
export function getWithdrawalRecord(params) {
return request({
url: "/wallet/getWithdrawalRecord",
method: "get",
params
})
}
/**
* 获取用户钱包-累计收益明细
* @param {*} params userId
*/
export function queryIncomeDetail(params) {
return request({
url: "/wallet/queryIncomeDetail",
method: "get",
params
})
}
/**
* 获取用户钱包-累计收益记录
* @param {*} params userId
*/
export function showIncomeRecord(params) {
return request({
url: "/wallet/showIncomeRecord",
method: "get",
params
})
}
......@@ -43,7 +43,7 @@ export default {
personNum: 108
};
},
mounted: {},
mounted() {},
methods: {}
};
</script>
......
......@@ -139,6 +139,7 @@ $white: #ffffff;
color: #ffffff;
}
.level-progress {
box-sizing: border-box;
width: 100%;
padding: 0 30px;
display: flex;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment