1234567891011121314151617181920212223 |
- <template>
- <view>
- <u-navbar :is-back="false" title="学习中心" :border-bottom="false" title-color="#333333" back-icon-color="#ffffff">
- <view class="slot-wrap">
- <image src="/static/logo2.png" style="width: 178rpx;height: 31rpx;margin-left: 30rpx;"></image>
- </view>
- </u-navbar>
- <u-line color="#D6D6DB" />
- <view class="content">
- <!-- 正文内容 -->
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- }
- }
- </script>
|