noticePapup.nvue 766 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view id="noticePapup">
  3. <!-- <navbar :config="config" ></navbar> -->
  4. <view style="width: 100%;height: 88rpx;background-color: #0B844A;"></view>
  5. 111111111111
  6. </view>
  7. </template>
  8. <script>
  9. export default{
  10. data(){
  11. config: {
  12. back: true, //false是tolbar页面 是则不写
  13. title: "发布",
  14. color: "#fff",
  15. switchnextstep: true, //切换底部样式
  16. //背景颜色;参数一:透明度(0-1);参数二:背景颜色(array则为线性渐变,string为单色背景)
  17. backgroundColor: [1, "#0B844A"],
  18. // fixed: false,
  19. },
  20. },
  21. onLoad() {
  22. // const subNvue=uni.getSubNVueById('noticePapup'); //获取
  23. // subNvue.show() // 显示
  24. // subNvue.hide() //隐藏
  25. },
  26. methods:{
  27. }
  28. }
  29. </script>
  30. <style>
  31. </style>