...
|
...
|
@@ -47,7 +47,7 @@ var g = new common.grid({ |
|
|
display: "包含品牌",
|
|
|
name: "brands",
|
|
|
render: function(item) {
|
|
|
//console.log(item);
|
|
|
console.log(item);
|
|
|
if (item.brands instanceof Array && item.brands.length > 0) {
|
|
|
var html = '';
|
|
|
$.each(item.brands, function(i, value) {
|
...
|
...
|
@@ -94,12 +94,22 @@ var g = new common.grid({ |
|
|
render: function(item) {
|
|
|
var HtmArr = [];
|
|
|
|
|
|
if(item.checkStatus == 200){
|
|
|
if(+item.checkStatus == 200){
|
|
|
HtmArr.push('<a href="/supplier/store/decorationDetail/'+item.shopsId+'/'+item.shopsType+'/view/'+item.id+'/" class="btn btn-info btn-xs">装修查看</a>');
|
|
|
}else {
|
|
|
HtmArr.push('<a href="/supplier/store/decorationDetail/'+item.shopsId+'/'+item.shopsType+'/editor/'+item.id+'/" class="btn btn-success btn-xs">装修编辑</a>');
|
|
|
}
|
|
|
if (item.checkStatus == 900) {
|
|
|
|
|
|
if(+item.checkStatus == 300){
|
|
|
if(+item.shopStatus == 1){
|
|
|
// 1开启 0 关闭
|
|
|
HtmArr.push('<a data-index="'+item.__index+'" href="javascript:void(0);" class="closeshops btn btn-danger btn-xs">关店</a>');
|
|
|
}else{
|
|
|
HtmArr.push('<a data-index="'+item.__index+'" href="javascript:void(0);" class=" openshops btn btn-success btn-xs">开店</a>');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
if (+item.checkStatus == 900) {
|
|
|
HtmArr.push('<a href="javascript:void(0)" class="btn btn-warning btn-xs commentBtn" data-comment="'+item.comment+'">驳回理由</a>');
|
|
|
}
|
|
|
|
...
|
...
|
@@ -125,3 +135,28 @@ $(document).on('click', ".commentBtn", function() { |
|
|
function(){}
|
|
|
);
|
|
|
});
|
|
|
|
|
|
var Bll={
|
|
|
toast:function(content,url,id){
|
|
|
common.dialog.confirm("温馨提示",content,function(){
|
|
|
common.util.__ajax({
|
|
|
url:url,
|
|
|
data:{shopsId:id}
|
|
|
},function(){
|
|
|
g.reload();
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
}
|
|
|
|
|
|
//关闭店铺
|
|
|
$('#basicTable').on('click', '.closeshops', function() {
|
|
|
var item=g.rows[$(this).data("index")];
|
|
|
Bll.toast("确定要关闭此店铺吗?","/supplier/store/closeShops",item.shopsId);
|
|
|
});
|
|
|
|
|
|
//开启店铺
|
|
|
$('#basicTable').on('click', '.openshops', function() {
|
|
|
var item=g.rows[$(this).data("index")];
|
|
|
Bll.toast("确定要开启此店铺吗?","/supplier/store/openShops",item.shopsId);
|
|
|
}); |
|
|
\ No newline at end of file |
...
|
...
|
|