1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view id="noticePapup">
- <!-- <navbar :config="config" ></navbar> -->
- <view style="width: 100%;height: 88rpx;background-color: #0B844A;"></view>
- 111111111111
- </view>
- </template>
- <script>
- export default{
- data(){
- config: {
- back: true, //false是tolbar页面 是则不写
- title: "发布",
- color: "#fff",
- switchnextstep: true, //切换底部样式
- //背景颜色;参数一:透明度(0-1);参数二:背景颜色(array则为线性渐变,string为单色背景)
- backgroundColor: [1, "#0B844A"],
- // fixed: false,
-
- },
-
- },
- onLoad() {
- // const subNvue=uni.getSubNVueById('noticePapup'); //获取
- // subNvue.show() // 显示
- // subNvue.hide() //隐藏
- },
- methods:{
-
- }
- }
- </script>
- <style>
- </style>
|