@ -361,6 +361,13 @@
"navigationStyle": "custom"
}
},
{
"path" : "pages/notFoundBriefing/notFoundBriefing",
"style" :
"navigationBarTitleText" : "机构动向简报"
],
@ -0,0 +1,55 @@
<template>
<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>
<script>
export default {
data() {
return {
methods: {
</script>
<style>
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
.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;
</style>