|
|
@@ -84,6 +84,9 @@ export default {
|
|
|
handleClose() {
|
|
|
this.isShow = false;
|
|
|
},
|
|
|
+ init() {
|
|
|
+ this.$emit('getDetail');
|
|
|
+ },
|
|
|
Login() {
|
|
|
if (this.form.price != '') {
|
|
|
this.$http
|
|
|
@@ -99,6 +102,9 @@ export default {
|
|
|
.then(res => {
|
|
|
this.$message.success('寄售成功');
|
|
|
this.isShow = false;
|
|
|
+ setTimeout(() => {
|
|
|
+ this.init();
|
|
|
+ }, 1000);
|
|
|
})
|
|
|
.catch(e => {
|
|
|
if (e) {
|