|
@@ -139,7 +139,8 @@ const clickSubType = (item) => {
|
|
|
const handleShowAuthData=(e)=>{
|
|
|
if(authData.isBuy){
|
|
|
if(!e.auth_ok){
|
|
|
- const htmlStr=`您暂无该品种权限,若想查看请联系对口销售--${authData.contactInfo.name}:${authData.contactInfo.mobile}`
|
|
|
+ const htmlStr=`<p>您暂无该品种权限,若想查看请联系对口销售</p>
|
|
|
+ <p>${authData.contactInfo.name}:<span style="color:#F3A52F">${authData.contactInfo.mobile}</span></p>`
|
|
|
ElMessageBox({
|
|
|
title:'温馨提醒',
|
|
|
message:htmlStr,
|
|
@@ -290,8 +291,8 @@ onActivated(()=>{
|
|
|
<div class="item-time">{{ formatDate(item.date) }}</div>
|
|
|
<div class="content-list">
|
|
|
<div class="content-item" v-for="citem in item.sub_list" :key="citem.report_id">
|
|
|
- <div class="content-box">
|
|
|
- <div class="all-btn" @click="handleGoReportDetail(citem)">查看全部</div>
|
|
|
+ <div class="content-box" @click="handleGoReportDetail(citem)">
|
|
|
+ <div class="all-btn">查看全部</div>
|
|
|
<div class="c-time">{{ moment(citem.publish_time).format('HH:mm:ss') }}</div>
|
|
|
<div class="c-title">{{ citem.title }}</div>
|
|
|
<div class="desc" v-html="citem.content_sub"></div>
|
|
@@ -335,10 +336,6 @@ onActivated(()=>{
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- 回到顶部 -->
|
|
|
- <el-backtop :bottom="100" visibility-height="500">
|
|
|
- <img src="@/assets/icon-back-top.png" alt="" style="width: 60px;">
|
|
|
- </el-backtop>
|
|
|
</template>
|
|
|
|
|
|
<style lang="scss" scoped>
|