|
|
@@ -2,17 +2,18 @@
|
|
|
<div class="full-height full-width flex flex-col">
|
|
|
<div class="white-bg flex flex-col padding">
|
|
|
<div class="flex flex-align-center tip">
|
|
|
- <el-icon class="ml-20" color="#ECAB56">
|
|
|
+ <el-icon class="ml-20" color="#BC002D">
|
|
|
<WarningFilled/>
|
|
|
</el-icon>
|
|
|
- <span class="ml-5">项目总投资额{{ num }}万元</span>
|
|
|
+ <span class="ml-5">项目总投资额<span
|
|
|
+ class="main-color bold">{{ Number.parseFloat(num).toLocaleString() }}</span>万元</span>
|
|
|
</div>
|
|
|
<div class="flex ml-20 hide-scrollbar" style="overflow-x: scroll;width: 86vw">
|
|
|
<div v-for="(item,index) in stage" :key='item.id' :class="active === index ? 'total-s' : 'total'"
|
|
|
class="flex flex-col flex-center mt-20 bold font-16 pointer"
|
|
|
@click="switchTab(item,index)">
|
|
|
- <span class="ml-15 sp">{{ item.name }}</span>
|
|
|
- <span class="ml-15 sp1 mt-5">{{ item.projectNumber }}<span class="grey font-14 ml-5">个</span></span>
|
|
|
+ <span class=" sp">{{ item.name }}</span>
|
|
|
+ <span class=" sp1 mt-5">{{ item.projectNumber }}<span class="grey font-14 ml-5">个</span></span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<base-button v-if='permissions.permissions.projectAdd' class="ml-20 mt-20" icon="Plus" title="新增"
|
|
|
@@ -277,10 +278,13 @@ export default {
|
|
|
query: { id: this.form.id, type: '0' }
|
|
|
})
|
|
|
} else if (type === 'edit') {
|
|
|
- this.$router.push({
|
|
|
- path: '/home/details',
|
|
|
- query: { id: this.form.id, type: '1' }
|
|
|
+ this.$alert('功能建设中,尽情期待...', '消息提醒', {
|
|
|
+ confirmButtonText: 'OK'
|
|
|
})
|
|
|
+ // this.$router.push({
|
|
|
+ // path: '/home/details',
|
|
|
+ // query: { id: this.form.id, type: '1' }
|
|
|
+ // })
|
|
|
}
|
|
|
},
|
|
|
currentChange (currentPage) {
|
|
|
@@ -351,7 +355,6 @@ export default {
|
|
|
width: 260px;
|
|
|
height: 38px;
|
|
|
background-color: #FBF6ED;
|
|
|
- color: #ECAB56;
|
|
|
font-weight: 500;
|
|
|
flex-wrap: nowrap;
|
|
|
margin-left: 20px;
|