1234567891011121314151617181920212223 |
- <div class="panel-content">
- <% if (is_finish) { %>
- <% include sub_memu_finish.ejs %>
- <% } else { %>
- <% include ./sub_menu.ejs %>
- <% } %>
- <div class="content-wrap">
- <div class="sjs-height-0" style="background-color: #fff">
- <div class="c-body">
- </div>
- </div>
- </div>
- </div>
- <script>
- const tenders = JSON.parse(unescape('<%- escape(JSON.stringify(tenderList)) %>'));
- const categoryType = JSON.parse('<%- JSON.stringify(settingConst.cType) %>');
- const category = JSON.parse(unescape('<%- escape(JSON.stringify(categoryData)) %>'));
- const selfCategoryLevel = '<%- (selfCategoryLevel || '') %>';
- const auditConst = JSON.parse('<%- JSON.stringify(auditConst) %>');
- const uid = '<%- uid %>';
- const pid = '<%- pid %>';
- const uphlname = 'user_' + uid + '_pro_' + pid + '_category_hide_list';
- </script>
|