You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
768 B
48 lines
768 B
<template>
|
|
<view class="goods_con">
|
|
<navigation>
|
|
Product
|
|
</navigation>
|
|
<u-swiper :list="list" height="1000" mode="none"></u-swiper>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import api from '@/utils/api'
|
|
import utils from '@/utils'
|
|
import md5 from 'js-md5'
|
|
import store from '@/store'
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
goods_Detail:[],
|
|
}
|
|
},
|
|
|
|
onLoad(i) {
|
|
const post = api.goodsDetail({
|
|
goodsId:i
|
|
})
|
|
.then(res =>{
|
|
this.goods_Detail=res.data;
|
|
console.log(this.goods_Detail)
|
|
}).catch(err =>{
|
|
console.log(err)
|
|
})
|
|
},
|
|
|
|
onReady() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|