Authored by 邱骏

update

... ... @@ -241,7 +241,10 @@ export default {
activated() {
this.$nextTick(() => {
const { stage } = this.logisticInfo;
this.stageImgUrl = require(`../../statics/image/order/logistics_progress_${stage}@3x.png`);
if (stage) {
this.stageImgUrl = require(`../../statics/image/order/logistics_progress_${stage}@3x.png`);
}
});
if (this.$refs.copy) {
this.copyBtn = new Clipboard(this.$refs.copy, {
... ...
... ... @@ -47,7 +47,7 @@ module.exports = (req, res, next) => {
// Todo 删除 600032996 调价: 500031170 购买: 600043484
// 入住商家 50000638
// 梅 500031928
// req.user.uid = 500031928;
req.user.uid = 500031928;
res.locals.isLogin = Boolean(req.user.uid); // 用户是否登录
if (_.get(req, 'user.appSessionType') === 'miniapp') {
... ...