You've already forked qlg.tsgz.moe
addons
app_download_files
extend
hyhproject
admin
behavior
common
conf
controller
model
validate
view
accreds
addons
adgoods
adpositions
ads
areas
articlecats
articles
attributes
banks
brands
carts
cashdraws
chargeitems
css
datas
ectday
ectdeal
ecttarget
express
express.js
list.html
friendlinks
goods
goodsappraises
goodscats
goodsclassify
goodsconsult
homemenus
hooks
images
img
informs
js
log_sys_data
logmoneys
logoperates
logsms
logstafflogins
member
menus
messages
mobilebtns
navs
ordercomplains
orderrefunds
orders
payments
platform
recommends
reports
roles
settlements
shops
shops_back
speccats
staffs
styles
sysconfigs
templatemsgs
trade_rule
userranks
users
userscores
wsysconfigs
wxmenus
wxpassivereplys
wxtemplatemsgs
wxusers
base.html
enter_license.html
index.html
login.html
main.html
app
common
home
home2
mobile2
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5436787D.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
156 lines
5.5 KiB
JavaScript
Executable File
156 lines
5.5 KiB
JavaScript
Executable File
var mmg;
|
|
function initGrid(staffId){
|
|
var h = WST.pageHeight();
|
|
var cols = [
|
|
{title:'图标', name:'expressImg' ,width:50, align:'center', renderer: function(val,item,rowIndex){
|
|
return '<img src="'+WST.conf.IMGURL+'/'+item['expressImg']+'" height="28px" />';
|
|
}},
|
|
{title:'快递名称', name:'expressName', width: 160},
|
|
{title:'快递代码', name:'expressCode' ,width:60},
|
|
{title:'操作', name:'' ,width:150, align:'center', renderer: function(val,item,rowIndex){
|
|
var h = "";
|
|
if(WST.GRANT.KDGL_02)h += "<a class='btn btn-blue' onclick='javascript:getForEdit(" + item['expressId'] + ")'><i class='fa fa-pencil'></i>修改</a> ";
|
|
if(WST.GRANT.KDGL_03)h += "<a class='btn btn-red' onclick='javascript:toDel(" + item['expressId'] + ")'><i class='fa fa-trash-o'></i>删除</a> ";
|
|
return h;
|
|
}}
|
|
];
|
|
|
|
mmg = $('.mmg').mmGrid({height: (h-155),indexCol: true, cols: cols,method:'POST',
|
|
url: WST.U('admin/express/pageQuery'), fullWidthRows: true, autoLoad: true,
|
|
plugins: [
|
|
$('#pg').mmPaginator({})
|
|
]
|
|
});
|
|
$('#headTip').WSTTips({width:90,height:35,callback:function(v){
|
|
if(v){
|
|
mmg.resize({height:h-155});
|
|
}else{
|
|
mmg.resize({height:h-128});
|
|
}
|
|
}});
|
|
}
|
|
function toDel(id){
|
|
var box = WST.confirm({content:"您确定要删除该记录吗?",yes:function(){
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/express/del'),{id:id},function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg("操作成功",{icon:1});
|
|
layer.close(box);
|
|
mmg.load();
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}});
|
|
}
|
|
|
|
function getForEdit(id){
|
|
var loading = WST.msg('正在获取数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/express/get'),{id:id},function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.expressId){
|
|
WST.setValues(json);
|
|
//显示原来的图片
|
|
$('#preview').html('<img src="'+WST.conf.IMGURL+'/'+json.expressImg+'" height="75px" />');
|
|
$('#isImg').val('ok');
|
|
toEdit(json.expressId);
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}
|
|
|
|
function toEdit(id){
|
|
if(!isInitUpload){
|
|
initUpload();
|
|
}
|
|
var title = "新增";
|
|
if(id>0){
|
|
title = "编辑";
|
|
}else{
|
|
$('#expressForm')[0].reset();
|
|
}
|
|
var box = WST.open({title:title,type:1,content:$('#expressBox'),area: ['450px', '400px'],btn:['确定','取消'],
|
|
end:function(){
|
|
$('#expressBox').hide();
|
|
//重置表单
|
|
$('#expressForm')[0].reset();
|
|
//清空预览图
|
|
$('#preview').html('');
|
|
$('#expressImg').val('');
|
|
},yes:function(){
|
|
$('#expressForm').submit();
|
|
},cancel:function(){
|
|
//重置表单
|
|
$('#expressForm')[0].reset();
|
|
//清空预览图
|
|
$('#preview').html('');
|
|
$('#expressImg').val('');
|
|
}});
|
|
$('#expressForm').validator({
|
|
fields: {
|
|
expressName: {
|
|
rule:"required;",
|
|
msg:{required:"快递名称不能为空"},
|
|
tip:"请输入快递名称",
|
|
ok:"",
|
|
},
|
|
expressImg: {
|
|
rule:"required;",
|
|
msg:{required:"请上传图标"},
|
|
tip:"请上传图标",
|
|
ok:"",
|
|
}
|
|
},
|
|
valid: function(form){
|
|
var params = WST.getParams('.ipt');
|
|
params.expressId = id;
|
|
var loading = WST.msg('正在提交数据,请稍后...', {icon: 16,time:60000});
|
|
$.post(WST.U('admin/express/'+((id==0)?"add":"edit")),params,function(data,textStatus){
|
|
layer.close(loading);
|
|
var json = WST.toAdminJson(data);
|
|
if(json.status=='1'){
|
|
WST.msg("操作成功",{icon:1});
|
|
$('#expressForm')[0].reset();
|
|
//清空预览图
|
|
$('#preview').html('');
|
|
//清空图片隐藏域
|
|
$('#expressImg').val('');
|
|
layer.close(box);
|
|
mmg.load();
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
});
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
var isInitUpload = false;
|
|
function initUpload(){
|
|
isInitUpload = true;
|
|
//文件上传
|
|
WST.upload({
|
|
pick:'#adFilePicker',
|
|
formData: {dir:'accreds'},
|
|
accept: {extensions: 'gif,jpg,jpeg,png',mimeTypes: 'image/jpg,image/jpeg,image/png,image/gif'},
|
|
callback:function(f){
|
|
var json = WST.toAdminJson(f);
|
|
if(json.status==1){
|
|
$('#uploadMsg').empty().hide();
|
|
//将上传的图片路径赋给全局变量
|
|
$('#expressImg').val(json.savePath+json.name);
|
|
$('#preview').html('<img src="'+WST.conf.IMGURL+'/'+json.savePath+json.thumb+'" height="75" />');
|
|
}else{
|
|
WST.msg(json.msg,{icon:2});
|
|
}
|
|
},
|
|
progress:function(rate){
|
|
$('#uploadMsg').show().html('已上传'+rate+"%");
|
|
}
|
|
});
|
|
} |