index.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!-- 权限申请落地页 -->
  2. <template>
  3. <view class="permissionApply">
  4. <img class="img-box" :src="imagesUrl('supplier/img_zc_zccg.png')">
  5. <view class="text-p">未检测到您关联的实验室,如需执行实验室危险废物报备及登记回收,请先申请权限并联系实验室负责人审核。</view>
  6. <view class="button-p" @click="goPage()">立即申请</view>
  7. </view>
  8. </template>
  9. <script>
  10. import {
  11. demo1,
  12. demo2
  13. } from '@/pages_hazardousWasteRecycling/api/index.js'
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. onLoad(option) {
  20. },
  21. onShow() {
  22. },
  23. mounted() {
  24. },
  25. methods: {
  26. goPage(){
  27. uni.navigateTo({
  28. url: "/pages_hazardousWasteRecycling/views/permissionApply/addPage",
  29. });
  30. },
  31. },
  32. }
  33. </script>
  34. <style lang="stylus" scoped>
  35. .permissionApply{
  36. height: 100%;
  37. display flex;
  38. flex-direction column;
  39. background-color: #fff
  40. .img-box{
  41. width:373rpx;
  42. height:191rpx;
  43. margin:200rpx auto;
  44. }
  45. .text-p{
  46. font-size:30rpx;
  47. color:#333;
  48. text-align: center;
  49. margin:0 100rpx;
  50. }
  51. .button-p{
  52. background-color: #0183FA;
  53. color:#fff;
  54. text-align: center;
  55. height:80rpx;
  56. line-height:80rpx;
  57. width:300rpx;
  58. border-radius:10rpx;
  59. margin:80rpx auto;
  60. }
  61. }
  62. </style>