|
@@ -15,7 +15,19 @@ const lang=ref(window.location.pathname.startsWith('/ppten')?'en':'zh')
|
|
|
|
|
|
<template>
|
|
|
<div :class="['ppt-item-box ppt-item-page',lang=='en'?'ppt-item-box_en':'']">
|
|
|
- <div class="ppt-title-box">{{pageData.title}}</div>
|
|
|
+ <!-- <div class="ppt-title-box">{{pageData.title}}</div> -->
|
|
|
+ <!-- 自定义标题 -->
|
|
|
+ <div class="custom-title-wrap"
|
|
|
+ :style="pageData.titleDetail?{
|
|
|
+ left:pageData.titleDetail.baseLeft+'px',
|
|
|
+ top:pageData.titleDetail.baseTop+'px',
|
|
|
+ width:pageData.titleDetail.baseWidth+'px',
|
|
|
+ height:pageData.titleDetail.baseHeight+'px',
|
|
|
+ }:{
|
|
|
+ left:'90px',top:'34.65px',width:'612px',height:'44.1px'
|
|
|
+ }">
|
|
|
+ <div class="title" v-html="pageData.title"></div>
|
|
|
+ </div>
|
|
|
<div class="ppt-content-box">
|
|
|
<div class="container">
|
|
|
<div class="item-half-box">
|