|
@@ -93,7 +93,7 @@
|
|
|
@load="onLoad" class="more-list" ref="vanList">
|
|
|
<div>
|
|
|
<div class="list-group card-group flex-c-c" v-for="(item, index) in hotListState.list" :key="index"
|
|
|
- @click="goContent(item)">
|
|
|
+ @click="goContent(item)" v-bound-phone="bindPhoneGoContent(item)">
|
|
|
<van-skeleton avatar avatar-shape="square" class="van-loading-skeleton card-style" :row="4"
|
|
|
:row-width="rowWidth" :loading="showLoading">
|
|
|
<div class="card-item flex-r-c">
|
|
@@ -339,6 +339,17 @@ export default class extends Vue {
|
|
|
openScreen () {
|
|
|
(this.$refs.screenPopup as any).show = true
|
|
|
}
|
|
|
+
|
|
|
+ bindPhoneGoContent (item: any) {
|
|
|
+ return {
|
|
|
+ props: {
|
|
|
+ name: ''
|
|
|
+ },
|
|
|
+ next: () => {
|
|
|
+ this.goContent(item)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
<style scoped lang="scss">
|