task#15348,新人培训布局调整,必读字号减小

This commit is contained in:
2024-09-26 17:42:15 +08:00
parent 3919bf6934
commit 75e014562f
2 changed files with 3 additions and 31 deletions

View File

@ -124,5 +124,6 @@ export default {
border-radius: 5px;
border: 1px solid red;
color: red;
font-size: 8px;
}
</style>

View File

@ -11,8 +11,8 @@
<van-pull-refresh v-model="isLoading" @refresh="onRefresh" style="min-height:85vh">
<div class="itemWrap" v-for="(item,index) in pageList" :key="index" @click="goH5Detail(item)">
<div class="info flexBetween common">
<div class="title">{{ item.pushUser }}</div>
<div class="time">{{ item.pushTime }}</div>
<div class="title">{{ item.name }}</div>
<div class="time">{{ item.updateTime }}</div>
</div>
<div class="imgWrap"><img :src="item.themePicture"></div>
<div class="num common">{{ item.synopsis }}</div>
@ -38,7 +38,6 @@
<div class="nextBtn" @click="showPoup = false">确定</div>
</div>
</div>
</div>
</div>
<div class="poupCommon" v-if="isFinished">
@ -51,17 +50,14 @@
<div class="nextBtn" @click="goApp">前往</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
// import { Dialog } from 'vant';
import {myMixins} from "@/utils/myMixins"
import {pageList} from "@/api/mine"
export default {
name: "newTrainingList",
computed: {
@ -78,8 +74,6 @@ export default {
isLoading:false,
showPoup:true,//进入弹框
isFinished:false,
// showPoup:false,//进入弹框
// isFinished:true,
}
},
mounted() {
@ -116,7 +110,6 @@ export default {
if(aaa){
this.showPoup=false
this.isFinished=true
// await this.allProcessed()
}
if(res.data.length === 0){
this.showEmpty = true
@ -139,28 +132,6 @@ export default {
window.android.sendMessage("goBack");
}
},
/*allProcessed(){
Dialog.confirm({
title: '提示',
message: '恭喜您您已经全部完成培训现在您可以正常使用我们的app请前往体验。',
confirmButtonText: '前往',
cancelButtonText: '稍后'
})
.then(() => {
let data = {"action":"goBack","params":""}
var u = navigator.userAgent;
var isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/);
if(isiOS){
window.webkit.messageHandlers.nativeObject.postMessage(data);
}else {
window.android.sendMessage("goBack");
}
})
.catch(() => {
// on cancel
});
console.log("全部处理")
},*/
}
}
</script>