|
@@ -48,83 +48,83 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
table: table,
|
|
table: table,
|
|
events: Table.api.events.operate,
|
|
events: Table.api.events.operate,
|
|
|
|
|
|
- buttons: [{
|
|
|
|
- name: 'click',
|
|
|
|
- text:'已寄出',
|
|
|
|
- title: __('已寄出'),
|
|
|
|
- classname: 'btn btn-xs btn-info btn-click',
|
|
|
|
- url: 'books.books_level/edit?ids/{id}',
|
|
|
|
- data: {status:0},
|
|
|
|
- // icon: 'fa fa-leaf',
|
|
|
|
- click: function (data,row) {
|
|
|
|
- var temp=table.bootstrapTable('getSelections');
|
|
|
|
- var id = row.id;
|
|
|
|
- console.log(row);
|
|
|
|
- return $.ajax({
|
|
|
|
- // url:'http://up.kuman.cn/settle/cancel',
|
|
|
|
- url:'books.sample_apply/update_status?ids='+id,
|
|
|
|
- type:'post',
|
|
|
|
- // dataType:'json',
|
|
|
|
- data:{status:1},
|
|
|
|
- success:function(data){
|
|
|
|
- if(data.code === 1){
|
|
|
|
- layer.msg('操作成功');
|
|
|
|
- window.location.reload();
|
|
|
|
- }else{
|
|
|
|
- layer.msg(data.msg);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- // Layer.alert("点击按钮执行的事件");
|
|
|
|
- },
|
|
|
|
- visible: function (row) {
|
|
|
|
- console.log(row)
|
|
|
|
- if (row.status === "0"){
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
- return false;
|
|
|
|
- },
|
|
|
|
- refresh:true,
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- name: 'click',
|
|
|
|
- text:'拒绝',
|
|
|
|
- title: __('拒绝'),
|
|
|
|
- classname: 'btn btn-xs btn-danger btn-click',
|
|
|
|
- url: 'books.sample_apply/edit?ids/{id}',
|
|
|
|
- data: {status:1},
|
|
|
|
- // icon: 'fa fa-leaf',
|
|
|
|
- click: function (data,row) {
|
|
|
|
- var temp=table.bootstrapTable('getSelections');
|
|
|
|
- var id = row.id;
|
|
|
|
- console.log(row);
|
|
|
|
- return $.ajax({
|
|
|
|
- // url:'http://up.kuman.cn/settle/cancel',
|
|
|
|
- url:'books.sample_apply/update_status?ids='+id,
|
|
|
|
- type:'post',
|
|
|
|
- // dataType:'json',
|
|
|
|
- data:{status:2},
|
|
|
|
- success:function(data){
|
|
|
|
- if(data.code === 1){
|
|
|
|
- layer.msg('操作成功');
|
|
|
|
- window.location.reload();
|
|
|
|
- }else{
|
|
|
|
- layer.alert(data.msg);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- });
|
|
|
|
- // Layer.alert("点击按钮执行的事件");
|
|
|
|
- },
|
|
|
|
- visible: function (row) {
|
|
|
|
- // console.log(row)
|
|
|
|
- if (row.status === "0"){
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
- return false;
|
|
|
|
- },
|
|
|
|
- refresh:true,
|
|
|
|
- },
|
|
|
|
- ],
|
|
|
|
|
|
+ // buttons: [{
|
|
|
|
+ // name: 'click',
|
|
|
|
+ // text:'已寄出',
|
|
|
|
+ // title: __('已寄出'),
|
|
|
|
+ // classname: 'btn btn-xs btn-info btn-click',
|
|
|
|
+ // url: 'books.books_level/edit?ids/{id}',
|
|
|
|
+ // data: {status:0},
|
|
|
|
+ // // icon: 'fa fa-leaf',
|
|
|
|
+ // click: function (data,row) {
|
|
|
|
+ // var temp=table.bootstrapTable('getSelections');
|
|
|
|
+ // var id = row.id;
|
|
|
|
+ // console.log(row);
|
|
|
|
+ // return $.ajax({
|
|
|
|
+ // // url:'http://up.kuman.cn/settle/cancel',
|
|
|
|
+ // url:'books.sample_apply/update_status?ids='+id,
|
|
|
|
+ // type:'post',
|
|
|
|
+ // // dataType:'json',
|
|
|
|
+ // data:{status:1},
|
|
|
|
+ // success:function(data){
|
|
|
|
+ // if(data.code === 1){
|
|
|
|
+ // layer.msg('操作成功');
|
|
|
|
+ // window.location.reload();
|
|
|
|
+ // }else{
|
|
|
|
+ // layer.msg(data.msg);
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // // Layer.alert("点击按钮执行的事件");
|
|
|
|
+ // },
|
|
|
|
+ // visible: function (row) {
|
|
|
|
+ // console.log(row)
|
|
|
|
+ // if (row.status === "0"){
|
|
|
|
+ // return true;
|
|
|
|
+ // }
|
|
|
|
+ // return false;
|
|
|
|
+ // },
|
|
|
|
+ // refresh:true,
|
|
|
|
+ // },
|
|
|
|
+ // {
|
|
|
|
+ // name: 'click',
|
|
|
|
+ // text:'拒绝',
|
|
|
|
+ // title: __('拒绝'),
|
|
|
|
+ // classname: 'btn btn-xs btn-danger btn-click',
|
|
|
|
+ // url: 'books.sample_apply/edit?ids/{id}',
|
|
|
|
+ // data: {status:1},
|
|
|
|
+ // // icon: 'fa fa-leaf',
|
|
|
|
+ // click: function (data,row) {
|
|
|
|
+ // var temp=table.bootstrapTable('getSelections');
|
|
|
|
+ // var id = row.id;
|
|
|
|
+ // console.log(row);
|
|
|
|
+ // return $.ajax({
|
|
|
|
+ // // url:'http://up.kuman.cn/settle/cancel',
|
|
|
|
+ // url:'books.sample_apply/update_status?ids='+id,
|
|
|
|
+ // type:'post',
|
|
|
|
+ // // dataType:'json',
|
|
|
|
+ // data:{status:2},
|
|
|
|
+ // success:function(data){
|
|
|
|
+ // if(data.code === 1){
|
|
|
|
+ // layer.msg('操作成功');
|
|
|
|
+ // window.location.reload();
|
|
|
|
+ // }else{
|
|
|
|
+ // layer.alert(data.msg);
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // // Layer.alert("点击按钮执行的事件");
|
|
|
|
+ // },
|
|
|
|
+ // visible: function (row) {
|
|
|
|
+ // // console.log(row)
|
|
|
|
+ // if (row.status === "0"){
|
|
|
|
+ // return true;
|
|
|
|
+ // }
|
|
|
|
+ // return false;
|
|
|
|
+ // },
|
|
|
|
+ // refresh:true,
|
|
|
|
+ // },
|
|
|
|
+ // ],
|
|
formatter: function (value, row, index) {
|
|
formatter: function (value, row, index) {
|
|
var that = $.extend({}, this);
|
|
var that = $.extend({}, this);
|
|
$(table).data("operate-del", null); // 列表页面隐藏 .编辑operate-edit - 删除按钮operate-del
|
|
$(table).data("operate-del", null); // 列表页面隐藏 .编辑operate-edit - 删除按钮operate-del
|