liuhairui 11 months ago
parent
commit
585196f42b

+ 145 - 132
application/admin/controller/Feeding.php

@@ -74,6 +74,17 @@ class Feeding extends Backend
         }
         $tid = Db::name('task')->where('bach',$_POST['bach'])->order('id desc')->find();
 
+//        $year = date('Y'); // 获取当前年份
+//
+//        $tid = Db::name('task')
+//            ->where('bach', $_POST['bach']) // 根据批次过滤
+//            ->where('create', 'like', "$year%") // 使用 LIKE 模糊查询,匹配当前年份
+//            ->order('id desc') // 按照创建时间降序排序
+//            ->find(); // 只取最新的一条记录
+
+
+
+
         if(empty($_POST['weight'])){
             $this->error('投料数据不能为空');
         }
@@ -179,6 +190,44 @@ class Feeding extends Backend
 //            return '修改成功';
 //        }
 //    }
+    public function edit($ids = null){
+        $row = $this->model->get($ids);
+        if (!$row) {
+            $this->error(__('No Results were found'));
+        }
+        $adminIds = $this->getDataLimitAdminIds();
+        if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
+            $this->error(__('You have no permission'));
+        }
+        if (false === $this->request->isPost()) {
+            $row = Db::name('feeding')->where('id',$ids)->find();
+            $this->assign('row',$row);
+            return $this->view->fetch();
+        }
+        $params = $this->request->post('row/a');
+//        echo "<pre>";
+//        print_r($params);
+//        echo "</pre>";
+//        die;
+        if (empty($params)) {
+            $this->error(__('Parameter %s can not be empty', ''));
+        }
+        $params = $this->preExcludeFields($params);
+        $result = false;
+        Db::startTrans();
+        try {
+            //第三步
+            $result = Db::name('feeding')->where('id',$ids)->update($params);
+            Db::commit();
+        } catch (ValidateException|PDOException|Exception $e) {
+            Db::rollback();
+            $this->error($e->getMessage());
+        }
+        if (false === $result) {
+            $this->error(__('No rows were updated'));
+        }
+        $this->success();
+    }
 
     //获取作业票信息
     public function get_task(){
@@ -186,7 +235,16 @@ class Feeding extends Backend
         $year = date('Y'); // 获取当前年份
         $row = Db::name('feeding')->where('bach',$bach)->select();
 
-        $res = Db::name('task')->where('bach',$bach)->order('create','desc')->select();
+//        $res = Db::name('task')->where('bach',$bach)->order('create','desc')->select();
+
+        $year = date('Y'); // 获取当前年份
+        $res = Db::name('task')
+            ->where('bach', $bach) // 批次号
+            // 使用 LIKE 模糊查询,匹配当前年份
+            ->where('create', 'like', "$year%")
+            ->order('create desc')
+            ->select();
+
 
         //已有过工序
         if($row){
@@ -218,6 +276,7 @@ class Feeding extends Backend
                 ->field('f.id as fid,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){
@@ -275,91 +334,27 @@ class Feeding extends Backend
 
     //获取配方信息
     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();
-
+        $year = date('Y'); // 获取当前年份
+        $process = Db::name('feeding')->where('bach',$bach)->where('create', 'like', "$year%")->select();
         if($num){//如果有,批次号重复,需精确查找
             $res = Db::name('task')->alias('t')
                 ->join('formula_detail f','f.pid=t.fid','left')
                 ->field('f.id as fid, f.material,f.percentage,f.gy_name,f.gy_num,t.number,t.id,t.kuodan')
+                ->where('t.bach',$bach)
+                ->where('t.create', 'like', "$year%")
                 ->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.id as fid, f.material,f.percentage,f.gy_name,f.gy_num,t.number,t.id,t.kuodan')
+                ->where('t.bach',$bach)
+                ->where('t.create', 'like', "$year%")
                 ->where('t.bach',$bach)->select();
         }
+
         $pro = 0;
         //按照百分比计算出应投重量
         foreach($res as &$v){
@@ -448,20 +443,10 @@ class Feeding extends Backend
                 } else {
                     break;
                 }
-//                if (! isset($gy_num_status[$gy_num]) || $gy_num_status[$gy_num] < $count) {
-//                    $all_completed = false;
-//                    $current_gy_num = $gy_num;
-//                    break;
-//                } else {
-//                    $current_gy_num = $gy_num;
-//                }
-//                if ($gy_num > $current_gy_num) {
-//                    $current_gy_num = $gy_num;
-//                }
             }
             // 如果所有工序都完成,则显示下一工序
 //            if ($all_completed) {
-//                $current_gy_num++;
+//
 //            }
         }
         // 筛选出当前工序的 $res 数据
@@ -473,56 +458,84 @@ class Feeding extends Backend
 //        echo "当前工序: " . $current_gy_num;
 //        echo "<pre>";print_r($filtered_res);echo "</pre>";
 
-        $row['total']=$num;
-        $row['data'] = $filtered_res;
-        $row['process'] = $pro+1;
-        return json($row);
+        if (!empty($filtered_res)) {
+            $row['total']=$num;
+            $row['data'] = $filtered_res;
+            $row['process'] = $pro+1;
+            return json($row);
+        } else {
+            $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.create', 'like', "$year%")
+                    ->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')
+                    ->where('t.create', 'like', "$year%")
+                    ->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);
+        }
+
+
 
