123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php /*a:2:{s:73:"D:\project\gyx\gaoyixia\application\nutrition\view\article_item\form.html";i:1711347222;s:56:"D:\project\gyx\gaoyixia\application\admin\view\main.html";i:1699858976;}*/ ?>
- <div class="layui-card layui-bg-gray"><?php if(!(empty($title) || (($title instanceof \think\Collection || $title instanceof \think\Paginator ) && $title->isEmpty()))): ?><div class="layui-card-header layui-anim layui-anim-fadein notselect"><span class="layui-icon layui-icon-next font-s10 color-desc margin-right-5"></span><?php echo htmlentities((isset($title) && ($title !== '')?$title:'')); ?><div class="pull-right"></div></div><?php endif; ?><div class="layui-card-body layui-anim layui-anim-upbit"><div class="think-box-shadow"><form class="layui-form layui-card" action="<?php echo request()->url(); ?>" data-auto="true" method="post" autocomplete="off"><div class="layui-card-body"><div class="layui-form-item"><label class="layui-form-label label-required">标题</label><div class="layui-input-block"><input name="article_id" type="hidden" value='<?php echo htmlentities((isset($article_info['id']) && ($article_info['id'] !== '')?$article_info['id']:"")); ?>' class="layui-input"><input name="title" maxlength="60" value='<?php echo htmlentities((isset($vo['title']) && ($vo['title'] !== '')?$vo['title']:"")); ?>' placeholder="请输入标题" class="layui-input"></div></div><div class="layui-form-item" style="display: none"><label class="layui-form-label label-required">原创作者</label><div class="layui-input-block"><input name="author" value='<?php echo htmlentities((isset($vo['author']) && ($vo['author'] !== '')?$vo['author']:"")); ?>' placeholder="请输入原创作者" class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label label-required">标签</label><div class="layui-input-block"><textarea placeholder="请输入标签" maxlength="100" class="layui-textarea" name="label"><?php echo htmlentities((isset($vo['label']) && ($vo['label'] !== '')?$vo['label']:'')); ?></textarea><span >多个用逗号隔开(半角)</span></div></div><div class="layui-form-item"><label class="layui-form-label ">简介</label><div class="layui-input-block"><textarea placeholder="请输入简介" maxlength="500" class="layui-textarea" name="desc"><?php echo htmlentities((isset($vo['desc']) && ($vo['desc'] !== '')?$vo['desc']:'')); ?></textarea></div></div><div class="layui-form-item"><label class="layui-form-label ">文本</label><div class="layui-input-block"><textarea placeholder="请输入简介" class="layui-textarea" name="desc_text"><?php echo htmlentities((isset($vo['desc_text']) && ($vo['desc_text'] !== '')?$vo['desc_text']:'')); ?></textarea></div></div><div class="layui-form-item"><label class="layui-form-label label-required">关联视频</label><div class="layui-input-inline"><select name="video_id" lay-filter ="video_id" lay-search><option value="0">请选择</option><?php foreach($video_list as $vk=>$vv): ?><option <?php if(isset($vo['video_id']) && $vo['video_id'] == $vv['id']): ?>selected<?php endif; ?> data-vl_key="<?php echo htmlentities($vk); ?>" value="<?php echo htmlentities($vv['id']); ?>"><?php echo htmlentities($vv['title']); ?></option><?php endforeach; ?></select></div><div class="layui-input-inline"><select name="video_item" lay-filter ="video_item" lay-search><option value="0">请选择</option><?php foreach($video_list as $vk=>$vv): if(isset($vo['video_id']) && $vo['video_id'] == $vv['id']): foreach($vv['video_arr'] as $cln): ?><option <?php if(isset($vo['video_item']) && $vo['video_item'] == $cln['id']): ?> selected <?php endif; ?> value="<?php echo htmlentities($cln['id']); ?>"><?php echo htmlentities($cln['title']); ?></option><?php endforeach; ?><?php endif; ?><?php endforeach; ?></select></div></div><div class="layui-form-item"><label class="layui-form-label label-required">关联资料</label><div class="layui-input-inline"><select name="datum_id" lay-filter ="datum_id" lay-search><option value="0">请选择</option><?php foreach($datum_list as $dk=>$dv): ?><option <?php if(isset($vo['datum_id']) && $vo['datum_id'] == $dv['id']): ?>selected<?php endif; ?> data-dl_key="<?php echo htmlentities($dk); ?>" value="<?php echo htmlentities($dv['id']); ?>"><?php echo htmlentities($dv['title']); ?></option><?php endforeach; ?></select></div><div class="layui-input-inline"><select name="datum_item" lay-filter ="datum_item" lay-search><option value="0">请选择</option><?php foreach($datum_list as $vk=>$vv): if(isset($vo['datum_id']) && $vo['datum_id'] == $vv['id']): foreach($vv['url_arr'] as $cln): ?><option <?php if(isset($vo['datum_item']) && $vo['datum_item'] == $cln['id']): ?> selected <?php endif; ?> value="<?php echo htmlentities($cln['id']); ?>"><?php echo htmlentities($cln['title']); ?></option><?php endforeach; ?><?php endif; ?><?php endforeach; ?></select></div></div><div class="layui-form-item" ><label class="layui-form-label ">关联商品</label><div class="layui-input-inline" ><select name="supplier_id" lay-filter ="supplier_id" lay-search><option value="0">请选择</option><?php foreach($supplier as $dk=>$dv): ?><option <?php if(isset($vo['supplier_id']) && $vo['supplier_id'] == $dv['id']): ?>selected<?php endif; ?> data-dl_key="<?php echo htmlentities($dk); ?>" value="<?php echo htmlentities($dv['id']); ?>"><?php echo htmlentities($dv['title']); ?></option><?php endforeach; ?></select></div><div class="layui-input-inline"><select name="goods_id" lay-filter ="goods_id" lay-search><option value="0">请选择</option><?php foreach($supplier as $vk=>$vv): if(isset($vo['supplier_id']) && $vo['supplier_id'] == $vv['id']): foreach($vv['goods_list'] as $cln): ?><option <?php if(isset($vo['goods_id']) && $vo['goods_id'] == $cln['id']): ?> selected <?php endif; ?> value="<?php echo htmlentities($cln['id']); ?>"><?php echo htmlentities($cln['name']); ?></option><?php endforeach; ?><?php endif; ?><?php endforeach; ?></select></div></div><div class="layui-form-item"><label class="layui-form-label label-required">评论开关</label><div class="layui-input-inline"><select name="comment_switch" lay-filter ="comment_switch" lay-search><?php foreach([1=>'开启',0=>'关闭'] as $ck=>$cv): if(!empty($vo['comment_switch']) && $vo['comment_switch'] == $ck): ?><option selected data-cl_key="<?php echo htmlentities($ck); ?>" value="<?php echo htmlentities($ck); ?>"><?php echo htmlentities($cv); ?></option><?php else: ?><option data-cl_key="<?php echo htmlentities($ck); ?>" value="<?php echo htmlentities($ck); ?>"><?php echo htmlentities($cv); ?></option><?php endif; ?><?php endforeach; ?></select></div></div><div class="layui-form-item"><label class="layui-form-label ">会员账号</label><div class="layui-input-block"><input name="phone" value='<?php echo htmlentities((isset($vo['phone']) && ($vo['phone'] !== '')?$vo['phone']:"")); ?>' placeholder="请输入会员账号" class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label ">上架时间</label><div class="layui-input-block"><input name="release_time" value='<?php echo htmlentities((isset($vo['release_time']) && ($vo['release_time'] !== '')?$vo['release_time']:"")); ?>' class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label label-required">是否VIP</label><div class="layui-input-block"><select class="layui-select" name="is_vip"><option value="0">否</option><option <?php if(!empty($vo['is_vip']) && $vo['is_vip'] == 1): ?>selected<?php endif; ?> value="1">是</option></select></div></div><div class="layui-form-item"><label class="layui-form-label label-required">图片</label><div class="layui-input-block"><table class="layui-table"><thead><tr><th class="text-left">展示图片</th></tr><tr><td width="auto" class="text-left"><input name="images" type="hidden" value="<?php echo htmlentities((isset($vo['images']) && ($vo['images'] !== '')?$vo['images']:'')); ?>"></td></tr></thead></table></div></div><div class="layui-form-item"><label class="layui-form-label ">阅读量</label><div class="layui-input-block"><input name="read_num" type="number" value='<?php echo htmlentities((isset($vo['read_num']) && ($vo['read_num'] !== '')?$vo['read_num']:"0")); ?>' placeholder="请输入阅读量" class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label ">热搜阅读量</label><div class="layui-input-block"><input name="hot_num" value='<?php echo htmlentities((isset($vo['hot_num']) && ($vo['hot_num'] !== '')?$vo['hot_num']:"")); ?>' placeholder="请输入热搜阅读量" class="layui-input"><input name="hot_num_old" type="hidden" value='<?php echo htmlentities((isset($vo['hot_num']) && ($vo['hot_num'] !== '')?$vo['hot_num']:"")); ?>' class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label ">热搜定时时间</label><div class="layui-input-block"><input name="regular_hot_end_time" value='<?php echo htmlentities((isset($vo['regular_hot_end_time']) && ($vo['regular_hot_end_time'] !== '')?$vo['regular_hot_end_time']:"")); ?>' class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label ">目标热搜阅读量</label><div class="layui-input-block"><input name="hot_target_num" value='<?php echo htmlentities((isset($vo['hot_target_num']) && ($vo['hot_target_num'] !== '')?$vo['hot_target_num']:"")); ?>' placeholder="请输入目标热搜阅读量" class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label ">排序</label><div class="layui-input-block"><input type="number" name="sort" value='<?php echo htmlentities((isset($vo['sort']) && ($vo['sort'] !== '')?$vo['sort']:"")); ?>' placeholder="请输入排序号" class="layui-input"></div></div><div class="layui-form-item"><label class="layui-form-label label-required">描述类型</label><div class="layui-input-inline"><select name="content_type" lay-filter ="content_type"><?php foreach([1=>'富文本',2=>'PDF'] as $ck=>$cv): if(!empty($vo['content_type']) && $vo['content_type'] == $ck): ?><option selected data-cl_key="<?php echo htmlentities($ck); ?>" value="<?php echo htmlentities($ck); ?>"><?php echo htmlentities($cv); ?></option><?php else: ?><option data-cl_key="<?php echo htmlentities($ck); ?>" value="<?php echo htmlentities($ck); ?>"><?php echo htmlentities($cv); ?></option><?php endif; ?><?php endforeach; ?></select></div></div><div class="layui-form-item pdf"><label class="layui-form-label label-required">PDF加密文件</label><label class="layui-col-xs10 relative"><label class="layui-col-xs9 think-form-group-left"><input name="pdf" value='<?php echo htmlentities((isset($vo['pdf']) && ($vo['pdf'] !== '')?$vo['pdf']:"")); ?>' placeholder="请上传" readonly class="layui-input "></label><button type="button" class="layui-btn" id="test3"><i class="layui-icon"></i>上传文件</button></label></div><div class="layui-form-item pdf"><label class="layui-form-label ">PDF原文件</label><label class="layui-col-xs10 relative"><label class="layui-col-xs9 think-form-group-left"><input name="pdf_clear" value='<?php echo htmlentities((isset($vo['pdf_clear']) && ($vo['pdf_clear'] !== '')?$vo['pdf_clear']:"")); ?>' readonly class="layui-input layui-bg-gray"></label></label></div><div class="layui-form-item content" ><label class="layui-form-label">描述</label><div class="layui-input-block"><textarea name="content"><?php echo htmlentities((isset($vo['content']) && ($vo['content'] !== '')?$vo['content']:"")); ?></textarea></div></div><?php if(!(empty($vo['id']) || (($vo['id'] instanceof \think\Collection || $vo['id'] instanceof \think\Paginator ) && $vo['id']->isEmpty()))): ?><input type='hidden' value='<?php echo htmlentities($vo['id']); ?>' name='id'><?php endif; ?><div class="layui-form-item text-center"><button class="layui-btn" type='submit'>保 存</button><button class="layui-btn layui-btn-danger" type='button' onclick="history.go(-1)" data-close>返回</button></div></div></form></div><script> window.form.render();
- laydate.render({type: 'datetime', elem: '[name="release_time"]'})
- laydate.render({type: 'datetime', elem: '[name="regular_hot_end_time"]'})
- require(['ckeditor', 'angular'], function () {
- window.createEditor('[name="content"]', {
- height: 500
- });
- form.render();
- })
- $('[name="images"]').uploadMultipleImage();
- // 关联视频监听
- form.on('select(video_id)', function(data){
- var cl_html = '<option value="0">请选择</option>';
- if(data.value == 0) {
- $("select[name='video_item']").html(cl_html);
- }else{
- var vl_key = data.elem[data.elem.selectedIndex].dataset.vl_key;
- var video_list = <?php echo json_encode($video_list); ?>;
- $.each(video_list[vl_key]['video_arr'],function (ck,cv) {
- cl_html +='<option value="'+cv.id+'">'+cv.title+'</option>';
- })
- $("select[name='video_item']").html(cl_html);
- }
- window.form.render();
- });
- // 关联资料监听
- form.on('select(datum_id)', function(data){
- var cl_html = '<option value="0">请选择</option>';
- if(data.value == 0) {
- $("select[name='datum_item']").html(cl_html);
- }else{
- var dl_key = data.elem[data.elem.selectedIndex].dataset.dl_key;
- console.log(dl_key);
- var datum_list = <?php echo json_encode($datum_list); ?>;
- $.each(datum_list[dl_key]['url_arr'],function (ck,cv) {
- cl_html +='<option value="'+cv.id+'">'+cv.title+'</option>';
- })
- $("select[name='datum_item']").html(cl_html);
- }
- window.form.render();
- });
- // 关联供应商商品监听
- form.on('select(supplier_id)', function(data){
- var cl_html = '<option value="0">请选择</option>';
- if(data.value == 0) {
- $("select[name='goods_id']").html(cl_html);
- }else{
- var dl_key = data.elem[data.elem.selectedIndex].dataset.dl_key;
- console.log(dl_key);
- var supplier = <?php echo json_encode($supplier); ?>;
- $.each(supplier[dl_key]['goods_list'],function (ck,cv) {
- cl_html +='<option value="'+cv.id+'">'+cv.name+'</option>';
- })
- $("select[name='goods_id']").html(cl_html);
- }
- window.form.render();
- });
- form.on('select(content_type)', function(data){
- check_type()
- window.form.render();
- })
- function check_type() {
- if( $("select[name='content_type']").val() == 1) {
- $(".content").show();
- $(".pdf").hide();
- }else{
- $(".content").hide();
- $(".pdf").show();
- }
- window.form.render();
- }
- check_type()
- layui.use(['upload', 'element', 'layer'], function(){
- var $ = layui.jquery
- ,upload = layui.upload
- ,element = layui.element
- ,layer = layui.layer;
- upload.render({
- elem: '#test3',
- url: '/api/upload/pdfUpload', //此处用的是第三方的 http 请求演示,实际使用时改成您自己的上传接口即可。,accept: 'file', //普通文件,
- accept: 'file', //普通文件,
- done: function(res){
- if(res.code == 1){
- $("input[name='pdf']").val(res.data.cipher_path);
- $("input[name='pdf_clear']").val(res.data.plaintext_path);
- }
- layer.msg(res.msg);
- }
- });
- });
- </script></div></div>
|