|
|
@@ -1,21 +1,19 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
- <div class="white-bg top full-height hide-scrollbar" style='overflow-y: auto;'>
|
|
|
- <el-affix :offset='60.1'>
|
|
|
- <div class="flex flex-col flex-center padding">
|
|
|
- <span class='font-16 bold mb-10'>{{ data.name }}</span>
|
|
|
- <span class="font-16 bold mt-5" style="color:#787C90;">项目总投资额</span>
|
|
|
- <span class="mt-5 font-16 bold main-color">{{
|
|
|
- data.totalAmount ? data.totalAmount.toLocaleString() : '-'
|
|
|
- }}万元</span>
|
|
|
- <main-button :width="200" type="0" @click="proInfo"/>
|
|
|
- <el-divider></el-divider>
|
|
|
- <span class="title">项目阶段-文件管理</span>
|
|
|
- </div>
|
|
|
- </el-affix>
|
|
|
- <div style='margin-top: 80px;margin-left: 30px'>
|
|
|
+ <div class="white-bg top full-height flex flex-col flex-align-start hide-scrollbar" style='overflow-y: auto;'>
|
|
|
+ <div class="flex flex-col flex-center padding">
|
|
|
+ <span class='font-16 bold mb-10'>{{ data.name }}</span>
|
|
|
+ <span class="font-16 bold mt-5" style="color:#787C90;">项目总投资额</span>
|
|
|
+ <span class="mt-5 font-16 bold main-color">{{
|
|
|
+ data.totalAmount ? data.totalAmount.toLocaleString() : '-'
|
|
|
+ }}万元</span>
|
|
|
+ <main-button :width="200" type="0" @click="proInfo"/>
|
|
|
+ <el-divider></el-divider>
|
|
|
+ <span class="title">项目阶段-文件管理</span>
|
|
|
+ </div>
|
|
|
+ <div style='margin-left: 30px'>
|
|
|
<el-empty v-if='stage && stage.length === 0 '></el-empty>
|
|
|
- <basic-step v-else style='margin-top: 80px' :active="active" :steps='stage'/>
|
|
|
+ <basic-step v-else style='margin-top: 20px' :active="active" :steps='stage'/>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -51,10 +49,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
- setTimeout(() => {
|
|
|
- this.height = window.getComputedStyle(this.$refs.middle).height
|
|
|
- console.log(this.height)
|
|
|
- }, 200)
|
|
|
},
|
|
|
methods: {
|
|
|
proInfo () {
|