修复代码错误$data['update_time'] 改为 $param['update_time']

This commit is contained in:
hdm 2023-05-17 08:22:48 +08:00
parent 96fbe7d219
commit c6a7415b7b
9 changed files with 14 additions and 15 deletions

View File

@ -39,7 +39,7 @@ class Car extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('CarCate')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -39,7 +39,7 @@ class Meeting extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('MeetingCate')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -39,7 +39,7 @@ class Seal extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('SealCate')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -39,7 +39,7 @@ class Cate extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('ContractCate')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -71,7 +71,7 @@ class Contact extends BaseController
return to_assign(1, $e->getError());
}
$detail= Db::name('CustomerContact')->where(['id' => $param['id']])->find();
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('CustomerContact')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -39,7 +39,7 @@ class Grade extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('CustomerGrade')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -39,7 +39,7 @@ class Source extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('CustomerSource')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -61,7 +61,7 @@ class Cate extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('FlowType')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);
@ -135,7 +135,7 @@ class Cate extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('CostCate')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);
@ -199,7 +199,7 @@ class Cate extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('ExpenseCate')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);
@ -327,7 +327,7 @@ class Cate extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('Industry')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);
@ -391,7 +391,7 @@ class Cate extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('Services')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);
@ -433,7 +433,6 @@ class Cate extends BaseController
}
}
//工作类别
public function work_cate()
{
@ -456,7 +455,7 @@ class Cate extends BaseController
// 验证失败 输出错误信息
return to_assign(1, $e->getError());
}
$data['update_time'] = time();
$param['update_time'] = time();
$res = Db::name('WorkCate')->strict(false)->field(true)->update($param);
if ($res) {
add_log('edit', $param['id'], $param);

View File

@ -40,7 +40,7 @@ layui.define(['tool'], function (exports) {
box: 'fileBox',
url: "/api/index/upload",
accept: 'file', //普通文件
exts: 'png|jpg|gif|jpeg|doc|docx|ppt|pptx|xls|xlsx|pdf|zip|rar|7z', //只允许上传文件格式
exts: 'png|jpg|gif|jpeg|doc|docx|ppt|pptx|xls|xlsx|pdf|zip|rar|7z|txt|wps|avi|wmv|mpg|mov|rm|swf|flv|mp4|dwg|dxf|dwt|xmind', //只允许上传文件格式
colmd:4,
isSave:false,
uidDelete:false,