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.
 
 
 

45 lines
1.0 KiB

<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @var $this yii\web\View */
/* @var $model backend\modules\shop\models\ars\AfterSale */
$this->title = $model->id;
$this->params['breadcrumbs'][] = ['label' => 'After Sales', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this);
?>
<div class="after-sale-view">
<p>
<?= Html::a('返回列表', ['index'], ['class' => 'btn btn-success']) ?>
</p>
<?= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
'wx_refund_id',
'after_sale_sn',
'user_id',
'order_goods_id',
'amount',
'count',
'apply_at',
'dealt_at',
'finish_at',
'operator_id',
'refund_type',
'description:ntext',
'image:ntext',
'status',
'reason',
'remarks:ntext',
'take_shipping_sn',
'refund_mode',
],
]) ?>
</div>