Commit 29e87fd3e91b6780868c078dcdde94f0a41262c6

Authored by 曹明
1 parent 39a323fd
Exists in master

app-ht(v1.8.6 build 11)

1.所有十六进制自编码都统一成大写存入数据库
app-ht/config/params.php
1 1 <?php
2 2 return [
3   - 'VERSION' => 'v1.8.6 build 10',
  3 + 'VERSION' => 'v1.8.6 build 11',
4 4 ];
5 5 \ No newline at end of file
... ...
app-ht/modules/upgrade/views/upgrade/index.php
... ... @@ -77,7 +77,7 @@ $this-&gt;params[&#39;breadcrumbs&#39;][] = $this-&gt;title;
77 77 <th width="10%">厂商名称</th>
78 78 <th width="10%">上传时间</th>
79 79 <th width="10%">发布状态</th>
80   - <th width="10%">发布信息</th>
  80 + <th width="20%">发布信息</th>
81 81 <th width="20%">操作</th>
82 82 </tr>
83 83 </thead>
... ...
domain/manufacturer/Manufacturer.php
... ... @@ -128,7 +128,7 @@ class Manufacturer
128 128 } else if (strlen($dataNo) == 3) {
129 129 $dataNo = "0" . $dataNo;
130 130 }
131   - return $dataNo;
  131 + return strtoupper($dataNo);
132 132 }
133 133  
134 134 /**
... ...
domain/model/Model.php
... ... @@ -94,6 +94,6 @@ class Model
94 94 } else if (strlen($dataNo) == 3) {
95 95 $dataNo = "0" . $dataNo;
96 96 }
97   - return $dataNo;
  97 + return strtoupper($dataNo);
98 98 }
99 99 }
100 100 \ No newline at end of file
... ...
domain/production/Production.php
... ... @@ -94,6 +94,6 @@ class Production
94 94 } else if (strlen($dataNo) == 3) {
95 95 $dataNo = "0" . $dataNo;
96 96 }
97   - return $dataNo;
  97 + return strtoupper($dataNo);
98 98 }
99 99 }
100 100 \ No newline at end of file
... ...
domain/project/Project.php
... ... @@ -94,6 +94,6 @@ class Project
94 94 } else if (strlen($dataNo) == 3) {
95 95 $dataNo = "0" . $dataNo;
96 96 }
97   - return $dataNo;
  97 + return strtoupper($dataNo);
98 98 }
99 99 }
100 100 \ No newline at end of file
... ...