瀏覽代碼

电子秤优化

liuhairui 1 年之前
父節點
當前提交
3b76530a8e

+ 190 - 350
application/admin/controller/Feeding.php

@@ -170,6 +170,7 @@ class Feeding extends Backend
         $row = Db::name('feeding')->where('bach',$bach)->select();
 
         $res = Db::name('task')->where('bach',$bach)->order('create','desc')->select();
+
         //已有过工序
         if($row){
             $result['inspector'] = $row[0]['inspector'];
@@ -183,11 +184,152 @@ class Feeding extends Backend
         return json($result);
     }
 
+    //获取配方信息 原始代码
+    public function get_formulas(){
+        $bach = $this->request->post('bach');//批次号
+        $num = $this->request->post('num');//生产量
+        $process = Db::name('feeding')->where('bach',$bach)->select();
+
+        if($num){//如果有,批次号重复,需精确查找
+            $res = Db::name('task')->alias('t')
+                ->join('formula_detail f','f.pid=t.fid','left')
+                ->field('f.material,f.percentage,f.gy_name,f.gy_num,t.number,t.id,t.kuodan')
+                ->where('t.bach',$bach)->where('t.number',$num)->select();
+        }else{//如果没有,,批次号未重复,直接差出数据
+            $res = Db::name('task')->alias('t')
+                ->join('formula_detail f','t.fid = f.pid','left')
+                ->field('f.material,f.percentage,f.gy_name,f.gy_num,t.number,t.id,t.kuodan')
+                ->where('t.bach',$bach)->select();
+        }
+        $pro = 0;
+        //按照百分比计算出应投重量
+        foreach($res as &$v){
+            $v['weight']=0;
+            $v['material_bach'] = '';
+            if($process){ //已有工序,接上一次工序
+                foreach ($process as $val){
+                    if(($val['material']==$v['material'] || in_array($val['material'],explode('/',$v['material']))) && $val['tid']==$v['id'] && $val['gy_num'] == $v['gy_num']){
+                        $v['weight']=$val['weight'];
+                        $v['material_bach']=$val['material_bach'];
+                        $pro = $val['gy_num'];
+                    }
+                }
+            }
+            if($v['gy_name'] == null){
+                $v['gy_name'] = '';
+            }
+            if($v['gy_num'] == null){
+                $v['gy_num'] = '';
+            }
+            if($v['material'] == null){
+                $v['material'] = '';
+            }
+            if($v['material_bach'] == null){
+                $v['material_bach'] = '';
+            }
+            $total = array_column($res,'percentage');
+            foreach ($total as $key=>$value){
+                $total[$key] = decode($value);
+            }
+            $num = array_sum($total);
+            if($v['kuodan']){
+                $kd_sum = $v['number']+$v['kuodan'];
+                if($v['percentage']){
+                    $number = ceil(decode($v['percentage']) / $num * $kd_sum *1000);
+                    $v['nweight'] = number_format($number/1000,3);
+                }else{
+                    $v['nweight']='';
+                }
+            }else{
+                if($v['percentage']){
+                    $number = ceil(decode($v['percentage']) / $num * $v['number'] *1000);
+                    $v['nweight'] = number_format($number/1000,3);
+                }else{
+                    $v['nweight']='';
+                }
+            }
+        }
+        $row['total']=$num;
+        $row['data'] = $res;
+        $row['process'] = $pro+1;
+        return json($row);
+    }
+
     //获取配方信息
     public function get_formula(){
+//        $bach = $this->request->post('bach');//批次号
+//        $num = $this->request->post('num');//生产量
+//        $process = Db::name('feeding')->where('bach',$bach)->select();
+//        if($num){//如果有,批次号重复,需精确查找
+//            $res = Db::name('task')->alias('t')
+//                ->join('formula_detail f','f.pid=t.fid','left')
+//                ->field('f.material,f.percentage,f.gy_name,f.gy_num,t.number,t.id,t.kuodan')
+//                ->where('t.bach',$bach)->where('t.number',$num)->select();
+//        }else{//如果没有,,批次号未重复,直接差出数据
+//            $res = Db::name('task')->alias('t')
+//                ->join('formula_detail f','t.fid = f.pid','left')
+//                ->field('f.material,f.percentage,f.gy_name,f.gy_num,t.number,t.id,t.kuodan')
+//                ->where('t.bach',$bach)->select();
+//        }
+//        $pro = 0;
+//        //按照百分比计算出应投重量
+//        foreach($res as &$v){
+//            $v['weight']=0;
+//            $v['material_bach'] = '';
+//            if($process){ //已有工序,接上一次工序
+//                foreach ($process as $val){
+//                    if(($val['material']==$v['material'] || in_array($val['material'],explode('/',$v['material']))) && $val['tid']==$v['id'] && $val['gy_num'] == $v['gy_num']){
+//                        $v['weight']=$val['weight'];
+//                        $v['material_bach']=$val['material_bach'];
+//                        $pro = $val['gy_num'];
+//                    }
+//                }
+//            }
+//            if($v['gy_name'] == null){
+//                $v['gy_name'] = '';
+//            }
+//            if($v['gy_num'] == null){
+//                $v['gy_num'] = '';
+//            }
+//            if($v['material'] == null){
+//                $v['material'] = '';
+//            }
+//            if($v['material_bach'] == null){
+//                $v['material_bach'] = '';
+//            }
+//            $total = array_column($res,'percentage');
+//            foreach ($total as $key=>$value){
+//                $total[$key] = decode($value);
+//            }
+//            $num = array_sum($total);
+//            if($v['kuodan']){
+//                $kd_sum = $v['number']+$v['kuodan'];
+//                if($v['percentage']){
+//                    $number = ceil(decode($v['percentage']) / $num * $kd_sum *1000);
+//                    $v['nweight'] = number_format($number/1000,3);
+//                }else{
+//                    $v['nweight']='';
+//                }
+//            }else{
+//                if($v['percentage']){
+//                    $number = ceil(decode($v['percentage']) / $num * $v['number'] *1000);
+//                    $v['nweight'] = number_format($number/1000,3);
+//                }else{
+//                    $v['nweight']='';
+//                }
+//            }
+//        }
+//        $row['total']=$num;
+//        $row['data'] = $res;
+//        $row['process'] = $pro+1;
+//        return json($row);
+
+
+
         $bach = $this->request->post('bach');//批次号
         $num = $this->request->post('num');//生产量
         $process = Db::name('feeding')->where('bach',$bach)->select();
+
         if($num){//如果有,批次号重复,需精确查找
             $res = Db::name('task')->alias('t')
                 ->join('formula_detail f','f.pid=t.fid','left')
@@ -247,12 +389,56 @@ class Feeding extends Backend
                 }
             }
         }
