Authored by htoooth

fix

@@ -17,7 +17,9 @@ export default { @@ -17,7 +17,9 @@ export default {
17 }, 17 },
18 methods: { 18 methods: {
19 onClick() { 19 onClick() {
20 - this.$emit('click'); 20 + if (this.code) {
  21 + this.$emit('click');
  22 + }
21 } 23 }
22 }, 24 },
23 computed: { 25 computed: {
@@ -145,6 +145,7 @@ export default { @@ -145,6 +145,7 @@ export default {
145 mask: true, 145 mask: true,
146 time: 1000 146 time: 1000
147 }).show(); 147 }).show();
  148 + this.reachBottom(true);
148 } else { 149 } else {
149 this.$createToast({ 150 this.$createToast({
150 txt: result.message, 151 txt: result.message,