...
|
...
|
@@ -64,7 +64,6 @@ var Bll = { |
|
|
if(isLoading==1 && loadModal) loadModal.close();
|
|
|
|
|
|
var data = res.data;
|
|
|
console.log(data);
|
|
|
currentShopCategoryNum = data.length;
|
|
|
$('#initCategory').hide();
|
|
|
$('#showCategory').html(common.util.__template2($("#listTemplate").html(),{shopId:currentShopId, data:data})).show();
|
...
|
...
|
@@ -133,7 +132,6 @@ $(document).on('click', '.addBtn', function () { |
|
|
$(document).on('click', '.editCategory', function () {
|
|
|
var categoryName = $(this).parent().parent().find('td').eq(1).text();
|
|
|
var categoryId = $(this).data('categoryid');
|
|
|
console.log(categoryId)
|
|
|
Bll.toast(1, '/shops/shopCategory/update', categoryName, categoryId);
|
|
|
});
|
|
|
|
...
|
...
|
|