|
|
@@ -1,7 +1,8 @@
|
|
|
<template>
|
|
|
<div class="container normal-panel">
|
|
|
+ <span style="font-size:12px;color:#3874f6;text-decoration: underline;cursor: pointer;" @click="$router.back()">返回</span>
|
|
|
<el-tag style="margin-left: 15px" size="small" >{{selectProduct.brandname}}</el-tag>
|
|
|
- <div class="product-detail container flex-align-stretch" style="width: 100%">
|
|
|
+ <div class="product-detail container flex-align-stretch" style="width: 100%;flex-wrap:nowrap">
|
|
|
<div>
|
|
|
<el-image style="width:400px;height:400px;margin-right:30px" :src="actImage?actImage.url:''" fit="cover" />
|
|
|
<div class="flex-align-stretch column">
|
|
|
@@ -46,10 +47,10 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="type">
|
|
|
- <div class="content normal-margin">
|
|
|
- <p class="inline-16">更多:</p>
|
|
|
- <el-tag class="inline-16" style="margin-top: 5px;margin-bottom: 5px" @click="typeClick(item)" v-for="(item,index) in detail" :key="index" size="small" :effect="selectProduct.itemno == item.itemno ? 'dark' : 'plain'">
|
|
|
- {{item.model.spec >20?item.spec.substring(0,19)+'...':item.spec}}
|
|
|
+ <div class="content normal-margin" style="max-height:300px;width:850px;overflow-y:scroll;">
|
|
|
+<!-- <p class="inline-16">更多:</p>-->
|
|
|
+ <el-tag class="inline-16" style="margin-top: 5px;margin-bottom: 5px;width: 120px" @click="typeClick(item)" v-for="(item,index) in detail" :key="index" size="small" :effect="selectProduct.itemno == item.itemno ? 'dark' : 'plain'">
|
|
|
+ {{item.spec.length >14?item.spec.substring(0,13)+'...':item.spec}}
|
|
|
</el-tag>
|
|
|
<!-- <span style="color: #4f7bfd;width: 100px" @click="typeClick(item)" v-for="(item,index) in detail" :key="index">
|
|
|
{{item.model}}
|
|
|
@@ -147,6 +148,8 @@ export default {
|
|
|
let res = await this.$api.requested({
|
|
|
"id": "20220926142403",
|
|
|
"content": {
|
|
|
+ "pageNumber": 1,
|
|
|
+ "pageSize": 999,
|
|
|
"sa_itemgroupid": this.$route.query.id
|
|
|
}
|
|
|
})
|
|
|
@@ -277,5 +280,6 @@ export default {
|
|
|
color: #5a73d3;
|
|
|
font-size: 15px;
|
|
|
/*font-weight: bold;*/
|
|
|
+
|
|
|
}
|
|
|
</style>
|