|
|
'use strict';
|
|
|
var $ = require('jquery'),
|
|
|
common=require('../../common/common');
|
|
|
common = require('../../common/common');
|
|
|
|
|
|
var ENUM={
|
|
|
var ENUM = {
|
|
|
//0已下架,1待上架,2待审核,3驳回,4通过,1已上架,5再上架待审核,6再上架驳回,7再上架通过。
|
|
|
status: {
|
|
|
'0': '已下架',
|
|
|
'1': '已上架',
|
|
|
'2': '待审核',
|
|
|
'3': '驳回',
|
|
|
'4': '通过',
|
|
|
'5': '再上架待审核',
|
|
|
'6': '再上架驳回',
|
|
|
'7': '再上架通过',
|
|
|
'8': '待上架'
|
|
|
},
|
|
|
'0': '已下架',
|
|
|
'1': '已上架',
|
|
|
'2': '待审核',
|
|
|
'3': '驳回',
|
|
|
'4': '通过',
|
|
|
'5': '再上架待审核',
|
|
|
'6': '再上架驳回',
|
|
|
'7': '再上架通过',
|
|
|
'8': '待上架'
|
|
|
},
|
|
|
//tips:{"0":0,"1":0,"2":0,"3":0,"4":0,"all":0}
|
|
|
|
|
|
enum:{
|
|
|
1:'待审核',
|
|
|
2:'驳回',
|
|
|
3:'通过',
|
|
|
all:"全部商品"
|
|
|
enum: {
|
|
|
1: '待审核',
|
|
|
2: '驳回',
|
|
|
3: '通过',
|
|
|
all: "全部商品"
|
|
|
},
|
|
|
tips:{"1":0,"2":0,"3":0,"all":0}
|
|
|
tips: {
|
|
|
"1": 0,
|
|
|
"2": 0,
|
|
|
"3": 0,
|
|
|
"all": 0
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// 审核状态枚举
|
|
|
var AuditEnum = {
|
|
|
status:{
|
|
|
100:"待审核",
|
|
|
200:"审核通过",
|
|
|
300:"驳回",
|
|
|
"":"过期",
|
|
|
"1":"作废",
|
|
|
status: {
|
|
|
100: "待审核",
|
|
|
200: "审核通过",
|
|
|
300: "驳回",
|
|
|
"": "过期",
|
|
|
"1": "作废",
|
|
|
|
|
|
}
|
|
|
}
|
...
|
...
|
@@ -41,10 +46,10 @@ var AuditEnum = { |
|
|
// 年龄层枚举
|
|
|
var AgeLevelEnum = {
|
|
|
level: {
|
|
|
1:"成人",
|
|
|
2:"大童",
|
|
|
3:"小童",
|
|
|
"":"未知年龄"
|
|
|
1: "成人",
|
|
|
2: "大童",
|
|
|
3: "小童",
|
|
|
"": "未知年龄"
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
@@ -59,32 +64,53 @@ var GenderEnum = { |
|
|
|
|
|
// 商品类型
|
|
|
var GoodsTypeEnum = {
|
|
|
type: {
|
|
|
1:"普通商品",
|
|
|
2:"赠品",
|
|
|
3:"虚拟商品",
|
|
|
"":"未知类型"
|
|
|
type: {
|
|
|
1: "普通商品",
|
|
|
2: "赠品",
|
|
|
3: "虚拟商品",
|
|
|
"": "未知类型"
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
/*下拉选择*/
|
|
|
new common.dropDown({el:"#shopId",ajax:"queryShop"});
|
|
|
new common.dropDown({el:"#brandId",ajax:"queryBrand"});
|
|
|
new common.dropDown({el:"#founder",ajax:"querySupplier"});
|
|
|
/*下拉选择*/
|
|
|
new common.dropDown({
|
|
|
el: "#shopId",
|
|
|
ajax: "queryShop"
|
|
|
});
|
|
|
new common.dropDown({
|
|
|
el: "#brandId",
|
|
|
ajax: "queryBrand"
|
|
|
});
|
|
|
new common.dropDown({
|
|
|
el: "#founder",
|
|
|
ajax: "querySupplier"
|
|
|
});
|
|
|
|
|
|
new common.dropDown({el:"#isJit",ajax:""});
|
|
|
new common.dropDown({el:"#gender",ajax:""});
|
|
|
new common.dropDown({el:"#isJit",ajax:""});
|
|
|
new common.dropDown({el:"#size",ajax:""});
|
|
|
new common.dropDown({
|
|
|
el: "#isJit",
|
|
|
ajax: ""
|
|
|
});
|
|
|
new common.dropDown({
|
|
|
el: "#gender",
|
|
|
ajax: ""
|
|
|
});
|
|
|
new common.dropDown({
|
|
|
el: "#isJit",
|
|
|
ajax: ""
|
|
|
});
|
|
|
new common.dropDown({
|
|
|
el: "#size",
|
|
|
ajax: ""
|
|
|
});
|
|
|
|
|
|
|
|
|
var tabTree=new common.tabTree("#sort");
|
|
|
var tabTree = new common.tabTree("#sort");
|
|
|
tabTree.init();
|
|
|
|
|
|
|
|
|
|
|
|
var t = new common.tab({
|
|
|
el:"#basicTab",
|
|
|
click:function(){
|
|
|
el: "#basicTab",
|
|
|
click: function() {
|
|
|
|
|
|
var columnname = $(this).find('a').attr('columnname');
|
|
|
console.log("columnname = " + columnname);
|
...
|
...
|
@@ -92,34 +118,37 @@ var t = new common.tab({ |
|
|
// 选择【全部商品】
|
|
|
if (columnname == "all") {
|
|
|
g.options.columns[10].hidden = false; //显示【审核状态】
|
|
|
g.options.columns[12].hidden = true; //
|
|
|
g.options.columns[12].hidden = true; //
|
|
|
} else {
|
|
|
g.options.columns[10].hidden = true;
|
|
|
|
|
|
if (columnname == 2) {
|
|
|
g.options.columns[12].hidden = false;// 显示【驳回原因】
|
|
|
g.options.columns[12].hidden = false; // 显示【驳回原因】
|
|
|
} else
|
|
|
|
|
|
|
|
|
switch (columnname) {
|
|
|
switch (columnname) {
|
|
|
|
|
|
case 1:
|
|
|
case 3: { // 待审核, 通过
|
|
|
g.options.columns[10].hidden = true;
|
|
|
g.options.columns[12].hidden = true;
|
|
|
}
|
|
|
case 3:
|
|
|
{ // 待审核, 通过
|
|
|
g.options.columns[10].hidden = true;
|
|
|
g.options.columns[12].hidden = true;
|
|
|
}
|
|
|
break;
|
|
|
|
|
|
case 2: { // 驳回
|
|
|
g.options.columns[10].hidden = true;
|
|
|
g.options.columns[12].hidden = false;
|
|
|
}
|
|
|
case 2:
|
|
|
{ // 驳回
|
|
|
g.options.columns[10].hidden = true;
|
|
|
g.options.columns[12].hidden = false;
|
|
|
}
|
|
|
break;
|
|
|
|
|
|
default : {
|
|
|
g.options.columns[10].hidden = true;
|
|
|
g.options.columns[12].hidden = true;
|
|
|
}
|
|
|
default:
|
|
|
{
|
|
|
g.options.columns[10].hidden = true;
|
|
|
g.options.columns[12].hidden = true;
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
...
|
...
|
@@ -127,59 +156,53 @@ var t = new common.tab({ |
|
|
|
|
|
g.init('/supplier/baseproduct/ajax/index');
|
|
|
},
|
|
|
columns:[
|
|
|
{
|
|
|
name:"1",
|
|
|
display:"待审核({1})",
|
|
|
value:'2,5'
|
|
|
},
|
|
|
{
|
|
|
name:"2",
|
|
|
display:"驳回({2})",
|
|
|
value:'3,6'
|
|
|
},
|
|
|
{
|
|
|
name:"3",
|
|
|
display:"通过({3})",
|
|
|
value:'4,7'
|
|
|
},
|
|
|
{
|
|
|
name:"all",
|
|
|
display:"全部商品",
|
|
|
value:'2,3,4,5,6,7'
|
|
|
}
|
|
|
]
|
|
|
columns: [{
|
|
|
name: "1",
|
|
|
display: "待审核({1})",
|
|
|
value: '2,5'
|
|
|
}, {
|
|
|
name: "2",
|
|
|
display: "驳回({2})",
|
|
|
value: '3,6'
|
|
|
}, {
|
|
|
name: "3",
|
|
|
display: "通过({3})",
|
|
|
value: '4,7'
|
|
|
}, {
|
|
|
name: "all",
|
|
|
display: "全部商品",
|
|
|
value: '2,3,4,5,6,7'
|
|
|
}]
|
|
|
}).init(ENUM.tips);
|
|
|
|
|
|
|
|
|
var g = new common.grid({
|
|
|
el: '#basicTable',
|
|
|
parms:function(){
|
|
|
return {
|
|
|
productSkn:common.util.__input("productSkn"),
|
|
|
productSkc:common.util.__input("productSkc"),
|
|
|
productSku:common.util.__input("productSku"),
|
|
|
parms: function() {
|
|
|
return {
|
|
|
productSkn: common.util.__input("productSkn"),
|
|
|
productSkc: common.util.__input("productSkc"),
|
|
|
productSku: common.util.__input("productSku"),
|
|
|
productName: common.util.__input("productName"),
|
|
|
shopId: common.util.__input("shopId"),
|
|
|
brandId:common.util.__input("brandId"),
|
|
|
brandId: common.util.__input("brandId"),
|
|
|
isJit: common.util.__input("isJit"),
|
|
|
gender: common.util.__input("gender"),
|
|
|
maxSortId: tabTree.selected.length>0?tabTree.selected[0].id:"", // 一级类目
|
|
|
middleSortId: tabTree.selected.length>1?tabTree.selected[1].id:"", // 二级类目
|
|
|
smallSortId: tabTree.selected.length>2?tabTree.selected[2].id:"", // 三级类目
|
|
|
maxSortId: tabTree.selected.length > 0 ? tabTree.selected[0].id : "", // 一级类目
|
|
|
middleSortId: tabTree.selected.length > 1 ? tabTree.selected[1].id : "", // 二级类目
|
|
|
smallSortId: tabTree.selected.length > 2 ? tabTree.selected[2].id : "", // 三级类目
|
|
|
size: common.util.__input("size"),
|
|
|
productStatusStr:t.value?t.value: '2,3,4,5,6,7'
|
|
|
productStatusStr: t.value ? t.value : '2,3,4,5,6,7'
|
|
|
|
|
|
};
|
|
|
},
|
|
|
columns:[
|
|
|
{
|
|
|
columns: [{
|
|
|
display: '',
|
|
|
type: 'checkbox'
|
|
|
}, {
|
|
|
display: 'SKN',
|
|
|
name: 'productSkn'
|
|
|
},{
|
|
|
}, {
|
|
|
display: '图片',
|
|
|
name: 'picImgUrl',
|
|
|
render: function(item) {
|
...
|
...
|
@@ -191,18 +214,19 @@ var g = new common.grid({ |
|
|
{
|
|
|
display: '商品信息',
|
|
|
render: function(item) {
|
|
|
return '<p><strong>名称:</strong>' + filterNull(item,'productName') + '</p>' +
|
|
|
'<p><strong>品牌:</strong>' + filterNull(item,'brandName') + '</p>' +
|
|
|
'<p><strong>类目:</strong>' + filterNull(item,'maxSortName') + '/' + filterNull(item,'middleSortName') + '</p>';
|
|
|
return '<p><strong>名称:</strong>' + filterNull(item, 'productName') + '</p>' +
|
|
|
'<p><strong>品牌:</strong>' + filterNull(item, 'brandName') + '</p>' +
|
|
|
'<p><strong>类目:</strong>' + filterNull(item, 'maxSortName') + '/' + filterNull(item, 'middleSortName') + '</p>';
|
|
|
}
|
|
|
},
|
|
|
|
|
|
{display:"售价",
|
|
|
{
|
|
|
display: "售价",
|
|
|
render: function(item) {
|
|
|
return '<p><strong>吊牌价:</strong>' + filterNull(item,'retailPrice') + '</p>' +
|
|
|
'<p><strong>销售价:</strong>' + filterNull(item,'salesPrice') + '</p>' +
|
|
|
return '<p><strong>吊牌价:</strong>' + filterNull(item, 'retailPrice') + '</p>' +
|
|
|
'<p><strong>销售价:</strong>' + filterNull(item, 'salesPrice') + '</p>' +
|
|
|
'<p><strong>是否VIP:</strong></p>' +
|
|
|
'<p style="color: #ccc;"><strong>yoho币:</strong>' + filterNull(item,'returnCoin') + '</p>';
|
|
|
'<p style="color: #ccc;"><strong>yoho币:</strong>' + filterNull(item, 'returnCoin') + '</p>';
|
|
|
}
|
|
|
|
|
|
},
|
...
|
...
|
@@ -212,114 +236,131 @@ var g = new common.grid({ |
|
|
name: 'stock'
|
|
|
},
|
|
|
|
|
|
{display:"年龄层/性别",render:function(item){
|
|
|
var html=[];
|
|
|
var ageLevel = AgeLevelEnum.level[item.ageLevel];
|
|
|
var gender = GenderEnum.gender[item.gender];
|
|
|
html.push("<p>"+ageLevel+" / "+gender+"</p>");
|
|
|
|
|
|
return html.join('');
|
|
|
}},
|
|
|
|
|
|
{display:"预售/奥莱",render:function(item){
|
|
|
{
|
|
|
display: "年龄层/性别",
|
|
|
render: function(item) {
|
|
|
var html = [];
|
|
|
var ageLevel = AgeLevelEnum.level[item.ageLevel];
|
|
|
var gender = GenderEnum.gender[item.gender];
|
|
|
html.push("<p>" + ageLevel + " / " + gender + "</p>");
|
|
|
|
|
|
var html=[];
|
|
|
//判断是否是预售商品
|
|
|
if (item.isAdvance === "Y") {
|
|
|
html.push("<p>预售</p>");
|
|
|
} else {
|
|
|
html.push("<p>否</p>");
|
|
|
return html.join('');
|
|
|
}
|
|
|
},
|
|
|
|
|
|
if (item.isOutLets == "Y") {
|
|
|
html.push( "<p>/奥莱</p>");
|
|
|
} else {
|
|
|
html.push( "<p>/否</p>");
|
|
|
}
|
|
|
{
|
|
|
display: "预售/奥莱",
|
|
|
render: function(item) {
|
|
|
|
|
|
return html.join('');
|
|
|
}},
|
|
|
var html = [];
|
|
|
//判断是否是预售商品
|
|
|
if (item.isAdvance === "Y") {
|
|
|
html.push("<p>预售</p>");
|
|
|
} else {
|
|
|
html.push("<p>否</p>");
|
|
|
}
|
|
|
|
|
|
if (item.isOutLets == "Y") {
|
|
|
html.push("<p>/奥莱</p>");
|
|
|
} else {
|
|
|
html.push("<p>/否</p>");
|
|
|
}
|
|
|
|
|
|
return html.join('');
|
|
|
}
|
|
|
},
|
|
|
|
|
|
|
|
|
{display:"上架时间",render: function (item) {
|
|
|
|
|
|
{
|
|
|
display: "上架时间",
|
|
|
render: function(item) {
|
|
|
|
|
|
|
|
|
return "<p>"+filterNull(item, 'shelveTime')+"</p>";
|
|
|
}},
|
|
|
{display:"商品类别", render: function(item) {
|
|
|
var type = GoodsTypeEnum.type[item.attribute] ? GoodsTypeEnum.type[item.attribute]:"未知类型";
|
|
|
return "<p>"+type+"</p>"
|
|
|
}},
|
|
|
return "<p>" + filterNull(item, 'shelveTime') + "</p>";
|
|
|
}
|
|
|
}, {
|
|
|
display: "商品类别",
|
|
|
render: function(item) {
|
|
|
var type = GoodsTypeEnum.type[item.attribute] ? GoodsTypeEnum.type[item.attribute] : "未知类型";
|
|
|
return "<p>" + type + "</p>"
|
|
|
}
|
|
|
},
|
|
|
|
|
|
// 审核状态(全部商品是显示) 10
|
|
|
{display:"审核状态",render:function(item){
|
|
|
var html=[];
|
|
|
html.push("<p>"+ENUM.status[item.status]+"</p>");
|
|
|
{
|
|
|
display: "审核状态",
|
|
|
render: function(item) {
|
|
|
var html = [];
|
|
|
html.push("<p>" + ENUM.status[item.status] + "</p>");
|
|
|
|
|
|
if (item.status == 3 || item.status == 6) {
|
|
|
html.push("<p style='color:red;'>"+filterNull(item,'rejectReason')+"</p>");
|
|
|
}
|
|
|
if (item.status == 3 || item.status == 6) {
|
|
|
html.push("<p style='color:red;'>" + filterNull(item, 'rejectReason') + "</p>");
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return html.join('');
|
|
|
}},
|
|
|
return html.join('');
|
|
|
}
|
|
|
},
|
|
|
|
|
|
{display:"操作信息",render:function(item){
|
|
|
var html=[];
|
|
|
html.push("<p>"+filterNull(item,'founderName')+"</p>");
|
|
|
html.push("<p>"+filterNull(item,'editTime')+"</p>");
|
|
|
{
|
|
|
display: "操作信息",
|
|
|
render: function(item) {
|
|
|
var html = [];
|
|
|
html.push("<p>" + filterNull(item, 'founderName') + "</p>");
|
|
|
html.push("<p>" + filterNull(item, 'editTime') + "</p>");
|
|
|
|
|
|
return html.join('');
|
|
|
}},
|
|
|
{
|
|
|
// 12
|
|
|
return html.join('');
|
|
|
}
|
|
|
}, {
|
|
|
// 12
|
|
|
display: '驳回原因',
|
|
|
hidden: true,
|
|
|
hidden: true,
|
|
|
name: 'status', // 8待上架,2待审核,3驳回,4通过,1已上架,0已下架,5再上架待审核,6再上架驳回,7再上架通过
|
|
|
render: function(item) {
|
|
|
var html = '';
|
|
|
html += ENUM.status[item.status];
|
|
|
if (item.status == 3 || item.status == 6) {
|
|
|
html += '<p style="color:red;">' + filterNull(item,'rejectReason') + '</p>'
|
|
|
html += '<p style="color:red;">' + filterNull(item, 'rejectReason') + '</p>'
|
|
|
}
|
|
|
return html;
|
|
|
}
|
|
|
},
|
|
|
{display:"操作",render:function(item){
|
|
|
var html=[];
|
|
|
}, {
|
|
|
display: "操作",
|
|
|
render: function(item) {
|
|
|
var html = [];
|
|
|
|
|
|
|
|
|
//html.push('<a data-index="'+ item.__index+ '" href="JavaScript:;" class="btn btn-info btn-xs edit-class-btn" id="btn-item-info">查看</a>');
|
|
|
html.push('<a href="/goods/audit/info/' + item.productSkn + '" class="btn btn-info btn-xs info-btn">查看</a>');
|
|
|
//html.push('<a data-index="'+ item.__index+ '" href="JavaScript:;" class="btn btn-info btn-xs edit-class-btn" id="btn-item-info">查看</a>');
|
|
|
html.push('<a href="/goods/audit/info/' + item.productSkn + '" class="btn btn-info btn-xs info-btn">查看</a>');
|
|
|
|
|
|
//if (item.status == 3 || item.status == 6) { // 驳回
|
|
|
// html.push('<a data-index="'+ item.__index+ '" href="JavaScript:;" class="btn operation btn-success btn-xs edit-class-btn" id="btn-item-pass">通过</a>');
|
|
|
//}
|
|
|
//if (item.status == 3 || item.status == 6) { // 驳回
|
|
|
// html.push('<a data-index="'+ item.__index+ '" href="JavaScript:;" class="btn operation btn-success btn-xs edit-class-btn" id="btn-item-pass">通过</a>');
|
|
|
//}
|
|
|
|
|
|
if (item.status == 2 || item.status == 5) { // 待审核
|
|
|
html.push('<a data-index="'+ item.__index+ '" href="JavaScript:;" class="btn operation btn-success btn-xs edit-class-btn" id="btn-item-pass">通过</a>');
|
|
|
html.push('<a data-index="'+ item.__index+ '" href="JavaScript:;" class="btn operation btn-danger btn-xs edit-class-btn" id="btn-item-reject">驳回</a>');
|
|
|
}
|
|
|
if (item.status == 2 || item.status == 5) { // 待审核
|
|
|
html.push('<a data-index="' + item.__index + '" href="JavaScript:;" class="btn operation btn-success btn-xs edit-class-btn" id="btn-item-pass">通过</a>');
|
|
|
html.push('<a data-index="' + item.__index + '" href="JavaScript:;" class="btn operation btn-danger btn-xs edit-class-btn" id="btn-item-reject">驳回</a>');
|
|
|
}
|
|
|
|
|
|
|
|
|
return html.join('');
|
|
|
}},
|
|
|
return html.join('');
|
|
|
}
|
|
|
},
|
|
|
]
|
|
|
});
|
|
|
g.init('/supplier/baseproduct/ajax/index');
|
|
|
|
|
|
// tab初始化
|
|
|
var loadTab = function () {
|
|
|
var loadTab = function() {
|
|
|
t.active = undefined;
|
|
|
setTimeout(function () {
|
|
|
setTimeout(function() {
|
|
|
common.util.__ajax({
|
|
|
url:"/supplier/baseproduct/auditCount",
|
|
|
data:g.options.parms()
|
|
|
}, function (res) {
|
|
|
var __dt=$.extend({},ENUM.tips,res.data);
|
|
|
url: "/supplier/baseproduct/auditCount",
|
|
|
data: g.options.parms()
|
|
|
}, function(res) {
|
|
|
var __dt = $.extend({}, ENUM.tips, res.data);
|
|
|
t.init(__dt);
|
|
|
}, true);
|
|
|
}, 800);
|
...
|
...
|
@@ -327,18 +368,18 @@ var loadTab = function () { |
|
|
|
|
|
loadTab();
|
|
|
// 筛选
|
|
|
$(document).on('click', "#filter-btn", function () {
|
|
|
|
|
|
$(document).on('click', "#filter-btn", function() {
|
|
|
loadTab();
|
|
|
g.reload();
|
|
|
});
|
|
|
|
|
|
var Bll={
|
|
|
toast:function(content,fn){
|
|
|
common.dialog.confirm("温馨提示",content,function(){
|
|
|
var Bll = {
|
|
|
toast: function(content, fn) {
|
|
|
common.dialog.confirm("温馨提示", content, function() {
|
|
|
common.util.__ajax({
|
|
|
url:'/supplier/baseproduct/auditReject',
|
|
|
data:fn()
|
|
|
},function(){
|
|
|
url: '/supplier/baseproduct/auditReject',
|
|
|
data: fn()
|
|
|
}, function() {
|
|
|
g.reload();
|
|
|
loadTab();
|
|
|
});
|
...
|
...
|
@@ -348,7 +389,7 @@ var Bll={ |
|
|
|
|
|
|
|
|
//批量驳回
|
|
|
$(document).on("click","#reject-btn",function(){
|
|
|
$(document).on("click", "#reject-btn", function() {
|
|
|
|
|
|
var selectedArr = g.selected,
|
|
|
len = selectedArr.length,
|
...
|
...
|
@@ -358,7 +399,7 @@ $(document).on("click","#reject-btn",function(){ |
|
|
return;
|
|
|
}
|
|
|
|
|
|
var data=function(){
|
|
|
var data = function() {
|
|
|
var reason = $('#reason').val();
|
|
|
if (reason === '' || $.trim(reason) === '') {
|
|
|
return "请填写驳回原因";
|
...
|
...
|
@@ -372,16 +413,16 @@ $(document).on("click","#reject-btn",function(){ |
|
|
console.log(sknList);
|
|
|
|
|
|
return {
|
|
|
productSknList:JSON.stringify(sknList),
|
|
|
targetStatus:3, // 驳回
|
|
|
productSknList: JSON.stringify(sknList),
|
|
|
targetStatus: 3, // 驳回
|
|
|
rejectReason: reason
|
|
|
};
|
|
|
}
|
|
|
Bll.toast($("#template").html(),data);
|
|
|
Bll.toast($("#template").html(), data);
|
|
|
});
|
|
|
|
|
|
//批量通过
|
|
|
$(document).on("click","#pass-btn",function(){
|
|
|
$(document).on("click", "#pass-btn", function() {
|
|
|
|
|
|
var selectedArr = g.selected,
|
|
|
len = selectedArr.length,
|
...
|
...
|
@@ -391,7 +432,7 @@ $(document).on("click","#pass-btn",function(){ |
|
|
return;
|
|
|
}
|
|
|
|
|
|
var data=function(){
|
|
|
var data = function() {
|
|
|
|
|
|
$.each(selectedArr, function(i, value) {
|
|
|
sknList.push(value['productSkn']);
|
...
|
...
|
@@ -401,20 +442,20 @@ $(document).on("click","#pass-btn",function(){ |
|
|
console.log(sknList);
|
|
|
|
|
|
return {
|
|
|
productSknList:JSON.stringify(sknList),
|
|
|
targetStatus:4, // 通过
|
|
|
productSknList: JSON.stringify(sknList),
|
|
|
targetStatus: 4, // 通过
|
|
|
rejectReason: ""
|
|
|
};
|
|
|
}
|
|
|
Bll.toast("确定要通过该申请吗?",data);
|
|
|
Bll.toast("确定要通过该申请吗?", data);
|
|
|
});
|
|
|
|
|
|
// 单个驳回
|
|
|
$(document).on("click","#btn-item-reject",function(){
|
|
|
$(document).on("click", "#btn-item-reject", function() {
|
|
|
//auditOperation([],3,)
|
|
|
var item=g.rows[$(this).data("index")];
|
|
|
var item = g.rows[$(this).data("index")];
|
|
|
|
|
|
var data=function(){
|
|
|
var data = function() {
|
|
|
|
|
|
var reason = $('#reason').val();
|
|
|
if (reason === '' || $.trim(reason) === '') {
|
...
|
...
|
@@ -422,29 +463,29 @@ $(document).on("click","#btn-item-reject",function(){ |
|
|
}
|
|
|
|
|
|
return {
|
|
|
productSknList:JSON.stringify([item.productSkn]),
|
|
|
targetStatus:3, // 驳回
|
|
|
rejectReason:reason
|
|
|
productSknList: JSON.stringify([item.productSkn]),
|
|
|
targetStatus: 3, // 驳回
|
|
|
rejectReason: reason
|
|
|
};
|
|
|
}
|
|
|
Bll.toast($("#template").html(),data);
|
|
|
Bll.toast($("#template").html(), data);
|
|
|
});
|
|
|
|
|
|
|
|
|
// 单个通过
|
|
|
$(document).on("click","#btn-item-pass",function(){
|
|
|
$(document).on("click", "#btn-item-pass", function() {
|
|
|
//auditOperation([],3,)
|
|
|
var item=g.rows[$(this).data("index")];
|
|
|
var item = g.rows[$(this).data("index")];
|
|
|
|
|
|
var data=function(){
|
|
|
var data = function() {
|
|
|
|
|
|
return {
|
|
|
productSknList:JSON.stringify([item.productSkn]),
|
|
|
targetStatus:4, //通过
|
|
|
rejectReason:""
|
|
|
productSknList: JSON.stringify([item.productSkn]),
|
|
|
targetStatus: 4, //通过
|
|
|
rejectReason: ""
|
|
|
};
|
|
|
}
|
|
|
Bll.toast("确定要通过该申请吗?",data);
|
|
|
Bll.toast("确定要通过该申请吗?", data);
|
|
|
});
|
|
|
|
|
|
// 时间转化
|
...
|
...
|
@@ -463,8 +504,7 @@ Date.prototype.format = function(format) { |
|
|
}
|
|
|
for (var k in date) {
|
|
|
if (new RegExp("(" + k + ")").test(format)) {
|
|
|
format = format.replace(RegExp.$1, RegExp.$1.length == 1
|
|
|
? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
|
|
|
format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
|
|
|
}
|
|
|
}
|
|
|
return format;
|
...
|
...
|
@@ -479,6 +519,4 @@ function filterNull(item, instr) { |
|
|
} else {
|
|
|
return "";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|