|
@@ -2,7 +2,7 @@
|
|
* @Author: wangjiacheng
|
|
* @Author: wangjiacheng
|
|
* @Date: 2021-10-14 11:57:19
|
|
* @Date: 2021-10-14 11:57:19
|
|
* @LastEditors: wjc
|
|
* @LastEditors: wjc
|
|
- * @LastEditTime: 2024-05-30 11:57:50
|
|
|
|
|
|
+ * @LastEditTime: 2024-05-30 14:41:41
|
|
* @Description:
|
|
* @Description:
|
|
-->
|
|
-->
|
|
<template>
|
|
<template>
|
|
@@ -49,12 +49,11 @@ export default {
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
targetMoney: 5e8,
|
|
targetMoney: 5e8,
|
|
- moneny: 499116572.49,
|
|
|
|
|
|
+ moneny: 499219626.49,
|
|
timer: null,
|
|
timer: null,
|
|
showFire: false,
|
|
showFire: false,
|
|
isBillion: false,
|
|
isBillion: false,
|
|
- // targetDate: '2024-05-31 17:10:00'
|
|
|
|
- targetDate: '2024-05-30 11:55:00'
|
|
|
|
|
|
+ targetDate: '2024-05-31 17:10:00'
|
|
}
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -89,7 +88,7 @@ export default {
|
|
getTotalSum () {
|
|
getTotalSum () {
|
|
this.timer = setInterval(() => {
|
|
this.timer = setInterval(() => {
|
|
const date = dayjs()
|
|
const date = dayjs()
|
|
- const add = Math.floor(Math.random() * 3000)
|
|
|
|
|
|
+ const add = Math.floor(Math.random() * 2000)
|
|
this.moneny = this.moneny + add
|
|
this.moneny = this.moneny + add
|
|
if (date.isSameOrAfter(dayjs(this.targetDate)) && this.moneny <= this.targetMoney) {
|
|
if (date.isSameOrAfter(dayjs(this.targetDate)) && this.moneny <= this.targetMoney) {
|
|
this.moneny = this.targetMoney + add
|
|
this.moneny = this.targetMoney + add
|