| | |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="row"> |
| | | <div class="col-sm-6"> |
| | | <div class="form-group"> |
| | | <label class="col-sm-4 control-label ">隐患排查方法:</label> |
| | | <div class="col-sm-8"> |
| | | <input th:value="*{remark}" class="form-control" type="text" readonly="readonly"> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="row"> |
| | | <div class="col-sm-6"> |
| | |
| | | </div> |
| | | </div> |
| | | <div class="form-group showByDangerLevelChange"> |
| | | <label class="col-sm-3 control-label">防范措施:</label> |
| | | <div class="col-sm-8"> |
| | | <textarea name="rectifyAttachment" maxlength="500" class="form-control" rows="3"></textarea> |
| | | </div> |
| | | </div> |
| | | <div class="form-group showByDangerLevelChange"> |
| | | <label class="col-sm-3 control-label is-required">隐患整改责任部门:</label> |
| | | <div class="col-sm-8"> |
| | | <div class="input-group"> |
| | |
| | | var ids = imgsUrl.attr('data-id') |
| | | var imageContainer = document.querySelector('.image-container'); |
| | | |
| | | // 将逗号分隔的字符串拆分为URL数组 |
| | | var imageUrlArray = imageUrls.split(','); |
| | | if(imageUrls && imageUrls !== '') { |
| | | // 将逗号分隔的字符串拆分为URL数组 |
| | | var imageUrlArray = imageUrls.split(','); |
| | | |
| | | // 遍历URL数组并创建img元素 |
| | | imageUrlArray.forEach(function(url, index) { |
| | | var img = document.createElement('img'); |
| | | img.setAttribute('src', url); |
| | | img.setAttribute('style', 'width: 100px; height: 100px; cursor: pointer;margin-right: 10px'); |
| | | img.setAttribute('title', '查看图片'); |
| | | img.setAttribute('data-id', ids); |
| | | img.addEventListener('click', function() { |
| | | // showPicture(this.getAttribute('data-id'), 'preRectifyPhoto'); |
| | | openPicture(url) |
| | | // 遍历URL数组并创建img元素 |
| | | imageUrlArray.forEach(function (url, index) { |
| | | var img = document.createElement('img'); |
| | | img.setAttribute('src', url); |
| | | img.setAttribute('style', 'width: 100px; height: 100px; cursor: pointer;margin-right: 10px'); |
| | | img.setAttribute('title', '查看图片'); |
| | | img.setAttribute('data-id', ids); |
| | | img.addEventListener('click', function () { |
| | | // showPicture(this.getAttribute('data-id'), 'preRectifyPhoto'); |
| | | openPicture(url) |
| | | }); |
| | | imageContainer.appendChild(img); |
| | | }); |
| | | imageContainer.appendChild(img); |
| | | }); |
| | | } |
| | | }); |
| | | |
| | | function openPicture(url) { |