|
|
@@ -32,16 +32,17 @@ |
|
|
|
<div class="title"> |
|
|
|
<i class="icon_box" v-if="item.firstSigning == null"></i> |
|
|
|
<i class="icon_box1" v-if="item.firstSigning != null"></i> |
|
|
|
<p class="news_title" :style="{'color': item.firstSigning != null ? '#2bc30c' : '#eb1616'}">{{item.cbhtbm}}</p> |
|
|
|
<p class="news_title">{{item.cbhtbm}}</p> |
|
|
|
<p class="tips_mark" |
|
|
|
:style="{'color': item.firstSigning != null ? '#79bc29' : '#f8a83d','background': item.firstSigning != null ? '#e8ffcd' : '#ffedcd'}"> |
|
|
|
{{item.signingMode}}</p> |
|
|
|
<p class="tips_mark2" v-if="item.signingMode === '线上'" :style="{'background': item.firstSigning != null ? '#2bc30c' : '#eb1616'}">{{item.signingStatus}}</p> |
|
|
|
{{item.signingMode}}</p> |
|
|
|
|
|
|
|
<p class="tips_mark2" v-if="item.signingMode === '线上'" :style="{'background': formatDict(item)}">{{item.signingStatus}}</p> |
|
|
|
</div> |
|
|
|
<div class="time"> |
|
|
|
<p style="color:#eb1616;">{{item.cbfmc}}</p> |
|
|
|
<p >{{item.cbfmc}}</p> |
|
|
|
<!-- <p>{{item.cbhtmc}}</p>--> |
|
|
|
<p style="color:#eb1616;font-weight: bold;">{{item.htzmjm.toFixed(2)}} 亩</p> |
|
|
|
<p>{{item.htzmjm.toFixed(2)}} 亩</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@@ -138,6 +139,7 @@ |
|
|
|
htqsShow:false, |
|
|
|
noticeUrl:"", |
|
|
|
fileList: [], |
|
|
|
signingStatusData:[], |
|
|
|
listLength: '0', |
|
|
|
queryParams: { |
|
|
|
pageNum: 1, |
|
|
@@ -169,6 +171,9 @@ |
|
|
|
if (this.$route.query.type == 'code') { |
|
|
|
this.showBtn = false; |
|
|
|
} |
|
|
|
this.houseGetDicts("signing_status").then((res) => { |
|
|
|
this.signingStatusData = res.data; |
|
|
|
}); |
|
|
|
this.height = window.screen.height * 1.28 - 20; |
|
|
|
}, |
|
|
|
methods: { |
|
|
@@ -197,6 +202,16 @@ |
|
|
|
|
|
|
|
}); |
|
|
|
}, |
|
|
|
formatDict(item){ |
|
|
|
console.info(this.signingStatusData); |
|
|
|
let colorval = ""; |
|
|
|
this.signingStatusData.map(function (e){ |
|
|
|
if(item.signingStatus === e.dictLabel){ |
|
|
|
colorval = e.remark; |
|
|
|
} |
|
|
|
}) |
|
|
|
return colorval; |
|
|
|
}, |
|
|
|
goDetail(id) { |
|
|
|
this.$router.push({ |
|
|
|
path: '/sunVillage_info/list_cbht_detail', |
|
|
|