Commit 8bff1d85 authored by linxin's avatar linxin

修复

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