27062be39945c3641389a9bc7e5d9586.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php /*a:2:{s:75:"D:\phpstudy_pro\WWW\caiping\app\admin\view\project\contact\add_company.html";i:1723541257;s:59:"D:\phpstudy_pro\WWW\caiping\app\admin\view\common\base.html";i:1723541257;}*/ ?>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta name="360-site-verification" content="a7c876fae8b6e3175a52ea9f19543f51" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=0">
  10. <script src="/static/dist/xm-select.js"></script>
  11. <link rel="mobile-prefetch" href=""/>
  12. <title><?php echo get_system_config('web','admin_title'); ?></title>
  13. <meta name="keywords" content="<?php echo get_system_config('web','keywords'); ?>"/>
  14. <meta name="description" content="<?php echo get_system_config('web','desc'); ?>"/>
  15. <link rel="stylesheet" href="/static/assets/gougu/css/gougu.css?v=<?php echo get_system_config('web','version'); ?>" media="all">
  16. <style>
  17. .footer{
  18. display: none;
  19. }
  20. #fileBox li{
  21. display: flex;
  22. flex-wrap: wrap;
  23. flex-direction: column;
  24. }
  25. .layui-table th{
  26. text-align: center !important;
  27. font-weight: 500;
  28. }
  29. .layui-anim dd{
  30. text-align: left;
  31. }
  32. .layui-th-gray{
  33. background-color: rgb(241, 241, 241);
  34. }
  35. .layui-table th{
  36. border-color: #e2e2e2
  37. }
  38. .fujian p{
  39. margin: 3px 0 5px 0;
  40. width: 11vw;
  41. overflow: hidden;
  42. text-overflow: ellipsis;
  43. text-align: center;
  44. }
  45. .fujian{
  46. width: auto;
  47. overflow: auto;
  48. justify-content:flex-start;
  49. align-content: space-between;
  50. flex-direction: column-reverse;
  51. flex-wrap: wrap;
  52. display: flex;
  53. }
  54. .fujian li{
  55. padding: 0.5vw 0.8vw 0.5vw 0.8vw;
  56. white-space: nowrap;
  57. overflow: hidden;
  58. text-overflow: ellipsis;
  59. /*display: inline-block;*/
  60. border-right: 1px solid #e2e2e2;
  61. float: left;
  62. }
  63. .layui-btn-group{
  64. display: flex;
  65. justify-content: center;
  66. }
  67. </style>
  68. </head>
  69. <body class="main-body">
  70. <!-- 主体 -->
  71. <form class="layui-form p-4">
  72. <h3 class="pb-3">新建联系函</h3>
  73. <table class="layui-table layui-table-form">
  74. <tr>
  75. <th class="layui-th-gray-2" style="background-color: rgb(241, 241, 241);">联系函名称 <font style="color: red !important;">*</font></th>
  76. <th colspan="8">
  77. <input type="text" name="title" lay-verify="required" lay-reqText="请输入联系函名称"
  78. placeholder="请输入联系函名称" class="layui-input" value="">
  79. </th>
  80. </tr>
  81. <tr>
  82. <th class="layui-th-gray" style="vertical-align:top;">联系函内容 <font style="color: red !important;">*</font></th>
  83. <th colspan="8">
  84. <textarea name="content" placeholder="请输入内容" class="layui-textarea" id="container_content"
  85. style="border:0;padding:0"></textarea>
  86. </th>
  87. </tr>
  88. <tr>
  89. <th class="layui-th-gray">一级审核人 <font style="color: red !important;">*</font></th>
  90. <th colspan="2">
  91. <select name="first" lay-verify="required" lay-reqText="请选择审批人">
  92. <option value="">请选择审核人</option>
  93. <?php if(is_array($people) || $people instanceof \think\Collection || $people instanceof \think\Paginator): $i = 0; $__LIST__ = $people;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
  94. <option value="<?php echo htmlentities($vo['id']); ?>"><?php echo htmlentities($vo['nickname']); ?></option>
  95. <?php endforeach; endif; else: echo "" ;endif; ?>
  96. </select>
  97. </th>
  98. <th class="layui-th-gray">二级审核人</th>
  99. <th colspan="2">
  100. <select name="second">
  101. <option value="">请选择审核人,可空</option>
  102. <?php if(is_array($people) || $people instanceof \think\Collection || $people instanceof \think\Paginator): $i = 0; $__LIST__ = $people;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
  103. <option value="<?php echo htmlentities($vo['id']); ?>"><?php echo htmlentities($vo['nickname']); ?></option>
  104. <?php endforeach; endif; else: echo "" ;endif; ?>
  105. </select>
  106. </th>
  107. <th class="layui-th-gray">三级审核人</th>
  108. <th colspan="2">
  109. <select name="third">
  110. <option value="">请选择审核人,可空</option>
  111. <?php if(is_array($people) || $people instanceof \think\Collection || $people instanceof \think\Paginator): $i = 0; $__LIST__ = $people;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$vo): $mod = ($i % 2 );++$i;?>
  112. <option value="<?php echo htmlentities($vo['id']); ?>"><?php echo htmlentities($vo['nickname']); ?></option>
  113. <?php endforeach; endif; else: echo "" ;endif; ?>
  114. </select>
  115. </th>
  116. </tr>
  117. </table>
  118. <div class="pt-3">
  119. <input type="hidden" name="id" value=""/>
  120. <button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>
  121. <button type="reset" class="layui-btn layui-btn-primary">重置</button>
  122. </div>
  123. </form>
  124. <div class="layui-card border-y">
  125. <div class="layui-card-header" style="height:45px;border-color: #e2e2e2">
  126. <div class="layui-row">
  127. <div class="layui-col-md6">
  128. <strong>联系函附件</strong>
  129. </div>
  130. <div class="layui-col-md6" style="text-align:right">
  131. <button type="button" class="layui-btn layui-btn-danger layui-btn-sm" id="uploadBtn">上传附件</button>
  132. </div>
  133. </div>
  134. </div>
  135. <div class="layui-row p-2 fujian" id="fileBox">
  136. <div class="layui-data-none">暂无附件</div>
  137. </div>
  138. </div>
  139. <!-- /主体 -->
  140. <!-- 底部 -->
  141. <div class="footer">
  142. 逸管工程项目管理系统 © www.yiguanfep.com
  143. <img src="/static/home/images/police.png" alt="" style="width:14.5px;height:16px;">
  144. <a href="https://beian.mps.gov.cn/#/query/websearch?code=45030202000160 " rel="\&quot;noreferrer'target=\”blank\&quot;" onclick="window.open(this.href); return false;">桂公网安备45030202000160号</a>
  145. <a href="https://beian.miit.gov.cn/#/Integrated/index" onclick="window.open(this.href); return false;">桂ICP备17000971号</a>
  146. </div>
  147. <!-- /底部 -->
  148. <!-- 脚本 -->
  149. <script>
  150. const moduleInit = ['tool', 'tagpicker', 'tinymce', 'oaTool'];
  151. function gouguInit() {
  152. var form = layui.form, tool = layui.tool, oaTool = layui.oaTool;
  153. var file_id = null;
  154. //编辑器初始化
  155. var editor = layui.tinymce;
  156. var edit = editor.render({
  157. selector: "#container_content",
  158. height: 500
  159. });
  160. let a = 1;
  161. //监听提交
  162. form.on('submit(webform)', function (data) {
  163. data.field.content = tinyMCE.editors['container_content'].getContent();
  164. if (data.field.content == '') {
  165. layer.msg('<span style="color: white">请先完善文章内容</span>');
  166. return false;
  167. }
  168. if(a){
  169. let callback = function (e) {
  170. parent.layui.contactTable.reload();
  171. layer.msg(e.msg);
  172. if (e.code == 0) {
  173. tool.tabRefresh(71);
  174. tool.sideClose(1000);
  175. a = 1
  176. }
  177. }
  178. data.field.file = file_id;
  179. data.field.project_id = '<?php echo htmlentities($project_id); ?>';
  180. tool.post("/admin/project.contact/add_company", data.field, callback);
  181. }
  182. a = 0
  183. return false;
  184. });
  185. function fileCard(item){
  186. var host = window.location.host;
  187. var li = '';
  188. if(item.length>0){
  189. for(var a=0;a<item.length;a++){
  190. let image = ['jpg','jpeg','png','gif'];
  191. let doc = ['doc','docx','xls','xlsx','ppt','pptx','txt','pdf','zip','rar','7z'];
  192. // let down = '<a href="'+item[a].filepath+'" target="_blank" class="layui-btn layui-btn-xs layui-btn-normal" download="'+item[a].name+'">下载</a>';
  193. let down ='<a href="' + item[a]['filepath'] + '" target="_blank" class="layui-btn layui-btn-xs layui-btn-normal" download="' + item[a]['name'] + '">预览</a>';
  194. // 判断元素是否在数组中
  195. let path='/static/home/images/icon/file.png';
  196. if (image.includes(item[a].fileext)) {
  197. path=item[a].filepath;
  198. down = '<span data-href="'+item[a].filepath+'" class="layui-btn layui-btn-xs layui-btn-normal file-view-img">预览</span>';
  199. } else if (doc.includes(item[a].fileext)){
  200. path='/static/home/images/icon/'+item[a].fileext+'.png';
  201. }
  202. if(item[a].fileext == 'pdf'){
  203. down = '<span data-href="'+item[a].filepath+'" class="layui-btn layui-btn-xs layui-btn-normal file-view-pdf">预览</span>';
  204. }
  205. li += '<li id="'+item[a].id+'" data-id="'+item[a].id+'" data-title="'+item[a].name+'" data-ext="'+item[a].fileext+'"><img src="'+path+'" alt="'+item[a].filename+
  206. '" style="object-fit: contain;" class="file-item"><p title="'+item[a].name+'">'+item[a].name+
  207. '</p><div class="layui-btn-group">'+ down +
  208. '<span class="layui-btn layui-btn-xs layui-btn-danger file-del">删除</span></div></li>';
  209. }
  210. return li;
  211. }
  212. }
  213. var emptyCard = ' <div class="layui-data-none">暂无附件</div>'
  214. $('#fileBox').on('click','.file-del',function(){
  215. layer.confirm('确定要删除该文件吗?', { icon: 3, title: '提示' }, function (index) {
  216. layer.closeAll();
  217. $('#' + file_id).remove();
  218. $("#fileBox").html(emptyCard);
  219. file_id = null;
  220. });
  221. })
  222. oaTool.addFile({
  223. type: 1,
  224. isSave: true,
  225. ajaxDelete: function (file_id) {
  226. var emptyCard = ' <div class="layui-data-none">暂无附件</div>'
  227. if (e.code == 0) {
  228. $('#fileItem' + file_id).remove();
  229. $("#fileBox").html(emptyCard);
  230. file_id = null;
  231. }
  232. },
  233. ajaxSave: function (res) {
  234. let callback = function (e) {
  235. layer.msg('上传成功');
  236. $("#fileBox").html(fileCard(e));
  237. file_id = res.data.id
  238. }
  239. tool.post("/admin/project.contact/add_file", {
  240. 'file': res.data.id,
  241. }, callback);
  242. }
  243. });
  244. }
  245. </script>
  246. <!-- /脚本 -->
  247. <!-- <script src="/static/assets/layui/layui.js"></script> -->
  248. <script src="/static/assets/layui/layui.js"></script>
  249. <script src="/static/assets/third_party/echart/echarts.min.js"></script>
  250. <script src="/static/assets/gougu/gouguInit.js"></script>
  251. <script src="https://unpkg.com/pinyin-pro"></script>
  252. <script>
  253. var { pinyin } = pinyinPro;
  254. </script>
  255. <!-- 统计代码 -->
  256. <!-- /统计代码 -->
  257. </body>
  258. </html>