|
@@ -15,11 +15,24 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'],
|
|
|
show_open_data_url: 'Produceorder/show_open_data',
|
|
|
detail_url: 'Produceorder/detail', // 详情
|
|
|
table: 'Produceorder',
|
|
|
+ multi_edit_url: 'produceorder/multi_edit',
|
|
|
}
|
|
|
});
|
|
|
|
|
|
var table = $("#table");
|
|
|
|
|
|
+ $('.btn-multi-edit').click(function (){
|
|
|
+ let ids=[]
|
|
|
+ $('#table').bootstrapTable('getSelections').forEach(item=>{
|
|
|
+ ids.push(item.id)
|
|
|
+ })
|
|
|
+ if(!ids.length){
|
|
|
+ layer.alert('请选择')
|
|
|
+ return
|
|
|
+ }
|
|
|
+ Fast.api.open(`${$.fn.bootstrapTable.defaults.extend.multi_edit_url}/ids/${ids.join(',')}`,'批量编辑')
|
|
|
+ })
|
|
|
+
|
|
|
table.on('post-common-search.bs.table', function (event, table) {
|
|
|
var form = $("form", table.$commonsearch);
|
|
|
$("input[name='s_id']", form).addClass("selectpage").data("source", "auth/admin/index2").data("primaryKey", "id").data("params",{"custom[proxy]":"0","custom[sub]":"1"}).data("field", "nickname").data("orderBy", "id asc");
|
|
@@ -125,7 +138,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'],
|
|
|
{field: 'no', title: __('订单更新时间'),visible: false,operate: 'LIKE'},
|
|
|
{field: 'order_no', title: __('订单信息'),operate: false,formatter(_,order){
|
|
|
let a=[]
|
|
|
- a.push(`<div>订单号:<b class="btn-order_link" data-link="${order.order_no}">${order.order_no}</b></div>`)
|
|
|
+ a.push(`<div>订单号:<b class="btn-order_link" data-link="${order.order_no}">${order.order_no}</b><span style='color: ${order.flag};font-size: 24px; '>🏳</span></div>`)
|
|
|
if(order.pay_no){
|
|
|
a.push(`<div>支付单号:<b class="btn-order_link" data-link="${order.pay_no}">${order.pay_no}</b></div>`)
|
|
|
}
|
|
@@ -374,6 +387,9 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'],
|
|
|
add: function () {
|
|
|
Controller.api.bindevent();
|
|
|
},
|
|
|
+ multi_edit: function () {
|
|
|
+ Controller.api.bindevent();
|
|
|
+ },
|
|
|
edit: function () {
|
|
|
Controller.api.bindevent();
|
|
|
$(document).on('input propertychange','#c-trans_no',function (){
|