Browse Source

订单选择修改tabindex的处理

release/3.1.0-小区合伙人
xpz2018 6 years ago
parent
commit
cd4c1420cd
1 changed files with 5 additions and 7 deletions
  1. 12
      src/view/order-list.vue

12
src/view/order-list.vue

@ -20,7 +20,7 @@ import orderApi from "../models/order-model.js";
export default {
data() {
return {
active: "",
active: this.$route.query.active ? parseInt(this.$route.query.active) : '',
list: []
};
},
@ -49,10 +49,10 @@ export default {
this.wechat(this.list[0].merchantNo);
}
} else if (res.code == 666) {
this.$vux.toast.text("您还没登录,请先登录!", "middle");
setTimeout(function() {
window.location.href = "/mall/web/user/login";
}, 2000);
// this.$vux.toast.text("!", "middle");
// setTimeout(function() {
// window.location.href = "/mall/web/user/login";
// }, 2000);
} else {
if (
res.msg == "" ||
@ -83,8 +83,6 @@ export default {
};
</script>
<style lang="scss" scoped>
.order-list-whole {
}
.state-bar {
width: 100%;
height: 0.8rem;

Loading…
Cancel
Save