You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\DetailView;
|
|
use backend\modules\shop\models\ars\ExpressTemplate;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\shop\models\ars\ExpressTemplate */
|
|
|
|
$this->title = $model->name;
|
|
$this->params['breadcrumbs'][] = ['label' => 'Express Templates', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
\yii\web\YiiAsset::register($this);
|
|
?>
|
|
<div class="express-template-view">
|
|
|
|
<p>
|
|
<?= Html::a('返回列表', ['index'], ['class' => 'btn btn-success']) ?>
|
|
</p>
|
|
|
|
<?= DetailView::widget([
|
|
'model' => $model,
|
|
'attributes' => [
|
|
'id',
|
|
'name',
|
|
[
|
|
'attribute' => 'calculation_type',
|
|
'value' => function ($model) {
|
|
return ExpressTemplate::$calculationType[$model->calculation_type];
|
|
}
|
|
],
|
|
'basic_price',
|
|
'basic_count',
|
|
'extra_price',
|
|
'extra_count',
|
|
'updated_at:datetime',
|
|
'created_at:datetime',
|
|
['attribute' => 'city',
|
|
'value' => function ($model) {
|
|
$array = explode(',', $model->city);
|
|
$cities = [];
|
|
foreach (\backend\modules\shop\models\ars\City::find()->andWhere(['in', 'city_id', $array])->all() as $city) {
|
|
$cities[] = $city->name;
|
|
}
|
|
return implode(' // ', $cities);
|
|
},
|
|
],
|
|
],
|
|
]) ?>
|
|
|
|
</div>
|