+        $originalRes = $res;
+        if (!$process) {
+            // 如果 $process 为空,只保留 gy_num 为 1 的数据
+            $filtered = array_filter($res, function($item) {
+                return $item['gy_num'] == 1;
+            });
+        } else {
+            // 确定 $process 中最高的 gy_num
+            $maxGyNumInProcess = max(array_column($process, 'gy_num'));
+            $nextGyNum = $maxGyNumInProcess + 1;
+
+            // 检查并跳过带有特定标记(如 '*****')的工序
+            do {
+                $nextGyNumItems = array_filter($res, function($item) use ($nextGyNum) {
+                    return $item['gy_num'] == $nextGyNum;
+                });
+
+                // 如果找到的工序是默认完成的(即 material 包含 '*****'),则跳到下一个工序
+                if (!empty($nextGyNumItems) && array_values($nextGyNumItems)[0]['material'] === '*****') {
+                    $nextGyNum++;
+                } else {
+                    break; // 找到了需要处理的下一个工序或者没有更多工序可以处理
+                }
+            } while (true);
+
+            // 重新过滤,确保处理正确的工序(这一步可能是多余的,根据您的逻辑调整)
+            $filtered = array_filter($res, function($item) use ($nextGyNum) {
+                return $item['gy_num'] == $nextGyNum;
+            });
+        }
+
+        $res = array_values($filtered); // 重置数组索引
+
+        if (empty($res)) {
+            // 这里假设 $originalRes 保存了所有工序的原始数据
+            // 如果您没有这样一个变量,您需要确保有方法可以获取到所有工序的数据
+            $res = $originalRes; // 将所有工序的数据赋值给 $res,进行后续处理
+        }
+
+
+
+
         $row['total']=$num;
         $row['data'] = $res;
         $row['process'] = $pro+1;
         return json($row);
     }
 
