This commit is contained in:
parent
34c38d80db
commit
cdf9298f58
|
@ -56,7 +56,7 @@
|
|||
发布时间
|
||||
<span>{{ item.time }}</span>
|
||||
</p>
|
||||
<div class="look">查看详情</div>
|
||||
<div class="look" @click="lookContent(item.name)">查看详情</div>
|
||||
</div>
|
||||
<div class="contenBox contenBoxImg" v-if="contenBox.length < 3">
|
||||
<img :src="hopeing" alt="" class="hopeingImg" />
|
||||
|
@ -85,6 +85,8 @@
|
|||
// import { pinyin } from 'pinyin-pro'
|
||||
// import { Empty } from 'ant-design-vue'
|
||||
|
||||
const router = useRouter()
|
||||
|
||||
const contenBox = ref([
|
||||
{
|
||||
photo: require('@/assets/assignCase/road.png'),
|
||||
|
@ -180,6 +182,11 @@
|
|||
const moretext = ref('查看更多')
|
||||
const nomore = ref('true')
|
||||
const hidetext = ref('false')
|
||||
|
||||
// 跳转
|
||||
const lookContent = (val) => {
|
||||
router.push({ path: 'AssignCaseDetailPage', query: { val } })
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="less">
|
||||
.box {
|
||||
|
|
Loading…
Reference in New Issue