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 43KB

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