公告栏

2022-11-29 17:58:48 阅读:1 编辑
<template>
    <div style="margin-top:100px;">

       <div class="header-line-app">
           <text  class="header-line-big_title">标题公告栏</text>
           <text class="header-line-app-small_title">小标题</text>
           <text class="header-line-app-more">更多</text>
       </div>
    </div>

</template>
<style scoped>
    .text{
        font-size: 50px;
    }
    .header-line-app{
        display:flex;
        flex-direction:row;
        border-left-style:solid;
        border-left-width:6px;
        border-left-color:red;
        margin:20px;
    }
    .header-line-big_title{
        margin-left:10px;
        font-weight:700;
        font-size:30px;
        border-bottom-style:solid;
        border-bottom-width:6px;
        border-bottom-color:red;
    }
    .header-line-app-small_title{
        margin-left:10px;
    }
    .header-line-app-more{
        margin-left:20px;
    }
</style>
<script>
    import wx from './../../common/wx'
    export default {
        data:function () {
            return {
                new_value:''
            };
        },
        mixins: [require('./../../common/publish').publish],

        mounted:function () {
            //this.new_value = this.GLOBAL;

        },
        created:function () {

        },
        methods:{
            nextPage(){
                wx.navigateTo({
                    url:"/im/lim/login/login",
                })
            },
            modify(){
                // this.new_value = this.$router.imSet();
                /*this.new_value = this.$imCreate({
                    SDKAppID: '',
                    _type: '',
                    _sub_type: '',
                    base_url: 'http://im2.test'
                });*/
                //this.new_value = this.$getValue();
                //this.new_value = this.$router.imSet();
                /*this.$router.open({
                    name: 'live.aozhi.apply.apply',
                    type: 'PUSH'
                })*/
            }
        }

    }

</script>