mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[增加]微信关键字管理
This commit is contained in:
parent
ddad4fa987
commit
e7fa3c58fc
@ -38,7 +38,7 @@ class Index extends BasicAdmin {
|
||||
NodeModel::applyAuthNode();
|
||||
$list = Db::name('SystemMenu')->where('status', '1')->order('sort asc,id asc')->select();
|
||||
$menus = $this->_filterMenu(ToolsService::arr2tree($list));
|
||||
$this->assign('title', '平台管理');
|
||||
$this->assign('title', '系统管理');
|
||||
$this->assign('menus', $menus);
|
||||
return view();
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{:url()}" data-auto="true" method="post">
|
||||
<form class="layui-form layui-box" style='padding:25px 30px 20px 0' action="{$_url_}" data-auto="true" method="post">
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">上级菜单</label>
|
||||
<div class="layui-input-block">
|
||||
|
@ -14,6 +14,7 @@
|
||||
namespace app\wechat\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 微信文章管理
|
||||
@ -24,8 +25,43 @@ use controller\BasicAdmin;
|
||||
*/
|
||||
class Keys extends BasicAdmin {
|
||||
|
||||
public function index() {
|
||||
protected $table = 'WechatKeys';
|
||||
|
||||
/**
|
||||
* 显示关键字列表
|
||||
*/
|
||||
public function index() {
|
||||
$this->assign('title', '微信关键字');
|
||||
$db = Db::name($this->table)->where('keys', 'not in', ['subscribe', 'default']);
|
||||
$this->_list($db);
|
||||
}
|
||||
|
||||
/**
|
||||
* 列表数据处理
|
||||
* @param array $data
|
||||
*/
|
||||
protected function _index_data_filter(&$data) {
|
||||
$types = ['keys' => '关键字', 'image' => '图片', 'news' => '图文', 'music' => '音乐', 'text' => '文字', 'video' => '视频', 'voice' => '语音'];
|
||||
foreach ($data as &$vo) {
|
||||
$vo['type'] = isset($types[$vo['type']]) ? $types[$vo['type']] : $vo['type'];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 添加关键字
|
||||
* @return string
|
||||
*/
|
||||
public function add() {
|
||||
$this->assign('title', '添加关键字规则');
|
||||
return $this->_form($this->table, 'form', 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* 编辑关键字
|
||||
* @return string
|
||||
*/
|
||||
public function edit() {
|
||||
return $this->_form($this->table, 'form', 'id');
|
||||
}
|
||||
|
||||
public function subscribe() {
|
||||
|
24
application/wechat/controller/Review.php
Normal file
24
application/wechat/controller/Review.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: http://think.ctolog.com
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// +----------------------------------------------------------------------
|
||||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
|
||||
namespace app\wechat\controller;
|
||||
|
||||
class Review {
|
||||
|
||||
public function index() {
|
||||
|
||||
return '222';
|
||||
}
|
||||
|
||||
}
|
300
application/wechat/view/keys.form.html
Normal file
300
application/wechat/view/keys.form.html
Normal file
@ -0,0 +1,300 @@
|
||||
{extend name='extra@admin/content' /}
|
||||
|
||||
|
||||
{block name="content"}
|
||||
<div class="row">
|
||||
<!-- 效果预览区域 开始 -->
|
||||
<div class="col-xs-4" style="width:400px;">
|
||||
<div style="position:relative" class="phone-container animated fadeIn">
|
||||
<img style='width:100%' src="http://static.cdn.cuci.cc/mobile_head.png" alt=""/>
|
||||
<div class="phone-screen">
|
||||
<iframe id="phone-preview" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 效果预览区域 结束 -->
|
||||
<div class='col-xs-6'>
|
||||
<form class="form-horizontal" role="form" data-auto="true" action="{$_url_}" method="post">
|
||||
<div class="form-body">
|
||||
|
||||
{if isset($vo.keys) and $vo.keys neq 'default' and $vo.keys neq 'subscribe'}
|
||||
<div class="form-group">
|
||||
<label class="col-md-3 control-label">关键字</label>
|
||||
<div class="col-md-9">
|
||||
{if isset($vo.keys) and $vo.keys neq ""}
|
||||
<input required title='请输入关键字' maxlength='15' name='keys'
|
||||
value='{$vo.keys}' class="layui-input">
|
||||
{else/}
|
||||
<input required title='请输入关键字' maxlength='15' name='keys' value=''
|
||||
class="layui-input">
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{else}
|
||||
<div class="form-group">
|
||||
<label class="col-md-3 control-label">规则状态</label>
|
||||
<div class="col-md-9">
|
||||
<div class="mt-radio-inline" style='padding-bottom:0'>
|
||||
{if !isset($vo.status) or $vo.status neq 0}
|
||||
<label class="layui-form-label">
|
||||
<input data-none-auto type="radio" checked name="status" value="1"> 启用
|
||||
</label>
|
||||
<label class="layui-form-label">
|
||||
<input data-none-auto type="radio" name="status" value="0"> 禁用
|
||||
</label>
|
||||
{else/}
|
||||
<label class="layui-form-label">
|
||||
<input data-none-auto type="radio" name="status" value="1"> 启用
|
||||
</label>
|
||||
<label class="layui-form-label">
|
||||
<input data-none-auto type="radio" checked name="status" value="0"> 禁用
|
||||
</label>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="form-group">
|
||||
<label class="col-md-3 control-label">规则类型</label>
|
||||
<div class="col-md-9">
|
||||
<select name='type' class='layui-input'>
|
||||
{if !isset($vo.type) or $vo.type eq 'text'}
|
||||
<option value='text' selected>文字</option>
|
||||
{else/}
|
||||
<option value='text'>文字</option>
|
||||
{/if}
|
||||
|
||||
{if isset($vo.type) and $vo.type eq 'news'}
|
||||
<option value='news' selected>图文</option>
|
||||
{else}
|
||||
<option value='news'>图文</option>
|
||||
{/if}
|
||||
|
||||
{if isset($vo.type) and $vo.type eq 'image'}
|
||||
<option value='image' selected>图片</option>
|
||||
{else}
|
||||
<option value='image'>图片</option>
|
||||
{/if}
|
||||
|
||||
{if isset($vo.type) and $vo.type eq 'voice'}
|
||||
<option value='voice' selected>语音</option>
|
||||
{else}
|
||||
<option value='voice'>语音</option>
|
||||
{/if}
|
||||
|
||||
{if isset($vo.type) and $vo.type eq 'music'}
|
||||
<option value='music' selected>音乐</option>
|
||||
{else}
|
||||
<option value='music'>音乐</option>
|
||||
{/if}
|
||||
|
||||
{if isset($vo.type) and $vo.type eq 'video'}
|
||||
<option value='video' selected>视频</option>
|
||||
{else}
|
||||
<option value='video'>视频</option>
|
||||
{/if}
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='text'>
|
||||
<label class="col-md-3 control-label">规则内容</label>
|
||||
<div class="col-md-9">
|
||||
<textarea name="content" maxlength="10000" class="form-control" style="height:100px">{$vo.content|default='说点什么吧'}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='news'>
|
||||
<label class="col-md-3 control-label">选取图文</label>
|
||||
<div class="col-md-9">
|
||||
<a class="btn btn-link" data-iframe="{:url('wechat/news/select')}?field={:encode('news_id')}">
|
||||
选择图文
|
||||
</a>
|
||||
<input type="hidden" class='layui-input' value="{$vo.news_id|default=0}" name="news_id"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='image'>
|
||||
<label class="col-md-3 control-label">图片地址</label>
|
||||
<div class="col-md-9">
|
||||
<input onchange="$(this).next().attr('src', this.value);" type="hidden" name="image_url"
|
||||
value="{$vo.image_url|default='__STATIC__/theme/default/img/image.png'}"/>
|
||||
<img style="width:112px;height:auto;" data-tips-image
|
||||
src='{$vo.image_url|default="__STATIC__/theme/default/img/image.png"}'/>
|
||||
<a data-file="one" data-type="jpg,png,gif" data-field="image_url" class='btn btn-link'>上传图片</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='voice'>
|
||||
<label class="col-md-3 control-label">上传语音</label>
|
||||
<div class="col-md-9">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.voice_url|default=''}" name="voice_url"/>
|
||||
<a data-file="one" data-type="mp3,wma,wav,amr" data-field="voice_url"
|
||||
class="input-group-addon">
|
||||
<i class="fa fa-file"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-3 control-label">音乐标题</label>
|
||||
<div class="col-md-9">
|
||||
<input class='layui-input' maxlength='10' value="{$vo.music_title|default='音乐标题'}"
|
||||
name="music_title"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-3 control-label">上传音乐</label>
|
||||
<div class="col-md-9">
|
||||
<div class="input-group">
|
||||
<input class='layui-input' type="text" value="{$vo.music_url|default=''}" name="music_url"/>
|
||||
<a data-file="one" data-type="mp3,wma,wav,amr" data-field="music_url"
|
||||
class="input-group-addon">
|
||||
<i class="fa fa-file"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-3 control-label">音乐描述</label>
|
||||
<div class="col-md-9">
|
||||
<textarea name="music_desc" maxlength="50" class="form-control" style="height:100px">{$vo.music_desc|default='音乐描述'}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group" data-keys-type='music'>
|
||||
<label class="col-md-3 control-label">音乐图片</label>
|
||||
<div class="col-md-9">
|
||||
|
||||
<input onchange="$(this).next().attr('src', this.value);" type="hidden"
|
||||
value="{$vo.image_url|default='__STATIC__/theme/default/img/image.png'}"
|
||||
name="music_image"/>
|
||||
|
||||
<img style="width:112px;height:auto;" data-tips-image
|
||||
src='{$vo.image_url|default="__STATIC__/theme/default/img/image.png"}'/>
|
||||
|
||||
<a class="btn btn-sm green" data-file data-one="true" data-type="image"
|
||||
data-field="music_image" class='btn btn-link'>上传图片</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-md-3 control-label">视频标题</label>
|
||||
<div class="col-md-9">
|
||||
<input class='layui-input' maxlength='10'
|
||||
value="{$vo.video_title|default='视频标题'}" name="video_title"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-md-3 control-label">上传视频</label>
|
||||
<div class="col-md-9">
|
||||
<div class="input-group">
|
||||
|
||||
<input class='layui-input' type="text"
|
||||
value="{$vo.video_url|default=''}" name="video_url"/>
|
||||
|
||||
<a data-file data-one="true" data-type="mp4" data-field="video_url"
|
||||
class="input-group-addon">
|
||||
<i class="fa fa-file"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-keys-type='video'>
|
||||
<label class="col-md-3 control-label">视频描述</label>
|
||||
<div class="col-md-9">
|
||||
<textarea name="video_desc" maxlength="50" class="form-control" style="height:100px">{$vo.video_desc|default='视频描述'}</textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-actions">
|
||||
<div class="row">
|
||||
<div class="col-md-offset-3 col-md-9">
|
||||
<button class="layui-btn menu-submit">保存数据</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{if isset($vo['id'])}<input type='hidden' value='{$vo.id}' name='id'/>{/if}
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name="script"}
|
||||
<script>
|
||||
|
||||
$(function () {
|
||||
/**
|
||||
* 默认类型事件
|
||||
* @type String
|
||||
*/
|
||||
$('body').off('change', 'select[name=type]').on('change', 'select[name=type]', function () {
|
||||
var value = $(this).val(), $form = $(this).parents('form');
|
||||
var $current = $form.find('[data-keys-type="' + value + '"]').removeClass('hide');
|
||||
$form.find('[data-keys-type]').not($current).addClass('hide');
|
||||
switch (value) {
|
||||
case 'news':
|
||||
return $('[name="news_id"]').trigger('change');
|
||||
case 'text':
|
||||
return $('[name="content"]').trigger('change');
|
||||
case 'image':
|
||||
return $('[name="image_url"]').trigger('change');
|
||||
case 'video':
|
||||
return $('[name="video_url"]').trigger('change');
|
||||
case 'music':
|
||||
return $('[name="music_url"]').trigger('change');
|
||||
case 'voice':
|
||||
return $('[name="voice_url"]').trigger('change');
|
||||
}
|
||||
});
|
||||
|
||||
function showReview(params) {
|
||||
$('#phone-preview').attr('src', '{:url("@wechat/review")}?' + $.param(params || {}));
|
||||
}
|
||||
|
||||
// 图文显示预览
|
||||
$('body').off('change', '[name="news_id"]').on('change', '[name="news_id"]', function () {
|
||||
showReview({type: 'news', content: this.value});
|
||||
});
|
||||
// 文字显示预览
|
||||
$('body').off('change', '[name="content"]').on('change', '[name="content"]', function () {
|
||||
showReview({type: 'text', content: this.value});
|
||||
});
|
||||
// 图片显示预览
|
||||
$('body').off('change', '[name="image_url"]').on('change', '[name="image_url"]', function () {
|
||||
showReview({type: 'image', content: this.value});
|
||||
});
|
||||
// 音乐显示预览
|
||||
var musicSelector = '[name="music_url"],[name="music_title"],[name="music_desc"],[name="music_image"]';
|
||||
$('body').off('change', musicSelector).on('change', musicSelector, function () {
|
||||
var params = {type: 'music'}, $parent = $(this).parents('form');
|
||||
params.title = $parent.find('[name="music_title"]').val();
|
||||
params.url = $parent.find('[name="music_url"]').val();
|
||||
params.image = $parent.find('[name="music_image"]').val();
|
||||
params.desc = $parent.find('[name="music_desc"]').val();
|
||||
showReview(params);
|
||||
});
|
||||
// 视频显示预览
|
||||
var videoSelector = '[name="video_title"],[name="video_url"],[name="video_desc"]';
|
||||
$('body').off('change', videoSelector).on('change', videoSelector, function () {
|
||||
var params = {type: 'video'}, $parent = $(this).parents('form');
|
||||
params.title = $parent.find('[name="video_title"]').val();
|
||||
params.url = $parent.find('[name="video_url"]').val();
|
||||
params.desc = $parent.find('[name="video_desc"]').val();
|
||||
showReview(params);
|
||||
});
|
||||
|
||||
// 默认事件触发
|
||||
$('select[name=type]').map(function () {
|
||||
$(this).trigger('change');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
174
application/wechat/view/keys.index.html
Normal file
174
application/wechat/view/keys.index.html
Normal file
@ -0,0 +1,174 @@
|
||||
{extend name='extra@admin/content' /}
|
||||
|
||||
{block name="button"}
|
||||
<div class="nowrap pull-right" style="margin-top:10px">
|
||||
<button data-open="{:url('add')}" class='layui-btn layui-btn-small'>添加规则</button>
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name='content'}
|
||||
<form onsubmit="return false;" data-auto="" method="POST">
|
||||
<input type="hidden" value="resort" name="action"/>
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="text-center">关键字</th>
|
||||
<th class="text-center">回复类型</th>
|
||||
<th class="text-center">回复内容</th>
|
||||
<th class="text-center">更新时间</th>
|
||||
<th class="text-center">操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach $list as $key=>$vo}
|
||||
<tr>
|
||||
<td>{$vo.keys}</td>
|
||||
<td>{$vo.type}</td>
|
||||
<td>
|
||||
{if $vo.type eq '音乐'}
|
||||
<a class="btn btn-link" data-tips-text="预览" data-tips-placement="bottom"
|
||||
data-phone-view='{:url("@wechat/review")}&type=music&title={$vo.music_title}&desc={$vo.music_desc}'>
|
||||
<i class="fa fa-eye"></i> 预览
|
||||
</a>
|
||||
{elseif $vo.type eq '图文'}
|
||||
<a class="btn btn-link" data-tips-text="预览" data-tips-placement="bottom"
|
||||
data-phone-view='{:url("@wechat/review")}&type=news&content={$vo.news_id}'>
|
||||
<i class="fa fa-eye"></i> 预览
|
||||
</a>
|
||||
{elseif $vo.type eq '视频'}
|
||||
<a class="btn btn-link" data-tips-text="预览" data-tips-placement="bottom"
|
||||
data-phone-view='{:url("@wechat/review")}&type=video&title={$vo.video_title}&desc={$vo.video_desc}&url={$vo.video_url}'>
|
||||
<i class="fa fa-eye"></i> 预览
|
||||
</a>
|
||||
{else}
|
||||
{$vo.content}
|
||||
{/if}
|
||||
</td>
|
||||
<td>{$vo.create_at}</td>
|
||||
<td>
|
||||
{if auth("$classuri/edit")}
|
||||
<span class="text-explode">|</span>
|
||||
<a href='{"@wechat/keys/edit"|app_url}&id={$vo.id}'>编辑</a>
|
||||
{/if}
|
||||
{if auth("$classuri/del")}
|
||||
<span class="text-explode">|</span>
|
||||
<a data-delete='{$vo.id}' data-action='{"@wechat/keys/del"|app_url}'
|
||||
href="javascript:void(0)">删除</a>
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
{if isset($page)}<p>{$page}</p>{/if}
|
||||
</form>
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="script"}
|
||||
<script>
|
||||
/* 瀑布流控制 */
|
||||
var $layer = $('.news-container').cascade();
|
||||
/* 事件处理 */
|
||||
$('.news-container').on('mouseenter', '.news-box', function () {
|
||||
$(this).addClass('active');
|
||||
}).on('mouseleave', '.news-box', function () {
|
||||
$(this).removeClass('active');
|
||||
});
|
||||
/* 删除图文 */
|
||||
$('.news-container').on('click', '[data-news-del]', function () {
|
||||
var $news_box = $(this).parents('.news-box');
|
||||
var $news_del = $(this);
|
||||
$.msg.confirm('确定要删除吗?', function () {
|
||||
$.form.load('{"wechat/news/del"|app_url}', {id: $news_del.attr('data-news-del')}, 'POST', function (ret) {
|
||||
if (ret.code === 'SUCCESS') {
|
||||
$.msg.success(ret.info);
|
||||
$news_box.remove(), $layer.data('cascade').layout();
|
||||
} else {
|
||||
$.msg.error(ret.info);
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
$(function () {
|
||||
/**
|
||||
* 默认类型事件
|
||||
* @type String
|
||||
*/
|
||||
$('body').off('change', 'select[name=type]').on('change', 'select[name=type]', function () {
|
||||
var value = $(this).val(), $form = $(this).parents('form');
|
||||
var $current = $form.find('[data-keys-type="' + value + '"]').removeClass('hide');
|
||||
$form.find('[data-keys-type]').not($current).addClass('hide');
|
||||
switch (value) {
|
||||
case 'news':
|
||||
return $('[name="news_id"]').trigger('change');
|
||||
case 'text':
|
||||
return $('[name="content"]').trigger('change');
|
||||
case 'image':
|
||||
return $('[name="image_url"]').trigger('change');
|
||||
case 'video':
|
||||
return $('[name="video_url"]').trigger('change');
|
||||
case 'music':
|
||||
return $('[name="music_url"]').trigger('change');
|
||||
case 'voice':
|
||||
return $('[name="voice_url"]').trigger('change');
|
||||
}
|
||||
});
|
||||
|
||||
function showReview(params) {
|
||||
params = params || {};
|
||||
$('#phone-preview').attr('src', '{"@wechat/review"|app_url}&' + $.param(params));
|
||||
}
|
||||
|
||||
// 图文显示预览
|
||||
$('body').off('change', '[name="news_id"]').on('change', '[name="news_id"]', function () {
|
||||
showReview({type: 'news', content: this.value});
|
||||
});
|
||||
// 文字显示预览
|
||||
$('body').off('change', '[name="content"]').on('change', '[name="content"]', function () {
|
||||
showReview({type: 'text', content: this.value});
|
||||
});
|
||||
// 图片显示预览
|
||||
$('body').off('change', '[name="image_url"]').on('change', '[name="image_url"]', function () {
|
||||
showReview({type: 'image', content: this.value});
|
||||
});
|
||||
// 音乐显示预览
|
||||
var musicSelector = '[name="music_url"],[name="music_title"],[name="music_desc"],[name="music_image"]';
|
||||
$('body').off('change', musicSelector).on('change', musicSelector, function () {
|
||||
var params = {type: 'music'}, $parent = $(this).parents('form');
|
||||
params.title = $parent.find('[name="music_title"]').val();
|
||||
params.url = $parent.find('[name="music_url"]').val();
|
||||
params.image = $parent.find('[name="music_image"]').val();
|
||||
params.desc = $parent.find('[name="music_desc"]').val();
|
||||
showReview(params);
|
||||
});
|
||||
// 视频显示预览
|
||||
var videoSelector = '[name="video_title"],[name="video_url"],[name="video_desc"]';
|
||||
$('body').off('change', videoSelector).on('change', videoSelector, function () {
|
||||
var params = {type: 'video'}, $parent = $(this).parents('form');
|
||||
params.title = $parent.find('[name="video_title"]').val();
|
||||
params.url = $parent.find('[name="video_url"]').val();
|
||||
params.desc = $parent.find('[name="video_desc"]').val();
|
||||
showReview(params);
|
||||
});
|
||||
|
||||
// 默认事件触发
|
||||
$('select[name=type]').map(function () {
|
||||
$(this).trigger('change');
|
||||
});
|
||||
|
||||
/*! 删除关键字 */
|
||||
$('[data-delete]').on('click', function () {
|
||||
var id = this.getAttribute('data-delete');
|
||||
var url = this.getAttribute('data-action');
|
||||
$.msg.confirm('确定要删除这条记录吗?', function () {
|
||||
$.form.load(url, {id: id}, 'POST', function (ret) {
|
||||
if (ret.code === "SUCCESS") {
|
||||
window.location.reload();
|
||||
}
|
||||
});
|
||||
})
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{/block}
|
Loading…
x
Reference in New Issue
Block a user