|
@@ -217,7 +217,14 @@ class Goods extends Controller
|
|
$data['cateids'] = str2arr($data['cateids'] ?? '');
|
|
$data['cateids'] = str2arr($data['cateids'] ?? '');
|
|
// 其他表单数据
|
|
// 其他表单数据
|
|
$this->marks = ShopGoodsMark::items();
|
|
$this->marks = ShopGoodsMark::items();
|
|
- $this->cates = ShopGoodsCate::treeTable(true);
|
|
|
|
|
|
+// $this->cates = ShopGoodsCate::treeTable(true);
|
|
|
|
+ $cates = ShopGoodsCate::treeTable(true);
|
|
|
|
+ foreach ($cates as $k => $v){
|
|
|
|
+ if($v['id'] == $v['ids'][0]){
|
|
|
|
+ unset($cates[$k]);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ $this->cates = $cates;
|
|
$this->trucks = ExpressService::templates();
|
|
$this->trucks = ExpressService::templates();
|
|
$this->upgrades = BaseUserUpgrade::items();
|
|
$this->upgrades = BaseUserUpgrade::items();
|
|
$this->payments = BaseUserPayment::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('type,code,name', 'code');
|
|
$this->payments = BaseUserPayment::mk()->where(['status' => 1, 'deleted' => 0])->order('sort desc,id desc')->column('type,code,name', 'code');
|