+
+
     public function get_material(){
         $bach = $this->request->post('bach');//批次号
         $material = $this->request->post('material');//原材料
@@ -264,6 +450,7 @@ class Feeding extends Backend
         $map['f_name'] = $task['name'];
         $map['name'] = $material;
         $data = Db::name('formula_material')->where($map)->select();
+
         $result['data'] = '';
         if ($data){
             $result['data'] = $data;
@@ -299,355 +486,8 @@ class Feeding extends Backend
         return json($res);
     }*/
 
-
-
-//    //选择时获取电子秤数据
-
-//    public function cheng(){
-////        $data = rand(1,100);return $data;
-//        $serialPort = input('dzc');
-//        if ($serialPort != '未选择') {
-//            if (!empty($serialPort)) {
-//                exec("mode $serialPort: baud=9600 data=8 stop=1 parity=n xon=on");
-//                $ck = dio_open($serialPort, O_RDWR);
-//                if (!$ck) {
-//                    die('打开失败');
-//                }
-//                do {
-//                    $shuju = dio_read($ck, 7);
-//                } while ($shuju == null);
-//                $shuju = floatval(strrev($shuju));
-//
-//                if ($shuju != null) {
-//                    dio_write($ck, $shuju);
-//                }
-//
-//                dio_close($ck);
-//                return $shuju;
-//            }
-//        } else {
-//            // 如果 $serialPort 是 '未选择',则直接返回空字符串
-//            return '';
-//        }
-//    }
-//    public function cheng() {
-//        // 获取串口列表
-//        $serialPorts = ['COM3', 'COM4'];
-//        $maxAttempts = 10; // 设置最大尝试次数
-//        $dataFromPorts = [];
-//        foreach ($serialPorts as $serialPort) {
-//            exec("mode $serialPort: baud=9600 data=8 stop=1 parity=n xon=on");
-//            $ck = dio_open($serialPort, O_RDWR);
-//            if (!$ck) {
-//                // 如果无法打开串口,记录错误并继续下一个串口
-//                error_log("无法打开串口 $serialPort");
-//                continue;
-//            }
-//            $attempts = 0;
-//            while ($attempts < $maxAttempts) {
-//                $shuju = dio_read($ck, 7);
-//                if ($shuju !== null) {
-//                    // 将读取到的数据添加到数组中
-//                    $dataFromPorts[$serialPort] = floatval(strrev($shuju));
-//                    break; // 从当前串口读取到数据后跳出循环
-//                }
-//                sleep(1); // 等待一段时间再尝试读取
-//                $attempts++;
-//            }
-//            dio_close($ck);
-//
-//        }
-//        echo "<pre>";
-//        print_r($dataFromPorts);
-//        echo "</pre>";die;
-//
-//        return $dataFromPorts;
-//    }
-//
-//    //获取三位电子秤数据
-//    public function cheng1() {
-////        $fixedDataScalePort中不一定是COM多少
-//        $fixedDataScalePort = 'COM4';
-//        $fixedData = $this->readFixedData($fixedDataScalePort);
-//echo "<pre>";
-//print_r($fixedData);
-//echo "<pre>";
-//        //er 两位小数 san 三位小数
-//        return [
-//            'san' => $fixedData,
-//        ];
-//    }
-
-
-    //固定串口获取电子秤
-
-    public function cheng21() {
-        $maxAttempts = 10; // 设置最大尝试次数
-        $serialPort = 'COM4';
-        // 尝试打开串口
-        exec("mode $serialPort: baud=9600 data=8 stop=1 parity=n xon=on");
-        $ck = dio_open($serialPort, O_RDWR);
-        if (!$ck) {
-            // 如果无法打开串口,记录错误并返回默认值或者null
-            error_log("无法打开串口 $serialPort");
-            return null;
-        }
-        $attempts = 0;
-        while ($attempts < $maxAttempts) {
-            $shuju = dio_read($ck, 7); // 调整为适当的字节数
-//            $data = floatval(strrev($shuju));
-//            $weight = floatval(str_replace('kg', '', $data));
-            echo "<pre>";
-            print_r($shuju);
-            echo "<pre>";
-
-            if ($shuju !== null) {
-                // 数据获取成功
-
-                dio_close($ck);
-                return $shuju;
-            }
-            sleep(1); // 调整为更短的等待时间
-            $attempts++;
-        }
-        dio_close($ck);
-        // 数据获取失败,返回默认值或者null
-        return null;
-    }
-
-
-
-
-//    多个串口获取有线电子秤三位数
-
-    //机箱左边
-    public function cheng4() {
-        $maxAttempts = 10; // 设置最大尝试次数
-        $serialPort = 'COM4';
-        // 尝试打开串口
-        exec("mode $serialPort: baud=9600 data=8 stop=1 parity=n xon=on");
-        $ck = dio_open($serialPort, O_RDWR);
-        if (!$ck) {
-            // 如果无法打开串口,记录错误并返回默认值或者null
-            error_log("无法打开串口 $serialPort");
-            return null;
-        }
-        $attempts = 0;
-        while ($attempts < $maxAttempts) {
-            $shuju = dio_read($ck, 7); // 调整为适当的字节数
-//            $data = floatval(strrev($shuju));
-//            $weight = floatval(str_replace('kg', '', $data));
-            echo "<pre>";
-            print_r($shuju);
-            echo "<pre>";
-
-            if ($shuju !== null) {
-                // 数据获取成功
-
-                dio_close($ck);
-                return $shuju;
-            }
-            sleep(1); // 调整为更短的等待时间
-            $attempts++;
-        }
-        dio_close($ck);
-        // 数据获取失败,返回默认值或者null
-        return null;
-    }
-    //机箱右边
-    public function cheng3() {
-        $maxAttempts = 10; // 设置最大尝试次数
-        $serialPort = 'COM3';
-        // 尝试打开串口
-        exec("mode $serialPort: baud=9600 data=8 stop=1 parity=n xon=on");
-        $ck = dio_open($serialPort, O_RDWR);
-        if (!$ck) {
-            // 如果无法打开串口,记录错误并返回默认值或者null
-            error_log("无法打开串口 $serialPort");
-            return null;
-        }
-        $attempts = 0;
-        while ($attempts < $maxAttempts) {
-            $shuju = dio_read($ck, 7); // 调整为适当的字节数
-//            $data = floatval(strrev($shuju));
-//            $weight = floatval(str_replace('kg', '', $data));
-            echo "<pre>";
-            print_r($shuju);
-            echo "<pre>";
-
-            if ($shuju !== null) {
-                // 数据获取成功
-
-                dio_close($ck);
-                return $shuju;
-            }
-            sleep(1); // 调整为更短的等待时间
-            $attempts++;
-        }
-        dio_close($ck);
-        // 数据获取失败,返回默认值或者null
-        return null;
-    }
-
-    /**
-     * 只获取一个固定串口
-     */
-    public function cheng() {
-        $maxAttempts = 10; // 设置最大尝试次数
-//        $serialPorts = $this->getSerialPorts(); // 获取所有可用的串口号
-        // 执行mode命令并获取输出结果
-        exec('mode', $output, $return);
-        // 初始化一个变量来存放找到的串口
-        $serialPort = null;
-        // 遍历命令输出的每一行
-        foreach ($output as $line) {
-            // 使用正则表达式匹配串口设备
-            if (preg_match('/COM(\d+)/', $line, $matches)) {
-
-                // 检查串口号是否为1或2
-                if ($matches[1] == '1' || $matches[1] == '2') {
-                    // 如果是COM1或COM2,则跳过
-                    continue;
-                }
-                // 找到匹配的串口号并返回
-                $serialPort = $matches[0];
-                break; // 停止搜索
-            }
-        }
-
-        // 尝试打开串口
-        exec("mode $serialPort: baud=9600 data=8 stop=1 parity=n xon=on");
-        $ck = dio_open($serialPort, O_RDWR);
-        if (!$ck) {
-            // 如果无法打开串口,记录错误并返回默认值或者null
-            error_log("无法打开串口 $serialPort");
-            return null;
-        }
-        $attempts = 0;
-        while ($attempts < $maxAttempts) {
-            $shuju = dio_read($ck, 7); // 调整为适当的字节数
-//            $data = floatval(strrev($shuju));
-//            $weight = floatval(str_replace('kg', '', $data));
-
-            if ($shuju !== null) {
-                // 数据获取成功
-
-                dio_close($ck);
-                return $shuju;
-            }
-            sleep(1); // 调整为更短的等待时间
-            $attempts++;
-        }
-        dio_close($ck);
-        // 数据获取失败,返回默认值或者null
-        return null;
-    }
-    public function getSerialPorts() {
-        // 执行mode命令并获取输出结果
-        exec('mode', $output, $return);
-        // 初始化一个变量来存放找到的串口
-        $serialPort = null;
-        // 遍历命令输出的每一行
-        foreach ($output as $line) {
-            // 使用正则表达式匹配串口设备
-            if (preg_match('/COM(\d+)/', $line, $matches)) {
-                // 检查串口号是否为1或2
-                if ($matches[1] == '1' || $matches[1] == '2') {
-                    // 如果是COM1或COM2,则跳过
-                    continue;
-                }
-                // 找到匹配的串口号并返回
-                $serialPort = $matches[0];
-                break; // 停止搜索
-            }
-        }
-        // 返回找到的串口,如果没有找到则为null
-        return $serialPort;
-    }
-
-
-    /**
-     * 获取多个串口
-     */
-    public function dzcduo() {
-        $maxAttempts = 10; // 设置最大尝试次数
-        $serialPorts = $this->getchuankou(); // 获取所有可用的串口号
-        foreach ($serialPorts as $COM) {
-            // 尝试打开串口
-            $ck = @dio_open($COM, O_RDWR | O_NONBLOCK);
-            if ($ck === false) {
-                // 如果无法打开串口,记录错误
-                error_log("无法打开串口 $COM");
-                continue; // 继续尝试下一个串口
-            }
-            // 成功打开串口,配置串口参数
-            exec("mode $COM baud=9600 data=8 stop=1 parity=n xon=on");
-            // ... 这里进行串口通信等操作 ...
-            $attempts = 0;
-            while ($attempts < $maxAttempts) {
-                $shuju = dio_read($ck, 7); // 调整为适当的字节数
-                if ($shuju !== false) { // 注意:dio_read()返回false时表示失败
-                    // 数据获取成功
-                    dio_close($ck);
-                    return $shuju;
-                }
-                sleep(1); // 调整为更短的等待时间
-                $attempts++;
-            }
-            // 如果在尝试了最大次数后仍未能读取到数据,记录错误并跳过当前串口
-            error_log("无法从串口 $COM 读取数据");
-            dio_close($ck);
-        }
-        return null; // 如果所有串口都无法读取数据,则返回null
-    }
-    public function getchuankou() {
-        // 执行mode命令并获取输出结果
-        exec('mode', $output, $return);
-        // 初始化一个数组来存放找到的串口
-        $serialPorts = [];
-
-        // 遍历命令输出的每一行
-        foreach ($output as $line) {
-            // 使用正则表达式匹配串口设备
-            if (preg_match('/COM(\d+)/', $line, $matches)) {
-                // 检查串口号是否为1或2
-                if ($matches[1] == '1' || $matches[1] == '2') {
-                    // 如果是COM1或COM2,则跳过
-                    continue;
-                }
-                // 将匹配到的串口号添加到数组中
-                $serialPorts[] = $matches[0];
-            }
-        }
-        // 返回找到的串口列表
-        return $serialPorts;
-    }
-
-    /**
-     * 固定串口两位小数电子秤获取
-     */
-    public function cheng1() {
-        $maxAttempts = 10; // 设置最大尝试次数
-        $dataFromPorts = [];
-        $serialPort = 'COM3';
-        exec("mode $serialPort: baud=9600 data=8 stop=1 parity=n xon=on");
-        $ck = dio_open($serialPort, O_RDWR);
-        if (!$ck) {
-            // 如果无法打开串口,记录错误并继续下一个串口
-            error_log("无法打开串口 $serialPort");
-        }
-        $attempts = 0;
-        while ($attempts < $maxAttempts) {
-            $shuju = dio_read($ck, 7);
-            if ($shuju !== null) {
-                // 将读取到的数据添加到数组中
-                $dataFromPorts[$serialPort] = floatval(strrev($shuju));
-                break; // 从当前串口读取到数据后跳出循环
-            }
-            sleep(1); // 等待一段时间再尝试读取
-            $attempts++;
-        }
-        dio_close($ck);
-        return $dataFromPorts;
+    public function cheng(){
+        $user_info = Session::get('');
+        return json($user_info);
     }
 }

+ 45 - 36
public/assets/js/backend/feeding.js

@@ -65,38 +65,38 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
             //     };
             // }
 
-            $(document).ready(function() {
-                // 尝试进入全屏模式
-                function enterFullScreen() {
-                    if (document.documentElement.requestFullscreen) {
-                        document.documentElement.requestFullscreen();
-                    } else if (document.documentElement.webkitRequestFullScreen) {
-                        document.documentElement.webkitRequestFullScreen();
-                    }
-                }
-
-                // 页面加载时尝试进入全屏
-                enterFullScreen();
-
-                // 监听键盘事件
-                document.body.addEventListener('keyup', function(e) {
-                    e = e || window.event;
-                    console.log(e.keyCode);
-                    if (e.keyCode === 27) { // Esc键退出全屏后,不需要再次请求全屏
-                        // 一般情况下,浏览器会自动处理 Esc 键退出全屏
-                    }
-                    if (e.keyCode === 116) { // F5刷新页面,通常不需要特别处理
-                        // 浏览器默认行为会刷新页面
-                    }
-                    if (e.keyCode === 82 && e.ctrlKey) { // Ctrl+R,通常不需要特别处理
-                        // 浏览器默认行为会刷新页面
-                    }
-                    if (e.keyCode === 13) { // 回车键
-                        document.querySelector('.btn-refresh').click(); // 模拟点击刷新按钮
-                        document.querySelector('.btn-add').click(); // 模拟点击添加按钮
-                    }
-                });
-            });
+            // $(document).ready(function() {
+            //     // 尝试进入全屏模式
+            //     // function enterFullScreen() {
+            //     //     if (document.documentElement.requestFullscreen) {
+            //     //         document.documentElement.requestFullscreen();
+            //     //     } else if (document.documentElement.webkitRequestFullScreen) {
+            //     //         document.documentElement.webkitRequestFullScreen();
+            //     //     }
+            //     // }
+            //
+            //     // 页面加载时尝试进入全屏
+            //     enterFullScreen();
+            //
+            //     // 监听键盘事件
+            //     document.body.addEventListener('keyup', function(e) {
+            //         e = e || window.event;
+            //         console.log(e.keyCode);
+            //         if (e.keyCode === 27) { // Esc键退出全屏后,不需要再次请求全屏
+            //             // 一般情况下,浏览器会自动处理 Esc 键退出全屏
+            //         }
+            //         if (e.keyCode === 116) { // F5刷新页面,通常不需要特别处理
+            //             // 浏览器默认行为会刷新页面
+            //         }
+            //         if (e.keyCode === 82 && e.ctrlKey) { // Ctrl+R,通常不需要特别处理
+            //             // 浏览器默认行为会刷新页面
+            //         }
+            //         if (e.keyCode === 13) { // 回车键
+            //             document.querySelector('.btn-refresh').click(); // 模拟点击刷新按钮
+            //             document.querySelector('.btn-add').click(); // 模拟点击添加按钮
+            //         }
+            //     });
+            // });
 
             $(".form-control").focus();
             // 为表格绑定事件
@@ -213,7 +213,14 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
                     const dataNum = parseFloat(asciidecoder.decode(Uint8Array.from(serialData)));
                     console.log('电子秤获取的数据是'+ dataNum);
                     if (!isNaN(parseFloat(dataNum))) {
-                        $('#dzcshuju').text(dataNum);
+                        if (dataNum === 0) {
+                            // 如果数据是0,设置显示为空
+                            $('#dzcshuju').text('');
+                            console.log("显示为空,因为数据是0");
+                        } else {
+                            // 数据不是0,正常显示数据
+                            $('#dzcshuju').text(dataNum);
+                        }
                     } else {
                         // 字符串不是数字的处理逻辑
                         console.log("串口接触异常,未获取到数据");
@@ -239,6 +246,8 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
             // const connectSerial = async () => {
             //     try {
             //         const ports = await navigator.serial.getPorts();
+            //         console.log(ports);
+            //
             //         if (ports.length > 0) {
             //             // 关闭已连接的串口
             //             if (serialPort) {
@@ -299,7 +308,6 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
             //         const dataNums = asciidecoder.decode(Uint8Array.from(serialData));
             //         const dataNum = parseFloat(dataNums.split('').reverse().join('').split('=')[0]);
             //         console.log('电子秤获取的数据是'+ dataNum);
-            //
             //         if (!isNaN(parseFloat(dataNum))) {
             //             $('#dzcshuju').text(dataNum);
             //         } else {
@@ -324,13 +332,14 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
                         method: "get",
                         url: "feeding/cheng",
                         success(data) {
-                            if(data.admin.username === '333'){
+                            if(data.admin.username === '333' || data.admin.username === 'admin'){
                                 console.log('登录了带有电子秤的账号');
                                 connectSerial();
+                            }else{
+                                console.log('登录了没有电子秤的账号');
                             }
                         }
                     });
-
                     $("#wuliao").focus();
                     if (num === 0) {
                         var bach = $("#c-bach").val();//批次号

+ 1741 - 0
runtime/log/202404/12.log

@@ -0,0 +1,1741 @@
+---------------------------------------------------------------
+[ 2024-04-12T14:00:04+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding?ref=addtabs
+[运行时间:0.037836s] [吞吐率:26.43req/s] [内存消耗:3,274.43kb] [文件加载:130]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000813s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001116s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000354s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'document',
+  'sec-fetch-user' => '?1',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'none',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'cache-control' => 'max-age=0',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'ref' => 'addtabs',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000818s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/common\view\tpl\dispatch_jump.tpl [ array (
+  0 => 'code',
+  1 => 'msg',
+  2 => 'data',
+  3 => 'url',
+  4 => 'wait',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000102s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:07+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2Ffeeding%3Fref%3Daddtabs
+[运行时间:0.021237s] [吞吐率:47.09req/s] [内存消耗:3,589.16kb] [文件加载:133]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000616s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000270s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'index',
+    2 => 'login',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'referer' => 'https://20.0.6.125/xOGLRsWPUr.php/feeding?ref=addtabs',
+  'sec-fetch-dest' => 'document',
+  'sec-fetch-user' => '?1',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/feeding?ref=addtabs',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000634s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/index.php
+[ info ] [ RUN ] app\admin\controller\Index->login[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Index.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\index\login.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'background',
+  6 => 'title',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000066s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:08+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1712901607&v=1712901607
+[运行时间:0.018185s] [吞吐率:54.99req/s] [内存消耗:3,596.51kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000680s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000262s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'index',
+  'lang' => 'zh-cn',
+  'v' => '1712901607',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000761s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/ajax.php
+[ info ] [ RUN ] app\admin\controller\Ajax->lang[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Ajax.php ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/index.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000058s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:16+08:00 ] 20.0.17.210 POST 20.0.6.125/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2Ffeeding%3Fref%3Daddtabs
+[运行时间:0.798090s] [吞吐率:1.25req/s] [内存消耗:4,396.91kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000621s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000277s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'index',
+    2 => 'login',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://20.0.6.125',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'content-length' => '75',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/feeding?ref=addtabs',
+  '__token__' => 'd26c4803529dd42760f3dc19721c6583',
+  'username' => 'admin',
+  'password' => '!QAZ2wsx',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000587s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/index.php
+[ info ] [ RUN ] app\admin\controller\Index->login[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.144625s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:16+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding?ref=addtabs
+[运行时间:0.406701s] [吞吐率:2.46req/s] [内存消耗:4,238.87kb] [文件加载:137]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000652s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000276s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'document',
+  'sec-fetch-user' => '?1',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'ref' => 'addtabs',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000593s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000073s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:17+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/index/index
+[运行时间:0.600358s] [吞吐率:1.67req/s] [内存消耗:4,860.45kb] [文件加载:145]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000619s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000275s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'index',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'sec-fetch-dest' => 'document',
+  'sec-fetch-user' => '?1',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000618s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/index.php
+[ info ] [ RUN ] app\admin\controller\Index->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Index.php ]
+[ info ] [ DB ] INIT mysql
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\index\index.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'menulist',
+  6 => 'navlist',
+  7 => 'fixedmenu',
+  8 => 'referermenu',
+  9 => 'title',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000074s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:20+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/dashboard?addtabs=1
+[运行时间:3.205441s] [吞吐率:0.31req/s] [内存消耗:4,717.92kb] [文件加载:145]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000660s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000283s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'dashboard',
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'iframe',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000607s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/dashboard.php
+[ info ] [ RUN ] app\admin\controller\Dashboard->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Dashboard.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\dashboard\index.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'totaluser',
+  6 => 'totaladdon',
+  7 => 'totaladmin',
+  8 => 'totalcategory',
+  9 => 'todayusersignup',
+  10 => 'todayuserlogin',
+  11 => 'sevendau',
+  12 => 'thirtydau',
+  13 => 'threednu',
+  14 => 'sevendnu',
+  15 => 'dbtablenums',
+  16 => 'dbsize',
+  17 => 'totalworkingaddon',
+  18 => 'attachmentnums',
+  19 => 'attachmentsize',
+  20 => 'picturenums',
+  21 => 'picturesize',
+  22 => 'formuladate',
+  23 => 'formula',
+  24 => 'orderdate',
+  25 => 'order',
+  26 => 'stockdate',
+  27 => 'stock',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000080s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:21+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding?addtabs=1
+[运行时间:3.678682s] [吞吐率:0.27req/s] [内存消耗:4,493.30kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000082s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000769s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000352s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'iframe',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000785s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\common\controller\Backend->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\library\traits\Backend.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\feeding\index.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000117s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:21+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1712901616&v=1712901616
+[运行时间:3.402928s] [吞吐率:0.29req/s] [内存消耗:3,599.90kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000100s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000783s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000338s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'index',
+  'lang' => 'zh-cn',
+  'v' => '1712901616',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000930s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/ajax.php
+[ info ] [ RUN ] app\admin\controller\Ajax->lang[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Ajax.php ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/index.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000089s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:21+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=dashboard&lang=zh-cn&v=1712901617&v=1712901617
+[运行时间:0.363397s] [吞吐率:2.75req/s] [内存消耗:3,580.63kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000622s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000284s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'dashboard',
+  'lang' => 'zh-cn',
+  'v' => '1712901617',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000769s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/ajax.php
+[ info ] [ RUN ] app\admin\controller\Ajax->lang[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Ajax.php ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/dashboard.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000060s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:21+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1712901617&v=1712901617
+[运行时间:0.017519s] [吞吐率:57.08req/s] [内存消耗:3,577.63kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000579s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000272s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1712901617',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000778s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/ajax.php
+[ info ] [ RUN ] app\admin\controller\Ajax->lang[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Ajax.php ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000062s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:23+08:00 ] 20.0.17.210 POST 20.0.6.125/xOGLRsWPUr.php/Dashboard/ecDashboard
+[运行时间:1.280559s] [吞吐率:0.78req/s] [内存消耗:4,460.39kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000608s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000277s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'Dashboard',
+    2 => 'ecDashboard',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://20.0.6.125',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'content-length' => '0',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000595s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/dashboard.php
+[ info ] [ RUN ] app\admin\controller\Dashboard->ecDashboard[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Dashboard.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.163666s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:24+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1712901622846
+[运行时间:0.625696s] [吞吐率:1.60req/s] [内存消耗:4,636.92kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000621s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000266s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/json',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1712901622846',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000576s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\common\controller\Backend->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\library\traits\Backend.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000078s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:27+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1712901622847
+[运行时间:0.725468s] [吞吐率:1.38req/s] [内存消耗:4,636.92kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000632s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000286s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/json',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1712901622847',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000637s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\common\controller\Backend->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\library\traits\Backend.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000075s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:27+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/index?addtabs=1&search=&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1712901622848
+[运行时间:0.951080s] [吞吐率:1.05req/s] [内存消耗:4,637.27kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000600s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000255s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/json',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1712901622848',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000640s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\common\controller\Backend->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\library\traits\Backend.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000071s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:28+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/add?dialog=1
+[运行时间:1.193374s] [吞吐率:0.84req/s] [内存消耗:4,528.02kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000735s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000277s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'add',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'iframe',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'dialog' => '1',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000599s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\admin\controller\Feeding->add[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\feeding\add.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'cjcz',
+  6 => 'cjjy',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000077s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:28+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1712901627&v=1712901627
+[运行时间:0.017379s] [吞吐率:57.54req/s] [内存消耗:3,577.63kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000621s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000285s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1712901627',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000757s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/ajax.php
+[ info ] [ RUN ] app\admin\controller\Ajax->lang[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Ajax.php ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000057s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:36+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/cheng
+[运行时间:0.487431s] [吞吐率:2.05req/s] [内存消耗:4,522.01kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000643s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000286s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'cheng',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'accept' => '*/*',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000587s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\admin\controller\Feeding->cheng[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000068s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:37+08:00 ] 20.0.17.210 POST 20.0.6.125/xOGLRsWPUr.php/feeding/get_task
+[运行时间:1.368502s] [吞吐率:0.73req/s] [内存消耗:4,491.07kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000625s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000273s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'get_task',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://20.0.6.125',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'accept' => '*/*',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'content-length' => '10',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00704',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000593s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ DB ] INIT mysql
+[ info ] [ RUN ] app\admin\controller\Feeding->get_task[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.455521s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:00:38+08:00 ] 20.0.17.210 POST 20.0.6.125/xOGLRsWPUr.php/feeding/get_formula
+[运行时间:0.906225s] [吞吐率:1.10req/s] [内存消耗:4,490.93kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000608s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000271s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'get_formula',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://20.0.6.125',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'accept' => '*/*',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'content-length' => '10',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00704',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000586s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ DB ] INIT mysql
+[ info ] [ RUN ] app\admin\controller\Feeding->get_formula[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.407938s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:04+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/add?dialog=1
+[运行时间:0.802127s] [吞吐率:1.25req/s] [内存消耗:4,528.02kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000655s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000276s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'add',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'iframe',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'dialog' => '1',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000622s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\admin\controller\Feeding->add[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\feeding\add.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'cjcz',
+  6 => 'cjjy',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000073s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:05+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1712901663&v=1712901663
+[运行时间:0.017482s] [吞吐率:57.20req/s] [内存消耗:3,577.63kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000664s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000282s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1712901663',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000743s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/ajax.php
+[ info ] [ RUN ] app\admin\controller\Ajax->lang[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Ajax.php ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000057s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:08+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/index?addtabs=1&search=01021&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1712901622849
+[运行时间:0.743931s] [吞吐率:1.34req/s] [内存消耗:4,644.84kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000651s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000273s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/json',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '01021',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1712901622849',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000608s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\common\controller\Backend->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\library\traits\Backend.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000071s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:13+08:00 ] 20.0.17.210 POST 20.0.6.125/xOGLRsWPUr.php/feeding/del
+[运行时间:1.871418s] [吞吐率:0.53req/s] [内存消耗:4,489.69kb] [文件加载:142]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000624s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000264s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000014s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'del',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://20.0.6.125',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'content-length' => '100',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+)
+[ info ] [ PARAM ] array (
+  'action' => 'del',
+  'ids' => '37211,37210,37209,37208,37207,37206,37205,37204,37203,37170',
+  'params' => '',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000607s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\common\controller\Backend->del[ D:\phpstudy_pro\WWW\minongyun\application\admin\library\traits\Backend.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.195306s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:13+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/index?addtabs=1&search=01021&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1712901622850
+[运行时间:0.727545s] [吞吐率:1.37req/s] [内存消耗:4,642.97kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000680s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000275s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/json',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '01021',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1712901622850',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000603s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\common\controller\Backend->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\library\traits\Backend.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000102s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:14+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/add?dialog=1
+[运行时间:0.630048s] [吞吐率:1.59req/s] [内存消耗:4,528.02kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000652s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000260s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'add',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'iframe',
+  'sec-fetch-mode' => 'navigate',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'dialog' => '1',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000616s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\admin\controller\Feeding->add[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\feeding\add.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'cjcz',
+  6 => 'cjjy',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000072s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:15+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1712901673&v=1712901673
+[运行时间:0.020567s] [吞吐率:48.62req/s] [内存消耗:3,577.63kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000816s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000331s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000013s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1712901673',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000906s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/ajax.php
+[ info ] [ RUN ] app\admin\controller\Ajax->lang[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Ajax.php ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000066s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:16+08:00 ] 20.0.17.210 GET 20.0.6.125/xOGLRsWPUr.php/feeding/cheng
+[运行时间:0.476104s] [吞吐率:2.10req/s] [内存消耗:4,522.01kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000685s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000284s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000012s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'cheng',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'accept' => '*/*',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+  'content-length' => '',
+  'content-type' => '',
+)
+[ info ] [ PARAM ] array (
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000609s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ DB ] INIT mysql
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ RUN ] app\admin\controller\Feeding->cheng[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000065s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:17+08:00 ] 20.0.17.210 POST 20.0.6.125/xOGLRsWPUr.php/feeding/get_task
+[运行时间:1.342846s] [吞吐率:0.74req/s] [内存消耗:4,491.07kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000683s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000294s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'get_task',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://20.0.6.125',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'accept' => '*/*',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'content-length' => '10',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '01021',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000594s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ DB ] INIT mysql
+[ info ] [ RUN ] app\admin\controller\Feeding->get_task[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.448219s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-04-12T14:01:18+08:00 ] 20.0.17.210 POST 20.0.6.125/xOGLRsWPUr.php/feeding/get_formula
+[运行时间:0.900537s] [吞吐率:1.11req/s] [内存消耗:4,490.93kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000644s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000273s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'get_formula',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=00qo30g0lbf73v57vqlkn7pto2; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://20.0.6.125',
+  'sec-ch-ua-platform' => '"Windows"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
+  'sec-ch-ua-mobile' => '?0',
+  'x-requested-with' => 'XMLHttpRequest',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'accept' => '*/*',
+  'sec-ch-ua' => '"Not_A Brand";v="99", "Google Chrome";v="109", "Chromium";v="109"',
+  'content-length' => '10',
+  'connection' => 'keep-alive',
+  'host' => '20.0.6.125',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '01021',
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @module_init [ RunTime:0.000601s ]
+[ info ] [ SESSION ] INIT array (
+  'id' => '',
+  'var_session_id' => '',
+  'prefix' => 'think',
+  'type' => '',
+  'auto_start' => true,
+)
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin/lang/zh-cn/feeding.php
+[ info ] [ DB ] INIT mysql
+[ info ] [ RUN ] app\admin\controller\Feeding->get_formula[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Feeding.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.424498s ]
+[ info ] [ LOG ] INIT File

+ 234 - 0
runtime/temp/0d8d1405a24bc636256cbf6be2511910.php

@@ -0,0 +1,234 @@
+<?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:90:"D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\examine_status.html";i:1709714141;s:72:"D:\phpstudy_pro\WWW\minongyun\application\admin\view\layout\default.html";i:1709714141;s:69:"D:\phpstudy_pro\WWW\minongyun\application\admin\view\common\meta.html";i:1709714141;s:71:"D:\phpstudy_pro\WWW\minongyun\application\admin\view\common\script.html";i:1711415624;}*/ ?>
+<!DOCTYPE html>
+<html>
+    <head>
+        <meta charset="utf-8">
+<title><?php echo (isset($title) && ($title !== '')?$title:''); ?></title>
+<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
+<meta name="renderer" content="webkit">
+<meta name="referrer" content="never">
+<meta name="robots" content="noindex, nofollow">
+
+<link rel="shortcut icon" href="/assets/img/favicon.ico" />
+<!-- Loading Bootstrap -->
+<link href="/assets/css/backend<?php echo \think\Config::get('app_debug')?'':'.min'; ?>.css?v=<?php echo \think\Config::get('site.version'); ?>" rel="stylesheet">
+
+<?php if(\think\Config::get('fastadmin.adminskin')): ?>
+<link href="/assets/css/skins/<?php echo \think\Config::get('fastadmin.adminskin'); ?>.css?v=<?php echo \think\Config::get('site.version'); ?>" rel="stylesheet">
+<?php endif; ?>
+
+<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
+<!--[if lt IE 9]>
+  <script src="/assets/js/html5shiv.js"></script>
+  <script src="/assets/js/respond.min.js"></script>
+<![endif]-->
+<script type="text/javascript">
+    var require = {
+        config:  <?php echo json_encode($config); ?>
+    };
+</script>
+
+    </head>
+
+    <body class="inside-header inside-aside <?php echo defined('IS_DIALOG') && IS_DIALOG ? 'is-dialog' : ''; ?>">
+        <div id="main" role="main">
+            <div class="tab-content tab-addtabs">
+                <div id="content">
+                    <div class="row">
+                        <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
+                            <section class="content-header hide">
+                                <h1>
+                                    <?php echo __('Dashboard'); ?>
+                                    <small><?php echo __('Control panel'); ?></small>
+                                </h1>
+                            </section>
+                            <?php if(!IS_DIALOG && !\think\Config::get('fastadmin.multiplenav') && \think\Config::get('fastadmin.breadcrumb')): ?>
+                            <!-- RIBBON -->
+                            <div id="ribbon">
+                                <ol class="breadcrumb pull-left">
+                                    <?php if($auth->check('dashboard')): ?>
+                                    <li><a href="dashboard" class="addtabsit"><i class="fa fa-dashboard"></i> <?php echo __('Dashboard'); ?></a></li>
+                                    <?php endif; ?>
+                                </ol>
+                                <ol class="breadcrumb pull-right">
+                                    <?php foreach($breadcrumb as $vo): ?>
+                                    <li><a href="javascript:;" data-url="<?php echo $vo['url']; ?>"><?php echo $vo['title']; ?></a></li>
+                                    <?php endforeach; ?>
+                                </ol>
+                            </div>
+                            <!-- END RIBBON -->
+                            <?php endif; ?>
+                            <div class="content">
+                                <div class="panel panel-default panel-intro">
+
+    <div class="panel-heading">
+        <?php echo build_heading(null,FALSE); ?>
+        <ul class="nav nav-tabs" data-field="status">
+            <li class="<?php echo \think\Request::instance()->get('status') === null ? 'active' : ''; ?>"><a href="#t-all" data-value="" data-toggle="tab"><?php echo __('All'); ?></a></li>
+        </ul>
+    </div>
+
+    <div class="panel-body">
+        <div id="myTabContent" class="tab-content">
+            <div class="tab-pane fade active in" id="one">
+                <div class="widget-body no-padding">
+                    <table id="table" class="table table-striped table-bordered table-hover table-nowrap" width="100%">
+                        <thead>
+                            <tr>
+                            <th style="text-align: center" class="col-sm-2" >ID</th>
+                            <th style="text-align: center" class="col-sm-2" >配方名称</th>
+                            <th style="text-align: center" class="col-sm-2" >版本号</th>
+                            <th style="text-align: center" class="col-sm-2" >审核时间</th>
+                            <th style="text-align: center" class="col-sm-2" >操作</th>
+                            </tr>
+                        </thead>
+                        <tbody class="xs">
+                            <?php if(is_array($formula) || $formula instanceof \think\Collection || $formula instanceof \think\Paginator): $i = 0; $__LIST__ = $formula;if( count($__LIST__)==0 ) : echo "" ;else: foreach($__LIST__ as $key=>$v): $mod = ($i % 2 );++$i;?>
+                                <tr class="tr" style="text-align: center;height: 50px;">
+                                    <td><?php echo $v['id']; ?></td>
+                                    <td><?php echo $v['name']; ?></td>
+                                    <td><?php echo $v['version']; ?></td>
+                                    <td><?php echo $v['update']; ?></td>
+                                    <td>
+                                        <button type="button" class="btn btn-cha">
+                                            <a href="<?php echo url('Formula/examine_list'); ?>?id=<?php echo $v['id']; ?>" style="text-decoration: none;color: black">查看</a>
+                                        </button>
+                                    </td>
+                                </tr>
+                            <?php endforeach; endif; else: echo "" ;endif; ?>
+                        </tbody>
+                    </table>
+                    <div style="text-align: center">
+                        <?php echo $page; ?>
+                    </div>
+
+                </div>
+            </div>
+
+        </div>
+    </div>
+</div>
+<script type='text/javascript' src='/assets/js/jquery2.1.1.min.js'></script>
+<script type="text/javascript" src="/assets/js/jquery.qrcode.min.js"></script>
+<script type="text/javascript" src="/assets/js/jQuery.print.js"></script>
+<script>
+
+</script>
+                            </div>
+                        </div>
+                    </div>
+                </div>
+            </div>
+        </div>
+        <script src="/assets/js/require<?php echo \think\Config::get('app_debug')?'':'.min'; ?>.js" data-main="/assets/js/require-backend<?php echo \think\Config::get('app_debug')?'':'.min'; ?>.js?v=<?php echo htmlentities($site['version']); ?>"></script>
+<input type="hidden" value="<?php echo \think\Session::get('admin.username'); ?>" name="" id="username">
+<input type="hidden" value="<?php echo \think\Session::get('admin.company'); ?>" name="" id="company">
+<script>
+    function watermark(element, config) {
+        // 获取元素的坐标
+        function getOffset(el) {
+            if (el.offsetParent) {
+                return {
+                    x: el.offsetLeft + getOffset(el.offsetParent).x,
+                    y: el.offsetTop + getOffset(el.offsetParent).y,
+                };
+            }
+            return {
+                x: el.offsetLeft,
+                y: el.offsetTop,
+            };
+        }
+        if (!element) return;
+        // 默认配置
+        const _config = {
+            text1: '张三',   //文本1
+            text2: '13868686868',   // 文本2
+            start_x: 0,      // x轴起始位置
+            start_y: 0,      // y轴起始位置
+            space_x: 100,    // x轴间距
+            space_y: 50,     // y轴间距
+            width: 210,      // 宽度
+            height: 80,      // 长度
+            fontSize: 14,    // 字体
+            color: '#aaa',   // 字色
+            alpha: 0.4,      // 透明度
+            rotate: 15,       // 倾斜度
+        };
+        // 替换默认配置
+        if (arguments.length === 2 && typeof arguments[1] === "object") {
+            const src = arguments[1] || {};
+            for (let key in src) {
+                if (src[key] && _config[key] && src[key] === _config[key]) {
+                    continue;
+                } else if (src[key]) {
+                    _config[key] = src[key];
+                }
+            }
+        }
+        // 节点的总宽度
+        const total_width = element.scrollWidth;
+        // 节点的总高度
+        const total_height = element.scrollHeight;
+        // 创建文本碎片,用于包含所有的插入节点
+        const mark = document.createDocumentFragment();
+        // 水印节点的起始坐标
+        const position = getOffset(element);
+        let x = position.x + _config.start_x, y = position.y + _config.start_y;
+        // 先循环y轴插入水印
+        do {
+            // 再循环x轴插入水印
+            do {
+                // 创建单个水印节点
+                const item = document.createElement('div');
+                item.className = 'watermark-item';
+                // 设置节点的样式
+                item.style.position = "absolute";
+                item.style.zIndex = 99999;
+                item.style.left = `${x}px`;
+                item.style.top = `${y}px`;
+                item.style.width = `${_config.width}px`;
+                item.style.height = `${_config.height}px`;
+                item.style.fontSize = `${_config.fontSize}px`;
+                item.style.color = _config.color;
+                item.style.textAlign = 'center';
+                item.style.opacity = _config.alpha;
+                item.style.filter = `alpha(opacity=${_config.alpha * 100})`;
+                // item.style.filter = `opacity(${_config.alpha * 100}%)`;
+                item.style.webkitTransform = `rotate(-${_config.rotate}deg)`;
+                item.style.MozTransform = `rotate(-${_config.rotate}deg)`;
+                item.style.msTransform = `rotate(-${_config.rotate}deg)`;
+                item.style.OTransform = `rotate(-${_config.rotate}deg)`;
+                item.style.transform = `rotate(-${_config.rotate}deg)`;
+                item.style.pointerEvents = 'none';    //让水印不遮挡页面的点击事件
+                // 创建text1水印节点
+                const text1 = document.createElement('div');
+                text1.appendChild(document.createTextNode(_config.text1));
+                item.append(text1);
+                // 创建text2水印节点
+                const text2 = document.createElement('div');
+                text2.appendChild(document.createTextNode(_config.text2));
+                item.append(text2);
+                // 添加水印节点到文本碎片
+                mark.append(item);
+                // x坐标递增
+                x = x + _config.width + _config.space_x;
+                // 超出文本右侧坐标停止插入
+            } while (total_width + position.x > x + _config.width);
+            // 重置x初始坐标
+            x = position.x + _config.start_x;
+            // y坐标递增
+            y = y + _config.height + _config.space_y;
+            // 超出文本底部坐标停止插入
+        } while (total_height + position.y > y + _config.height);
+        // 插入文档碎片
+        element.append(mark);
+    }
+    var username = document.getElementById('username');
+    var company = document.getElementById('company');
+    //找到存放水印的盒子
+    const element = document.getElementsByTagName('body')[0];
+    watermark(element,{text1:username.value,text2:company.value});
+</script>
+
+    </body>
+</html>