1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="page">
- <view class="header">
- <view class="left">
- <image class="img" mode="widthFix" src="../../static/article/name.png"></image>
- </view>
- </view>
- <view class="no-content">
- <image class="icon" mode="widthFix" src="../../static/home/no.png"></image>
- <text>暂无数据</text>
- </view>
- <!-- 提示框 -->
- <DialogBox ref="DialogBox"></DialogBox>
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
- title: '',
- }
- },
- onLoad() {
- setTimeout(function() {
- uni.setNavigationBarColor({
- frontColor: '#ffffff',
- backgroundColor: '#00000000',
- animation: {
- duration: 400,
- timingFunc: 'easeIn'
- }
- })
- }, 200);
- },
- onShow() {},
- methods: {
- onBack() {},
- }
- }
- </script>
- <style scoped lang="scss">
- @import 'article.scss';
- </style>
|