139 lines
5.0 KiB
PHP
139 lines
5.0 KiB
PHP
<?php
|
|
|
|
namespace web\admin\demo;
|
|
|
|
class lineedit {
|
|
static function setwhere($db, $post) {
|
|
$query = $post->get('query');
|
|
$csql = new \ciy\sql('zc_config');
|
|
$csql->where('types like', objstr($query, 'types'));
|
|
$csql->where('params like', objstr($query, 'params'));
|
|
$order = objstr($query, 'order', 'id desc');
|
|
$csql->order($order);
|
|
$query['order'] = $order;
|
|
return [$query, $csql];
|
|
}
|
|
public static function json_init() {
|
|
global $db;
|
|
$rsuser = verifyfast();
|
|
$post = new \ciy\post();
|
|
list($where, $csql) = self::setwhere($db, $post);
|
|
$pageno = $post->getint('pageno', 1);
|
|
$pagecount = $post->getint('pagecount', 10);
|
|
$csql->limit($pageno, $pagecount);
|
|
$mainrowcount = $post->getint('count');
|
|
$rows = $db->get($csql, $mainrowcount);
|
|
$rows[] = array('id' => 0, 'types' => '');
|
|
$ret = array('where' => $where, 'pageno' => $pageno, 'pagecount' => $pagecount, 'count' => $mainrowcount, 'list' => $rows);
|
|
if ($post->getbool('field')) {
|
|
$field = array();
|
|
$fshow = '';
|
|
$fshow = fieldadd($fshow, $field, -1, 'types', '参数代码');
|
|
$fshow = fieldadd($fshow, $field, -1, 'params', '参数值');
|
|
$fshow = fieldadd($fshow, $field, -1, '_btn', '操作');
|
|
$field['types']['thwidth'] = '12em';
|
|
$field['params']['thwidth'] = '21em';
|
|
$ret['fshow'] = $fshow;
|
|
$ret['field'] = $field;
|
|
}
|
|
if ($post->getbool('once')) {
|
|
$ret['once'] = array();
|
|
$input = array();
|
|
$input[] = array(
|
|
'type' => 'input', 'form' => 'types', 'name' => '参数代码', 'prop' => ' style="width:8em;"'
|
|
);
|
|
$input[] = array(
|
|
'type' => 'input', 'form' => 'params', 'name' => '参数值', 'prop' => ' style="width:8em;"'
|
|
);
|
|
$ret['once']['input'] = $input;
|
|
}
|
|
return succjson($ret);
|
|
}
|
|
|
|
public static function json_update() {
|
|
global $db;
|
|
$rsuser = verifyfast();
|
|
|
|
if (nopower($db, $rsuser['id'], 'p600u'))
|
|
return errjson('您未被授权操作');
|
|
$post = new \ciy\post();
|
|
$id = $post->getint('id');
|
|
$types = $post->get('types');
|
|
if ($types == '')
|
|
return errjson('请填写代码');
|
|
$params = $post->get('params');
|
|
$datarow = null;
|
|
if ($id > 0) {
|
|
$csql = new \ciy\sql('zc_config');
|
|
$csql->where('id', $id);
|
|
$datarow = $db->getone($csql);
|
|
if (!is_array($datarow))
|
|
return errjson('数据不存在');
|
|
}
|
|
try {
|
|
$db->begin();
|
|
$csql = new \ciy\sql('zc_config');
|
|
$csql->where('types', $types);
|
|
$csql->column('id');
|
|
$chkid = toint($db->get1($csql));
|
|
if ($chkid > 0 && (($id > 0 && $chkid != $id) || $id == 0))
|
|
throw new \Exception('CIYIGN代码重复');
|
|
|
|
$updata = array();
|
|
$updata['types'] = $types;
|
|
$updata['params'] = $params;
|
|
$csql = new \ciy\sql('zc_config');
|
|
if ($id > 0) {
|
|
$csql->where('id', $id);
|
|
if ($db->update($csql, $updata) === false)
|
|
throw new \Exception('更新失败:' . $db->error);
|
|
} else {
|
|
if ($db->insert($csql, $updata) === false)
|
|
throw new \Exception('新增失败:' . $db->error);
|
|
$id = $db->insert_id();
|
|
}
|
|
$updata['id'] = $id;
|
|
savelogdb($db, $rsuser['id'], 'zc_config', $datarow, $updata);
|
|
$db->commit();
|
|
} catch (\Exception $ex) {
|
|
$db->rollback();
|
|
savelogfile('err_db', $ex->getMessage());
|
|
return errjson($ex->getMessage());
|
|
}
|
|
$ret['data'] = $updata;
|
|
return succjson($ret);
|
|
}
|
|
|
|
public static function json_del() {
|
|
global $db;
|
|
$rsuser = verifyfast();
|
|
|
|
if (nopower($db, $rsuser['id'], 'p600d'))
|
|
return errjson('您未被授权操作');
|
|
$post = new \ciy\post();
|
|
$ids = $post->get('ids');
|
|
if (empty($ids))
|
|
return errjson('请选择至少一条');
|
|
$csql = new \ciy\sql('zc_config');
|
|
$csql->where('id in', $ids);
|
|
$rows = $db->get($csql);
|
|
$vids = array();
|
|
try {
|
|
$db->begin();
|
|
foreach ($rows as $row) {
|
|
$delid = $row['id'];
|
|
delme($db, $delid, 'zc_config');
|
|
savelogdb($db, $rsuser['id'], 'zc_config', $row, null);
|
|
$vids[] = $delid;
|
|
}
|
|
$db->commit();
|
|
} catch (\Exception $ex) {
|
|
$db->rollback();
|
|
savelogfile('err_db', $ex->getMessage());
|
|
return errjson($ex->getMessage());
|
|
}
|
|
$ret['ids'] = $vids;
|
|
return succjson($ret);
|
|
}
|
|
}
|