Commit 3193acc6 authored by 786817560's avatar 786817560

Merge branch 'ren' into develop

parents 04495ad9 a1a622c6
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2019-09-29 10:02:11 * @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-10-24 18:52:15 * @LastEditTime: 2019-10-25 09:05:39
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
--> -->
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
<p class="full-name normal">{{ item.bp_name }}</p> <p class="full-name normal">{{ item.bp_name }}</p>
</div> </div>
<div class="option"> <div class="option">
<p class="name">合同租金</p> <p class="name">合同金额</p>
<p class="normal money">{{ item.total_price | currency }}</p> <p class="normal money">{{ item.total_price | currency }}</p>
<img src="@/assets/distributorSign/goDetails.png" alt=""> <img src="@/assets/distributorSign/goDetails.png" alt="">
</div> </div>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Description: 合同详情 * @Description: 合同详情
* @Author: your name * @Author: your name
* @Date: 2019-09-25 15:38:21 * @Date: 2019-09-25 15:38:21
* @LastEditTime: 2019-10-24 15:53:19 * @LastEditTime: 2019-10-25 10:00:25
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
--> -->
<template> <template>
...@@ -197,12 +197,13 @@ ...@@ -197,12 +197,13 @@
</list-item> </list-item>
</h-content> </h-content>
<bottom-tab v-if="confirm_status!=='APPROVED'&& (this.$route.params.hasButtom || hasButtomStorage)" class="footer-button"> <bottom-tab v-if="confirm_status!=='APPROVED'&& (this.$route.params.hasButtom || hasButtomStorage)" class="footer-button">
<tab-button class="approve" @click.native="showModalValue=true"> <!-- <tab-button class="approve" @click.native="showModalValue=true"> -->
<!-- <img src="@/assets/intoApproval/approve.png" > --> <!-- <img src="@/assets/intoApproval/approve.png" > -->
<tab-button class="approve" @click.native="contractConfirm">
确认签约 确认签约
</tab-button> </tab-button>
</bottom-tab> </bottom-tab>
<h-modal <!-- <h-modal
v-if="confirm_status!=='APPROVED'&& (this.$route.params.hasButtom || hasButtomStorage)" ref="modal" v-model="showModalValue" position="bottom"> v-if="confirm_status!=='APPROVED'&& (this.$route.params.hasButtom || hasButtomStorage)" ref="modal" v-model="showModalValue" position="bottom">
<h-view> <h-view>
<h-content class="approveContent"> <h-content class="approveContent">
...@@ -223,7 +224,7 @@ ...@@ -223,7 +224,7 @@
</tab-button> </tab-button>
</bottom-tab> </bottom-tab>
</h-view> </h-view>
</h-modal> </h-modal> -->
</h-view> </h-view>
</template> </template>
...@@ -306,20 +307,40 @@ export default { ...@@ -306,20 +307,40 @@ export default {
}, },
methods: methods:
{ {
// topsh () { // 签约确认
// console.log('tops') contractConfirm () {
// // confirm('tops') this.hlsPopup.showConfirm({
// this.hlsPopup.showConfirm({ title: '提示',
// title: '提示', content: '您确认签约吗?',
// content: '您确认吗?', onConfirm: (data) => {
// onConfirm: (data) => { console.log(data)
// console.log(data) if (data) {
// if (data) { let vm = this
let url = process.env.basePath + 'do_confrim_bp'
let param = {
'master': {
confirm_id: vm.$route.params.confirm_id,
confirm_status: status,
confirm_note: vm.confirm_note,
},
}
vm.hlsPopup.showLoading('提交数据中!')
vm.hlsHttp.post(url, param).then(function (res) {
vm.hlsPopup.hideLoading()
if (res.result === 'S') {
vm.hlsPopup.showSuccess('签约成功')
vm.$router.push({
name: 'ContractList',
})
} else {
vm.hlsPopup.showSuccess(res.message)
}
})
}
},
// } })
// }, },
// })
// },
// 基本信息 // 基本信息
getBseMsg () { getBseMsg () {
let vm = this let vm = this
...@@ -632,7 +653,7 @@ export default { ...@@ -632,7 +653,7 @@ export default {
font-family: PingFangSC-Semibold; font-family: PingFangSC-Semibold;
font-size: 15px; font-size: 15px;
line-height: 20px; line-height: 20px;
letter-spacing: 10px; //letter-spacing: 10px;
img { img {
width: 16.8px; width: 16.8px;
height: 16.8px; height: 16.8px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment