123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <template>
- <view class="info">
- <u-navbar title-color="#fff"
- :custom-back="customBack"
- :border-bottom="false" back-icon-color="#CCE8FF"
- :background="{background: '#008CFF' }" title="消息详情"></u-navbar>
- <view class="content">{{this.content}}</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- content: "",
- };
- },
- onLoad(page) {
- this.content = JSON.parse(page.content);
- console.log(page)
- },
- methods: {
- customBack(){
- this.$u.route({
- type:'switchTab',
- url: 'pages/center/index'
- });
- }
- }
-
- }
- </script>
- <style>
- /* #ifndef H5 */
- page {
- height: 100%;
- background-color: #F6F6FF;
- }
- /* #endif */
- </style>
- <style lang="scss" scoped>
- .info{
- padding: 40rpx 40rpx;
-
- }
- .content{
- padding: 20rpx 40rpx;
- line-height: 44rpx;
- background-color: white;
- border-radius: 15rpx;;
- }
- </style>
|