Browse Source

定义运费区域基本配置属性

antshop
linyaostalker 5 years ago
parent
commit
c9a1ce54c2
  1. 14
      backend/modules/shop/models/ars/ExpressArea.php

14
backend/modules/shop/models/ars/ExpressArea.php

@ -22,6 +22,20 @@ use yii\behaviors\TimestampBehavior;
*/
class ExpressArea extends \yii\db\ActiveRecord
{
public static $formList = [
1 => [
"basic_count"=>"基本重量(KG)",
"basic_price"=>"基本运费(元)",
"extra_count"=>"续重重量(KG)",
"extra_price"=>"续重运费(元)"
],
2 => [
"basic_count"=>"基本数量(件)",
"basic_price"=>"基本运费(元)",
"extra_count"=>"续重数量(件)",
"extra_price"=>"续重运费(元)"
]
];
/**
* {@inheritdoc}
*/

Loading…
Cancel
Save