dever 4 年之前
父节点
当前提交
8119c53e3c
共有 1 个文件被更改,包括 21 次插入2 次删除
  1. 21 2
      database/info.php

+ 21 - 2
database/info.php

@@ -26,6 +26,13 @@ $shop = function()
 	return $array;
 };
 
+$shape = array
+(
+	1 => '实体物品',
+	2 => '虚拟物品',
+	3 => '功能道具',
+);
+
 $type = array
 (
 	1 => '自营',
@@ -43,6 +50,7 @@ $price_type = array
 
 $mode = array
 (
+	-1 => '无',
 	1 => '快递',
 	2 => '自提',
 	3 => '快递+自提',
@@ -116,11 +124,22 @@ $config = array
 			'control'	=> 'type',
 		),
 
+		'shape'		=> array
+		(
+			'type' 		=> 'int-11',
+			'name' 		=> '形态',
+			'default' 	=> '1',
+			'desc' 		=> '形态',
+			'match' 	=> 'is_numeric',
+			'update'	=> 'radio',
+			'option'	=> $shape,
+		),
+
 		'mode'		=> array
 		(
 			'type' 		=> 'int-11',
 			'name' 		=> '配送方式',
-			'default' 	=> '1',
+			'default' 	=> '-1',
 			'desc' 		=> '配送方式',
 			'match' 	=> 'is_numeric',
 			'update'	=> 'radio',
@@ -529,7 +548,7 @@ $config = array
                 'id' => 'yes',
             ),
             'type' => 'one',
-            'col' => 'id,name,category,brand_id,shop_id,pic_cover,pic,sell_num+sell_add_num as sell_num,content,type,price_type,price,s_price,num,link,code',
+            'col' => 'id,name,category,brand_id,shop_id,pic_cover,pic,sell_num+sell_add_num as sell_num,content,type,price_type,price,s_price,num,link,code,mode',
         ),
 	),
 );