likang 2 년 전
부모
커밋
767f119170
2개의 변경된 파일66개의 추가작업 그리고 2개의 파일을 삭제
  1. 48 0
      catch/hydraulic/database/migrations/20220606012605_maintenancemapper_add_feild.php
  2. 18 2
      catch/hydraulic/model/MaintenanceMapper.php

+ 48 - 0
catch/hydraulic/database/migrations/20220606012605_maintenancemapper_add_feild.php

@@ -0,0 +1,48 @@
+<?php
+// +----------------------------------------------------------------------
+// | CatchAdmin [Just Like ~ ]
+// +----------------------------------------------------------------------
+// | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
+// +----------------------------------------------------------------------
+// | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
+// +----------------------------------------------------------------------
+// | Author: JaguarJack [ njphper@gmail.com ]
+// +----------------------------------------------------------------------
+
+use think\migration\Migrator;
+use think\migration\db\Column;
+
+class MaintenancemapperAddFeild extends Migrator
+{
+    /**
+     * Change Method.
+     *
+     * Write your reversible migrations using this method.
+     *
+     * More information on writing migrations is available here:
+     * http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
+     *
+     * The following commands can be used in this method and Phinx will
+     * automatically reverse them when rolling back:
+     *
+     *    createTable
+     *    renameTable
+     *    addColumn
+     *    renameColumn
+     *    addIndex
+     *    addForeignKey
+     *
+     * Remember to call "create()" or "update()" and NOT "save()" when working
+     * with the Table class.
+     */
+    public function change()
+    {
+        if ($this->hasTable('maintenance_mapper')) {
+            $table = $this->table('maintenance_mapper');
+
+            $table  ->addColumn('fan_model', 'string', ['limit' => 32,'null' => true,'signed' => true,'comment' => 'imei号',])
+                    ->update();
+        }
+
+    }
+}

+ 18 - 2
catch/hydraulic/model/MaintenanceMapper.php

@@ -20,6 +20,7 @@ class maintenancemapper extends Model
         'value',
         // 名称
         'name',
+        'fan_model',
         // 创建人ID
         'creator_id',
         // 创建时间
@@ -36,7 +37,7 @@ class maintenancemapper extends Model
     {
         $res =  $this->dataRange()
             ->catchSearch()
-            ->append(['device_type_name','creator_name'])
+            ->append(['device_type_name','creator_name','fan_model_name'])
             ->order($this->aliasField('id'), 'desc')
             ->paginate();
         return $res;
@@ -69,7 +70,22 @@ class maintenancemapper extends Model
        
         return (new SysDictData())->getValueByCode('Maintenance', $value) ?: '';
     }
-  
+    public function getFanModelAttr()
+    {
+        $value = $this->getData('fan_model');
+        return $value?intval($value):null;
+    }
+    public function getFanModelNameAttr()
+    {
+        $value = $this->getData('fan_model');
+        $where[] = ['device_type','=',4];
+        $where[] = ['id','=',$value];
+        $name = Db::name('device_mold')->where($where)->value('name');
+        return $name;
+    }
+
+
+
     
 
 }