Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

edit.htm 44KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006
  1. {include file="public/layout" /}
  2. <body class="ad_postion bodystyle" style="overflow-y: scroll;">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <div class="page min-hg-c-10">
  7. <form class="form-horizontal" id="post_form" action="{:url('ZcwdPosition/edit')}" method="post">
  8. <div class="ncap-form-default">
  9. <dl class="row">
  10. <dt class="tit">
  11. <label for="type">规则详情</label>
  12. </dt>
  13. <dd class="opt">
  14. <input type="hidden" name="type" value="{$rule_id}" />
  15. <input type="hidden" name="type_son" value="{$rule_id_son}" />
  16. 规则编号: {$detail.orderno} &nbsp;&nbsp;&nbsp;&nbsp; 规则名称: {$detail_son.title} <br/>
  17. </dd>
  18. </dl>
  19. <hr/>
  20. <b>设置前置条件:</b>
  21. <dl class="row">
  22. <dt class="tit">
  23. <label for="type">是否需要证书</label>
  24. </dt>
  25. <dd class="opt">
  26. <!--<label class="curpoin"><input type="radio" id="type{$field1.id}" name="type" value="{$field1.id}" onclick="TypeSwitch({$field1.id});">{$field1.name}</label>
  27. -->
  28. <?php
  29. /*
  30. * {eyou:foreach name='$pro_list' item='field1'}
  31. <option value="{$field1.id}" {eq name="$Request.param.type" value="$field1.id"}selected{/eq}>{$field1.name}</option>
  32. {/eyou:foreach}
  33. */
  34. ?>
  35. <select name="is_zs" class="select" id="selectTest666" style="margin:0px 5px;height:30px;width:130px;">
  36. <option value="0" {eq name="$field.is_zs" value="0"}selected{/eq}>不需要</option>
  37. <option value="1" {eq name="$field.is_zs" value="1"}selected{/eq}>需要</option>
  38. </select>
  39. <script>
  40. $(function(){
  41. $("#selectTest666").change(function(e){
  42. /*var item = $("#selectTest").val();
  43. if(item == '' || item == 0){
  44. layer.msg('请先选择申报专业!', {icon: 2,time: 1000});
  45. $("#selectTest666").val('0');
  46. return false;
  47. }
  48. console.log(item);
  49. //发送ajax 请求地区数据
  50. $.ajax({
  51. type:'POST',
  52. url:"{:url('ZcwdPosition/getZs', ['_ajax'=>1])}",
  53. data:{
  54. id: item //获取当前专业
  55. ,_ajax:1
  56. },
  57. success:function(res){
  58. $('#zhengshu').html(res.data);
  59. }
  60. });*/
  61. console.log($(this).val());
  62. var v = $(this).val();
  63. if(v == 1){
  64. $('#citychoose').show();
  65. }else{
  66. $('#citychoose').hide();
  67. }
  68. });
  69. });
  70. </script>
  71. <span class="err"></span>
  72. <p class="notic"></p>
  73. </dd>
  74. </dl>
  75. <dl class="row" id="citychoose" style="{eyou:if condition='($field.is_zs > 0)'}{eyou:else /}display: none;{/eyou:if}">
  76. <dt class="tit"> <label for="title"><em>*</em>证书选择</label> </dt>
  77. <dd class="opt">
  78. <!---checked-->
  79. <div id="zhengshu">
  80. {$zs_html}
  81. </div>
  82. <span class="err"></span>
  83. <p class="notic2 red" id="title_tips"></p>
  84. </dd>
  85. </dl>
  86. <!-- <dl class="row">
  87. <dt class="tit"> <label for="title"><em>*</em>工作时间年限</label> </dt>
  88. <dd class="opt">
  89. <select name="sjnx" class="select" id="selectTest888" style="margin:0px 5px;height:30px;width:130px;">
  90. <option value="0" {eq name="$field.sjnx" value="0"}selected{/eq}>不限制</option>
  91. <option value="1" {eq name="$field.sjnx" value="1"}selected{/eq}>1年</option>
  92. <option value="2" {eq name="$field.sjnx" value="2"}selected{/eq}>2年</option>
  93. <option value="3" {eq name="$field.sjnx" value="3"}selected{/eq}>3年</option>
  94. <option value="4" {eq name="$field.sjnx" value="4"}selected{/eq}>4年</option>
  95. <option value="5" {eq name="$field.sjnx" value="5"}selected{/eq}>5年</option>
  96. <option value="6" {eq name="$field.sjnx" value="6"}selected{/eq}>6年</option>
  97. <option value="7" {eq name="$field.sjnx" value="7"}selected{/eq}>7年</option>
  98. <option value="8" {eq name="$field.sjnx" value="8"}selected{/eq}>8年</option>
  99. </select>
  100. 以上(包括)
  101. </dd>
  102. </dl>-->
  103. <dl class="row">
  104. <dt class="tit"> <label for="title"><em>*</em>工作要求:</label> </dt>
  105. <dd class="opt">
  106. {eyou:for start='0' end='9'}
  107. {$i+1}.&nbsp;<input type="text" name="gzyq[]" value="{$gzyq[$i]}" id="title" class="input-txt" autocomplete="off" style="margin-top: 5px;width: 800px !important;"><br/>
  108. {/eyou:for}
  109. </dd>
  110. </dl>
  111. <hr/>
  112. <b>其他:</b>
  113. <?php
  114. /*
  115. *
  116. * <!--暂时找不到控制显示隐藏的地方-->
  117. <dl class="row 1615775137_dl" style="display: block;" id="1615775137_1" style="z-index: 2">
  118. <dt class="tit"> <label>主题背景</label> </dt>
  119. <dd class="opt">
  120. <div class="tab-pane" id="tab_imgupload">
  121. <table class="table table-bordered">
  122. <tbody>
  123. <tr>
  124. <td>
  125. <div class="sort-list">
  126. {volist name="ad_data" id="vo" key="k"}
  127. {eq name="$vo.media_type" value="1"}
  128. <div class="images_upload">
  129. <div class="ic">
  130. <div class='upimg' title="拖动修改排序" onmouseover="upimgMouseover(this);" onmouseout="upimgMouseout(this);">
  131. <div class='icaction' style="display: none" >
  132. <span class="load_images" onclick="Images('{$vo['litpic']}', 900, 600);">
  133. <a href="javascript:void(0);" style="color:white">
  134. <i class='fa fa-search-plus'></i>大图
  135. </a>
  136. </span>
  137. <span class="load_images" onclick="LoadImagesId('{$vo['id']}');">
  138. <i class='fa fa-photo'></i>更换
  139. </span>
  140. <span class="load_images" onclick="ShowInput('{$vo['id']}');">
  141. <i class='fa fa-file-text-o'></i>信息
  142. </span>
  143. </div>
  144. <div class='cover-bg' style="display: none" ></div>
  145. <img id="{$vo['id']}_Id" src="{$vo['litpic']}"/>
  146. {if condition="$main_lang == $admin_lang || !empty($global['language_split'])"}
  147. <a class="delect" href="javascript:void(0);" onclick="ClearPicArr(this,'{$vo['litpic']}','{$vo['id']}');" title="删除">
  148. </a>
  149. {/if}
  150. </div>
  151. <div class="load_input" id="{$vo['id']}_ShowInput" data-showOrHide="hide">
  152. <input type="hidden" name="img_id[]" value="{$vo['id']}"/>
  153. <span class="span_input">
  154. <input type="hidden" id="{$vo['id']}_Litpic" name="img_litpic[]" value="{$vo['litpic']}"/>
  155. </span>
  156. <textarea name="img_title[]" placeholder="请输入标题..." style="height: 28px;">{$vo.title}</textarea>
  157. <textarea name="img_links[]" placeholder="请输入链接网址..." style="height: 28px;">{$vo.links}</textarea>
  158. <textarea name="img_intro[]" placeholder="广告注释:支持HTML代码" style="height: 64px;">{$vo.intro}</textarea>
  159. <div class="operation">
  160. <a href="javascript:void(0);">
  161. <label>
  162. <input type="checkbox" {eq name="$vo['target']" value="1"} checked="checked" {/eq} title="在新窗口打开" onclick="CheckedTarget(this)"/>新窗口
  163. <input type="hidden" name="img_target[]" value="{$vo['target']}">
  164. </label>
  165. </a>
  166. <a href="javascript:void(0);" onclick="copyToClipBoard({$vo['id']});">
  167. <i class="fa fa-file-code-o"></i>标签调用
  168. </a>
  169. <a onclick="HideInput('{$vo['id']}');" style="width: 32%;" href="javascript:void(0);" title="收回"><i style="font-size:16px;" class="fa fa-angle-double-up"></i></a>
  170. </div>
  171. </div>
  172. </div>
  173. </div>
  174. {/eq}
  175. {/volist}
  176. <div class="images_upload"></div>
  177. </div>
  178. {if condition="$main_lang == $admin_lang || !empty($global['language_split'])"}
  179. <a href="javascript:void(0);" onClick="GetUploadify(30,'','allimg','imgupload_call_back');" class="img-upload b-img-upload mb15" title="点击上传">
  180. <div class="y-line"></div>
  181. <div class="x-line"></div>
  182. </a>
  183. {/if}
  184. <input type="hidden" id="ImagesId">
  185. </td>
  186. </tr>
  187. </tbody>
  188. </table>
  189. </div>
  190. <!-- 上传图片显示的样板 start -->
  191. <div class="images_upload_tpl none">
  192. <div class="images_upload ic">
  193. <div class="ic">
  194. <div class='upimg' title="拖动修改排序" onmouseover="upimgMouseover(this);" onmouseout="upimgMouseout(this);">
  195. <div class='icaction' style="display: none">
  196. <span class="load_images" onclick="">
  197. <a href="javascript:void(0);" style="color: white">
  198. <i class='fa fa-search-plus'></i>大图
  199. </a>
  200. </span>
  201. <span class="load_images" onclick="">
  202. <i class='fa fa-file-text-o'></i>信息
  203. </span>
  204. </div>
  205. <div class='cover-bg' style="display: none"></div>
  206. <img src="__STATIC__/admin/images/add-button.jpg"/>
  207. <a class="delect" href="javascript:void(0);" title="删除"></a>
  208. </div>
  209. <div class="load_input" data-showOrHide="hide">
  210. <input type="hidden"/>
  211. <span class="span_input"> <input type="hidden"/> </span>
  212. <textarea placeholder="请输入标题..." style="height: 28px;"></textarea>
  213. <textarea placeholder="请输入链接网址..." style="height: 28px;"></textarea>
  214. <textarea placeholder="广告注释:支持HTML代码" style="height: 64px;"></textarea>
  215. <div class="operation">
  216. <a href="javascript:void(0);">&nbsp;&nbsp;</a>
  217. <a href="javascript:void(0);">&nbsp;&nbsp;</a>
  218. <a style="width: 32%;" href="javascript:void(0);">&nbsp;&nbsp;</a>
  219. </div>
  220. </div>
  221. </div>
  222. </div>
  223. </div>
  224. <!-- 上传图片显示的样板 end -->
  225. </dd>
  226. </dl>
  227. */
  228. ?>
  229. <dl class="row 1615775137_dl" style="display: none;" id="1615775137_2" style="z-index: 2">
  230. <dt class="tit"> <label for="type">广告内容</label> </dt>
  231. <dd class="opt">
  232. <input type="hidden" name="video_id" {eq name="$ad_data.0.media_type" value="2"} value="{$ad_data.0.id}" {/eq} class="input-txt">
  233. <input type="text" name="video_litpic" id="video_litpic" {eq name="$ad_data.0.media_type" value="2"} value="{$ad_data.0.litpic}" {/eq} class="input-txt">
  234. <input type="file" id="courseware_file" data-type='local' onchange="upload_video_litpic_1615775137(this)" style="display: none;">
  235. {eq name="$WeappOpen.qny_open" value="1"}
  236. &nbsp;<a href="javascript:void(0);" class="ncap-btn ncap-btn-green" id="upload_video_litpic_qiniu" onclick="$('#courseware_file').attr('data-type', 'qiniu').trigger('click');">七牛云上传</a>
  237. {/eq}
  238. {eq name="$WeappOpen.oss_open" value="1"}
  239. &nbsp;<a href="javascript:void(0);" class="ncap-btn ncap-btn-green" id="upload_video_litpic_oss" onclick="$('#courseware_file').attr('data-type', 'oss').trigger('click');">oss上传</a>
  240. {/eq}
  241. {eq name="$WeappOpen.cos_open" value="1"}
  242. &nbsp;<a href="javascript:void(0);" class="ncap-btn ncap-btn-green" id="upload_video_litpic_cos" onclick="$('#courseware_file').attr('data-type', 'cos').trigger('click');">cos上传</a>
  243. {/eq}
  244. &nbsp;<a href="javascript:void(0);" class="ncap-btn ncap-btn-green " id="upload_video_litpic_local" onclick="$('#courseware_file').attr('data-type', 'local').trigger('click');">本地上传</a>
  245. <input type="hidden" id="OpenPreviewVideoUrl" value="{:url('ZcwdPosition/open_preview_video')}">
  246. &nbsp;<a href="javascript:void(0);" class="ncap-btn ncap-btn-green" id="PreviewVideo" onclick="OpenPreviewVideo();">预览</a>
  247. </dd>
  248. </dl>
  249. <dl class="row 1615775137_dl" style="display: none;" id="1615775137_3" style="z-index: 2">
  250. <dt class="tit"> <label for="type">广告内容</label> </dt>
  251. <dd class="opt">
  252. <input type="hidden" name="html_id" {eq name="$ad_data.0.media_type" value="3"} value="{$ad_data.0.id}" {/eq} class="input-txt">
  253. <textarea rows="5" cols="60" id="html_intro" name="html_intro" style="height: 200px;">{eq name="$ad_data.0.media_type" value="3"}{$ad_data.0.intro}{/eq}</textarea>
  254. <span class="err"></span>
  255. <p class="notic"></p>
  256. </dd>
  257. </dl>
  258. <dl class="row">
  259. <dt class="tit">
  260. <label>其他条件</label>
  261. </dt>
  262. <dd class="opt">
  263. <textarea rows="5" cols="60" id="intro" name="qttj" style="height:60px;">{$field.qttj}</textarea>
  264. <span class="err"></span>
  265. <p class="notic"></p>
  266. </dd>
  267. </dl>
  268. <dl class="row">
  269. <dt class="tit">
  270. <label>输出结果</label>
  271. </dt>
  272. <dd class="opt">
  273. 匹配算法: 前端根据选择的申报专业和所选资料,按所设定的规则(多条)进行对比,结果可能符合多个区域(符合省市),生成多个报告;
  274. <span class="err"></span>
  275. <p class="notic"></p>
  276. </dd>
  277. </dl>
  278. <input type="hidden" id="zhengshu_val" name="zhengshu_val" value="" />
  279. <div class="bot">
  280. <input type="hidden" name="id" id="1615775137_id" value="{$field.id}">
  281. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  282. </div>
  283. </div>
  284. </form>
  285. </div>
  286. <script type="text/javascript">
  287. var SelectedType = '{$field.type}';
  288. $(function() {
  289. // 新增时,广告类型默认选中图片类型
  290. // $('#type'+SelectedType).prop('checked', 'checked');
  291. // 新增时,默认显示图片上传
  292. $('#1615775137_'+SelectedType).show();
  293. // 多媒体类型 && 广告内容不为空 则执行显示 否则 执行隐藏
  294. VideoLitpicValue('#video_litpic');
  295. });
  296. // 切换广告类型
  297. function TypeSwitch(typeValue) {
  298. // 隐藏全部类型内容
  299. $('.1615775137_dl').hide();
  300. // 显示指定类型内容
  301. $('#1615775137_'+typeValue).show();
  302. // 切换类型后设置为当前切换的类型
  303. SelectedType = typeValue;
  304. // var ad_type = '{$field.type}';
  305. // if (typeValue != ad_type) {
  306. // // 切换至不同类型则显示
  307. // $('.notic2').show();
  308. // } else {
  309. // // 切换至相同类型则隐藏
  310. // $('.notic2').hide();
  311. // }
  312. }
  313. // 多媒体类型 && 广告内容不为空 则执行显示 否则 执行隐藏
  314. function VideoLitpicValue(obj) {
  315. // 获取广告内容(多媒体为播放链接)
  316. // var video_litpic = $(obj).val();
  317. // 判断隐藏显示预览按钮if (2 == SelectedType && video_litpic)
  318. if (2 == SelectedType) {
  319. $('#PreviewVideo').show();
  320. } else {
  321. $('#PreviewVideo').hide();
  322. }
  323. }
  324. // 打开预览视频
  325. function OpenPreviewVideo() {
  326. // 获取视频链接
  327. var video_litpic = $('#video_litpic').val();
  328. if (video_litpic == '') {
  329. $('#video_litpic').focus();
  330. showErrorMsg('请先上传视频');
  331. return false;
  332. }
  333. /* 视频链接后缀验证处理 */
  334. var fileExt = video_litpic.substr(video_litpic.lastIndexOf('.')).toLowerCase();
  335. var fileExt = judgeExt(fileExt);
  336. if (fileExt == -1) {
  337. $('#video_litpic').focus();
  338. showErrorMsg('不支持的视频格式,可在附件设置中修改');
  339. return false;
  340. }
  341. /* END */
  342. /* 视频链接是否存在斜杠处理 */
  343. var fileInfo = video_litpic.lastIndexOf('/');
  344. if (fileInfo == -1) {
  345. $('#video_litpic').focus();
  346. showErrorMsg('视频链接不完整,无法正常预览');
  347. return false;
  348. }
  349. /* END */
  350. // 打开视频播放
  351. $.ajax({
  352. type : 'post',
  353. url : $('#OpenPreviewVideoUrl').val(),
  354. data : {video_litpic: video_litpic},
  355. dataType : 'json',
  356. success : function(res) {
  357. if (1 == res.code) {
  358. var PreviewVideo = "<video style='width:100%; height:100%;' src='"+res.url+"' controls preload='auto' oncontextmenu='return fase' autoplay></video>";
  359. layer.open({
  360. type: 1,
  361. title: false,
  362. fixed: true, //不固定
  363. shadeClose: false,
  364. shade: layer_shade,
  365. area: ['80%', '80%'],
  366. content: PreviewVideo
  367. });
  368. } else {
  369. showErrorMsg(res.msg);
  370. }
  371. },
  372. error: function(e) {
  373. showErrorAlert(e.responseText);
  374. }
  375. });
  376. }
  377. // 上传媒体文件
  378. function upload_video_litpic_1615775137(e) {
  379. var data_type = $(e).attr('data-type');
  380. if ('qiniu' == data_type) {
  381. // 七牛云上传
  382. upload_video_litpic_qiniu(e);
  383. } else if ('oss' == data_type) {
  384. // OSS上传
  385. upload_video_litpic_oss(e);
  386. } else if ('cos' == data_type) {
  387. // COS上传
  388. upload_video_litpic_cos(e);
  389. } else {
  390. // 本地上传
  391. upload_video_litpic_local(e);
  392. }
  393. }
  394. // 七牛云上传
  395. function upload_video_litpic_qiniu(e) {
  396. // 获取文件路径名
  397. var file = $(e)[0].files[0];
  398. // 验证上传格式
  399. var fileName = file.name;
  400. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  401. var ext = judgeExt(fileExt);
  402. if (ext == -1) {
  403. showErrorMsg('不支持选中的视频格式,可在附件设置中修改');
  404. return false;
  405. }
  406. // 验证上传大小
  407. var size = "{$upload_max_filesize}";
  408. if (file.size > size) {
  409. showErrorMsg('视频大小超过限制,可在附件设置中修改');
  410. return false;
  411. }
  412. // 执行上传
  413. layer_loading('上传七牛云');
  414. $.ajax({
  415. type: 'POST',
  416. url: '__ROOT_DIR__/index.php?m=plugins&c=Qiniuyun&a=qiniu_upload',
  417. data: {_ajax: 1},
  418. dataType: "JSON",
  419. success: function(res1) {
  420. if (1 == res1.code) {
  421. var token = res1.data.token;
  422. var formData = new FormData();
  423. formData.append('file', file);
  424. formData.append('token', token);
  425. fileName = res1.data.filePath + fileExt;
  426. formData.append('key', fileName);
  427. $.ajax({
  428. url: res1.data.uphost,
  429. type: 'POST',
  430. dataType: 'JSON',
  431. data: formData,
  432. timeout: 1200000,
  433. cache: false,
  434. processData: false,
  435. contentType: false,
  436. xhr: function () {
  437. myXhr = $.ajaxSettings.xhr();
  438. if (myXhr.upload) {
  439. myXhr.upload.addEventListener('progress', function(e){
  440. var curr = e.loaded;
  441. var total = e.total;
  442. process = parseInt(curr / total * 100);
  443. $("#upload_video_litpic_qiniu").text('上传中...'+process+"%");
  444. });
  445. }
  446. return myXhr;
  447. },
  448. success: function(res2) {
  449. layer.closeAll();
  450. $("#upload_video_litpic_qiniu").text('上传成功');
  451. setTimeout(function() {
  452. $('#upload_video_litpic_qiniu').text('七牛云上传');
  453. }, 2000);
  454. var video_url = res1.data.domain + "/" + res2.key;
  455. $("#video_litpic").empty().val(video_url);
  456. },
  457. error: function(e) {
  458. layer.closeAll();
  459. showErrorMsg(e.responseText);
  460. return false;
  461. }
  462. });
  463. } else {
  464. layer.closeAll();
  465. showErrorMsg(res1.msg);
  466. }
  467. },
  468. error: function(e) {
  469. layer.closeAll();
  470. showErrorMsg(e.responseText);
  471. }
  472. });
  473. }
  474. // 阿里云OSS上传
  475. function upload_video_litpic_oss(e) {
  476. // 获取文件路径名
  477. var file = $(e)[0].files[0];
  478. // 验证上传格式
  479. var fileName = file.name;
  480. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  481. var ext = judgeExt(fileExt);
  482. if (ext == -1) {
  483. showErrorMsg('不支持选中的视频格式,可在附件设置中修改');
  484. return false;
  485. }
  486. // 验证上传大小
  487. var size = "{$upload_max_filesize}";
  488. if (file.size > size) {
  489. showErrorMsg('视频大小超过限制,可在附件设置中修改');
  490. return false;
  491. }
  492. // 执行上传
  493. layer_loading('上传阿里云OSS');
  494. $.ajax({
  495. type: 'POST',
  496. url: '__ROOT_DIR__/index.php?m=plugins&c=AliyunOss&a=oss_upload',
  497. data: {_ajax: 1},
  498. dataType: "JSON",
  499. success: function(res1){
  500. if (1 == res1.code){
  501. fileName = res1.data.filePath + fileExt;
  502. //组装发送数据
  503. var request = new FormData();
  504. request.append("OSSAccessKeyId",res1.data.accessid);
  505. request.append("policy",res1.data.policy);
  506. request.append("Signature",res1.data.signature);
  507. request.append("key",fileName);
  508. request.append("success_action_status",201);
  509. request.append('file', file);
  510. $.ajax({
  511. url : res1.data.host,
  512. data : request,
  513. processData: false,
  514. cache: false,
  515. contentType: false,
  516. dataType: 'xml',
  517. type : 'post',
  518. xhr: function () {
  519. myXhr = $.ajaxSettings.xhr();
  520. if (myXhr.upload) {
  521. myXhr.upload.addEventListener('progress', function(e){
  522. var curr = e.loaded;
  523. var total = e.total;
  524. var process = parseInt(curr / total * 100);
  525. $("#upload_video_litpic_oss").text('上传中...'+process+"%");
  526. });
  527. }
  528. return myXhr;
  529. },
  530. success : function(data) {
  531. layer.closeAll();
  532. var res = $(data).find('PostResponse');
  533. if (res) {
  534. var key = res.find('Key').text();
  535. $("#upload_video_litpic_oss").text('上传成功');
  536. setTimeout(function() {
  537. $('#upload_video_litpic_oss').text('oss上传');
  538. }, 2000);
  539. var video_url = res1.data.domain + "/" + key;
  540. $("#video_litpic").val(video_url);
  541. } else {
  542. $("#upload_video_litpic_oss").text('上传失败');
  543. setTimeout(function() {
  544. $('#upload_video_litpic_oss').text('oss上传');
  545. }, 2000);
  546. }
  547. },
  548. error : function(e) {
  549. layer.closeAll();
  550. console.log(e.responseText);
  551. }
  552. });
  553. } else {
  554. layer.closeAll();
  555. showErrorMsg(res1.msg);
  556. }
  557. },
  558. error: function(e) {
  559. layer.closeAll();
  560. showErrorMsg(e.responseText);
  561. }
  562. });
  563. }
  564. // 腾讯云COS上传
  565. function upload_video_litpic_cos(e) {
  566. // 获取文件路径名
  567. var file = $(e)[0].files[0];
  568. // 验证上传格式
  569. var fileName = file.name;
  570. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  571. var ext = judgeExt(fileExt);
  572. if (ext == -1) {
  573. showErrorMsg('不支持选中的视频格式,可在附件设置中修改');
  574. return false;
  575. }
  576. // 验证上传大小
  577. var size = "{$upload_max_filesize}";
  578. if (file.size > size) {
  579. showErrorMsg('视频大小超过限制,可在附件设置中修改');
  580. return false;
  581. }
  582. // 上传参数
  583. var formData = new FormData();
  584. formData.append('file', file);
  585. formData.append('file_ext', fileExt);
  586. // 执行上传
  587. $.ajax({
  588. type: 'post',
  589. url: '__ROOT_DIR__/index.php?m=plugins&c=Cos&a=cos_upload&_ajax=1',
  590. data: formData,
  591. contentType: false,
  592. processData: false,
  593. dataType: 'json',
  594. xhr: function () {
  595. myXhr = $.ajaxSettings.xhr();
  596. if (myXhr.upload) {
  597. myXhr.upload.addEventListener('progress', function(e){
  598. var curr = e.loaded;
  599. var total = e.total;
  600. process = parseInt(curr / total * 100);
  601. if (100 == process) {
  602. process = 99;
  603. layer_loading('上传腾讯云COS');
  604. }
  605. $("#upload_video_litpic_cos").text('上传中...'+process+"%");
  606. });
  607. }
  608. return myXhr;
  609. },
  610. success: function(res) {
  611. layer.closeAll();
  612. if (1 == res.code) {
  613. $("#video_litpic").val(res.data.url);
  614. $("#upload_video_litpic_cos").text('上传成功');
  615. } else {
  616. $("#upload_video_litpic_cos").text('上传失败');
  617. }
  618. setTimeout(function() {
  619. $('#upload_video_litpic_cos').text('cos上传');
  620. }, 2000);
  621. },
  622. error: function(e) {
  623. layer.closeAll();
  624. showErrorMsg(e.responseText);
  625. }
  626. });
  627. }
  628. // 本地上传
  629. function upload_video_litpic_local(e) {
  630. // 获取文件路径名
  631. var file = $(e)[0].files[0];
  632. // 验证上传格式
  633. var fileName = file.name;
  634. var fileExt = fileName.substr(fileName.lastIndexOf('.')).toLowerCase();
  635. var ext = judgeExt(fileExt);
  636. if (ext == -1) {
  637. showErrorMsg('不支持选中的视频格式,可在附件设置中修改');
  638. return false;
  639. }
  640. // 验证上传大小
  641. var size = "{$upload_max_filesize}";
  642. if (file.size > size) {
  643. showErrorMsg('视频大小超过限制,可在附件设置中修改');
  644. return false;
  645. }
  646. // 定义上传数据
  647. var formData = new FormData();
  648. formData.append('file', file);
  649. // 执行上传
  650. layer_loading('上传本地');
  651. $.ajax({
  652. type: 'post',
  653. url : "{:url('Ueditor/upVideo', ['savepath'=>'media'])}",
  654. data: formData,
  655. contentType: false,
  656. processData: false,
  657. dataType: 'json',
  658. xhr: function () {
  659. myXhr = $.ajaxSettings.xhr();
  660. if (myXhr.upload) {
  661. myXhr.upload.addEventListener('progress', function(e){
  662. var curr = e.loaded;
  663. var total = e.total;
  664. process = parseInt(curr / total * 100);
  665. $("#upload_video_litpic_local").html('上传中...'+process+"%");
  666. });
  667. }
  668. return myXhr;
  669. },
  670. success: function (res) {
  671. layer.closeAll();
  672. $("#upload_video_litpic_local").html('上传成功');
  673. setTimeout(function() {
  674. $('#upload_video_litpic_local').html('本地上传');
  675. }, 2000);
  676. if ("SUCCESS" == res.state) {
  677. $("#video_litpic").val(res.url);
  678. } else {
  679. showErrorMsg(res.msg);
  680. }
  681. }
  682. });
  683. }
  684. // 验证格式
  685. function judgeExt(ext) {
  686. var type = "{$media_type}";
  687. var extArr = [];
  688. extArr = type.split("|");
  689. var ext = ext.replace(".","");
  690. return extArr.indexOf(ext);
  691. }
  692. </script>
  693. <script type="text/javascript">
  694. // 勾选新窗口打开链接
  695. function CheckedTarget(t){
  696. if ($(t).is(':checked')) {
  697. $(t).parent().find('input[name="img_target[]"]').val(1);
  698. }else{
  699. $(t).parent().find('input[name="img_target[]"]').val(0);
  700. }
  701. }
  702. // 鼠标事件,加载查看大图和更新图片
  703. function upimgMouseover(obj)
  704. {
  705. $(obj).find('div.icaction').show();
  706. $(obj).find('div.cover-bg').show();
  707. }
  708. function upimgMouseout(obj)
  709. {
  710. $(obj).find('div.icaction').hide();
  711. $(obj).find('div.cover-bg').hide();
  712. }
  713. // 检测广告名称是否存在重复
  714. function DetectionTitleRepeat(obj) {
  715. // 当前广告ID
  716. var id = $('#1615775137_id').val();
  717. // 传入的广告名称
  718. var title = $(obj).val();
  719. // 执行检测
  720. $.ajax({
  721. type: 'post',
  722. url : "{:url('ZcwdPosition/detection_title_repeat', ['_ajax'=>1])}",
  723. data: {id: id, title: title},
  724. dataType: 'json',
  725. success: function(res) {
  726. if (0 == res.code) {
  727. $('#title_tips').show().html(res.msg);
  728. } else {
  729. $('#title_tips').hide().html('');
  730. }
  731. },
  732. error: function(e){
  733. layer.closeAll();
  734. showErrorAlert(e.responseText);
  735. }
  736. });
  737. }
  738. // 判断输入框是否为空
  739. function checkForm(){
  740. /* if($('input[name=title]').val() == ''){
  741. layer.msg('广告位名称不能为空!', {icon: 2,time: 1000});
  742. return false;
  743. }*/
  744. /* if($("#selectTest").val() == ''){
  745. layer.msg('请选择申报专业!', {icon: 2,time: 1000});
  746. return false;
  747. }*/
  748. if($('#selectTest666').val() == '1'){
  749. var checkedValues = [];
  750. $('#zhengshu input[type=checkbox]:checked').each(function() {
  751. checkedValues.push($(this).val());
  752. });
  753. console.log(checkedValues); // 打印选中的checkbox值
  754. if(checkedValues.length > 0){
  755. }else{
  756. layer.msg('请选择证书!', {icon: 2,time: 1000});
  757. return false;
  758. }
  759. }
  760. //'zyid': $("#selectTest").val(),
  761. //'sf': $('#selectTest000_1').val(),
  762. //'cs': $('#selectTest000_2').val(),
  763. //'sbdj': $('#selectTest000_2').val(),
  764. //循环所有checkbox 重新构建数组
  765. //var zhengshu = [];
  766. var zhengshu = '';
  767. $('#zhengshu input[type=checkbox]').each(function() {
  768. if ($(this).is(':checked')) {
  769. // 至少有一个checkbox被选中
  770. //zhengshu.push($(this).val());
  771. zhengshu += $(this).val()+',';
  772. } else {
  773. // 没有任何checkbox被选中
  774. //zhengshu.push("0");
  775. zhengshu += '0,';
  776. }
  777. });
  778. console.log($('#post_form').serializeArray());
  779. $('#zhengshu_val').val(zhengshu);
  780. layer_loading('正在处理');
  781. $.ajax({
  782. type : 'post',
  783. url : "{:url('ZcwfPosition/edit', ['_ajax'=>1])}",
  784. data : $('#post_form').serialize(),
  785. dataType : 'json',
  786. success : function(res){
  787. layer.closeAll();
  788. if (res.code == 1) {
  789. layer.msg(res.msg, {icon: 1, shade: layer_shade, time: 1000}, function(){
  790. window.location.reload();
  791. });
  792. } else {
  793. showErrorMsg(res.msg);
  794. }
  795. },
  796. error: function(e){
  797. layer.closeAll();
  798. showErrorAlert(e.responseText);
  799. }
  800. });
  801. }
  802. // 获取点击更新图片的ID并加载隐藏域
  803. function LoadImagesId(id){
  804. // 加载ID到隐藏域
  805. $('#ImagesId').val(id);
  806. // 调用图片上传JS
  807. GetUploadify(1,'','allimg','UpdataImages');
  808. }
  809. // 更新图片
  810. function UpdataImages(path){
  811. // 获取点击的ID
  812. var id = $('#ImagesId').val();
  813. // 加载图片到显示层
  814. $("#"+id+"_Id").attr('src', path);
  815. // 加载图片到提交的隐藏域
  816. $("#"+id+"_Litpic").val(path);
  817. }
  818. // 显示信息输入框
  819. function ShowInput(id) {
  820. var obj = $("#"+id+"_ShowInput");
  821. var showOrHide = obj.attr('data-showOrHide');
  822. if ('hide' == showOrHide) {
  823. obj.show().attr('data-showOrHide', 'show');
  824. } else {
  825. obj.hide().attr('data-showOrHide', 'hide');
  826. }
  827. }
  828. // 隐藏信息输入
  829. function HideInput(id) {
  830. $("#"+id+"_ShowInput").hide().attr('data-showOrHide', 'hide');
  831. }
  832. // 上传图集相册回调函数
  833. function imgupload_call_back(paths){
  834. var last_div = $(".images_upload_tpl").html();
  835. var inputs = $('.span_input input');
  836. var timestamp = 0;
  837. // 图片数据处理
  838. for (var i=0; i<paths.length; i++) {
  839. // 生成新的时间戳
  840. timestamp = (new Date()).getTime();
  841. // 插入一个 新图片
  842. $(".images_upload:eq(0)").before(last_div);
  843. // 处理他的链接地址
  844. $(".images_upload:eq(0)").find('span:eq(0)').attr('onclick', "Images('"+paths[i]+"', 900, 600);");
  845. // 处理信息显示隐藏按钮
  846. $(".images_upload:eq(0)").find('span:eq(1)').attr('onclick', "ShowInput('"+timestamp+"');");
  847. // 处理他的图片路径
  848. $(".images_upload:eq(0)").find('img').attr('src', paths[i]);
  849. // 处理删除按钮
  850. $(".images_upload:eq(0)").find('a:eq(1)').attr('onclick', "ClearPicArr(this, '"+paths[i]+"', 0);");
  851. // 处理图片信息框ID
  852. $(".images_upload:eq(0)").find('.load_input:eq(0)').attr('id', timestamp+'_ShowInput');
  853. // 处理图片路径及隐藏域
  854. if (inputs.length > 0) {
  855. // 修改隐藏域
  856. $(".images_upload:eq(0)").find('input:eq(0)').attr('name', 'img_id[]').attr('value', '');
  857. $(".span_input:eq(0)").find('input:eq(0)').attr('name', 'img_litpic[]').attr('value', paths[i]);
  858. // 处理标题
  859. $(".images_upload:eq(0)").find('textarea:eq(0)').attr('name', 'img_title[]');
  860. // 处理跳转链接
  861. $(".images_upload:eq(0)").find('textarea:eq(1)').attr('name', 'img_links[]');
  862. // 处理内容描述
  863. $(".images_upload:eq(0)").find('textarea:eq(2)').attr('name', 'img_intro[]');
  864. // 处理新窗口选项
  865. $(".images_upload:eq(0)").find('div.operation a:eq(0)').html("<label><input type='checkbox' title='在新窗口打开' onclick='CheckedTarget(this);'/>新窗口<input type='hidden' name='img_target[]' value='0'></label>");
  866. // 处理收回按钮
  867. $(".images_upload:eq(0)").find('div.operation a:eq(2)').attr('onclick', "HideInput('"+timestamp+"');").attr('title', "收回").html('<i style="font-size:16px;" class="fa fa-angle-double-up"></i>');
  868. }
  869. }
  870. }
  871. // 上传之后删除组图input
  872. function ClearPicArr(obj, path, id) {
  873. // 删除数据库记录
  874. $.ajax({
  875. type:'POST',
  876. url:"{:url('ZcwdPosition/del_imgupload')}",
  877. data:{del_id:id,_ajax:1},
  878. success:function(){
  879. $(obj).parent().parent().parent().remove(); // 删除完服务器的, 再删除 html上的图片
  880. $.ajax({
  881. type:'POST',
  882. url:"{:url('Uploadimgnew/delupload')}",
  883. data:{action:"del", filename:path,_ajax:1},
  884. success:function(){}
  885. });
  886. }
  887. });
  888. }
  889. // 代码调用js
  890. function copyToClipBoard(id) {
  891. var adstr = "{eyou:ad aid='" + id + "'}\r\n <a href='{$"+"field.links}' {$"+"field.target}><img src='{$"+"field.litpic}' alt='{$"+"field.title}' /></a>\r\n 广告注释:{$"+"field.intro}\r\n{/eyou:ad";
  892. var contentdiv = '<div class="dialog_content" style="margin: 0px; padding: 0px;"><dl style="padding:10px 30px;line-height:30px"><dd>标签 ad 调用:</dd>';
  893. contentdiv += '<textarea rows="4" cols="60" style="width:400px;height:100px;">' + adstr + '}</textarea>';
  894. contentdiv += '<dd style="border-top: dotted 1px #E7E7E7; color: #F60;">请将对应标签代码复制并粘贴到对应模板文件中!</dd></dl></div>';
  895. layer.open({
  896. title: '代码调用',
  897. type: 1,
  898. shade: layer_shade,
  899. skin: 'layui-layer-demo',
  900. area: ['480px', '260px'], //宽高
  901. content: contentdiv
  902. });
  903. }
  904. // 图集相册的拖动排序相关 js
  905. $( ".sort-list" ).sortable({
  906. start: function( event, ui) {
  907. }
  908. ,stop: function( event, ui ) {
  909. }
  910. });
  911. //因为他们要拖动,所以尽量设置他们的文字不能选择。
  912. // $( ".sort-list" ).disableSelection();
  913. </script>
  914. {include file="public/footer" /}