Browse Source

修改antgoods模块部分模块view页面样式

wechat_public_accounts
linyaostalker 5 years ago
parent
commit
ec6ddb5aca
  1. 2
      vendor/antgoods/goods/src/views/brand/view.php
  2. 4
      vendor/antgoods/goods/src/views/category/create.php
  3. 2
      vendor/antgoods/goods/src/views/category/index.php
  4. 4
      vendor/antgoods/goods/src/views/category/update.php
  5. 2
      vendor/antgoods/goods/src/views/category/view.php
  6. 2
      vendor/antgoods/goods/src/views/goods/view.php

2
vendor/antgoods/goods/src/views/brand/view.php

@ -7,7 +7,7 @@ use yii\widgets\DetailView;
/* @var $model antgoods\goods\models\ars\Brand */ /* @var $model antgoods\goods\models\ars\Brand */
$this->title = $model->name; $this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Brands', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => '品牌管理', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this); \yii\web\YiiAsset::register($this);
?> ?>

4
vendor/antgoods/goods/src/views/category/create.php

@ -5,8 +5,8 @@ use yii\helpers\Html;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $model antgoods\goods\models\ars\Category */ /* @var $model antgoods\goods\models\ars\Category */
$this->title = '创建商品分类';
$this->params['breadcrumbs'][] = ['label' => '商品分类', 'url' => ['index']];
$this->title = '创建后台商品分类';
$this->params['breadcrumbs'][] = ['label' => '后台商品分类', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
?> ?>
<div class="category-create"> <div class="category-create">

2
vendor/antgoods/goods/src/views/category/index.php

@ -7,7 +7,7 @@ use iron\grid\GridView;
/* @var $searchModel common\models\searchs\CategorySearch */ /* @var $searchModel common\models\searchs\CategorySearch */
/* @var $dataProvider yii\data\ActiveDataProvider */ /* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = '商品分类';
$this->title = '后台商品分类';
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
?> ?>
<div class="row"> <div class="row">

4
vendor/antgoods/goods/src/views/category/update.php

@ -5,8 +5,8 @@ use yii\helpers\Html;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $model antgoods\goods\models\ars\Category */ /* @var $model antgoods\goods\models\ars\Category */
$this->title = '编辑商品分类: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => '商品分类', 'url' => ['index']];
$this->title = '编辑后台商品分类: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => '后台商品分类', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]]; $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = '编辑 '; $this->params['breadcrumbs'][] = '编辑 ';
?> ?>

2
vendor/antgoods/goods/src/views/category/view.php

@ -7,7 +7,7 @@ use yii\widgets\DetailView;
/* @var $model antgoods\goods\models\ars\Category */ /* @var $model antgoods\goods\models\ars\Category */
$this->title = $model->name; $this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Categories', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => '后台商品分类', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this); \yii\web\YiiAsset::register($this);
?> ?>

2
vendor/antgoods/goods/src/views/goods/view.php

@ -7,7 +7,7 @@ use yii\widgets\DetailView;
/* @var $model antgoods\goods\models\ars\Goods */ /* @var $model antgoods\goods\models\ars\Goods */
$this->title = $model->name; $this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Goods', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => '商品管理', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title; $this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this); \yii\web\YiiAsset::register($this);
?> ?>

Loading…
Cancel
Save