123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="details">
- <view class="detop">
- <view class="head">
- <view class="top">
- <view class="toptit">安徽嘉欣医疗用品有限公司</view>
- <view class="statbox">专精特新<image :src="start"></image></view>
- </view>
- <view class="adr">企业地址 | 潜山市经济开发区</view>
- </view>
- </view>
- <!-- 文件列表 -->
- <view class="main">
- <bus-list :datalist="list" :wtdt="wtdt" :type="type" @getDetail="getDetail"></bus-list>
- </view>
- </view>
- </template>
- <script>
- import config from '@/config'
- const baseUrl = config.baseUrl
- import busList from "@/work/components/business/list.vue"
- import {uploadmore} from '@/utils/common.js'
- import { checkPermi, checkRole } from "@/utils/permission"; // 权限判断函数
- export default{
- components:{busList},
- data(){
- return{
- start:require('@/work/static/images/start.png'),
- titimg:require('@/work/static/images/infotit.png'),
- list:[{tit:'123'},{tit:'123'}],
- wtdt:'',
- type:'filedet'
- }
- },
- methods:{
- checkPermi, checkRole,
- getDetail(){
- this.$tab.navigateTo("/work/pages/file/wjdetails")
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .detop{background: #FFFFFF;padding:0rpx 24rpx;margin-bottom: 28rpx;flex: 0 0 auto;
- position: relative;
- .head{
- padding: 40rpx 2rpx;
- .top{display: flex;align-items: center;overflow: hidden;
- .toptit{font-weight: bold;font-size: 40rpx;color: #222327;}
- .statbox{min-width: 140rpx;height: 36rpx;background-color: rgba(255,177,50,0.3);padding: 0 14rpx;box-sizing: border-box;font-weight: bold;font-size: 22rpx;color: #FF6924;display: flex;align-items: center;flex: 0 0 auto;border-radius: 10rpx;margin-left: 34rpx;
- image{width: 22rpx;height: 22rpx;margin-left: 6rpx;}
- }
- }
- .adr{font-weight: 500;font-size: 26rpx;color: #666666;margin-top: 12rpx;}
- }
- }
- .main{background-color: #FFFFFF;flex: 1;display: flex;flex-direction: column;overflow: hidden;
-
- }
- </style>
|