| | |
| | | |
| | | <!-- 下部分 - 内容区域 --> |
| | | <div |
| | | class="content flex-1 px-[16px] py-[14px] overflow-y-auto" |
| | | class="content flex-1 px-[16px] py-[14px] overflow-y-hidden" |
| | | :style="{ |
| | | backgroundImage: `url(${backgroundImage})`, |
| | | backgroundRepeat: 'no-repeat', |
| | |
| | | backgroundSize: '100% 100%' |
| | | }" |
| | | > |
| | | <div class="text-white text-[14px] ml-[40px] leading-[35px]">项目名称:{{projectInfo.OrganizeName}}</div> |
| | | <div class="text-white text-[14px] ml-[40px] leading-[35px]">项目名称:{{projectInfo.ProjectName}}</div> |
| | | </div> |
| | | |
| | | <div class="text-white text-[14px] tracking-[1px] leading-[24px]"> |
| | |
| | | :src="projectInfo.Thumbnail? projectInfo.Thumbnail : '../assets/images/backgrounds/cover_bg.png'" |
| | | alt="" |
| | | class="w-full mt-[20px]" |
| | | style="height: calc(100% - 120px);" |
| | | style="height: calc(100% - 150px);" |
| | | > |
| | | </div> |
| | | <div class="w-[100%] h-[15%]"> |
| | | <div class="w-[100%] h-[18%]"> |
| | | <!-- 参建单位 --> |
| | | <div |
| | | class="w-full h-[30px] mt-[20px] mb-[10px]" |
| | |
| | | |
| | | <!-- 表格 --> |
| | | <div |
| | | class="w-full min-h-[20vh] px-[8px] py-[10px]" |
| | | class="chartTable w-full h-[300px] px-[8px] py-[10px] overflow-y-auto" |
| | | :style="{ |
| | | backgroundImage: `url(${tableImage})`, |
| | | backgroundRepeat: 'no-repeat', |
| | |
| | | bgImage: new URL('@/assets/images/titles/title_second.png', import.meta.url).href, |
| | | tableImage: new URL('@/assets/images/backgrounds/table_bg.png', import.meta.url).href, |
| | | projectInfo: { |
| | | OrganizeName: '', |
| | | ProjectName: '', |
| | | Description: '', |
| | | Thumbnail: '', |
| | | endDate: '' |
| | |
| | | console.log(result); |
| | | if(result.SafeProductionEndDate && result.SafeProductionEndDate !== 'null') { |
| | | this.projectInfo.endDate = result.SafeProductionEndDate.substring(0, 10) |
| | | this.projectInfo.OrganizeName = result.OrganizeName |
| | | this.$store.commit('common/setProjectEndDate', this.projectInfo.endDate) |
| | | this.projectInfo.ProjectName = result.ProjectName |
| | | this.projectInfo.Description = result.Description |
| | | this.projectInfo.Thumbnail = result.Thumbnail |
| | | } |
| | |
| | | } |
| | | .chart-container{ |
| | | width: 100%; |
| | | height: calc(40% - 180px); |
| | | height: calc(40% - 170px); |
| | | .chartTable{ |
| | | height: calc(100% - 10px); |
| | | } |
| | | } |
| | | </style> |