37 lines
531 B
Vue
37 lines
531 B
Vue
<template>
|
|
<view>
|
|
<film-citySelect @back_city="updateData"></film-citySelect>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import FilmCitySelect from '@/components/linzq-citySelect/film-citySelect.vue';
|
|
export default {
|
|
components: {
|
|
FilmCitySelect
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
updateData(e){
|
|
// 跳转到首页并刷新
|
|
uni.reLaunch({
|
|
url:"pages/film/filmIndex"
|
|
})
|
|
}
|
|
},
|
|
onShow() {
|
|
let that = this
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|