mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 20:56:45 +08:00
增加业绩快报中介险种明细接口, 修改详情页面渲染取值
This commit is contained in:
@@ -38,7 +38,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { List, Tab, Tabs, Tag, Row, Col, Dialog, Sticky } from 'vant'
|
import { List, Tab, Tabs, Tag, Row, Col, Dialog, Sticky } from 'vant'
|
||||||
import { reportList } from '@/api/ebiz/report/report'
|
import { reportList } from '@/api/ebiz/report/report'
|
||||||
@@ -92,11 +91,11 @@ export default {
|
|||||||
if (item.sellTypeName == null) {
|
if (item.sellTypeName == null) {
|
||||||
item.sellTypeName = '其他'
|
item.sellTypeName = '其他'
|
||||||
}
|
}
|
||||||
if (localStorage.name) {
|
// if (localStorage.name) {
|
||||||
if (item.manageComName == null) {
|
// if (item.manageComName == null) {
|
||||||
item.manageComName = '其他'
|
// item.manageComName = '其他'
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
})
|
})
|
||||||
// 筛选按钮的点击事件
|
// 筛选按钮的点击事件
|
||||||
document.title = this.title + '渠道'
|
document.title = this.title + '渠道'
|
||||||
@@ -144,7 +143,6 @@ export default {
|
|||||||
.fixed-l {
|
.fixed-l {
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
width: 100px;
|
width: 100px;
|
||||||
|
|
||||||
}
|
}
|
||||||
.fixed-l th:nth-child(1),
|
.fixed-l th:nth-child(1),
|
||||||
.fixed-l th:nth-child(2),
|
.fixed-l th:nth-child(2),
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
<van-button class="bottom0 left0" type="danger" @click="goDetail('1')" v-no-more-click="1000" size="large">银行明细</van-button>
|
<van-button class="bottom0 left0" type="danger" @click="goDetail('1')" v-no-more-click="1000" size="large">银行明细</van-button>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-content-s bottom-btn bg-white" v-show="this.active == '1'">
|
<div class="flex justify-content-s bottom-btn bg-white" v-show="this.active == '1'">
|
||||||
<van-button class="bottom0 left0" type="danger" size="large" v-no-more-click="1000">险种明细</van-button>
|
<van-button class="bottom0 left0" type="danger" size="large" @click="goDetail('2')" v-no-more-click="1000">险种明细</van-button>
|
||||||
<van-button class="bottom0 left0" type="danger" @click="goDetail('1')" v-no-more-click="1000" size="large">机构明细</van-button>
|
<van-button class="bottom0 left0" type="danger" @click="goDetail('1')" v-no-more-click="1000" size="large">机构明细</van-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -106,10 +106,10 @@ export default {
|
|||||||
console.log(res)
|
console.log(res)
|
||||||
this.reportList = res.content
|
this.reportList = res.content
|
||||||
this.list = res.content[this.active]
|
this.list = res.content[this.active]
|
||||||
if (this.list.insertDate == null && this.list.insertTime == null) {
|
if (this.list.insertTime == null) {
|
||||||
this.time = '--'
|
this.time = '--'
|
||||||
} else {
|
} else {
|
||||||
this.time = this.list.insertDate + ' ' + this.list.insertTime
|
this.time = this.list.insertTime
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$toast(res.resultMessage)
|
this.$toast(res.resultMessage)
|
||||||
@@ -126,10 +126,10 @@ export default {
|
|||||||
this.title = title
|
this.title = title
|
||||||
}
|
}
|
||||||
this.list = this.reportList[this.active]
|
this.list = this.reportList[this.active]
|
||||||
if (this.list.insertDate == null && this.list.insertTime == null) {
|
if (this.list.insertTime == null) {
|
||||||
this.time = '--'
|
this.time = '--'
|
||||||
} else {
|
} else {
|
||||||
this.time = this.list.insertDate + ' ' + this.list.insertTime
|
this.time = this.list.insertTime
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
goDetail(val) {
|
goDetail(val) {
|
||||||
|
|||||||
Reference in New Issue
Block a user