| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- namespace backendApi\modules\v1\models\lists\ad;
- use backendApi\modules\v1\models\Admin;
- use backendApi\modules\v1\models\AdminCountry;
- use common\helpers\LoggerTool;
- use common\libs\dataList\DataListInterface;
- use common\models\Ad;
- use common\models\AdLocation;
- use common\models\Countries;
- use common\libs\dataList\column\DateTime;
- use Yii;
- class AdIndexList extends \common\libs\dataList\DataList implements DataListInterface
- {
- /**
- * 列表名称
- * @return string
- */
- public function getListName(){
- return '广告列表';
- }
- public function dataHandle()
- {
- $this->condition .= '';
- $this->listData = Ad::lists($this->condition, $this->params, [
- 'select' => 'AD.*,ADC.NAME AS COUNTRY_NAME, ADC.CODE AS COUNTRY_CODE',
- 'from' => Ad::tableName().' AS AD',
- 'join' => [
- ['INNER JOIN', Countries::tableName() . ' AS ADC', 'ADC.ID=AD.COUNTRY_ID'],
- ],
- 'orderBy' => 'AD.STATUS DESC,AD.SORT DESC,AD.CREATED_AT DESC',
- ]);
- }
- public function getColumn(){
- if(!$this->columns){
- $this->columns = [
- 'ID' => null,
- 'TITLE' => [
- 'header' => Yii::t('ctx', 'title'),
- ],
- 'COUNTRY_ID' => [
- 'header' => Yii::t('ctx', 'country'),
- 'headerOther' => ['width' => '150'],
- ],
- 'COUNTRY_NAME' => null,
- 'COUNTRY_CODE' => null,
- 'LID' => [
- 'header' => '广告位',
- 'value' => function($row){
- $adLocation = AdLocation::findOneAsArray('ID=:ID', [':ID'=>$row['LID']], 'LOCATION_NAME');
- return $adLocation['LOCATION_NAME'];
- },
- 'headerOther' => ['width' => '180'],
- ],
- 'STATUS' => [
- 'header' => Yii::t('ctx', 'status'),
- 'headerOther' => ['width' => '100'],
- ],
- 'CONTENT' => [
- 'header' => Yii::t('ctx', 'content'),
- ],
- 'TYPE' => null,
- 'SORT' => null,
- 'CREATED_AT' => [
- 'header' => Yii::t('ctx', 'createTime'),
- 'value' => function($row) {
- return (new DateTime([
- 'value' => $row['CREATED_AT'],
- ]))->result();
- },
- 'headerOther' => ['width' => '180'],
- ],
- ];
- }
- return $this->columns;
- }
- /**
- * 前台用于筛选的类型集合
- * @return mixed
- */
- public function getFilterTypes()
- {
- if (!$this->filterTypes) {
- $this->filterTypes = [
- 'TITLE'=> ['name'=> Yii::t('ctx', 'title')],
- // 'CONTENT' => ['name'=> Yii::t('ctx', 'content')],
- 'COUNTRY_ID'=> [
- 'name'=> \Yii::t('ctx', 'country'),
- 'other'=> 'select',
- 'selectData'=> self::getCountry()
- ],
- 'STATUS'=> [
- 'name'=> Yii::t('ctx', 'status'),
- 'other'=> 'select',
- 'selectData'=> [
- ['id'=> 0, 'name'=> Yii::t('ctx', 'Hide')],
- ['id'=> 1, 'name'=> Yii::t('ctx', 'Show')]
- ]
- ],
- ];
- }
- return $this->filterTypes;
- }
- public function getCountry()
- {
- $admin = Admin::findOne(Yii::$app->user->id);
- $roleId = $admin->ROLE_ID;
- if ($roleId == \Yii::$app->params['superAdminRoleId']) {
- $countries = Countries::find()->asArray()->all();
- } else {
- $countries = Countries::find()
- ->select('COU.ID, COU.CODE, COU.NAME')
- ->from(['COU' => Countries::tableName()])
- ->join('INNER JOIN', AdminCountry::tableName() . ' AS ADL', 'ADL.COUNTRY_ID = COU.ID')
- ->where(['ADL.ADMIN_ID' => $admin->ID])
- ->asArray()
- ->all();
- }
- $data = [];
- foreach ($countries as $country) {
- $data[] = [
- 'id' => $country['ID'],
- 'name' => $country['NAME'],
- ];
- }
- return $data;
- }
- }
|