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.
SRuml/front/Type.vue

87 lines
4.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div class="main-content">
<div style="display: flex; width: 70%; background-color: white; margin: 30px auto; border-radius: 20px">
<div style="flex: 1; padding: 0 20px">
<div style="font-size: 18px; color: #000000FF; line-height: 80px; border-bottom: #cccccc 1px solid">{{typeData.name}}</div>
<div style="margin: 20px 0">
<el-row :gutter="20">
<el-col :span="6" style="margin-bottom: 20px" v-for="item in goodsData">
<img @click="navTo('/front/detail?id=' + item.id)" :src="item.img" alt="" style="width: 100%; height: 175px; border-radius: 10px; border: #cccccc 1px solid">
<div style="margin-top: 10px; font-weight: 500; font-size: 16px; width: 180px; color: #000000FF; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">{{item.name}}</div>
<div style="margin-top: 5px; font-size: 20px; color: #FF5000FF">¥ {{item.price}} / {{item.unit}}</div>
</el-col>
</el-row>
</div>
</div>
<div style="width: 250px; padding: 0 20px; border-left: #cccccc 1px solid">
<div style="font-size: 18px; color: #000000FF; line-height: 80px; border-bottom: #cccccc 1px solid">猜你喜欢</div>
<div style="margin: 20px 0; padding: 0 10px">
<div style="margin-bottom: 20px">
<img @click="navTo('/front/detail?id=' + item.id)" src="@/assets/imgs/bg.jpg" alt="" style="width: 100%; height: 175px; border-radius: 10px; border: #cccccc 1px solid">
<div style="margin-top: 10px; font-weight: 500; font-size: 16px; width: 180px; color: #000000FF; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">超级大米</div>
<div style="margin-top: 5px; font-size: 20px; color: #FF5000FF">¥ 44 / 件</div>
</div>
<div>
<img @click="navTo('/front/detail?id=' + item.id)" src="@/assets/imgs/bg.jpg" alt="" style="width: 100%; height: 175px; border-radius: 10px; border: #cccccc 1px solid">
<div style="margin-top: 10px; font-weight: 500; font-size: 16px; width: 180px; color: #000000FF; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">超级大米</div>
<div style="margin-top: 5px; font-size: 20px; color: #FF5000FF">¥ 44 / 件</div>
</div>
<div>
<img @click="navTo('/front/detail?id=' + item.id)" src="@/assets/imgs/bg.jpg" alt="" style="width: 100%; height: 175px; border-radius: 10px; border: #cccccc 1px solid">
<div style="margin-top: 10px; font-weight: 500; font-size: 16px; width: 180px; color: #000000FF; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">超级大米</div>
<div style="margin-top: 5px; font-size: 20px; color: #FF5000FF">¥ 44 / 件</div>
</div>
<div>
<img @click="navTo('/front/detail?id=' + item.id)" src="@/assets/imgs/bg.jpg" alt="" style="width: 100%; height: 175px; border-radius: 10px; border: #cccccc 1px solid">
<div style="margin-top: 10px; font-weight: 500; font-size: 16px; width: 180px; color: #000000FF; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;">超级大米</div>
<div style="margin-top: 5px; font-size: 20px; color: #FF5000FF"> 44 / </div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
let typeId = this.$route.query.id
return {
user: JSON.parse(localStorage.getItem('xm-user') || '{}'),
typeId: typeId,
goodsData: [],
typeData: {}
}
},
mounted() {
this.loadGoods()
this.loadType()
},
// methods本页面所有的点击事件或者其他函数定义区
methods: {
loadType() {
this.$request.get('/type/selectById/' + this.typeId).then(res => {
if (res.code === '200') {
this.typeData = res.data
} else {
this.$message.error(res.msg)
}
})
},
loadGoods() {
this.$request.get('/goods/selectByTypeId?id=' + this.typeId).then(res => {
if (res.code === '200') {
this.goodsData = res.data
} else {
this.$message.error(res.msg)
}
})
},
navTo(url) {
location.href = url
}
}
}
</script>