GLUE界面,完整国际化定制

This commit is contained in:
xuxueli 2018-01-19 21:50:45 +08:00
parent 892f08e088
commit 482ea3b5a1
1 changed files with 5 additions and 5 deletions

View File

@ -38,15 +38,15 @@ $(function() {
if (!glueRemark) {
layer.open({
title: '系统提示',
content: '请输入备注',
title: I18n.system_tips,
content: I18n.system_please_input + I18n.jobinfo_glue_remark ,
icon: '2'
});
return;
}
if (glueRemark.length <4 || glueRemark.length > 100) {
layer.open({
title: '系统提示',
title: I18n.system_tips ,
content: '备注长度应该在4至100之间',
icon: '2'
});
@ -65,7 +65,7 @@ $(function() {
success : function(data){
if (data.code == 200) {
layer.open({
title: '系统提示',
title: I18n.system_tips,
content: '保存成功',
icon: '1',
end: function(layero, index){
@ -75,7 +75,7 @@ $(function() {
});
} else {
layer.open({
title: '系统提示',
title: I18n.system_tips,
content: (data.msg || "保存失败"),
icon: '2'
});