...
|
...
|
@@ -183,7 +183,7 @@ export default { |
|
|
|
|
|
},
|
|
|
payOrder() {
|
|
|
|
|
|
let vm = this;
|
|
|
this.$createOrderPayType({
|
|
|
price: get(this.computeTip, 'earnestMoney', 0),
|
|
|
desc: '保证金',
|
...
|
...
|
@@ -204,7 +204,7 @@ export default { |
|
|
}
|
|
|
}),
|
|
|
onCloseAction() {
|
|
|
// vm.onClose(orderResult.data.orderCode);
|
|
|
vm.onClose(get(this.publishinfo, 'orderCode', ''));
|
|
|
}
|
|
|
}).show();
|
|
|
},
|
...
|
...
|
@@ -216,6 +216,19 @@ export default { |
|
|
type: 'txt',
|
|
|
txt: this.toastMessage
|
|
|
}).show();
|
|
|
},
|
|
|
|
|
|
onClose(orderCode) {
|
|
|
if (orderCode) {
|
|
|
this.$router.replace({
|
|
|
name: 'sellOrderDetail',
|
|
|
params: {
|
|
|
owner: 'sell',
|
|
|
code: orderCode
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|