新增充值
BIN
src/assets/img/marketplace/1001.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
src/assets/img/marketplace/1002.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
src/assets/img/marketplace/1003.png
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
src/assets/img/marketplace/1004.png
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
src/assets/img/marketplace/1005.png
Normal file
After Width: | Height: | Size: 72 KiB |
BIN
src/assets/img/marketplace/1006.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
src/assets/img/marketplace/icon_USDT.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
src/assets/img/marketplace/icon_diamond.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
src/assets/img/marketplace/selected.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
@ -365,6 +365,27 @@ const marketHandleScroll = () => {
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
marketplaceList.getParamsData = {
|
||||
page_size: 20,
|
||||
cursor: '',
|
||||
search: {
|
||||
name: '',
|
||||
},
|
||||
filter: {
|
||||
price_min: '',
|
||||
price_max: '',
|
||||
item_ids: [],
|
||||
hero_ranks: [],
|
||||
},
|
||||
sort: {
|
||||
fields: [
|
||||
{
|
||||
name: 'price',
|
||||
type: 0,
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
getHeroData()
|
||||
window.addEventListener("scroll", marketHandleScroll, true);
|
||||
})
|
||||
|
@ -165,3 +165,15 @@ export const apiContribution = async (account_address) => {
|
||||
const url = `${API_BASE}/api/activity/stacking/history/${account_address}`
|
||||
return httpGet(url, {})
|
||||
}
|
||||
|
||||
// 充值列表
|
||||
export const apiRechargeGoods = async () => {
|
||||
const url = `${API_BASE}/api/recharge/goods`
|
||||
return httpGet(url, {})
|
||||
}
|
||||
|
||||
// 充值记录
|
||||
export const apiRechargeHistory = async (account_address) => {
|
||||
const url = `${API_BASE}/api/recharge/history/${net_id}/${account_address}`
|
||||
return httpPost(url, {})
|
||||
}
|
||||
|