details.vue 623 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="details">
  3. <view class="detop">
  4. </view>
  5. </view>
  6. </template>
  7. <script>
  8. import config from '@/config'
  9. const baseUrl = config.baseUrl
  10. import {uploadmore} from '@/utils/common.js'
  11. import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
  12. export default{
  13. components:{},
  14. data(){
  15. return{
  16. titimg:require('@/work/static/images/infotit.png'),
  17. }
  18. },
  19. methods:{
  20. checkPermi, checkRole,
  21. getNextFn(){
  22. this.$tab.navigateTo("/work/pages/business/add")
  23. },
  24. }
  25. }
  26. </script>
  27. <style lang="scss" scoped>
  28. .detop{
  29. background-color: #ffffff;
  30. }
  31. </style>