Commit 645f20fd by 孙亚楠

d

parent 72c201a6
...@@ -39,9 +39,9 @@ class MerchantCtl extends CtlBase { ...@@ -39,9 +39,9 @@ class MerchantCtl extends CtlBase {
this.doTimeCondition(params, ["createBegin", "createEnd"]); this.doTimeCondition(params, ["createBegin", "createEnd"]);
let list = await this.merchantSve.page(params); let list = await this.merchantSve.page(params);
for (let item of list.data.rows) { for (let item of list.data.rows) {
item.qrcode = encodeURIComponent(this.baseUrl + "?mechtId=" +item.id); item.qrcode = encodeURIComponent(this.baseUrl + "?mechtId=" +system.encryption(item.id));
} }
return system.getResult(list); return list;
} catch (error) { } catch (error) {
return system.getResult(null, `系统错误 错误信息 ${error}`); return system.getResult(null, `系统错误 错误信息 ${error}`);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment