Commit 8bff1d85 authored by linxin's avatar linxin

修复

parent 426a2540
......@@ -35,7 +35,7 @@
</div>
</section>
</h-content>
<div class="prompt">
<div v-if="prj_lists.length!==0" class="prompt">
<div><img src="@/assets/payment/prompt.png" alt=""></div>
<div>
<p>温馨提示</p>
......@@ -165,7 +165,7 @@ export default {
},
}
</script>
<style lang='less' >
<style lang='less'>
#contract-record {
.h-header {
background-color: #00469C;
......@@ -336,7 +336,8 @@ export default {
background: rgba(142,195,30,0.10);
height: 111px;
display: flex;
position: fixed;
bottom: 37px;
div:first-child {
flex: 1;
padding: 16px 0 0 16px;
......
......@@ -124,7 +124,6 @@ export default {
}
},
deep: true,
immediate: true,
},
},
......@@ -182,7 +181,8 @@ export default {
this.$router.push({
name: 'PaymentPayEntry',
params: {
money,
sumMoney: this.sumMoney,
money: this.money,
},
})
},
......
......@@ -142,7 +142,7 @@ export default {
this.$router.push({
name: 'PaymentContractRecord',
params: {
money,
money: this.liquidated_damages,
},
})
},
......
......@@ -2,7 +2,7 @@
<h-view id="payment-pay-entry" class="public-style">
<h-header :proportion="[5,1,1]" class="bar-custom">
<div slot="left" class="h-header-btn">
<img src="@/assets/userBind/arrow.png" @click="$routeGo()">
<img src="@/assets/userBind/arrow.png" @click="changePage">
<span>支付中心</span>
</div>
</h-header>
......@@ -69,12 +69,21 @@ export default {
computed: {},
watch: {},
activated () {
this.money = this.$route.params.money
this.money = this.$route.params.sumMoney
},
methods: {
isSelect (way) {
this.select = way
},
changePage () {
this.$router.replace({
name: 'PaymentContractRecord',
params: {
money: this.$route.params.money,
},
})
this.$router.go(-1)
},
},
}
</script>
......
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