|
@@ -138,6 +138,7 @@ export default class signResult extends Component {
|
138
|
138
|
|
139
|
139
|
render() {
|
140
|
140
|
const { status } = this.$router.params
|
|
141
|
+ const { result = {} } = this.state
|
141
|
142
|
const failInfo = { title: '合同签署失败', desc: '签署失败描述' }
|
142
|
143
|
const showIcon = status == 1 ? require('../../assets/success2.png') : require('../../assets/fail2.png')
|
143
|
144
|
const showTitle = status == 1 ? '恭喜已成功签署合同' : failInfo.title
|
|
@@ -150,7 +151,7 @@ export default class signResult extends Component {
|
150
|
151
|
{
|
151
|
152
|
status != 1 && (
|
152
|
153
|
<Block>
|
153
|
|
- <View className="tip" style="margin-top:10rpx">{(failInfo || {}).desc}</View>
|
|
154
|
+ <View className="tip" style="margin-top:10rpx">{result.reason || ''}</View>
|
154
|
155
|
<View className="tip" style="margin-top:10rpx">请到认筹单中尝试重新签署合同</View>
|
155
|
156
|
<View className="tip" style="margin-top:10rpx">或联系您的专属置业顾问</View>
|
156
|
157
|
</Block>
|