integrated_traffic_uniapp/pages/null/基本结构.vue

52 lines
2.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view>
<cu-custom bgColor="bg-gradual-blueness" :isBack="true" :isRingt="true">
<block slot="backText">返回</block>
<block slot="content">基本信息</block>
<block slot="right">
<view @click="goToEdit"></view>
</block>
</cu-custom>
<scroll-view scroll-y class="dy-scroll-search" style="height:calc(100vh - 194upx)">
<view class="padding">
之前用户和微信翻译玩游戏时就曾发现不少彩蛋比如You are my shadiao friend之前就会被翻译为你是我的好朋友想到沙雕这个词中调笑的意味你似乎也不能说这个翻译是错的而有的语音信息在转文字后也会有表情翻译的信息出现比如太生气了就能召唤出一个[发怒]的表情
</view>
<view class="padding">
之前用户和微信翻译玩游戏时就曾发现不少彩蛋比如You are my shadiao friend之前就会被翻译为你是我的好朋友想到沙雕这个词中调笑的意味你似乎也不能说这个翻译是错的而有的语音信息在转文字后也会有表情翻译的信息出现比如太生气了就能召唤出一个[发怒]的表情
</view>
<view class="padding">
之前用户和微信翻译玩游戏时就曾发现不少彩蛋比如You are my shadiao friend之前就会被翻译为你是我的好朋友想到沙雕这个词中调笑的意味你似乎也不能说这个翻译是错的而有的语音信息在转文字后也会有表情翻译的信息出现比如太生气了就能召唤出一个[发怒]的表情
</view>
<view class="padding">
之前用户和微信翻译玩游戏时就曾发现不少彩蛋比如You are my shadiao friend之前就会被翻译为你是我的好朋友想到沙雕这个词中调笑的意味你似乎也不能说这个翻译是错的而有的语音信息在转文字后也会有表情翻译的信息出现比如太生气了就能召唤出一个[发怒]的表情
</view>
<view class="padding">
之前用户和微信翻译玩游戏时就曾发现不少彩蛋比如You are my shadiao friend之前就会被翻译为你是我的好朋友想到沙雕这个词中调笑的意味你似乎也不能说这个翻译是错的而有的语音信息在转文字后也会有表情翻译的信息出现比如太生气了就能召唤出一个[发怒]的表情
</view>
<view class="cu-tabbar-height"></view>
</scroll-view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
//跳转事件
goToEdit(e) {
uni.navigateTo({
url: '/pages/application/basic-info-manage/basic-information/basic-information-edit'
});
},
}
}
</script>
<style>
</style>