|
@@ -55,7 +55,7 @@
|
|
|
<p>服务范围:</p>
|
|
|
<p class="moreScope" v-if="scope != ''">{{ detailInfo.scope || '暂无' }}</p>
|
|
|
<p class="moreScope1" v-else>{{ detailInfo.scope || '暂无' }}</p>
|
|
|
- <el-button size="mini" v-if="detailInfo.scope != null">
|
|
|
+ <el-button size="mini" v-if="detailInfo.scope != null && detailInfo.scope.length > 300">
|
|
|
<span v-if="scope != ''" @click="scopeMore()">更多</span>
|
|
|
<span v-else @click="scopeMore1()">收起</span>
|
|
|
</el-button>
|
|
@@ -64,7 +64,7 @@
|
|
|
<p>产品简介:</p>
|
|
|
<p class="introduction" v-if="introduction != ''">{{ detailInfo.introduction || '暂无' }}</p>
|
|
|
<p class="introduction1" v-else>{{ detailInfo.introduction || '暂无' }}</p>
|
|
|
- <el-button size="mini" v-if="detailInfo.introduction != null">
|
|
|
+ <el-button size="mini" v-if="detailInfo.introduction != null && detailInfo.introduction.length > 300">
|
|
|
<span v-if="introduction != ''" @click="introductionMore()">更多</span>
|
|
|
<span v-else @click="introductionMore1()">收起</span>
|
|
|
</el-button>
|