This commit is contained in:
duan 2024-11-06 11:01:59 +08:00
commit 885a3a0535
3 changed files with 33 additions and 2 deletions

View File

@ -487,7 +487,9 @@
const endTotal = returnDateString(e.detail.value, true).getTime()
value1.value = e.detail.value
nextTick(() => {
value1.value = endTotal < startTotal ? value.value : e.detail.value
if (props.isArea) {
value1.value = endTotal < startTotal ? value.value : e.detail.value
}
debounce(changeDays(true, value1.value), 100)
})
}
@ -521,7 +523,7 @@
}
function nullFunction() {
}
function pickend(e) {

View File

@ -875,6 +875,13 @@
"style": {
"navigationBarTitleText": "退款"
}
},
{
"path" : "quan/quan",
"style" :
{
"navigationBarTitleText" : "券包"
}
}
]

22
pagesOrder/quan/quan.vue Normal file
View File

@ -0,0 +1,22 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>