Commit df00aebe authored by youjie's avatar youjie

no message

parent dbf417eb
...@@ -493,7 +493,7 @@ export default defineComponent({ ...@@ -493,7 +493,7 @@ export default defineComponent({
} }
}, },
changeTripDayHandler() { changeTripDayHandler() {
that.$forceUpdate() //that.$forceUpdate()
data.msg.minTripDay = "0"; data.msg.minTripDay = "0";
data.msg.maxTripDay = "0"; data.msg.maxTripDay = "0";
data.dayArray.forEach((x) => { data.dayArray.forEach((x) => {
...@@ -516,7 +516,7 @@ export default defineComponent({ ...@@ -516,7 +516,7 @@ export default defineComponent({
); );
}, },
testHandler(e) { testHandler(e) {
that.$forceUpdate(); //that.$forceUpdate();
data.msg.minPrice = e.min; data.msg.minPrice = e.min;
data.msg.maxPrice = e.max; data.msg.maxPrice = e.max;
}, },
......
...@@ -88,7 +88,7 @@ export default defineComponent({ ...@@ -88,7 +88,7 @@ export default defineComponent({
context.emit('getTopNum',JSON.stringify(data.daysClass)) context.emit('getTopNum',JSON.stringify(data.daysClass))
},1000) },1000)
}) })
that.$forceUpdate() //that.$forceUpdate()
} }
},{deep: true}) },{deep: true})
watch(()=>props.clickDate,(n,o)=>{ watch(()=>props.clickDate,(n,o)=>{
...@@ -96,7 +96,7 @@ export default defineComponent({ ...@@ -96,7 +96,7 @@ export default defineComponent({
data.trips.forEach((x, index) => { data.trips.forEach((x, index) => {
x.dateTime = methods.setDate(index); x.dateTime = methods.setDate(index);
}) })
that.$forceUpdate() //that.$forceUpdate()
} }
},{deep: true}) },{deep: true})
const methods = { const methods = {
......
...@@ -209,7 +209,7 @@ ...@@ -209,7 +209,7 @@
text-color="grey-2" text-color="grey-2"
dense dense
:label="$t('v103.scheduledTripDetails.day.d5')" :label="$t('v103.scheduledTripDetails.day.d5')"
v-if="y.childItem.useDinnerType.indexOf('1') != -1" v-if="y.childItem.useDinnerType&&y.childItem.useDinnerType.indexOf('1') != -1"
/> />
<q-chip <q-chip
color="primary" color="primary"
...@@ -217,7 +217,7 @@ ...@@ -217,7 +217,7 @@
text-color="grey-2" text-color="grey-2"
dense dense
:label="$t('v103.scheduledTripDetails.day.d6')" :label="$t('v103.scheduledTripDetails.day.d6')"
v-if="y.childItem.useDinnerType.indexOf('3') != -1" v-if="y.childItem.useDinnerType&&y.childItem.useDinnerType.indexOf('3') != -1"
/> />
<q-chip <q-chip
color="dark" color="dark"
......
...@@ -103,6 +103,6 @@ ...@@ -103,6 +103,6 @@
<style> <style>
.passbook-form{ .passbook-form{
width: 963px; width: 963px;
min-width: 663px; /* min-width: 663px; */
} }
</style> </style>
\ No newline at end of file
...@@ -502,7 +502,7 @@ export default defineComponent({ ...@@ -502,7 +502,7 @@ export default defineComponent({
}else{ }else{
calendarRef.value.reset() calendarRef.value.reset()
} }
that.$forceUpdate() //that.$forceUpdate()
}, },
changeChosenDateHandler(val) { changeChosenDateHandler(val) {
val.price.version = new Date().getTime() val.price.version = new Date().getTime()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment