options += $(this).val()+","; }); $("#attribute-ids").val(options.substr(0, options.length - 1)); } }); </script> </div> </div> </div> <div id="product-tab-content-feature" class="product-tab-content" style=" display:none"> <div class="row"> <div class="col-md-10 form-horizontal"> <?php $features = Feature::loadData(); $featureValues = FeatureValue::loadData(); if (isset($obj)) { $selectedFeature = $obj->getFeatures(); } if ($features) { foreach ($features['items'] as $feature) { ?> <div class="form-group"> <label for="categoryBox" class="col-sm-2 control-label"><?php echo $feature['name']; ?> </label> <div class="col-sm-10"> <select name="id_feature_value[]" class="form-control"> <option value="">--选择特征--</option>
if ($feature->deleteMulti($select_cat)) { UIAdminAlerts::conf('商品特征值已删除'); } } /** 输出错误信息 */ if (isset($errors)) { UIAdminAlerts::MError($errors); } /** 导航 */ $breadcrumb = new UIAdminBreadcrumb(); $breadcrumb->home(); $breadcrumb->add(array('title' => '商品特征', 'href' => 'index.php?rule=feature')); $breadcrumb->add(array('title' => '商品特征值', 'active' => true)); $bread = $breadcrumb->draw(); $btn_group = array(array('type' => 'a', 'title' => '返回', 'href' => 'index.php?rule=feature', 'class' => 'btn-primary', 'icon' => 'level-up'), array('type' => 'a', 'title' => '新商品属性值', 'href' => 'index.php?rule=feature_value_edit&id_feature=' . Tools::G('id'), 'class' => 'btn-success', 'icon' => 'plus')); echo UIViewBlock::area(array('bread' => $bread, 'btn_groups' => $btn_group), 'breadcrumb'); /** 属性值 */ echo UIAdminDndTable::loadHead(); $table = new UIAdminDndTable('feature_value', 'FeatureValue', 'id_feature_value'); $table->addAttribte('id', 'feature_value'); $table->child = true; $table->header = array(array('sort' => false, 'isCheckAll' => 'itemsBox[]'), array('name' => 'id_feature_value', 'title' => 'ID', 'filter' => 'string'), array('name' => 'name', 'title' => '名称', 'filter' => 'string'), array('name' => 'position', 'title' => '排序'), array('sort' => false, 'title' => '操作', 'width' => '120px', 'class' => 'text-right', 'isAction' => array('edit', 'delete'))); $filter = $table->initFilter(); $filter['id_feature'] = Tools::G('id'); $orderBy = isset($_GET['orderby']) ? Tools::G('orderby') : 'position'; $orderWay = isset($_GET['orderway']) ? Tools::G('orderway') : 'asc'; $limit = $cookie->getPost('pagination') ? $cookie->getPost('pagination') : '50'; $p = Tools::G('p') ? Tools::G('p') == 0 ? 1 : Tools::G('p') : 1; $result = FeatureValue::loadData($p, $limit, $orderBy, $orderWay, $filter); $btn_group = array(array('type' => 'button', 'title' => '删除选中', 'confirm' => '确定要删除选中项?', 'name' => 'subDelete', 'btn_type' => 'submit', 'class' => 'btn-danger')); echo UIViewBlock::area(array('title' => '商品特征值', 'table' => $table, 'result' => $result, 'limit' => $limit, 'btn_groups' => $btn_group), 'table');