|
|
@ -43,7 +43,7 @@ |
|
|
|
<div> |
|
|
|
<div class="margin-bottom">永久金币:{{ currentPermanent / 100 }}</div> |
|
|
|
<div class="margin-bottom">免费金币:{{ currentFree / 100 }}</div> |
|
|
|
<div class="margin-bottom">[六月到期|{{ currentFreeJune / 100 }}] |
|
|
|
<div class="margin-bottom">[六月到期|{{ currentFreeJune / 100 }}] |
|
|
|
[十二月到期|{{ currentFreeDecember / 100 }}] |
|
|
|
</div> |
|
|
|
<div>任务金币:{{ currentTask / 100 }}</div> |
|
|
@ -157,7 +157,7 @@ |
|
|
|
<el-date-picker v-model="dateRange" type="datetimerange" range-separator="→" start-placeholder="开始时间" |
|
|
|
end-placeholder="结束时间" format="YYYY-MM-DD HH:mm:ss" style="width:20vw" |
|
|
|
value-format="YYYY-MM-DD HH:mm:ss" |
|
|
|
:default-time="defaultTime" |
|
|
|
:default-time="defaultTime" :disabled-date="disabledDate" |
|
|
|
/> |
|
|
|
<el-button type="primary" style="margin-left: 5px" @click="getChartData">查询</el-button> |
|
|
|
</div> |
|
|
@ -433,6 +433,12 @@ const processData = (data) => { |
|
|
|
firstRecharge.value = summary.firstRecharge |
|
|
|
} |
|
|
|
|
|
|
|
//无法选择的时间 |
|
|
|
const disabledDate = (time) => { |
|
|
|
const limitDate = new Date(2025, 0, 1); |
|
|
|
return time.getTime() < limitDate.getTime(); |
|
|
|
} |
|
|
|
|
|
|
|
// 获取市场列表 |
|
|
|
const getMarkets = async () => { |
|
|
|
console.log("adminData", adminData.value.account) |
|
|
|