1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /**
- *
- **/
- $.namespace("hxhbtj.main");
-
- hxhbtj.main.path=null;
-
- hxhbtj.main.search=function(){
- $("#hxhbtjform").submit();
- };
-
- hxhbtj.main.view=function(id){
- location.href=$.app+"/hxhbtj/view?id="+id;
- };
-
-
-
- hxhbtj.main.del=function(data){
- $.confirm({
- title: '确认框',
- content: '确认删除吗',
- confirm: function(){
- $.post($.app + "/hxhbtj/delete", {
- id : data
- }, function(data) {
- if (data.success) {
- $.alert({
- title: '提示',
- content: '操作成功',
- confirm: function(){
- $("#hxhbtjform").submit();
- }
- });
- } else {
- $.alert({
- title: '提示',
- content: data.message,
- confirm: function(){
- }
- });
- }
- }, "json");
- },
- cancel: function(){
- }
- });
- };
-
- hxhbtj.main.back=function(){
- if( hxhbtj.main.path!=null&& hxhbtj.main.path!='') {
- location.href=$.app+ hxhbtj.main.path;
- } else {
- location.href=$.app+"/hxhbtj/main";
- }
- };
- hxhbtj.main.add=function(){
- location.href=$.app+"/hxhbtj/add";
- };
- hxhbtj.main.edit=function(data){
- location.href=$.app+"/hxhbtj/edit?id="+data;
- };
|