-//die;
-//        $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'));
-//            // [][][][][][][][][][][][][][][][][][][]
-//            // [][][][][][][][][][][][][][][][][][][]
-//            // else  maxGyNumInProcess = max(array_column($process, 'gy_num')); 出现了问题
-//            // [][][][][][][][][][][][][][][][][][][]
-//            $nextGyNum = $maxGyNumInProcess ;
-////            echo "<pre>";
-////            print_r($nextGyNum);
-////            echo "<pre>";
-//            // 检查并跳过带有特定标记(如 '*****')的工序
-//            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)) {
-//            $res = $originalRes; // 将所有工序的数据赋值给 $res,进行后续处理
-//        }
-//
-//
-//        $row['total']=$num;
-//        $row['data'] = $res;
-//        $row['process'] = $pro+1;
-//        return json($row);
     }
 
     public function get_material(){

+ 31 - 15
application/admin/controller/Formula.php

@@ -148,6 +148,7 @@ class Formula extends Backend
         $user_info = Session::get('admin');
         $params['user_id'] = $user_info['id'];
         $params['company_id'] = $user_info['company_id'];
+
         $result = false;
         Db::startTrans();
         try {
@@ -178,6 +179,7 @@ class Formula extends Backend
 //                    $gy_num++;
 //                }
             }
+
             $result = Db::name('formula_detail')->insertAll($data);
             //有替代料的话  查出所有替代料  然后分解  插入到数据库  2022年9月19日14:20:37  替代料功能改变
 //            if ($is_replace == 1){
@@ -436,18 +438,32 @@ class Formula extends Backend
             $this->assign('sckp',$sckp);
             $this->assign('scsh',$scsh);
 
-            //批次号顺序新增
-//            $tastbach = Db::name('task')->order('bach desc')->find();
-//            $bach = $tastbach['bach'] +1;
-
-            //2024年12月31日 18点00后 使用下面代码 代表每年都从00001开始
-//            $year = date('Y'); // 获取当前年份
-//            $tastbach = Db::name('task')->where('create', 'like', $year.'%')->order('bach desc')->find();
-
-            $year = date('Y'); // 获取当前年份
-            $startDate = $year.'-03-21'; // 设置开始日期为2月1日
-            $tastbach = Db::name('task')->where('create', '>=', $startDate)->order('bach desc')->find();
-            $bach = str_pad($tastbach['bach'] + 1, 5, "0", STR_PAD_LEFT);
+            // 获取当前年份
+            $year = date('Y');
+            // 查询数据库中 'task' 表里所有 'create' 字段以当前年份开头的数据,并按照 'bach' 字段降序排列,取出第一条数据
+            $tastbach = Db::name('task')
+                ->where('create', 'like', $year. '%')
+                ->order('bach desc')
+                ->find();
+            // 判断查询结果是否为空(即查不到数据)
+            if (empty($tastbach)) {
+                // 如果没有查到数据,则新增一条数据到 'task' 表中
+                Db::name('task')->insert([
+                    'name' => '测试',
+                    'bach' => '00000',
+                    'drawer_name' => '测试',
+                    'examine_name' => '测试',
+                    'number' => '1',
+                    'remark' => '',
+                    'fid' => '1',
+                    'create' => date('Y-m-d H:i:s'),
+                ]);
+                //代表每年都从00001开始
+                $bach = '00001';
+            } else {
+                // 如果查询到记录,则取出 'bach' 字段的值并加 1,然后格式化为 5 位长度,左侧补 0
+                $bach = str_pad($tastbach['bach'] + 1, 5, "0", STR_PAD_LEFT);
+            }
             $this->view->assign('bach',$bach);
             $list = Db::name('formula')->where('id',$ids)->find();
 
@@ -508,16 +524,16 @@ class Formula extends Backend
         Db::startTrans();
         try {
             $task_kd = Db::name('task')->where('bach',$base[2])->find();
-            if (empty($task_kd)) {
+//            if (empty($task_kd)) {
                 // 没有找到匹配的数据,执行插入操作
                 $result = Db::name('task')->insert($params);
-
-            }
+//            }
             $result = true;
 //            Db::name('order')->where('id',$params['oid'])->setField('status',2);
 //            $result = Db::name('task')->insert($params);
             //更改订单已完成数量,修改订单状态
             $order_info = Db::name('order')->where('id',$params['oid'])->find();
+
             if (empty($order_info['completed'])){
                 $new_completed = $params['number'];
                 $order_status = 2;//生产中

+ 2 - 1
application/admin/view/common/header.html

@@ -3,7 +3,8 @@
     <!-- 迷你模式下Logo的大小为50X50 -->
     <span class="logo-mini">{$site.name|mb_substr=0,4,'utf-8'|mb_strtoupper='utf-8'|htmlentities}</span>
     <!-- 普通模式下Logo -->
-    <span class="logo-lg">{$site.name|htmlentities}</span>
+    <span class="logo-lg" style="font-size: 16px">浙江美浓材料科技有限公司</span>
+
 </a>
 
 <!-- 顶部通栏样式 -->

+ 3 - 1
application/admin/view/common/menu.html

@@ -3,7 +3,9 @@
     <!-- 管理员信息 -->
     <div class="user-panel hidden-xs">
         <div class="pull-left image">
-            <a href="general/profile" class="addtabsit"><img src="{$admin.avatar|cdnurl|htmlentities}" class="img-circle" /></a>
+            <a href="general/profile" class="addtabsit">
+                <img src="{$admin.avatar|cdnurl|htmlentities}" class="img-circle" />
+            </a>
         </div>
         <div class="pull-left info">
             <p>{$admin.nickname|htmlentities}</p>

+ 2 - 2
application/admin/view/common/script.html

@@ -19,8 +19,8 @@
         if (!element) return;
         // 默认配置
         const _config = {
-            text1: '张三',   //文本1
-            text2: '13868686868',   // 文本2
+            text1: '浙江美浓材料科技有限公司',   //文本1
+            text2: '',   // 文本2
             start_x: 0,      // x轴起始位置
             start_y: 0,      // y轴起始位置
             space_x: 100,    // x轴间距

+ 1 - 1
application/admin/view/dashboard/index.html

@@ -229,7 +229,7 @@
                                         <div class="progress">
                                             <div class="progress-bar progress-bar-success" style="width: 20%"></div>
                                         </div>
-                                    </div>  
+                                    </div>
                                     <div class="col-xs-6 stat-col">
                                         <div class="stat-icon"><i class="fa fa-vcard"></i></div>
                                         <div class="stat">

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

@@ -344,7 +344,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
                         url: "feeding/cheng",
                         success(data) {
                             if(data.admin.username === '333' || data.admin.username === 'admin'){
-                            // if(data.admin.username === '333'){
+                                // if(data.admin.username === '333'){
                                 console.log('登录了带有电子秤的账号');
                                 connectSerial();
                             }else{
@@ -909,47 +909,47 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
                                                                             let trzl = $("#dzcshuju").text().trim(); // 投入重量
                                                                             // 遍历表格行
                                                                             // for (let i = 0; i < $('.tablestr').length; i++) {
-                                                                                const dom = $('.tablestr')[i];
-                                                                                //原材料
-                                                                                const val = $(dom).find('td:eq(0) input').val();
-                                                                                //应投重量
-                                                                                const table_ytzl = $(dom).find('td:eq(1) input').val();
-                                                                                //投料重量
-                                                                                const table_tlzl = $(dom).find('td:eq(2) input').val();
-                                                                                //按钮
-                                                                                const status_button = $(dom).find('td:eq(4) button').text();
+                                                                            const dom = $('.tablestr')[i];
+                                                                            //原材料
+                                                                            const val = $(dom).find('td:eq(0) input').val();
+                                                                            //应投重量
+                                                                            const table_ytzl = $(dom).find('td:eq(1) input').val();
+                                                                            //投料重量
+                                                                            const table_tlzl = $(dom).find('td:eq(2) input').val();
+                                                                            //按钮
+                                                                            const status_button = $(dom).find('td:eq(4) button').text();
 
-                                                                                //扫描物料等于表格中物料 并且 未保存
-                                                                                if (status_button === '保存' && val === wuliao) {
-                                                                                    if (ytzl === '' && trzl === '' || ytzl && trzl === '') {
-                                                                                        $("#input").text(wuliao);
-                                                                                        $("#ytzl").text(table_ytzl);
-                                                                                        $("#wuliao").val('');
-                                                                                        $("#wuliao").focus();
-                                                                                        var wuliao_msg = new SpeechSynthesisUtterance("当前扫描物料" + wuliao + "应投入重量" + table_ytzl + "千克");
-                                                                                        window.speechSynthesis.speak(wuliao_msg);
-                                                                                    } else if (table_tlzl !== '' && trzl !== '' && status_button === '保存' && val === wuliao) {
-                                                                                        console.log("保存了");
-                                                                                        $(dom).find('td:eq(4) button').click();
-                                                                                        $("#dzcshuju").text('');
-                                                                                        $("#ytzl").text('');
-                                                                                        $("#wuliao").val('');
-                                                                                        $("#wuliao").focus();
-                                                                                        //扫描物料语音播报
-                                                                                        var wuliao_msg = new SpeechSynthesisUtterance("已保存");
-                                                                                        window.speechSynthesis.speak(wuliao_msg);
-                                                                                    }
-                                                                                    break; // 退出循环
-                                                                                } else if (status_button === '已保存' && val === wuliao) {
-                                                                                    // 扫描的物料保存过了,清空【应投重量,投入重量】
-                                                                                    $("#ytzl").text('');
-                                                                                    $("#dzcshuju").text('');
-                                                                                    var wuliao_msg = new SpeechSynthesisUtterance("当前扫描" + wuliao + "已投料");
+                                                                            //扫描物料等于表格中物料 并且 未保存
+                                                                            if (status_button === '保存' && val === wuliao) {
+                                                                                if (ytzl === '' && trzl === '' || ytzl && trzl === '') {
+                                                                                    $("#input").text(wuliao);
+                                                                                    $("#ytzl").text(table_ytzl);
+                                                                                    $("#wuliao").val('');
+                                                                                    $("#wuliao").focus();
+                                                                                    var wuliao_msg = new SpeechSynthesisUtterance("当前扫描物料" + wuliao + "应投入重量" + table_ytzl + "千克");
                                                                                     window.speechSynthesis.speak(wuliao_msg);
+                                                                                } else if (table_tlzl !== '' && trzl !== '' && status_button === '保存' && val === wuliao) {
+                                                                                    console.log("保存了");
+                                                                                    $(dom).find('td:eq(4) button').click();
+                                                                                    $("#dzcshuju").text('');
+                                                                                    $("#ytzl").text('');
                                                                                     $("#wuliao").val('');
                                                                                     $("#wuliao").focus();
-                                                                                    break; // 退出循环
+                                                                                    //扫描物料语音播报
+                                                                                    var wuliao_msg = new SpeechSynthesisUtterance("已保存");
+                                                                                    window.speechSynthesis.speak(wuliao_msg);
                                                                                 }
+                                                                                break; // 退出循环
+                                                                            } else if (status_button === '已保存' && val === wuliao) {
+                                                                                // 扫描的物料保存过了,清空【应投重量,投入重量】
+                                                                                $("#ytzl").text('');
+                                                                                $("#dzcshuju").text('');
+                                                                                var wuliao_msg = new SpeechSynthesisUtterance("当前扫描" + wuliao + "已投料");
+                                                                                window.speechSynthesis.speak(wuliao_msg);
+                                                                                $("#wuliao").val('');
+                                                                                $("#wuliao").focus();
+                                                                                break; // 退出循环
+                                                                            }
                                                                             // }
 
                                                                             // var the_bach = document.getElementsByClassName('bach')[i];
@@ -1190,14 +1190,14 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form', 'jQuery.print', 'jque
                     //     var msg = new SpeechSynthesisUtterance("投料重量不能为空");
                     //     window.speechSynthesis.speak(msg);
                     // } else {
-                        $(this).text('已保存');
-                        $("#wuliao").focus();
-                        // $(this).text('修改');
-                        //禁用投料重量
-                        $(this).parent().siblings().eq(3).children('input').attr('readonly', true);
-                        // 禁用原材料批次号
-                        $(this).parent().siblings().eq(4).children('input').attr('readonly', true);
-                        $(this).attr('disabled', true);
+                    $(this).text('已保存');
+                    $("#wuliao").focus();
+                    // $(this).text('修改');
+                    //禁用投料重量
+                    $(this).parent().siblings().eq(3).children('input').attr('readonly', true);
+                    // 禁用原材料批次号
+                    $(this).parent().siblings().eq(4).children('input').attr('readonly', true);
+                    $(this).attr('disabled', true);
                     // }
                     // console.log(bach);
                     // console.log(date);

+ 1126 - 0
runtime/log/202412/19.log

@@ -0,0 +1,1126 @@
+---------------------------------------------------------------
+[ 2024-12-19T12:44:01+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2F
+[运行时间:0.058682s] [吞吐率:17.04req/s] [内存消耗:3,596.41kb] [文件加载:133]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000830s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001875s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000862s ]
+[ 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 => 'index',
+    2 => 'login',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'cache-control' => 'max-age=0',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/',
+)
+[ 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.001481s ]
+[ 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.000253s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:01+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1734583441&v=1734583441
+[运行时间:0.019614s] [吞吐率:50.98req/s] [内存消耗:3,604.41kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000643s ]
+[ 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 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=95630n24ipeb4dt6busdmb8pp5',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'index',
+  'lang' => 'zh-cn',
+  'v' => '1734583441',
+)
+[ 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.000838s ]
+[ 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.000067s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:08+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2F
+[运行时间:0.593085s] [吞吐率:1.69req/s] [内存消耗:4,356.60kb] [文件加载:141]
+[ 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.000257s ]
+[ 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=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '83',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/',
+  '__token__' => '7e8f54037f14333e5448ee3667901247',
+  'username' => 'admin',
+  'password' => '!QAZ2wsx!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.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/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.152703s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:14+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2F
+[运行时间:0.924551s] [吞吐率:1.08req/s] [内存消耗:4,404.54kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000640s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000263s ]
+[ 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=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '75',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/',
+  '__token__' => '6fc5144e35e27ea81e23336c44012639',
+  '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.000575s ]
+[ 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.183786s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:15+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/
+[运行时间:0.676043s] [吞吐率:1.48req/s] [内存消耗:4,866.45kb] [文件加载:145]
+[ 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.000279s ]
+[ 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 => NULL,
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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 ] [ 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.000144s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:19+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/dashboard?addtabs=1
+[运行时间:3.755725s] [吞吐率:0.27req/s] [内存消耗:4,728.67kb] [文件加载:145]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000601s ]
+[ 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.000009s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'dashboard',
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.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/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.000135s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:19+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1734583454&v=1734583454
+[运行时间:2.669230s] [吞吐率:0.37req/s] [内存消耗:3,607.42kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000080s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000734s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000348s ]
+[ 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=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'index',
+  'lang' => 'zh-cn',
+  'v' => '1734583454',
+)
+[ 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.000911s ]
+[ 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.000169s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:19+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=dashboard&lang=zh-cn&v=1734583455&v=1734583455
+[运行时间:0.019621s] [吞吐率:50.97req/s] [内存消耗:3,588.41kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000744s ]
+[ 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.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'dashboard',
+  'lang' => 'zh-cn',
+  'v' => '1734583455',
+)
+[ 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.000809s ]
+[ 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.000058s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:20+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/Dashboard/ecDashboard
+[运行时间:1.319841s] [吞吐率:0.76req/s] [内存消耗:4,469.15kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000637s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000265s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000009s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'Dashboard',
+    2 => 'ecDashboard',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '0',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000621s ]
+[ 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.161710s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:25+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?addtabs=1
+[运行时间:0.575537s] [吞吐率:1.74req/s] [内存消耗:4,748.41kb] [文件加载:142]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000630s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000281s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000009s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000628s ]
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\index.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'examineStatusList',
+  6 => 'statusList',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000165s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:25+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=formula&lang=zh-cn&v=1734583465&v=1734583465
+[运行时间:0.017315s] [吞吐率:57.75req/s] [内存消耗:3,586.30kb] [文件加载: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.000259s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'formula',
+  'lang' => 'zh-cn',
+  'v' => '1734583465',
+)
+[ 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.000737s ]
+[ 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/formula.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000055s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:26+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1734583465640
+[运行时间:0.796416s] [吞吐率:1.26req/s] [内存消耗:4,742.59kb] [文件加载:143]
+[ 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.000283s ]
+[ 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 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1734583465640',
+)
+[ 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.000658s ]
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000259s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:44:50+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?addtabs=1&search=&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1734583465641
+[运行时间:0.744447s] [吞吐率:1.34req/s] [内存消耗:4,742.93kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000618s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000268s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000009s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1734583465641',
+)
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000200s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:45:28+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/edit/ids/7154?dialog=1
+[运行时间:2.119480s] [吞吐率:0.47req/s] [内存消耗:4,953.80kb] [文件加载:142]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000021s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000657s ]
+[ 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.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'formula',
+    2 => 'edit',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'dialog' => '1',
+  'ids' => '7154',
+)
+[ 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.000716s ]
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->edit[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\edit.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'examineStatusList',
+  6 => 'statusList',
+  7 => 'customer_name',
+  8 => 'customer',
+  9 => 'jsdd',
+  10 => 'jssh',
+  11 => 'personnel_jsdd',
+  12 => 'personnel_jssh',
+  13 => 'ids',
+  14 => 'name',
+  15 => 'row',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000118s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:45:28+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=formula&lang=zh-cn&v=1734583526&v=1734583526
+[运行时间:0.017759s] [吞吐率:56.31req/s] [内存消耗:3,586.30kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000624s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000263s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'formula',
+  'lang' => 'zh-cn',
+  'v' => '1734583526',
+)
+[ 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.000766s ]
+[ 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/formula.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000055s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:47:05+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/edit/ids/7154?dialog=1
+[运行时间:1.826820s] [吞吐率:0.55req/s] [内存消耗:4,764.32kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000853s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000364s ]
+[ 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 => 'formula',
+    2 => 'edit',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'dialog' => '1',
+  'ids' => '7154',
+)
+[ 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.000675s ]
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->edit[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\edit.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'examineStatusList',
+  6 => 'statusList',
+  7 => 'customer_name',
+  8 => 'customer',
+  9 => 'jsdd',
+  10 => 'jssh',
+  11 => 'personnel_jsdd',
+  12 => 'personnel_jssh',
+  13 => 'ids',
+  14 => 'name',
+  15 => 'row',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000332s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:47:05+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=formula&lang=zh-cn&v=1734583623&v=1734583623
+[运行时间:0.017924s] [吞吐率:55.79req/s] [内存消耗:3,586.30kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000650s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000317s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'formula',
+  'lang' => 'zh-cn',
+  'v' => '1734583623',
+)
+[ 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.000796s ]
+[ 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/formula.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000059s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:49:17+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/formula/del
+[运行时间:1.222208s] [吞吐率:0.82req/s] [内存消耗:4,590.15kb] [文件加载:142]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000810s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000334s ]
+[ 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 => 'formula',
+    2 => 'del',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '27',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'action' => 'del',
+  'ids' => '7154',
+  '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.000643s ]
+[ 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/formula.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.202735s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2024-12-19T12:49:18+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?addtabs=1&search=&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1734583465642
+[运行时间:0.675480s] [吞吐率:1.48req/s] [内存消耗:4,742.92kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000625s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000267s ]
+[ 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 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1734583465642',
+)
+[ 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.000625s ]
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000102s ]
+[ info ] [ LOG ] INIT File

+ 367 - 0
runtime/log/202501/02.log

@@ -0,0 +1,367 @@
+---------------------------------------------------------------
+[ 2025-01-02T09:53:10+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2F
+[运行时间:0.054785s] [吞吐率:18.25req/s] [内存消耗:3,562.45kb] [文件加载:133]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000469s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001226s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000753s ]
+[ 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 => 'index',
+    2 => 'login',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'cache-control' => 'max-age=0',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/',
+)
+[ 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.001564s ]
+[ 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/common\view\tpl\dispatch_jump.tpl [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'code',
+  6 => 'msg',
+  7 => 'data',
+  8 => 'url',
+  9 => 'wait',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000114s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-02T09:53:12+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/
+[运行时间:0.551167s] [吞吐率:1.81req/s] [内存消耗:4,867.05kb] [文件加载:145]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000608s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000507s ]
+[ 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 => NULL,
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'referer' => 'https://minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2F',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.001234s ]
+[ 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.000246s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-02T09:53:15+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/dashboard?addtabs=1
+[运行时间:2.991625s] [吞吐率:0.33req/s] [内存消耗:4,728.77kb] [文件加载:145]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000695s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000301s ]
+[ 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 => 'dashboard',
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000903s ]
+[ 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.000194s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-02T09:53:15+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1735782792&v=1735782792
+[运行时间:2.936197s] [吞吐率:0.34req/s] [内存消耗:3,606.94kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000307s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000774s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000493s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'index',
+  'lang' => 'zh-cn',
+  'v' => '1735782792',
+)
+[ 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.001643s ]
+[ 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.000274s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-02T09:53:15+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=dashboard&lang=zh-cn&v=1735782792&v=1735782792
+[运行时间:0.024958s] [吞吐率:40.07req/s] [内存消耗:3,588.51kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000651s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000742s ]
+[ 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 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'dashboard',
+  'lang' => 'zh-cn',
+  'v' => '1735782792',
+)
+[ 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.001694s ]
+[ 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
+---------------------------------------------------------------
+[ 2025-01-02T09:53:17+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/Dashboard/ecDashboard
+[运行时间:1.470614s] [吞吐率:0.68req/s] [内存消耗:4,469.24kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000677s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000293s ]
+[ 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 => 'Dashboard',
+    2 => 'ecDashboard',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=95630n24ipeb4dt6busdmb8pp5; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '0',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000593s ]
+[ 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.188150s ]
+[ info ] [ LOG ] INIT File

+ 2433 - 0
runtime/log/202501/04.log

@@ -0,0 +1,2433 @@
+---------------------------------------------------------------
+[ 2025-01-04T10:16:35+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?ref=addtabs
+[运行时间:0.048090s] [吞吐率:20.79req/s] [内存消耗:3,364.17kb] [文件加载:130]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000019s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001473s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000576s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000017s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.001066s ]
+[ 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.000154s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:36+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2Fformula%2Findex%3Fref%3Daddtabs
+[运行时间:0.025865s] [吞吐率:38.66req/s] [内存消耗:3,596.60kb] [文件加载:133]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000648s ]
+[ 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 => 'index',
+    2 => 'login',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'referer' => 'https://minongyun/xOGLRsWPUr.php/formula/index?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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/formula/index?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.000607s ]
+[ 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.000078s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:36+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1735956996&v=1735956996
+[运行时间:0.021317s] [吞吐率:46.91req/s] [内存消耗:3,604.51kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000755s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000310s ]
+[ 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 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'index',
+  'lang' => 'zh-cn',
+  'v' => '1735956996',
+)
+[ 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.000849s ]
+[ 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.000069s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:42+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2Fformula%2Findex%3Fref%3Daddtabs
+[运行时间:1.214977s] [吞吐率:0.82req/s] [内存消耗:4,357.09kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000647s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000267s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '81',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/formula/index?ref=addtabs',
+  '__token__' => 'd5260d9a287d0aca30018090c46c1db4',
+  'username' => 'admin',
+  'password' => '!QAZ2wsx123456',
+)
+[ 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.326355s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:50+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/index/login?url=%2FxOGLRsWPUr.php%2Fformula%2Findex%3Fref%3Daddtabs
+[运行时间:1.328821s] [吞吐率:0.75req/s] [内存消耗:4,405.06kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000022s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000728s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000292s ]
+[ 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 => 'index',
+    2 => 'login',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '75',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'url' => '/xOGLRsWPUr.php/formula/index?ref=addtabs',
+  '__token__' => 'effcef6e281131dddff7cf6030f77c0b',
+  '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.000606s ]
+[ 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.264725s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:51+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?ref=addtabs
+[运行时间:0.630369s] [吞吐率:1.59req/s] [内存消耗:4,330.94kb] [文件加载:137]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000612s ]
+[ 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.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000630s ]
+[ 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.000342s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:52+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/index/index
+[运行时间:0.777867s] [吞吐率:1.29req/s] [内存消耗:4,871.33kb] [文件加载:145]
+[ 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.000415s ]
+[ 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 => 'index',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000600s ]
+[ 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.000131s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:55+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/dashboard?addtabs=1
+[运行时间:3.417793s] [吞吐率:0.29req/s] [内存消耗:4,728.90kb] [文件加载:145]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000651s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000267s ]
+[ 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 => 'dashboard',
+    2 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000618s ]
+[ 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.000098s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:56+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?addtabs=1
+[运行时间:3.876057s] [吞吐率:0.26req/s] [内存消耗:4,595.56kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000892s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000432s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000016s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.001191s ]
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\index.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'examineStatusList',
+  6 => 'statusList',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000501s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:56+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=index&lang=zh-cn&v=1735957011&v=1735957011
+[运行时间:3.835948s] [吞吐率:0.26req/s] [内存消耗:3,607.07kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000738s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000333s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'index',
+  'lang' => 'zh-cn',
+  'v' => '1735957011',
+)
+[ 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.000833s ]
+[ 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.000661s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:56+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=dashboard&lang=zh-cn&v=1735957012&v=1735957012
+[运行时间:0.433018s] [吞吐率:2.31req/s] [内存消耗:3,588.64kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000794s ]
+[ 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.000017s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'dashboard',
+  'lang' => 'zh-cn',
+  'v' => '1735957012',
+)
+[ 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.000829s ]
+[ 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.000115s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:56+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=formula&lang=zh-cn&v=1735957012&v=1735957012
+[运行时间:0.027798s] [吞吐率:35.97req/s] [内存消耗:3,586.44kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001078s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000538s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000081s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'formula',
+  'lang' => 'zh-cn',
+  'v' => '1735957012',
+)
+[ 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.000990s ]
+[ 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/formula.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000081s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:57+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/Dashboard/ecDashboard
+[运行时间:1.134683s] [吞吐率:0.88req/s] [内存消耗:4,469.38kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000713s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '0',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.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->ecDashboard[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Dashboard.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.159846s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:16:58+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/formula/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1735957016290
+[运行时间:0.611722s] [吞吐率:1.63req/s] [内存消耗:4,742.55kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000729s ]
+[ 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.000012s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'formula',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1735957016290',
+)
+[ 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.000713s ]
+[ 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/formula.php
+[ info ] [ RUN ] app\admin\controller\Formula->index[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Formula.php ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000208s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:17+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding?addtabs=1
+[运行时间:0.482823s] [吞吐率:2.07req/s] [内存消耗:4,535.68kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001112s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000453s ]
+[ 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 => NULL,
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000992s ]
+[ 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.000277s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:17+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1735957097&v=1735957097
+[运行时间:0.021439s] [吞吐率:46.64req/s] [内存消耗:3,585.64kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000664s ]
+[ 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 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1735957097',
+)
+[ 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.001280s ]
+[ 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.000105s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:18+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1735957097904
+[运行时间:0.696278s] [吞吐率:1.44req/s] [内存消耗:4,680.16kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000034s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001104s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000412s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000015s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1735957097904',
+)
+[ 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.000848s ]
+[ 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.000202s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:19+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/add?dialog=1
+[运行时间:1.207843s] [吞吐率:0.83req/s] [内存消耗:4,571.23kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000749s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000574s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000022s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'add',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000631s ]
+[ 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',
+  7 => 'jinayan',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000230s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:20+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/index?addtabs=1&search=&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1735957097905
+[运行时间:1.656943s] [吞吐率:0.60req/s] [内存消耗:4,680.50kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000702s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000358s ]
+[ 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 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1735957097905',
+)
+[ 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.000617s ]
+[ 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.000292s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:20+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1735957098&v=1735957098
+[运行时间:0.795779s] [吞吐率:1.26req/s] [内存消耗:3,585.64kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000010s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000613s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1735957098',
+)
+[ 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.000202s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:21+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/add?dialog=1
+[运行时间:0.651653s] [吞吐率:1.53req/s] [内存消耗:4,571.23kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000015s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000661s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000291s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000729s ]
+[ 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',
+  7 => 'jinayan',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000507s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:21+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1735957100&v=1735957100
+[运行时间:0.018991s] [吞吐率:52.66req/s] [内存消耗:3,585.64kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000714s ]
+[ 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.000010s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1735957100',
+)
+[ 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.000793s ]
+[ 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.000060s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:23+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/cheng
+[运行时间:0.637172s] [吞吐率:1.57req/s] [内存消耗:4,565.03kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000654s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000280s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000683s ]
+[ 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.000139s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:24+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/feeding/get_task
+[运行时间:1.609040s] [吞吐率:0.62req/s] [内存消耗:4,534.11kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000009s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000569s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000249s ]
+[ 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_task',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '10',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00035',
+)
+[ 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.000591s ]
+[ 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.490217s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:25+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/feeding/get_formula
+[运行时间:0.897160s] [吞吐率:1.11req/s] [内存消耗:4,533.96kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000627s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000292s ]
+[ 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 => 'get_formula',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '10',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00035',
+)
+[ 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.000753s ]
+[ 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.410764s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:54+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/task/index?addtabs=1
+[运行时间:0.569997s] [吞吐率:1.75req/s] [内存消耗:4,507.83kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000761s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000319s ]
+[ 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 => 'task',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000658s ]
+[ 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/task.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\task\index.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000183s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:54+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=task&lang=zh-cn&v=1735957133&v=1735957133
+[运行时间:0.018446s] [吞吐率:54.21req/s] [内存消耗:3,585.61kb] [文件加载: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.000260s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'task',
+  'lang' => 'zh-cn',
+  'v' => '1735957133',
+)
+[ 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.000832s ]
+[ 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/task.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000061s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:18:55+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/task/index?addtabs=1&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1735957134494
+[运行时间:0.645027s] [吞吐率:1.55req/s] [内存消耗:4,651.73kb] [文件加载:143]
+[ 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.000253s ]
+[ 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 => 'task',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1735957134494',
+)
+[ 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.000620s ]
+[ 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/task.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.000195s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:19:09+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/task/index?addtabs=1&search=&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1735957134495
+[运行时间:0.684282s] [吞吐率:1.46req/s] [内存消耗:4,652.08kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000843s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000378s ]
+[ 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 => 'task',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1735957134495',
+)
+[ 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.000705s ]
+[ 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/task.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.000143s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:19:14+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/task/show/ids/9340?dialog=1
+[运行时间:1.246782s] [吞吐率:0.80req/s] [内存消耗:4,819.66kb] [文件加载:142]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000013s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001006s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000498s ]
+[ 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 => 'task',
+    2 => 'show',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'dialog' => '1',
+  'ids' => '9340',
+)
+[ 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.001065s ]
+[ 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/task.php
+[ info ] [ RUN ] app\admin\controller\Task->show[ D:\phpstudy_pro\WWW\minongyun\application\admin\controller\Task.php ]
+[ info ] [ VIEW ] D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\task\show.html [ array (
+  0 => 'breadcrumb',
+  1 => 'site',
+  2 => 'config',
+  3 => 'auth',
+  4 => 'admin',
+  5 => 'row',
+  6 => 'ids',
+  7 => 'formula_detail',
+  8 => 'task',
+  9 => 'gyinfo',
+  10 => 'date',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000085s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:19:14+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=task&lang=zh-cn&v=1735957153&v=1735957153
+[运行时间:0.020396s] [吞吐率:49.03req/s] [内存消耗:3,585.61kb] [文件加载:134]
+[ 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.000268s ]
+[ 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' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'task',
+  'lang' => 'zh-cn',
+  'v' => '1735957153',
+)
+[ 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.000914s ]
+[ 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/task.php
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000094s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:19:43+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/index?addtabs=1&search=&sort=id&order=desc&offset=0&limit=10&filter=%7B%7D&op=%7B%7D&_=1735957097906
+[运行时间:0.601404s] [吞吐率:1.66req/s] [内存消耗:4,680.50kb] [文件加载:143]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000014s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001222s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000546s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000016s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'index',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/json',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => 'application/json, text/javascript, */*; q=0.01',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'addtabs' => '1',
+  'search' => '',
+  'sort' => 'id',
+  'order' => 'desc',
+  'offset' => '0',
+  'limit' => '10',
+  'filter' => '{}',
+  'op' => '{}',
+  '_' => '1735957097906',
+)
+[ 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.001049s ]
+[ 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.000212s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:20:04+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/add?dialog=1
+[运行时间:0.790143s] [吞吐率:1.27req/s] [内存消耗:4,571.23kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000678s ]
+[ 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 => 'add',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000632s ]
+[ 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',
+  7 => 'jinayan',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000351s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:20:04+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1735957203&v=1735957203
+[运行时间:0.019551s] [吞吐率:51.15req/s] [内存消耗:3,585.64kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000614s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000256s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000009s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1735957203',
+)
+[ 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.001340s ]
+[ 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
+---------------------------------------------------------------
+[ 2025-01-04T10:20:10+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/cheng
+[运行时间:0.534555s] [吞吐率:1.87req/s] [内存消耗:4,565.03kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000867s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000477s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000020s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'cheng',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000783s ]
+[ 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.000131s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:20:10+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/feeding/get_task
+[运行时间:1.427957s] [吞吐率:0.70req/s] [内存消耗:4,534.11kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000011s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000791s ]
+[ 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.000011s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'get_task',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '10',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00035',
+)
+[ 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.000648s ]
+[ 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.433304s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:20:12+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/feeding/get_formula
+[运行时间:1.079972s] [吞吐率:0.93req/s] [内存消耗:4,533.96kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000668s ]
+[ 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 => 'get_formula',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=0; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '10',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00035',
+)
+[ 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.000615s ]
+[ 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.501895s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:22:58+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/cheng
+[运行时间:0.415545s] [吞吐率:2.41req/s] [内存消耗:4,565.03kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001105s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000512s ]
+[ 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' => 'sidebar_collapse=1; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.001070s ]
+[ 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.000111s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:23:05+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/add?dialog=1
+[运行时间:0.671912s] [吞吐率:1.49req/s] [内存消耗:4,571.23kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000018s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000855s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000325s ]
+[ 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 => 'add',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=1; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'iframe',
+  '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.7',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'upgrade-insecure-requests' => '1',
+  'sec-ch-ua-platform' => '"Windows"',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000670s ]
+[ 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',
+  7 => 'jinayan',
+) ]
+[ info ] [ BEHAVIOR ] Run app\admin\behavior\AdminLog @app_end [ RunTime:0.000084s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:23:05+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/ajax/lang?callback=define&controllername=feeding&lang=zh-cn&v=1735957384&v=1735957384
+[运行时间:0.025496s] [吞吐率:39.22req/s] [内存消耗:3,585.64kb] [文件加载:134]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000016s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000862s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000349s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000015s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'ajax',
+    2 => 'lang',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=1; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'script',
+  'sec-fetch-mode' => 'no-cors',
+  'sec-fetch-site' => 'same-origin',
+  'accept' => '*/*',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'callback' => 'define',
+  'controllername' => 'feeding',
+  'lang' => 'zh-cn',
+  'v' => '1735957384',
+)
+[ 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.001509s ]
+[ 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.000143s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:23:06+08:00 ] 127.0.0.1 GET minongyun/xOGLRsWPUr.php/feeding/cheng
+[运行时间:0.491172s] [吞吐率:2.04req/s] [内存消耗:4,565.03kb] [文件加载:140]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.001036s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000416s ]
+[ info ] [ LANG ] D:\phpstudy_pro\WWW\minongyun\thinkphp\lang\zh-cn.php
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_dispatch [ RunTime:0.000016s ]
+[ info ] [ ROUTE ] array (
+  'type' => 'module',
+  'module' => 
+  array (
+    0 => 'admin',
+    1 => 'feeding',
+    2 => 'cheng',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=1; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'sec-ch-ua-mobile' => '?0',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ 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.000671s ]
+[ 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.000437s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:23:07+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/feeding/get_task
+[运行时间:1.463399s] [吞吐率:0.68req/s] [内存消耗:4,534.11kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000017s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000795s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000339s ]
+[ 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 => 'feeding',
+    2 => 'get_task',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=1; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '10',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00035',
+)
+[ 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.001046s ]
+[ 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.553140s ]
+[ info ] [ LOG ] INIT File
+---------------------------------------------------------------
+[ 2025-01-04T10:23:08+08:00 ] 127.0.0.1 POST minongyun/xOGLRsWPUr.php/feeding/get_formula
+[运行时间:1.159041s] [吞吐率:0.86req/s] [内存消耗:4,533.96kb] [文件加载:141]
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000012s ]
+[ info ] [ CACHE ] INIT File
+[ info ] [ BEHAVIOR ] Run Closure @app_init [ RunTime:0.000754s ]
+[ info ] [ BEHAVIOR ] Run app\common\behavior\Common @app_init [ RunTime:0.000318s ]
+[ 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 => 'feeding',
+    2 => 'get_formula',
+  ),
+)
+[ info ] [ HEADER ] array (
+  'cookie' => 'sidebar_collapse=1; PHPSESSID=p47r5gfo2c3n5lc5lpngi544dc; think_var=zh-cn',
+  'accept-language' => 'zh-CN,zh;q=0.9',
+  'accept-encoding' => 'gzip, deflate, br, zstd',
+  'sec-fetch-dest' => 'empty',
+  'sec-fetch-mode' => 'cors',
+  'sec-fetch-site' => 'same-origin',
+  'origin' => 'https://minongyun',
+  'sec-ch-ua-mobile' => '?0',
+  'content-type' => 'application/x-www-form-urlencoded; charset=UTF-8',
+  'sec-ch-ua' => '"Google Chrome";v="131", "Chromium";v="131", "Not_A Brand";v="24"',
+  'accept' => '*/*',
+  'user-agent' => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
+  'x-requested-with' => 'XMLHttpRequest',
+  'sec-ch-ua-platform' => '"Windows"',
+  'content-length' => '10',
+  'connection' => 'close',
+  'host' => 'minongyun',
+)
+[ info ] [ PARAM ] array (
+  'bach' => '00035',
+)
+[ 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.001122s ]
+[ 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.532512s ]
+[ info ] [ LOG ] INIT File

+ 505 - 0
runtime/temp/4fcf82abac8cea21acd83f484f4383f4.php

@@ -0,0 +1,505 @@
+<?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:80:"D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\task.html";i:1716279819;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:1730083808;}*/ ?>
+<!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">
+                                <style type="text/css">
+    .tg  {border-collapse:collapse;border-spacing:0;}
+    .tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
+        overflow:hidden;padding:10px 5px;word-break:normal;}
+    .tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
+        font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
+    .tg .tg-ub5w{font-size:36px;text-align:center;vertical-align:middle;border: none}
+    /*.tg .tg-x1hj{font-size:22px;text-align:left;vertical-align:top;}*/
+    .tg .tg-x1hj{font-size:22px;text-align:left;}
+    .tg .tg-kghl{font-size:22px;text-align:left;vertical-align:middle;}
+    .tg .tg-z7m5{font-size:22px;text-align:left;text-decoration:underline;vertical-align:top;border: none}
+    .tg .tg-s5vw{font-size:22px;font-weight:bold;text-align:center;vertical-align:bottom;border: none}
+    .tg .tg-v8dz{font-size:24px;text-align:left;vertical-align:top;border: none}
+    .tg .tg-svyg{font-size:22px;font-weight:bold;text-align:left;text-decoration:underline;vertical-align:bottom;border: none}
+    .tg .tg-4qqe{font-size:22px;font-weight:bold;text-align:center;vertical-align:top;border: none}
+    .tg .tg-9d8n{font-size:22px;text-align:left;vertical-align:top;}
+    .tg .tg-0pky{text-align:left;vertical-align:top;border: none}
+</style>
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+    <div class="form-group">
+        <?php if($erro=='该配方未生产过'): ?>
+        <h1 style="text-align: center;color: red"><?php echo $erro; ?></h1>
+        <?php else: ?>
+        <h1 style="text-align: center;"><?php echo $erro; ?></h1>
+        <?php endif; ?>
+        <br>
+        <input style="display: none" id="ids" value="<?php echo $ids; ?>">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-name" data-rule="required" class="form-control" name="row[name]" type="text" value="<?php echo $row['name']; ?>" readonly>
+        </div>
+        <label class="control-label col-xs-12 col-sm-1">批次号:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="hidden" type="hidden" value="<?php echo $bach; ?>">
+            <input id="c-bach" class="form-control" name="row[bach]" type="text" value="<?php echo $bach; ?>">
+        </div>
+        <span style="color: red">扩单:请输入扩单批次号</span>
+
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1">开票人:</label>
+        <div class="col-xs-12 col-sm-3">
+            <select style="width: 375px;height: 35px" id="c-drawer_name"  class="control-label col-xs-12 col-sm-8 form-control selectpicker" name="row[drawer_name]">
+                <?php foreach($sckp as $key=>$vv): ?>
+                <option value="<?php echo $vv['name']; ?>"><?php echo $vv['name']; ?></option>
+                <?php endforeach; ?>
+            </select>
+            <!--<input id="c-drawer_name" data-rule="required" class="form-control" name="row[drawer_name]" type="text">-->
+        </div>
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Examine_name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <select style="width: 375px;height: 35px" id="c-examine_name"  class="control-label col-xs-12 col-sm-8 form-control selectpicker" name="row[examine_name]">
+                <?php foreach($scsh as $key=>$vvv): ?>
+                <option value="<?php echo $vvv['name']; ?>"><?php echo $vvv['name']; ?></option>
+                <?php endforeach; ?>
+            </select>
+            <!--<input id="c-examine_name" data-rule="required" class="form-control" name="row[examine_name]" type="text">-->
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1">生产量(KG):</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-number" data-rule="required" class="form-control" name="row[number]" type="text">
+        </div>
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Remark'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-remark" class="form-control" name="row[remark]" type="text">
+        </div>
+    </div>
+
+    <div class="form-group" style="display: none">
+        <!--扩单数量-->
+        <label class="control-label col-xs-12 col-sm-1">扩单数量</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-kuoz" data-rule="required" class="form-control" name="row[kuoz]" type="text">
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1">机台选择:</label>
+        <div class="col-xs-12 col-sm-3">
+            <select id="c-mid" data-rule="required" class="control-label col-xs-12 col-sm-8 selectpicker" name="row[mid]">
+                <?php if(is_array($machineList) || $machineList instanceof \think\Collection || $machineList instanceof \think\Paginator): if( count($machineList)==0 ) : echo "" ;else: foreach($machineList as $key=>$vo): ?>
+                <option value="<?php echo $vo['name']; ?>" <?php if(in_array(($key), explode(',',""))): ?>selected<?php endif; ?>><?php echo $vo['name']; ?></option>
+                <?php endforeach; endif; else: echo "" ;endif; ?>
+            </select>
+        </div>
+        <label class="control-label col-xs-12 col-sm-1">请选择关联订单:</label>
+        <div class="col-xs-12 col-sm-6">
+            <select id="c-order-uncompleted" data-rule="required" class="control-label col-xs-12 col-sm-24 selectpicker" name="row[uncompleted]">
+                <?php if(is_array($order) || $order instanceof \think\Collection || $order instanceof \think\Paginator): if( count($order)==0 ) : echo "" ;else: foreach($order as $key=>$vo): ?>
+                <option value="<?php echo $vo['id']; ?>"><?php echo $vo['str']; ?></option>
+                <?php endforeach; endif; else: echo "" ;endif; ?>
+            </select>
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"></label>
+        <div class="col-xs-12 col-sm-3">
+            <button type="button" id="add" class="btn btn-success">确定生成作业票</button>
+            <button type="button" id="kuodan" class="btn btn-success">确定扩单</button>
+        </div>
+    </div>
+
+    <div class="form-group">
+        <table class="table table-striped table-bordered table-hover table-nowrap" id="gy">
+            <tr>
+                <th class="col-xs-12 col-sm-1">原材料</th>
+                <th class="col-xs-12 col-sm-1">百分比</th>
+                <th class="col-xs-12 col-sm-1">应加量(KG)</th>
+                <th class="col-xs-12 col-sm-1">扩单重量</th>
+                <th class="col-xs-12 col-sm-6">操作记录</th>
+                <th class="col-xs-12 col-sm-1">工序号</th>
+            </tr>
+            <?php if(is_array($row["gyinfo"]) || $row["gyinfo"] instanceof \think\Collection || $row["gyinfo"] instanceof \think\Paginator): if( count($row["gyinfo"])==0 ) : echo "" ;else: foreach($row["gyinfo"] as $key=>$vo): ?>
+            <tr>
+                <td><input  class="form-control material" type="text" value="<?php echo $vo['material']; ?>" readonly></td>
+                <td><input  class="form-control percentage" type="text" value="<?php echo $vo['percentage']; ?>" readonly></td>
+                <td><input  class="form-control num" type="text" data-id="<?php echo $vo['id']; ?>" id="input-<?php echo $vo['id']; ?>" value="" readonly></td>
+                <td><input  class="form-control num" type="text" data-id="<?php echo $vo['id']; ?>" id="kuodan-<?php echo $vo['id']; ?>" value="" readonly></td>
+                <td><input  class="form-control gy_name" type="text" value="<?php echo $vo['gy_name']; ?>" readonly></td>
+                <td><input  class="form-control gy_num" type="text" value="<?php echo $vo['gy_num']; ?>" readonly></td>
+            </tr>
+            <?php endforeach; endif; else: echo "" ;endif; ?>
+        </table>
+    </div>
+    <!--===========================================================-->
+<!--    <div style="padding: 1000px 0 0 0">-->
+    <div style="display: none">
+        <div class="form-group" id="print_area">
+            <div id="head">
+
+                <table class="tg" style="width: 800px;">
+                    <thead>
+                    <img src="" id="myImage" class="qrcode" alt="" style="margin:0 0 -130px 500px;"/>
+                    <tr>
+                        <th class="tg-v8dz" colspan="6" >
+<!--                            这是二维码的地方-->
+                        </th>
+                    </tr>
+                    </thead>
+                    <tbody>
+                    <tr>
+                        <td class="tg-9d8n" style="border: none;">日期:</td>
+                        <td class="tg-z7m5" style="border: none; width: 10%;"><span id="date"></span></td>
+                        <td  class="tg-ub5w" style="text-align: center; border: none;">作业票</td>
+                        <td class="tg-x1hj" style="width: 11%;">开票人</td>
+                        <td class="tg-x1hj" style="width: 11%;">审核</td>
+                    </tr>
+                    <tr>
+                        <td class="tg-9d8n" style="border: none;">批号:</td>
+                        <td class="tg-z7m5" style="border: none; width: 10%;"><span id="bach"></span></td>
+                        <td rowspan="2"  style="text-align: center; border: none;">
+                             <textarea type="text" id="formula" disabled style="resize: none; width: 400px; overflow-x: hidden; overflow-y: hidden; height: 78px; text-align: center; font-size: 16px;">
+
+                            </textarea>
+                        </td>
+                        <td class="tg-x1hj" id="drawer_name"></td>
+                        <td class="tg-x1hj" id="examine_name"></td>
+                    </tr>
+                    <tr>
+                        <td class="tg-9d8n" style="width: 14%; border: none;">版本号:</td>
+                        <td class="tg-z7m5" style="border: none; width: 10%;"><span id="version"><?php echo $row['version']; ?></span></td>
+                        <td colspan="2" style="border: none;text-align: center;"> <!-- 将textarea放在新的一行,并跨越两列 -->
+
+                        </td>
+                    </tr>
+                    </tbody>
+                </table>
+<!--                <table class="tg" style="width: 800px;">-->
+<!--                    <thead>-->
+<!--                    &lt;!&ndash;<div id="qrcode" style="margin:0 0 -450px 500px;width: 80px;height: 80px;">&ndash;&gt;-->
+<!--                    &lt;!&ndash;<img src="" id="myImage" alt=""/>&ndash;&gt;-->
+<!--                    &lt;!&ndash;</div>&ndash;&gt;-->
+<!--                    &lt;!&ndash;<div id="qrcode" style="width: 80px;height: 80px;border: 1px pink solid">&ndash;&gt;-->
+<!--                    <img src="" id="myImage" class="qrcode" alt="" style="margin:0 0 -130px 500px;"/>-->
+<!--                    &lt;!&ndash;</div>&ndash;&gt;-->
+<!--                    <tr>-->
+<!--                        <th class="tg-v8dz" colspan="6" >-->
+<!--                            &lt;!&ndash;<p id="formula_no"></p>&ndash;&gt;-->
+<!--                            &lt;!&ndash;<hr style="border: 1px solid;margin-top: -5px">&ndash;&gt;-->
+<!--                        </th>-->
+<!--                    </tr>-->
+<!--                    </thead>-->
+<!--                    <tbody>-->
+<!--                    <tr  style="border: 1px yellow solid">-->
+<!--                        <td class="tg-s5vw"></td>-->
+<!--                        <td class="tg-svyg"></td>-->
+<!--                        <td class="tg-ub5w" colspan="2" rowspan="2">作业票&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>-->
+<!--                        <td class="tg-4qqe"></td>-->
+<!--                        <td class="tg-s5vw"></td>-->
+<!--                    </tr>-->
+<!--                    <tr  style="border: 2px blue solid">-->
+<!--                        <td class="tg-9d8n" style="border: none;">日期:</td>-->
+<!--                        <td class="tg-z7m5" id="date"></td>-->
+<!--                        <td class="tg-9d8n">开票人</td>-->
+<!--                        <td class="tg-9d8n">审核</td>-->
+<!--                    </tr>-->
+<!--                    <tr style="border: 3px red solid;padding: 0px;margin: 0px">-->
+<!--                        <td class="tg-9d8n" style="border: none;">批号:</td>-->
+<!--                        <td class="tg-z7m5" id="bach"></td>-->
+<!--                        &lt;!&ndash;<td class="tg-kghl" style="border: none"><input type="text" id="formula" value="" style="width: 400px;text-align: center"></td>&ndash;&gt;-->
+<!--                        <td class="tg-kghl" style="border: none"><textarea type="text" id="formula" value="" disabled style="resize:none;width: 400px;overflow-x:hidden;overflow-y:hidden;height: 80px;text-align: center;font-size: 16px"></textarea></td>-->
+<!--                        <td class="tg-0pky"></td>-->
+<!--                        <td class="tg-x1hj" id="drawer_name"></td>-->
+<!--                        <td class="tg-x1hj" id="examine_name"></td>-->
+<!--                    </tr>-->
+<!--                    </tbody>-->
+<!--                </table>-->
+            </div>
+            <div style="height: 10px;"></div>
+            <div id="body">
+                <table class="tg" style="width: 800px;" id="print_gy">
+                    <tr>
+                        <th  style="text-align: center;">原材料</th>
+                        <!--<th  style="text-align: center">百分比</th>-->
+                        <th  style="text-align: center;">应加量(KG)</th>
+                        <th  style="text-align: center;">实加量(KG)</th>
+                        <th  style="text-align: center;">扩单后应加重量</th>
+                        <th  style="text-align: center;">操作记录</th>
+                    </tr>
+                    <?php if(is_array($row["gyinfo"]) || $row["gyinfo"] instanceof \think\Collection || $row["gyinfo"] instanceof \think\Paginator): if( count($row["gyinfo"])==0 ) : echo "" ;else: foreach($row["gyinfo"] as $key=>$vo): ?>
+                    <tr>
+                        <td style="width: 200px;text-align: center;font-size: 18px;line-height: 100%"><?php echo $vo['material']; ?></td>
+                        <!--<td style="width: 100px"><?php echo $vo['percentage']; ?></td>-->
+                        <td data-id="<?php echo $vo['id']; ?>" id="text-<?php echo $vo['id']; ?>" style="width: 100px;text-align: center;font-size: 18px;line-height: 10px" class="tt"></td>
+                        <td style="width: 100px;text-align: center;font-size: 18px"></td>
+                        <td style="width: 100px;text-align: center;font-size: 18px" class="tty_<?php echo $vo['id']; ?>"></td>
+                        <td style="width: 400px;"><?php echo $vo['gy_name']; ?></td>
+                    </tr>
+                    <?php endforeach; endif; else: echo "" ;endif; ?>
+                    <tr>
+                        <td style="width: 100px;text-align: center;font-size: 18px;">总计</td>
+                        <td class="total" style="width: 100px;text-align: center;font-size: 18px;"></td>
+                        <td ></td>
+                        <td class="kd_total" style="width: 100px;text-align: center;font-size: 18px;"></td>
+                        <td></td>
+                    </tr>
+                    <tr>
+                        <td colspan="5" class="remark" style=";font-size: 18px"></td>
+                    </tr>
+                </table>
+                <div style="height: 5px;"></div>
+                <table class="tg" style="width: 800px;">
+                    <tr>
+                        <td style="border: none">
+                            <span>包装规格:</span>
+                            <hr style="border: 1px solid;width: 150px;margin-top: -5px;">
+                            <div style="position: absolute;margin-left: 270px;margin-top: -36px;"> KG/桶</div>
+                        </td>
+                        <td style="border: none">作业票回收日期:<hr style="border: 1px solid;width: 150px;margin-top: -5px;"></td>
+                    </tr>
+                    <tr>
+                        <td style="border: none">操作人员:<hr style="border: 1px solid;width: 150px;margin-top: -5px;"></td>
+                        <td style="border: none">检验签字:<hr style="border: 1px solid;width: 150px;margin-top: -5px;"></td>
+                    </tr>
+                </table>
+            </div>
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-primary btn-embossed disabled submit">保存</button>
+            <button type="button" class="btn btn-default btn-embossed  print-link">打印预览</button>
+        </div>
+    </div>
+</form>
+
+<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 >
+
+    jQuery(function($) { 'use strict';
+
+        $(".print-link").on('click', function() {
+            var status = 1;
+            var number = $('#c-number').val();
+            if (number == ''){
+                status = 2;
+            }
+            var bach = $('#c-bach').val();
+            if (bach == ''){
+                status = 2;
+            }
+            var drawer_name = $('#c-drawer_name').val();
+            if (drawer_name == ''){
+                status = 2;
+            }
+            var examine_name = $('#c-examine_name').val();
+            if (examine_name == ''){
+                status = 2;
+            }
+            if (status == 2){
+                layer.confirm('数据不能为空,请仔细核查');return false
+            }
+            // var ids = $('#ids').val();
+            // bach = bach + '-' + ids;
+            createQrcode(bach,80,80);
+            var img = document.getElementById("myImage"); /// get image element
+            var canvas = document.getElementsByTagName('canvas')[0];
+            img.src = canvas.toDataURL();
+
+
+            /// update image
+            $.print('#print_area');
+            return false;
+        });
+        function createQrcode(txt,width,height) {
+            $(".qrcode").qrcode({
+                render: "canvas",//canvas和table两种渲染方式
+                width: width,
+                height: height,
+                correctLevel:3,//二维码纠错级别
+                background:"#ffffff",//背景颜色
+                foreground:"#000000", //二维码颜色
+                text:txt
+            });
+        }
+    });
+</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: '',   // 文本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>

+ 462 - 0
runtime/temp/8f6d5af16f49f48cddeb6e838a2e0477.php

@@ -0,0 +1,462 @@
+<?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:80:"D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\edit.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:1730083808;}*/ ?>
+<!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">
+                                <style type="text/css">
+    .tg  {border-collapse:collapse;border-spacing:0;}
+    .tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
+        overflow:hidden;padding:10px 5px;word-break:normal;}
+    .tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
+        font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
+    .tg .tg-ub5w{font-size:36px;text-align:center;vertical-align:middle}
+    .tg .tg-x1hj{font-size:20px;text-align:left;vertical-align:top}
+    .tg .tg-kghl{font-size:22px;text-align:left;vertical-align:middle}
+    .tg .tg-z7m5{font-size:22px;text-align:left;text-decoration:underline;vertical-align:top}
+    .tg .tg-s5vw{font-size:22px;font-weight:bold;text-align:center;vertical-align:bottom}
+    .tg .tg-v8dz{font-size:24px;text-align:left;vertical-align:top}
+    .tg .tg-svyg{font-size:22px;font-weight:bold;text-align:left;text-decoration:underline;vertical-align:bottom}
+    .tg .tg-4qqe{font-size:22px;font-weight:bold;text-align:center;vertical-align:top}
+    .tg .tg-9d8n{font-size:20px;text-align:left;vertical-align:top}
+    .tg .tg-0pky{text-align:left;vertical-align:top;border: none;}
+</style>
+
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <span id="ids" data-value="<?php echo $ids; ?>"></span>
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-name" data-rule="required" class="form-control" name="row[name]" type="text" value="<?php echo $row['name']; ?>">
+        </div>
+        <label class="control-label col-xs-12 col-sm-1">编号:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-no" class="form-control" name="row[no]" type="text" value="<?php echo $row['no']; ?>">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Charge_name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <select  id="c-charge_name" data-rule="required" class="control-label col-xs-12 col-sm-8 form-control selectpicker" name="row[charge_name]" type="text" value="<?php echo $row['charge_name']; ?>">
+                <option value="<?php echo $personnel_jsdd['name']; ?>"><?php echo $personnel_jsdd['name']; ?></option>
+                <?php foreach($jsdd as $key=>$vv): ?>
+                <option value="<?php echo $vv['name']; ?>"><?php echo $vv['name']; ?></option>
+                <?php endforeach; ?>
+            </select>
+            <!--<input id="c-charge_name" data-rule="required" class="form-control" name="row[charge_name]" type="text" value="<?php echo $row['charge_name']; ?>">-->
+        </div>
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Examine_name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <select  id="c-examine_name" data-rule="required" class="control-label col-xs-12 col-sm-8 form-control selectpicker" name="row[examine_name]" type="text" value="<?php echo $row['examine_name']; ?>">
+                <option value="<?php echo $personnel_jssh['name']; ?>"><?php echo $personnel_jssh['name']; ?></option>
+                <?php foreach($jssh as $key=>$vv): ?>
+                <option value="<?php echo $vv['name']; ?>"><?php echo $vv['name']; ?></option>
+                <?php endforeach; ?>
+            </select>
+            <!--<input id="c-examine_name" data-rule="required" class="form-control" name="row[examine_name]" type="text" value="<?php echo $row['examine_name']; ?>">-->
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Remark'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-remark" class="form-control" name="row[remark]" type="text" value="<?php echo $row['remark']; ?>">
+        </div>
+        <label class="control-label col-xs-12 col-sm-1">型号:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-model" class="form-control" name="row[model]" type="text" value="<?php echo $row['model']; ?>">
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Version'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-version" data-rule="required" class="form-control" name="row[version]" type="text" value="<?php echo $row['version']; ?>" readonly>
+        </div>
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Date'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-date" class="form-control datetimepicker" name="row[date]" type="text" data-date-format="YYYY-MM-DD" data-use-current="true" value="<?php echo $row['date']; ?>">
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1">可用性:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-usability"  data-source="formula/getCustomer"
+                   data-params='{"custom[type]":"bm","isTree":1}' data-multiple="true" data-field="customer_name"  class="form-control selectpage" name="usability"
+                   type="text" value="<?php echo htmlentities($row['usability']); ?>" placeholder="请选择配方对应客户,不选默认全部客户可用">
+        </div>
+
+        <label class="control-label col-xs-12 col-sm-1"></label>
+        <div class="col-xs-12 col-sm-3">
+
+            <?php if($row['controlled_one'] == 'voc标准'): ?>
+            <label><input name="row[controlled]" type="checkbox" checked value="<?php echo $row['controlled_one']; ?>" class="controlled_one" id="controlled_one">voc标准</label>
+            <?php else: ?>
+            <label><input name="row[controlled]" type="checkbox" value="<?php echo $row['controlled_two']; ?>" class="controlled_one">voc标准</label>
+            <?php endif; if($row['controlled_two'] == '受控'): ?>
+            <label><input name="row[controlled]" type="checkbox" checked value="<?php echo $row['controlled_two']; ?>" class="controlled_two" id="controlled_two">受控</label>
+            <?php else: ?>
+            <label><input name="row[controlled]" type="checkbox" value="<?php echo $row['controlled_two']; ?>" class="controlled_two">受控</label>
+            <?php endif; ?>
+
+        </div>
+
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1">工艺信息:</label>
+        <div id="nav" class="col-xs-12 col-sm-3">
+            <input id="add_material" class="form-control"  type="text" value="" placeholder="请输入原材料">
+        </div>
+        <div class="col-xs-12 col-sm-3">
+            <input id="add_percentage" class="form-control"  type="text" value="" placeholder="请输入百分比(%)">
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"></label>
+        <div class="col-xs-12 col-sm-6">
+            <input type="text" id="add_gy_name" placeholder="请输入操作工艺说明" data-source="formula/gyName" data-field="gy_name" data-pagination="true" data-page-size="10"  name="row[gy_name]" class="form-control selectpage" >
+        </div>
+        <button type="button" id="add" class="btn btn-success">添加原材料</button>
+        <div id="show">
+            <div></div>
+        </div>
+    </div>
+    <!--    <div class="form-group">-->
+    <!--        <label class="control-label col-xs-12 col-sm-1">工艺信息:</label>-->
+    <!--        <button type="button" id="add" class="btn btn-success">添加原材料</button>-->
+    <!--    </div>-->
+    <div class="form-group">
+        <table class="table table-striped table-bordered table-hover table-nowrap" id="gy">
+            <tr>
+                <th class="col-xs-12 col-sm-1">原材料</th>
+                <th class="col-xs-12 col-sm-1">百分比(%)</th>
+                <th class="col-xs-12 col-sm-8">操作工艺说明</th>
+                <th class="col-xs-12 col-sm-1">工序号(必填)</th>
+                <th class="col-xs-12 col-sm-1">操作</th>
+            </tr>
+            <?php if(is_array($row["gyinfo"]) || $row["gyinfo"] instanceof \think\Collection || $row["gyinfo"] instanceof \think\Paginator): if( count($row["gyinfo"])==0 ) : echo "" ;else: foreach($row["gyinfo"] as $key=>$vo): ?>
+            <tr>
+                <td><input  class="form-control material" type="text" value="<?php echo $vo['material']; ?>"></td>
+                <td><input  class="form-control percentage" type="number" value="<?php echo $vo['percentage']; ?>"></td>
+                <!--                <td><select class='form-control selectpicker' name='gy_name' id=''>-->
+                <!--                    <option value=''>请选择工艺</option>-->
+
+
+
+                <!--                    </select></td>-->
+                <td><input  class="form-control gy_name" type="text" value="<?php echo $vo['gy_name']; ?>"></td>
+                <td><input  class="form-control gy_num" type="text" value="<?php echo $vo['gy_num']; ?>"></td>
+                <td><button type="button"  class="btn btn-success up" >上移</button>&nbsp;<button type="button"  class="btn btn-success down" >下移</button>&nbsp;<button type="button"  class="btn btn-danger  del">删除</button></td>
+            </tr>
+            <?php endforeach; endif; else: echo "" ;endif; ?>
+        </table>
+    </div>
+    <div style="display: none">
+        <div class="form-group" id="print_area" >
+            <div id="head">
+                <table class="tg"  style="width: 800px;">
+                    <thead>
+                    <tr>
+                        <th class="tg-v8dz" colspan="6" style="border: none"><p id="no">MN/****</p>
+                            <hr style="border: 1px solid;margin-top: -5px"></th>
+                    </tr>
+                    </thead>
+                    <tbody>
+                    <tr>
+                        <td class="tg-s5vw"  style="border: none"></td>
+                        <td class="tg-svyg"  style="border: none"></td>
+                        <td class="tg-ub5w" colspan="2" rowspan="2"  style="border: none">配方单</td>
+                        <!--voc标准 受控-->
+                        <td class="tg-4qqe" colspan="3" style="border: none;" id="str"></td>
+                        <!--<td class="tg-4qqe"  style="border: none"></td>-->
+                        <!--<td class="tg-s5vw"  style="border: none"></td>-->
+                    </tr>
+                    <tr>
+                        <td class="tg-9d8n"  style="border: none">日期:</td>
+                        <td class="tg-z7m5" id="date" style="border: none"></td>
+                        <td class="tg-9d8n">担当人</td>
+                        <td class="tg-9d8n">审核人</td>
+                    </tr>
+                    <tr>
+                        <td class="tg-x1hj"  style="border: none">编号:</td>
+                        <td class="tg-z7m5" id="formula_no" style="border: none"></td>
+                        <!--<td class="tg-kghl"  style="border: none"><input id="formula" value="" style="width: 400px;text-align: center;"></td>-->
+                        <td class="tg-kghl"  style="border: none"><textarea id="formula" value=""  style="overflow-x:hidden;overflow-y:hidden;height: 80px;resize:none;width: 400px;text-align: center;font-size: 16px"></textarea></td>
+                        <td class="tg-0pky" style="border: none" ></td>
+                        <td class="tg-x1hj" id="charge_name"></td>
+                        <td class="tg-x1hj" id="examine_name"></td>
+                    </tr>
+                    </tbody>
+                </table>
+            </div>
+            <div style="height: 20px;"></div>
+            <div id="body">
+                <table class="tg" style="width: 800px;" id="print_gy">
+
+
+                </table>
+            </div>
+        </div>
+    </div>
+
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-primary btn-embossed disabled submit">保存</button>
+            <button type="button" class="btn btn-default btn-embossed  print-link">打印预览</button>
+        </div>
+    </div>
+</form>
+<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 >
+
+    jQuery(function($) { 'use strict';
+
+        $(".print-link").on('click', function() {
+            //给打印界面赋值
+            var remark = $('#c-remark').val();
+            remark = '备注:'+remark;
+            $('.remark').text(remark);
+            //给打印表头赋值
+            var formula = $('#c-name').val();
+            $('#formula').val(formula);
+            var formula_no = $('#c-no').val();
+            $('#formula_no').text(formula_no);
+            var charge_name = $('#c-charge_name').val();
+            $('#charge_name').text(charge_name);
+            var examine_name = $('#c-examine_name').val();
+            $('#examine_name').text(examine_name);
+            var date = $('#c-date').val();
+            $('#date').text(date);
+            var str = '';
+            //voc标准
+            if ($('#controlled_one').prop("checked") == true){
+                var print_controlled_one = $('#controlled_one').val();
+                str += '<span style="border:2px solid;" id="print_controlled_one">'+print_controlled_one+'</span>';
+            }
+            //受控
+            if ($('#controlled_two').prop("checked") == true){
+                var print_controlled_two = $('#controlled_two').val();
+                console.log(print_controlled_two)
+                str += ' <span  style="border:2px solid;" id="print_controlled_two">'+print_controlled_two+'</span>&nbsp;';
+            }
+            $('#str').html(str);
+            var html = '';
+            html += '<tr><td style="width: 200px;text-align: center">原材料</td><td  style="width: 50px;text-align: center">百分比</td><td style="width: 400px;text-align: center">操作工艺说明</td></tr>';
+            // html += '<tr><td style="width: 100px;text-align: center">原材料</td><td  style="width: 100px;text-align: center">百分比</td><td style="width: 400px;text-align: center">操作工艺说明</td></tr>';
+            var sum = 0;
+            var formulaTrList = $("#gy").find("tr");//行数
+            for (var i = 1; i < formulaTrList.length; i++) {
+                var formulaTrArr=formulaTrList.eq(i);
+                var tdOne = formulaTrArr.children("td").eq(0).find("input").val();
+                var tdTwo = formulaTrArr.children("td").eq(1).find("input").val();
+                var tdThr = formulaTrArr.children("td").eq(2).find("input").val();
+                html += '<tr ><td style="width: 100px;text-align: center;font-size: 18px">'+tdOne+'</td>';//加font-size: 18px
+                html += '<td style="width: 50px;text-align: center;font-size: 18px">'+tdTwo+'</td>';//加font-size: 18px
+                html += '<td style="width: 400px;">'+tdThr+'</td>';
+                sum = sum + tdTwo * 1000;
+            }
+            sum = sum / 1000;
+            html += '<tr><td style="width: 100px;text-align: center">总计</td><td class="total" style="width: 100px;text-align: center">'+sum+'</td><td class="remark">'+remark+'</td></tr>';
+
+            $('#print_gy').html(html)
+            // createQrcode(bach,80,80);
+            // var img = document.getElementById("myImage"); /// get image element
+            // var canvas = document.getElementsByTagName('canvas')[0];
+            // img.src = canvas.toDataURL();                     /// update image
+            $.print('#print_area');
+            return false;
+        });
+        function createQrcode(txt,width,height) {
+            $("#qrcode").qrcode({
+                render: "canvas",//canvas和table两种渲染方式
+                width: width,
+                height: height,
+                correctLevel:3,//二维码纠错级别
+                background:"#ffffff",//背景颜色
+                foreground:"#000000", //二维码颜色
+                text:txt
+            });
+        }
+    });
+</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: '',   // 文本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>

+ 429 - 0
runtime/temp/a22aaf8263f24794a0b8649e3a5d16dd.php

@@ -0,0 +1,429 @@
+<?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:79:"D:\phpstudy_pro\WWW\minongyun\public/../application/admin\view\formula\add.html";i:1713166890;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:1730083808;}*/ ?>
+<!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">
+                                <style type="text/css">
+    .tg  {border-collapse:collapse;border-spacing:0;}
+    .tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
+        overflow:hidden;padding:10px 5px;word-break:normal;}
+    .tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
+        font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
+    .tg .tg-ub5w{font-size:36px;text-align:center;vertical-align:middle}
+    .tg .tg-x1hj{font-size:22px;text-align:left;vertical-align:top}
+    .tg .tg-kghl{font-size:22px;text-align:left;vertical-align:middle}
+    .tg .tg-z7m5{font-size:22px;text-align:left;text-decoration:underline;vertical-align:top}
+    .tg .tg-s5vw{font-size:22px;font-weight:bold;text-align:center;vertical-align:bottom}
+    .tg .tg-v8dz{font-size:24px;text-align:left;vertical-align:top}
+    .tg .tg-svyg{font-size:22px;font-weight:bold;text-align:left;text-decoration:underline;vertical-align:bottom}
+    .tg .tg-4qqe{font-size:18px;font-weight:bold;text-align:left;vertical-align:top}
+    .tg .tg-9d8n{font-size:22px;text-align:left;vertical-align:top}
+    .tg .tg-0pky{text-align:left;vertical-align:top;border: none;}
+</style>
+<form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-name" data-rule="required" class="form-control" name="row[name]" type="text">
+        </div>
+        <label class="control-label col-xs-12 col-sm-1">编号:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-no" class="form-control" name="row[no]" type="text">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Charge_name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <select  id="c-charge_name"  class="control-label col-xs-12 col-sm-8 form-control selectpicker" name="row[charge_name]">
+                <?php foreach($jsdd as $key=>$vv): ?>
+                <option value="<?php echo $vv['name']; ?>"><?php echo $vv['name']; ?></option>
+                <?php endforeach; ?>
+            </select>
+            <!--<input id="c-charge_name" data-rule="required" class="form-control" name="row[charge_name]" type="text">-->
+        </div>
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Examine_name'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <select id="c-examine_name" class="control-label col-xs-12 col-sm-8 form-control selectpicker" name="row[examine_name]">
+                <?php foreach($jssh as $key=>$vvv): ?>
+                <option value="<?php echo $vvv['name']; ?>"><?php echo $vvv['name']; ?></option>
+                <?php endforeach; ?>
+            </select>
+            <!--<input id="c-examine_name" data-rule="required" class="form-control" name="row[examine_name]" type="text">-->
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Remark'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-remark" class="form-control" name="row[remark]" type="text">
+        </div>
+        <label class="control-label col-xs-12 col-sm-1">型号:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-model" class="form-control" name="row[model]" type="text">
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Version'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-version" data-rule="required" class="form-control" name="row[version]" type="text" value="v1.0" readonly>
+        </div>
+        <label class="control-label col-xs-12 col-sm-1"><?php echo __('Date'); ?>:</label>
+        <div class="col-xs-12 col-sm-3">
+            <input id="c-date" class="form-control datetimepicker" name="row[date]" type="text" data-date-format="YYYY-MM-DD" data-use-current="true" value="<?php echo date('Y-m-d'); ?>">
+        </div>
+    </div>
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1">可用性:</label>
+        <div class="col-xs-12 col-sm-3">
+          <input id="c-usability" class="form-control selectpage"  data-multiple="true"  data-source="formula/getCustomer" data-field="customer_name" name="row[usability]" type="text" value="" placeholder="请选择配方对应客户,不选默认全部客户可用">
+        </div>
+        <label class="control-label col-xs-12 col-sm-1"></label>
+        <div class="col-xs-12 col-sm-3">
+            <label><input name="row[controlled]" type="checkbox" value="voc标准" id="controlled_one">voc标准</label>
+            <label><input name="row[controlled]" type="checkbox" value="受控" checked  id="controlled_two">受控</label>
+
+            <!--<label><input name="controlled" type="checkbox" value="voc标准" id="controlled_one">voc标准</label>-->
+            <!--<label><input name="controlled" type="checkbox" value="受控" checked  id="controlled_two">受控</label>-->
+            <!--<label><input name="controlled" type="checkbox" value="ROHS" checked id="controlled_thr">ROHS</label>-->
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1">工艺信息:</label>
+        <div id="nav" class="col-xs-12 col-sm-3">
+            <input id="add_material" class="form-control"  type="text" value="" placeholder="请输入原材料,如多个原材料用/代替 列如:M-501/M-502">
+        </div>
+        <div class="col-xs-12 col-sm-3">
+            <input id="add_percentage" class="form-control"  type="text" value="" placeholder="请输入百分比(%)">
+        </div>
+    </div>
+
+    <div class="form-group">
+        <label class="control-label col-xs-12 col-sm-1"></label>
+        <div class="col-xs-12 col-sm-6">
+            <input type="text" id="add_gy_name" placeholder="请输入操作工艺说明" data-source="formula/gyName" data-field="gy_name" data-pagination="true" data-page-size="10"  name="row[gy_name]" class="form-control selectpage" >
+        </div>
+        <button type="button" id="add" class="btn btn-success">添加原材料</button>
+        <div id="show">
+            <div></div>
+        </div>
+    </div>
+    <div class="form-group">
+        <table class="table table-striped table-bordered table-hover table-nowrap" id="gy" style="table-layout:fixed;">
+            <tr>
+                <th class="col-xs-12 col-sm-2">原材料</th>
+                <th class="col-xs-12 col-sm-1">百分比(%)</th>
+                <th class="col-xs-12 col-sm-8">操作工艺说明</th>
+                <th class="col-xs-12 col-sm-1">工序号(必填)</th>
+                <th class="col-xs-12 col-sm-2">操作</th>
+            </tr>
+        </table>
+    </div>
+
+    <div style="display: none">
+        <div class="form-group" id="print_area" >
+
+            <div id="head">
+                <table class="tg"  style="width: 850px;">
+                    <thead>
+                    <tr>
+                        <th class="tg-v8dz" colspan="6" style="border: none">
+                            <hr style="border: 1px solid;margin-top: -5px"></th>
+                    </tr>
+                    </thead>
+                    <tbody>
+                    <tr>
+                        <td class="tg-s5vw"  style="border: none"></td>
+                        <td class="tg-svyg"  style="border: none"></td>
+                        <td class="tg-ub5w" colspan="2" rowspan="2"  style="border: none">配方单</td>
+                        <!--voc标准 受控-->
+                        <td class="tg-4qqe" colspan="3" style="border: none;" id="str"></td>
+                        <!--<td class="tg-4qqe"  style="border: none"></td>-->
+                        <!--<td class="tg-s5vw"  style="border: none"></td>-->
+                    </tr>
+                    <tr>
+                        <td class="tg-9d8n"  style="border: none">日期:</td>
+                        <td class="tg-z7m5" id="date" style="border: none"></td>
+                        <td class="tg-9d8n">担当人</td>
+                        <td class="tg-9d8n">审核人</td>
+                    </tr>
+                    <tr>
+                        <td class="tg-x1hj"  style="border: none">编号:</td>
+                        <td class="tg-z7m5" id="formula_no" style="border: none"></td>
+                        <!--<td class="tg-kghl"  style="border: none"><input id="formula" value="" style="width: 400px;text-align: center"></td>-->
+                        <td class="tg-kghl"  style="border: none"><textarea id="formula" value=""  style="overflow-x:hidden;overflow-y:hidden;height: 80px;resize:none;width: 400px;text-align: center;font-size: 16px"></textarea></td>
+                        <td class="tg-0pky" style="border: none" ></td>
+                        <td class="tg-x1hj" id="charge_name"></td>
+                        <td class="tg-x1hj" id="examine_name"></td>
+                    </tr>
+
+                    </tbody>
+                </table>
+
+            </div>
+
+            <div style="height: 20px;"></div>
+            <div id="body">
+                <table class="tg" style="width: 850px;" id="print_gy">
+
+
+                </table>
+            </div>
+        </div>
+    </div>
+    <div class="form-group layer-footer">
+        <label class="control-label col-xs-12 col-sm-2"></label>
+        <div class="col-xs-12 col-sm-8">
+            <button type="submit" class="btn btn-primary btn-embossed disabled submit"><?php echo __('OK'); ?></button>
+            <button type="reset" class="btn btn-default btn-embossed"><?php echo __('Reset'); ?></button>
+            <button type="button" class="btn btn-default btn-embossed  print-link">打印预览</button>
+        </div>
+    </div>
+</form>
+<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 >
+
+    jQuery(function($) { 'use strict';
+
+        $(".print-link").on('click', function() {
+            //给打印界面赋值
+            var remark = $('#c-remark').val();
+            remark = '备注:'+remark;
+            $('.remark').text(remark);
+            //给打印表头赋值
+            var formula = $('#c-name').val();
+            $('#formula').val(formula);
+            var formula_no = $('#c-no').val();
+            $('#formula_no').text(formula_no);
+            var charge_name = $('#c-charge_name').val();
+            $('#charge_name').text(charge_name);
+            var examine_name = $('#c-examine_name').val();
+            $('#examine_name').text(examine_name);
+            var date = $('#c-date').val();
+            $('#date').text(date);
+            var str = '';
+            //voc标准
+            if ($('#controlled_one').prop("checked") == true){
+                var print_controlled_one = $('#controlled_one').val();
+                str += '<span style="border:2px solid;" id="print_controlled_one">'+print_controlled_one+'</span>';
+            }
+            //受控
+            if ($('#controlled_two').prop("checked") == true){
+                var print_controlled_two = $('#controlled_two').val();
+                str += ' <span  style="border:2px solid;" id="print_controlled_two">'+print_controlled_two+'</span>&nbsp;';
+            }
+            //ROHS
+            // if ($('#controlled_thr').prop("checked") == true){
+            //     var print_controlled_thr = $('#controlled_thr').val();
+            //     str += '<span style="border:2px solid;" id="print_controlled_thr">'+print_controlled_thr+'</span>';
+            // }
+            $('#str').html(str);
+            var html = '';
+            html += '<tr><td style="width: 200px;text-align: center">原材料</td><td  style="width: 50px;text-align: center">百分比</td><td style="width: 400px;text-align: center">操作工艺说明</td></tr>';
+            // html += '<tr><td style="width: 100px;text-align: center">原材料</td><td  style="width: 100px;text-align: center">百分比</td><td style="width: 400px;text-align: center">操作工艺说明</td></tr>';
+            var sum = 0;
+            var formulaTrList = $("#gy").find("tr");//行数
+            for (var i = 1; i < formulaTrList.length; i++) {
+                var formulaTrArr=formulaTrList.eq(i);
+                var tdOne = formulaTrArr.children("td").eq(0).find("input").val();
+                var tdTwo = formulaTrArr.children("td").eq(1).find("input").val();
+                var tdThr = formulaTrArr.children("td").eq(2).find("input").val();
+                html += '<tr ><td style="width: 100px;text-align: center;font-size: 18px">'+tdOne+'</td>';
+                html += '<td style="width: 50px;text-align: center;font-size: 18px">'+tdTwo+'</td>';
+                html += '<td style="width: 400px;">'+tdThr+'</td>';
+                sum = sum + tdTwo * 1000;
+            }
+            sum = sum / 1000;
+            html += '<tr><td style="width: 100px;text-align: center">总计</td><td class="total" style="width: 100px;text-align: center">'+sum+'</td><td class="remark">'+remark+'</td></tr>';
+
+            $('#print_gy').html(html)
+            // createQrcode(bach,80,80);
+            // var img = document.getElementById("myImage"); /// get image element
+            // var canvas = document.getElementsByTagName('canvas')[0];
+            // img.src = canvas.toDataURL();                     /// update image
+            $.print('#print_area');
+            return false;
+        });
+    });
+</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: '',   // 文本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>