add
This commit is contained in:
parent
36dcd802cc
commit
d456784cab
|
@ -15,7 +15,7 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view style="margin-top: 20rpx;" @click="showPop=true">
|
<view style="margin-top: 20rpx;" @click="showDate=true">
|
||||||
<text>2024-4-7</text>-<text>2024-4-7</text>
|
<text>2024-4-7</text>-<text>2024-4-7</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="recoder">
|
<view class="recoder">
|
||||||
|
@ -43,11 +43,13 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<up-popup :show="showPop" :round="10" mode="bottom" @close="showPop=false" @open="showPop=true">
|
<!-- <up-popup :show="showPop" :round="10" mode="bottom" @close="showPop=false" @open="showPop=true">
|
||||||
<hDatetimePicker ref="pickerDate" @reset="showPop=false" @confirm="confirm">
|
<hDatetimePicker ref="pickerDate" @reset="showPop=false" @confirm="confirm">
|
||||||
</hDatetimePicker>
|
</hDatetimePicker>
|
||||||
</up-popup>
|
</up-popup> -->
|
||||||
|
|
||||||
|
<up-datetime-picker hasInput :show="showDate" @confirm='confirmDate' :maxDate='now' @cancel='showDate=false'
|
||||||
|
@close='showDate=false' v-model="times" mode="year-month"></up-datetime-picker>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -62,7 +64,7 @@
|
||||||
UserWithdrawIndexApi
|
UserWithdrawIndexApi
|
||||||
} from "@/api/balance.js"
|
} from "@/api/balance.js"
|
||||||
|
|
||||||
|
const showDate = ref(false)
|
||||||
const count = ref(0)
|
const count = ref(0)
|
||||||
const total = ref(0)
|
const total = ref(0)
|
||||||
const getInfo = async () => {
|
const getInfo = async () => {
|
||||||
|
@ -83,6 +85,15 @@
|
||||||
}
|
}
|
||||||
getList()
|
getList()
|
||||||
|
|
||||||
|
let now = ref(new Date().getTime())
|
||||||
|
|
||||||
|
const confirmDate = (e) => {
|
||||||
|
|
||||||
|
console.log(e)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const nowDate = new Date()
|
const nowDate = new Date()
|
||||||
// cconst
|
// cconst
|
||||||
const showPop = ref(false)
|
const showPop = ref(false)
|
||||||
|
|
Loading…
Reference in New Issue