Commit 64738c21 authored by shilei's avatar shilei

数据更新

parent d419b5a6
<template> <template>
<view> <view>
<div class="media"> <div class="media" :key='cardId'>
<div class="flex"> <div class="flex">
<div class="media-left"> <div class="media-left">
<image :src="img" alt="" class="thumb" mode="aspectFill"></image> <image :src="img" alt="" class="thumb" mode="aspectFill"></image>
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
:title="areaInfo.name || ''" :title="areaInfo.name || ''"
:cardId="areaInfo.id" :cardId="areaInfo.id"
@click="toDetail" @click="toDetail"
:key="areaInfo.id"
> >
<template v-slot:rightMedia> <template v-slot:rightMedia>
<view> <view>
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
:keyWords="keyWords" :keyWords="keyWords"
:cardId="detail.id" :cardId="detail.id"
@click="toDetail" @click="toDetail"
:key='detail.id'
> >
<template v-slot:rightMedia> <template v-slot:rightMedia>
<view> <view>
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
:keyWords="keyWords" :keyWords="keyWords"
:cardId="parkInfo.id" :cardId="parkInfo.id"
@click="toDetail" @click="toDetail"
:key="parkInfo.id"
> >
<template v-slot:rightMedia> <template v-slot:rightMedia>
<view> <view>
......
...@@ -350,8 +350,6 @@ export default { ...@@ -350,8 +350,6 @@ export default {
id: item.id, id: item.id,
latitude: item.latitude, latitude: item.latitude,
longitude: item.longitude, longitude: item.longitude,
width: 25,
height: 36,
callout: { callout: {
content: item.name, content: item.name,
padding: 5, padding: 5,
......
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