商品详情页面 2.0

master
rouchen 2024-03-26 20:22:14 +08:00
parent 49e12e5f3a
commit 75dfd973ba
3 changed files with 113 additions and 45 deletions

View File

@ -80,17 +80,17 @@ export const constantRoutes = [
redirect: 'product-detail', redirect: 'product-detail',
children: [ children: [
{ {
path: 'product-detail', path: 'product-detail/:detailId(\\d+)',
component: () => import('@/views/product/shop/index'), component: () => import('@/views/product/info/detail/index'),
name: 'ShopProduct', name: 'ShopProduct',
meta: {title: '商品详情', icon: 'dashboard', affix: true} meta: {title: '商品详情', icon: 'dashboard', affix: true}
} }
] ]
}, },
{ // {
path: '/gb', // path: '/gb',
component: detail // component: detail
}, // },
{ {
path: '/user', path: '/user',
component: Layout, component: Layout,

View File

@ -92,47 +92,57 @@
:label="value" :key="value" :value="value" border>{{value}}</el-radio> :label="value" :key="value" :value="value" border>{{value}}</el-radio>
</el-form-item> </el-form-item>
<el-form-item label="数量"> <el-form-item label="数量">
<el-input-number v-model="form.num" :min="1" :max="10" label="描述文字"></el-input-number> <el-input-number v-model="form.num" :min="1" :max="10" label="描述文字" ></el-input-number>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" >加入购物车</el-button> <el-button type="primary" >加入购物车</el-button>
<el-button>立即购买</el-button> <el-button>立即购买</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
总价格{{num}}
</el-col> </el-col>
</el-row> </el-row>
<el-row style="margin-top: 50px"> <el-row style="margin-top: 50px">
<el-card class="box-card"> <el-card class="box-card">
<div slot="header" class="clearfix"> <div slot="header" class="clearfix">
<span style="">商品详情</span> <span style="">商品详情</span>
</div>
<el-descriptions title="分组1" :column="1"> <el-descriptions v-for="item in receivedShop.attributeGroupList" :title="attributeGroup.groupName" :column="1" >
<el-descriptions-item label="用户名">kooriookami</el-descriptions-item> <el-descriptions-item v-for="attribute in item.attributeList" :label="attribute.name">
<el-descriptions-item label="手机号">18100000000</el-descriptions-item> {{attributeMap[attribute.id]}}
<el-descriptions-item label="居住地">苏州市</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="联系地址">江苏省苏州市吴中区吴中大道 1188 </el-descriptions-item> </el-descriptions>
</el-descriptions>
<el-descriptions title="其他属性" :column="1">
<el-descriptions-item label="用户名">kooriookami</el-descriptions-item> <el-descriptions v-if=" receivedShop.attributeInfoList.length !==0"
<el-descriptions-item label="手机号">18100000000</el-descriptions-item> title="其他属性" :column="1" >
<el-descriptions-item label="居住地">苏州市</el-descriptions-item> <el-descriptions-item v-for="attributeInfo in receivedShop.attributeInfoList"
<el-descriptions-item label="备注"> :label="attributeInfo.name">
<el-tag size="small">学校</el-tag> {{attributeMap[attributeInfo.id]}}
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item label="联系地址">江苏省苏州市吴中区吴中大道 1188 </el-descriptions-item> </el-descriptions>
</el-descriptions>
<el-descriptions v-if=" receivedShop.attributeInfoList.length !==0"
title="其他属性" :column="1" >
<el-descriptions-item v-for="attributeInfo in receivedShop.attributeInfoList"
:label="attributeInfo.name">
{{attributeMap[attributeInfo.id]}}
</el-descriptions-item>
</el-descriptions>
<editor v-model="editorValue" :read-only="true"></editor> <editor v-model="editorValue" :read-only="true"></editor>
</div>
</el-card> </el-card>
</el-row> </el-row>
</div> </div>
</template> </template>
<script> <script>
import {getInfo} from "@/api/product/info"; import {getDetailInfo} from "@/api/product/info";
export default { export default {
name: "Detailindex", name: "productDetail",
data() { data() {
return { return {
breadcrumbList: [ breadcrumbList: [
@ -149,29 +159,51 @@ export default {
price: 0 price: 0
}, },
shopData: {}, shopData: {},
receivedShop: {}, receivedShop: {
projectInfo: {
name: ""
},
brandInfo: {
nam: ""
},
attributeInfoList: []
},
num: 1,
editorValue: "阿萨德刚", editorValue: "阿萨德刚",
attributeMap: [],
// //
Products: [], Products: [],
checkSkuInfo: { checkSkuInfo: {
price : 0.00 price : 0.00
}, },
price: 0.00,
attributeGroup: [],
deadline2 : Date.now() + 1 * 10000 // 10 * 60/ * 60/ * 1000/ deadline2 : Date.now() + 1 * 10000 // 10 * 60/ * 60/ * 1000/
} }
}, },
created() { created() {
this.parseShopFromRoute(); const detailId=this.$route.params && this.$route.params.detailId
this.initProjectDetailInfo(detailId)
// this.parseShopFromRoute();
// //
const timerId = setTimeout(() => { const timerId = setTimeout(() => {
// hilarity // hilarity
this.hilarity(); this.hilarity();
clearTimeout(timerId); clearTimeout(timerId);
}, this.deadline2 - Date.now()); }, this.deadline2 - Date.now());
},
watch: {
'form.num':{
handler:"updateNum",
immediate:true
}
}, },
methods:{ methods:{
updateNum() {
this.num = this.price * this.form.num
console.log("qqqqq",this.num)
},
hilarity() { hilarity() {
this.$notify({ this.$notify({
title: "提示", title: "提示",
@ -186,6 +218,7 @@ export default {
this.form['rule'+index] = rule this.form['rule'+index] = rule
}) })
this.selectRuleSku() this.selectRuleSku()
}, },
selectRuleSku(){ selectRuleSku(){
let ruleSize =this.receivedShop.ruleAttrAddModelList.length let ruleSize =this.receivedShop.ruleAttrAddModelList.length
@ -199,24 +232,52 @@ export default {
} }
this.checkSkuInfo= this.receivedShop.projectSkuInfoList.find(skuInfo => skuInfo.sku === sku) this.checkSkuInfo= this.receivedShop.projectSkuInfoList.find(skuInfo => skuInfo.sku === sku)
console.log("sdf",this.checkSkuInfo) console.log("sdf",this.checkSkuInfo)
console.log("ppp",this.checkSkuInfo.price)
this.price = this.checkSkuInfo.price
this.updateNum()
}, },
parseShopFromRoute() { initProjectDetailInfo(detailId){
// shop getDetailInfo(detailId).then(response => {
this.receivedShop = this.$route.query.shop; this.receivedShop = response.data
// receivedShopdatadataname console.log("商品",this.receivedShop)
console.log("hhhh ",this.receivedShop); // let ccc = this.receivedShop.projectInfo.carouselImages.split(',')
// this.Products.push(...ccc)
let ccc = this.receivedShop.projectInfo.carouselImages.split(',') this.receivedShop.productAttributeInfoList.map(productAttributeInfo => {
this.Products.push(...ccc) let key =productAttributeInfo.attributeId;
this.attributeMap[key] = productAttributeInfo["value"]
let ruleAttrLength = this.receivedShop.ruleAttrAddModelList.length; })
console.log("hieng",ruleAttrLength)
for (let index = 0 ;index < ruleAttrLength ;index++){
this.form["rule"+index] = null
}
this.initSku()
let ruleAttrLength = this.receivedShop.ruleAttrAddModelList.length;
console.log("hieng",ruleAttrLength)
for (let index = 0 ;index < ruleAttrLength ;index++){
this.form["rule"+index] = null
}
console.log("shjo",this.receivedShop.ruleAttrAddModelList)
this.initSku()
})
}, },
//
// parseShopFromRoute() {
// // shop
// this.receivedShop = this.$route.query.shop;
// // receivedShopdatadataname
// console.log("hhhh ",this.receivedShop); //
// //
// let ccc = this.receivedShop.projectInfo.carouselImages.split(',')
// this.Products.push(...ccc)
// this.receivedShop.productAttributeInfoList.map(productAttributeInfo => {
// let key =productAttributeInfo.attributeId;
// this.attributeMap[key] = productAttributeInfo["value"]
// })
//
// let ruleAttrLength = this.receivedShop.ruleAttrAddModelList.length;
// console.log("hieng",ruleAttrLength)
// for (let index = 0 ;index < ruleAttrLength ;index++){
// this.form["rule"+index] = null
// }
// console.log("shjo",this.receivedShop.ruleAttrAddModelList)
// this.initSku()
// },
}, },
beforeDestroy() { beforeDestroy() {
} }

View File

@ -115,6 +115,9 @@
<el-table-column label="备注" align="center" prop="remark" /> <el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button class="link-type" @click="toProjectDetail(scope.row.id)">
商品詳情
</el-button>
<el-button <el-button
size="mini" size="mini"
type="text" type="text"
@ -564,6 +567,10 @@ export default {
this.getList(); this.getList();
}, },
methods: { methods: {
toProjectDetail(detailId){
let url = `${window.location.origin}/product-detail/${detailId}`;
window.open(url)
},
oneSetting(){ oneSetting(){
this.skuList.forEach(skuInfo => { this.skuList.forEach(skuInfo => {
console.log(skuInfo) console.log(skuInfo)