1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="details">
- <view class="detop">
-
- </view>
-
- </view>
- </template>
- <script>
- import config from '@/config'
- const baseUrl = config.baseUrl
- import {uploadmore} from '@/utils/common.js'
- import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
- export default{
- components:{},
- data(){
- return{
- titimg:require('@/work/static/images/infotit.png'),
- }
- },
- methods:{
- checkPermi, checkRole,
- getNextFn(){
- this.$tab.navigateTo("/work/pages/business/add")
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .detop{
- background-color: #ffffff;
- }
- </style>
|