Browse Source

Merge branch 'songjie/feature-20251023161635-首页' into milestone-20251031-简版功能开发

maziyang/feature-20251025172218-智能客服中台
宋杰 4 weeks ago
parent
commit
68715b32e5
  1. 2
      pages.json
  2. 37
      pages/morningMarketAnalysis/morningMarketAnalysis.vue

2
pages.json

@ -91,7 +91,7 @@
"path" : "pages/morningMarketAnalysis/morningMarketAnalysis", "path" : "pages/morningMarketAnalysis/morningMarketAnalysis",
"style" : "style" :
{ {
"navigationBarTitleText" : ""
"navigationBarTitleText" : "早盘解析"
} }
}, },
{ {

37
pages/morningMarketAnalysis/morningMarketAnalysis.vue

@ -1,6 +1,13 @@
<template> <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>
</view> </view>
</template> </template>
@ -18,5 +25,31 @@
</script> </script>
<style> <style>
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.no-data-image {
width: 200px;
height: 200px;
margin-bottom: 20px;
}
.no-data-text {
font-size: 16px;
color: #999999;
text-align: center;
}
</style> </style>
Loading…
Cancel
Save