permission.vue 847 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <view class="permission-box">
  3. <en-nav :title="title" :title-color="'#333'" ></en-nav>
  4. <view class="permission-data">
  5. <image class="permission-img" src="/static/img/temporary/4.png" mode="widthFix"></image>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. import EnNav from "@/components/en-utils/en-nav/en-nav";
  11. export default {
  12. components: {EnNav},
  13. data() {
  14. return {
  15. title:'营业执照'
  16. }
  17. },
  18. onLoad(query) {
  19. if(query.type==='1'){
  20. this.title='营业执照'
  21. }else if(query.type==='1'){
  22. this.title='增值电信业务许可证'
  23. }else {
  24. this.title='网络文化经验许可证'
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style scoped lang="scss">
  32. .permission-box{
  33. padding:32rpx ;
  34. .permission-img{
  35. width: calc(100vw - 64rpx);
  36. border-radius: 6rpx;
  37. }
  38. }
  39. </style>