mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-06 05:48:48 +08:00
30 lines
736 B
JavaScript
Executable File
30 lines
736 B
JavaScript
Executable File
$(function()
|
|
{
|
|
// 表单初始化
|
|
FromInit('form.form-validation-article');
|
|
FromInit('form.form-validation-customview');
|
|
FromInit('form.form-validation-goods_category');
|
|
FromInit('form.form-validation-design');
|
|
|
|
/**
|
|
* 添加
|
|
*/
|
|
$('.submit-add').on('click', function()
|
|
{
|
|
// 获取标签
|
|
var tag = $(this).data('tag');
|
|
|
|
// 更改窗口名称
|
|
$title = $('#'+tag).find('.am-popup-title');
|
|
$title.text($title.data('add-title'));
|
|
|
|
// 清空表单
|
|
FormDataFill({"id":"", "pid":0, "name":"", "url":"", "value":"", "sort":0, "is_show":1, "is_new_window_open":0}, '#'+tag);
|
|
|
|
// 校验成功状态增加失去焦点
|
|
$('#'+tag).find('form').find('.am-field-valid').each(function()
|
|
{
|
|
$(this).blur();
|
|
});
|
|
});
|
|
}); |