|
|
|
@ -157,8 +157,8 @@
|
|
|
|
|
<view class="video-title"> |
|
|
|
|
<image class="img" mode="heightFix" :src="staticImage.petPhotoTitle"/> |
|
|
|
|
</view> |
|
|
|
|
<view class="video-content row" v-for="(item, index) in pet.images" wx:key="index"> |
|
|
|
|
<view class="photo-item col-4"> |
|
|
|
|
<view class="video-content row" > |
|
|
|
|
<view class="photo-item col-4" v-for="(item, index) in pet.images" > |
|
|
|
|
<view class="photo-item-container"> |
|
|
|
|
<view class="photo-content"> |
|
|
|
|
<image class="img" mode="widthFix" :src="item ? item : staticImage.wallpaperBgImage"/> |
|
|
|
@ -208,8 +208,9 @@
|
|
|
|
|
import RightNav from '@/components/RightNav/Index.vue'; |
|
|
|
|
import MzButton from '@/components/MzButton/Index.vue'; |
|
|
|
|
import api from '@/utils/functions.js'; |
|
|
|
|
import {getDetail} from "@/api/pet"; |
|
|
|
|
import {delPet, getDetail} from "@/api/pet"; |
|
|
|
|
import log from "@/utils/log"; |
|
|
|
|
import functions from "@/utils/functions.js"; |
|
|
|
|
export default { |
|
|
|
|
components: { |
|
|
|
|
HeaderNav, |
|
|
|
@ -275,7 +276,11 @@
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
delPet(){ |
|
|
|
|
|
|
|
|
|
functions.confirm("确认删除该宠物吗?").then(() => { |
|
|
|
|
delPet(this.id).then((res) => { |
|
|
|
|
functions.success('删除成功').then(() => uni.navigateBack()) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
navTo(url){ |
|
|
|
|
uni.navigateTo({ |
|
|
|
|