|
@@ -593,14 +593,14 @@
|
|
|
key: 'stage-pos',
|
|
|
colWidth: true,
|
|
|
}
|
|
|
- const tender = JSON.parse('<%- JSON.stringify(tender) %>');
|
|
|
+ const tender = JSON.parse(unescape('<%- escape(JSON.stringify(tender)) %>'));
|
|
|
const tenderInfo = JSON.parse(unescape('<%- escape(JSON.stringify(ctx.tender.info)) %>'));
|
|
|
const thousandth = <%- ctx.tender.info.display.thousandth %>;
|
|
|
const measureType = JSON.parse('<%- JSON.stringify(measureType) %>');
|
|
|
- const stage = JSON.parse('<%- JSON.stringify(ctx.stage) %>');
|
|
|
+ const stage = JSON.parse(unescape('<%- escape(JSON.stringify(ctx.stage)) %>'));
|
|
|
const imType = JSON.parse('<%- JSON.stringify(imType) %>');
|
|
|
const whiteList = JSON.parse('<%- JSON.stringify(whiteList) %>');
|
|
|
- let attData = JSON.parse('<%- JSON.stringify(attData) %>');
|
|
|
+ let attData = JSON.parse(unescape('<%- escape(JSON.stringify(attData)) %>'));
|
|
|
const ckColSetting = 'stage-col-visible-1.0.3-<%- tender.id %>';
|
|
|
const auditConst = JSON.parse('<%- JSON.stringify(auditConst) %>');
|
|
|
// const cur_uid = parseInt('<%- ctx.session.sessionUser.accountId %>');
|