@ -91,7 +91,7 @@
"path" : "pages/morningMarketAnalysis/morningMarketAnalysis",
"style" :
{
"navigationBarTitleText" : ""
"navigationBarTitleText" : "早盘解析"
}
},
@ -1,6 +1,13 @@
<template>
<view>
早盘解析页面
<view class="container">
<view class="content">
<image
class="no-data-image"
src="https://d31zlh4on95l9h.cloudfront.net/images/f5a9bd32c81bc7cca47252b51357c12f.png"
mode="aspectFit"
></image>
<text class="no-data-text">暂无数据~</text>
</view>
</template>
@ -18,5 +25,31 @@
</script>
<style>
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
</style>
.content {
flex-direction: column;
.no-data-image {
width: 200px;
height: 200px;
margin-bottom: 20px;
.no-data-text {
font-size: 16px;
color: #999999;
text-align: center;