This commit is contained in:
2020-07-27 17:32:17 +08:00
parent b2d284f666
commit 2ea9b89acc
4 changed files with 66 additions and 59 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view class="zhibo">
<view class="zhibo" @click="zhibo">
<image class="head" :src="image"></image>
<view class="user">
<view class="name">
@@ -71,6 +71,16 @@ export default {
}
},
props:['name','image']
methods:{
zhibo(){
this.$u.route({
url:"/pageB/zhibo/index",
params:{
url:this.url
}
})
}
},
props:['name','image','url']
}
</script>