12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <%@ page contentType="text/html;charset=UTF-8"%>
- <script>
- function saveyj(){
- var opstr = "${taskKey}";
- if(!isEmpty(($('#ryyj').val()))){
- $('#yj').val($('#ryyj').val());
- $('#'+opstr).html($('#ryyj').val());
- guanbiyj();
- }else{
- $.alert({
- title: '提示',
- content: "请填写意见!",
- confirm: function(){
- }
- });
- }
-
- }
- function guanbiyj(){
- $('.theme-popover-mask').fadeOut(100);
- $('.theme-popover').slideUp(0);
- }
-
- $(document).ready(function () {
- });
- </script>
- <div class="theme-popover" id="selectyjdiv" style="width: 345px;">
- <div class="theme-poptit">
- <div class="popTitle">
- <h4>意见框</h4>
- </div>
- <div class="close">
- <a href="###" title="关闭" onclick="guanbiyj()" >×</a>
- </div>
- </div>
-
- <!-- 列表 -->
- <div style="background-color:#f4f4f4;">
- <textarea id="ryyj" rows="8" cols="40">同意</textarea>
- </div>
- <div align="center">
- <a class="btn btn-default btn-sm" href="###" onclick="saveyj()">
- <i class="glyphicon glyphicon-ok-sign"></i>
- 确认</a>
-
- <a class="btn btn-default btn-sm" href="###" onclick="guanbiyj()">
- <i class="glyphicon glyphicon-arrow-left"></i>
- 关闭</a>
- </div>
- </div>
- <div class="theme-popover-mask" id="selectyj2div"></div>
|