| | |
| | | <!-- 搜索栏 --> |
| | | <div id="search-box" class="layui-form layui-card-header"> |
| | | <div class="layui-inline" style="margin-left: 10px"> |
| | | <label class="layui-form-label" style="width:80px">显示模式</label> |
| | | <div class="layui-input-inline" style="width:120px;"> |
| | | <label class="layui-form-label" style="width: auto; min-width: 80px;" data-i18n="display_mode">显示模式</label> |
| | | <div class="layui-input-inline" style="width: 150px;"> |
| | | <select id="viewMode" name="viewMode" lay-filter="viewMode"> |
| | | <option value="byRow">按排显示</option> |
| | | <option value="byLayer">按层显示</option> |
| | | <option value="byRow" data-i18n="view_by_row">按排显示</option> |
| | | <option value="byLayer" data-i18n="view_by_layer">按层显示</option> |
| | | </select> |
| | | </div> |
| | | </div> |
| | |
| | | </div> |
| | | |
| | | <div class="layui-inline" style="margin-left: 20px;"> |
| | | <button class="layui-btn layui-btn-normal" id="btnSelectMode">开启框选</button> |
| | | <button class="layui-btn layui-btn-warm" id="btnAssignZone" style="display:none;">分配库区</button> |
| | | <button class="layui-btn layui-btn-normal" id="btnSelectMode" data-i18n="enable_selection">开启框选</button> |
| | | <button class="layui-btn" id="btnAssignZone" style="display:none; margin-left:10px;" data-i18n="assign_zone">分配库区</button> |
| | | </div> |
| | | </div> |
| | | <div id="areaLegend" style="padding: 5px 15px; background: #fff; border-bottom: 1px solid #eee; display:none;"> |
| | |
| | | <script type="text/javascript" src="../../static/js/common.js" charset="utf-8"></script> |
| | | <script type="text/javascript" src="../../static/js/cool.js" charset="utf-8"></script> |
| | | <script type="text/javascript" src="../../static/js/handlebars/handlebars-v4.5.3.js"></script> |
| | | <script type="text/javascript" src="../../static/js/i18n/i18n-helper.js"></script> |
| | | <script type="text/javascript" src="../../static/js/report/locMap.js" charset="utf-8"></script> |
| | | </body> |
| | | <script type="text/template" id="locMastRowTemplate"> |
| | |
| | | <option value="{{this}}">{{this}}</option> |
| | | {{/each}} |
| | | </script> |
| | | <script src="../../static/js/translate.js"></script> |
| | | <script> |
| | | translate.selectLanguageTag.show = false; //不出现的select的选择语言 |
| | | translate.service.use('client.edge'); //设置翻译服务 |
| | | translate.listener.start(); //开启页面元素动态监控,js改变的内容也会被翻译,参考文档: http://translate.zvo.cn/4067.html |
| | | translate.execute(); |
| | | </script> |
| | | |
| | | </html> |
| | | |