admin.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | admin.php 管理员表
  5. |--------------------------------------------------------------------------
  6. */
  7. # 定义几个常用的选项
  8. $status = array
  9. (
  10. 1 => '普通',
  11. 2 => '封禁',
  12. );
  13. $cur = Dever::load('manage/auth.data', false);
  14. # 获取top权限
  15. //$auth = Dever::tops();
  16. $company = function()
  17. {
  18. $data = Dever::load('manage/company-state');
  19. return $data;
  20. };
  21. $desc = '';
  22. if($cur && $cur['role'] > 1)
  23. {
  24. $desc = $cur['username'] . ',你好,你可以在此管理你的下属账号';
  25. $child = array_keys(Dever::db('manage/role')->all());
  26. $admin = Dever::db('manage/admin_role')->getData(array
  27. (
  28. 'role_id' => implode(',', $child),
  29. ));
  30. # 配置当前列表页的参数 只能查看自己下属的管理员
  31. Dever::$global['model']['manage/admin-list'] = array
  32. (
  33. 'option' => array
  34. (
  35. 'id' => array('yes', 'in'),
  36. ),
  37. 'option_id' => $admin ? array_keys($admin) : -1,
  38. );
  39. }
  40. $role = function()
  41. {
  42. return Dever::load('manage/role-getData');
  43. };
  44. $group = function()
  45. {
  46. return Dever::load('manage/group-all');
  47. };
  48. $company = Dever::load('manage/company.get');
  49. $company_group = function() use($company)
  50. {
  51. $where = array();
  52. if ($company > 1) {
  53. $where['id'] = $company;
  54. }
  55. $data = Dever::db('manage/company')->all($where);
  56. if ($data) {
  57. foreach ($data as $k => $v) {
  58. $data[$k]['child'] = Dever::db('manage/group')->all(array('company_id' => $v['id']));
  59. }
  60. $data['state'] = 1;
  61. }
  62. return $data;
  63. };
  64. $config = function()
  65. {
  66. return Dever::load('manage/config-all');
  67. };
  68. # 获取权限list 建议这里使用匿名函数
  69. $auth = function() use($cur)
  70. {
  71. if($cur['role'] > 1)
  72. {
  73. $auth = Dever::load('manage/auth.get', false);
  74. }
  75. else
  76. {
  77. $auth = Dever::load('manage/auth.get', true);
  78. }
  79. return $auth;
  80. };
  81. # 获取头部菜单list 建议这里使用匿名函数
  82. $top = function()
  83. {
  84. $data = Dever::load('manage/top.all');
  85. $data['state'] = 1;
  86. return $data;
  87. };
  88. return array
  89. (
  90. # 表名
  91. 'name' => 'admin',
  92. # 显示给用户看的名称
  93. 'lang' => '管理账户设置',
  94. 'desc' => $desc,
  95. # 表类型 值为\innodb\myisam\,默认为innodb,仅在mysql类型有效
  96. 'type' => 'innodb',
  97. # 分表设置 一般分为冷热数据,原理:自动建立一个dever_split表来记录分表的表名和数据,定时处理主表数据,当主表某些数据属于符合分表规则时,会建立分表,如admin-1 dever_split表里的结构为主表名、分表名、分表数据
  98. /*
  99. 'split' => array
  100. (
  101. 'type' => 'day',//分表类型,一般为day、week、month、year、value 其中value是按照某个确定的值分表
  102. 'col' => 'cdate',//分表字段
  103. 'step' => '1',//分表步进,如每3天分表,就填写3
  104. ),
  105. */
  106. # 分区设置,现在仅支持mysql
  107. /*
  108. 'partition' => array
  109. (
  110. 'type' => 'range',//分区类型
  111. 'col' => 'year(cdate)',//分区字段,可以使用mysql内置函数
  112. 'exp' => 'LESS THAN',
  113. //设置分区的值
  114. 'value' => array
  115. (
  116. '1996',
  117. '1997',
  118. '1998',
  119. ),
  120. ),
  121. */
  122. /* 设置上级菜单,当config里设置menu后,这里将失效
  123. 'parent' => array
  124. (
  125. 'key' => 'kefu',
  126. 'order' => 1,
  127. 'name' => '客服设置',
  128. ),
  129. */
  130. # 这个表不使用cache功能
  131. //'cache' => false,
  132. /*
  133. # 用到哪个后台菜单上,对应项目的key
  134. 'menu' => 'project_niuyou_main',
  135. # 后台菜单排序
  136. 'order' => 10,
  137. # 显示到后台快捷发布中,值为排序
  138. 'fast' => 1,
  139. */
  140. 'order' => 9,
  141. # 检测email必须唯一
  142. 'check' => 'email',
  143. # 同步更新另外一个或多个表的多条关联数据,以逗号隔开
  144. 'sync' => array
  145. (
  146. 'manage/admin_role' => array
  147. (
  148. # 更新时的条件,另外一个表的字段 => 本表的字段
  149. 'where' => array('admin_id' => 'id'),
  150. # 要更新的数据
  151. 'update' => array('role_id' => 'role'),
  152. # 同步更新的类型,delete为先删再插入,update为先查询是否存在,存在直接更新,不存在则插入, only为仅更新
  153. 'type' => 'delete',
  154. ),
  155. 'manage/admin_group' => array
  156. (
  157. # 更新时的条件,另外一个表的字段 => 本表的字段
  158. 'where' => array('admin_id' => 'id'),
  159. # 要更新的数据
  160. 'update' => array('group_id' => 'group'),
  161. # 同步更新的类型,delete为先删再插入,update为先查询是否存在,存在直接更新,不存在则插入, only为仅更新
  162. 'type' => 'delete',
  163. )
  164. ),
  165. /*
  166. # 查询出数据时,填充默认数据
  167. 'fill' => array
  168. (
  169. # 从哪个表填充
  170. 'cover/hot_service' => array
  171. (
  172. # 条件,另外一个表的字段 => 本表的字段
  173. 'where' => array('id' => 'service_id', 'seller_id' => '-1'),
  174. # 要填充的数据,另外一个表的字段 => 本表的字段,如果不填写就是所有的
  175. //'update' => array('name', 'title', 'desc', 'desc', 'back_color', 'pic', 'min_pic1', 'min_pic2', 'top', 'top_name', 'top_cover', 'hot_pic', 'case_pic', 'gradient', 'share_name', 'share_desc', 'share_pic', 'content', 'reorder'),
  176. # 不需要填充的字段 与update互斥
  177. 'no' => array('id', 'seller_id', 'service_id', 'chose', 'state', 'cdate')
  178. )
  179. ),
  180. */
  181. # 同步更新另外一个或多个表的一条关联数据
  182. /*
  183. 'syncone' => array
  184. (
  185. 'manage/admin_role' => array
  186. (
  187. # 更新另外一个表的字段 => 本表的字段
  188. 'where' => array('admin_id' => 'id'),
  189. # 要更新的数据
  190. 'update' => array('role_id' => 'role'),
  191. )
  192. ),
  193. */
  194. /*该方法用check替代
  195. 'start' => array
  196. (
  197. 'update' => 'manage/auth.checkEmail',
  198. 'insert' => 'manage/auth.checkEmail',
  199. ),
  200. */
  201. 'end' => array
  202. (
  203. 'insert' => 'manage/auth.update',
  204. 'update' => 'manage/auth.update',
  205. ),
  206. # 数据结构
  207. 'struct' => array
  208. (
  209. 'id' => array
  210. (
  211. 'type' => 'int-11',
  212. 'name' => '管理员ID',
  213. 'default' => '',
  214. 'desc' => '',
  215. 'match' => 'is_numeric',
  216. 'search' => 'order',
  217. 'list' => true,
  218. ),
  219. /*
  220. 'company_id' => array
  221. (
  222. 'type' => 'int-11',
  223. 'name' => '所属公司',
  224. 'default' => '1',
  225. 'desc' => '所属公司',
  226. 'match' => 'is_numeric',
  227. 'update' => 'hidden',
  228. ),*/
  229. 'username' => array
  230. (
  231. 'type' => 'varchar-24',
  232. 'name' => '管理员名',
  233. 'default' => '',
  234. 'desc' => '请输入管理员名',
  235. 'match' => 'is_string',
  236. 'update' => 'text',
  237. # 自动完成功能,第一个参数是请求的地址,请自行实现,第二个参数是要使用的字段,共有id和value两个选择,id会特殊处理,value则直接把当前值写入,第三个参数是直接替换当前的值,第四个参数是当前表里的字段名,一般为分类的id
  238. //'autocomplete' => array('auth.role?json=1', 'value', 'manage/role-check#name', 'cate_id'),
  239. //'autocomplete' => array('auth.role?json=1'),
  240. 'search' => 'order,fulltext',
  241. 'list' => true,
  242. // 可以自定义表头 参考layui table表头自定义
  243. //'list_header' => array('width' => '60%'),
  244. # 绑定js脚本,更新时使用,第一个参数是执行的方式,第二个参数执行的方法,第三个参数是传值。
  245. //'bind' => array('onblur', 'loading', array('url' => Dever::url("auth.blur"))),
  246. ),
  247. #多级联动
  248. //'update' => 'linkage',//多级联动 option参数:请求地址(返回参数为level_num当前联动级数,level_id当前选择的id),参考area组件:dever package area
  249. //'option' => Dever::url('api.get', 'area'),
  250. 'email' => array
  251. (
  252. 'type' => 'varchar-150',
  253. 'name' => '邮箱-可用于登录,请准确填写,不允许重复',
  254. 'default' => '',
  255. 'desc' => '请输入邮箱',
  256. 'match' => Dever::rule('email'),
  257. 'update' => 'text',
  258. /*
  259. //'option_add' => array('[添加新单位]', 'scm_product/lib/unit.add'),
  260. * search_name:检索名称
  261. * search_order:检索排序
  262. * search_after:展示当前检索之后需要展示什么,默认为<br />
  263. * 列表页搜索选项,这里的search或者update的值为
  264. * fulltext:全文检索,模糊匹配
  265. * text:精确匹配
  266. * day:按照日期检索
  267. * date:按照具体时间检索
  268. * exp:大小判断,仅能选择一项
  269. * select:选择器,需要option项
  270. * group:组选择器,需要option项
  271. * linkage:多级联动选择器,需要option项,值为联动数据接口地址,参考area组件 'option' => Dever::url('api.get', 'area'), 'list' => 'Dever::load("area/api.string", "{area}")',
  272. * exist:是否存在,需要exist项,基本配置为
  273. $source_id = array
  274. (
  275. 'yes' => '有值',
  276. 'no' => '没有值',
  277. 'no|2832' => '没有值或者有值为2832',
  278. 'yes|2832' => '有值并且过滤值为2829',
  279. '2832' => '查找',
  280. );
  281. * 如果search的值为数组,则认为是接口,需要从接口获取数据后再进行查找
  282. * 如'search' => array
  283. (
  284. 'api' => 'passport/user-all',//接口地址,最好是获取多条数据的地址
  285. 'col' => 'name',//要查询的字段
  286. 'result' => 'id',//返回的字段
  287. 'search' => 'uid',//本表的字段,默认为当前的字段
  288. //'option' => $option, //选择模式
  289. ),
  290. * 就是将本字段email当做passport/user-one的name字段来查找id
  291. */
  292. 'search' => 'fulltext',
  293. 'list' => true,
  294. # 在手机版或者小屏幕下,列表页的表格是否展示,1为展示,2、3、4、5、6均为在一定宽度下展示,详细参考:https://github.com/nadangergeo/RWD-Table-Patterns
  295. 'level' => 1,
  296. //直接上传到云端
  297. //'upload' => 'qiniu',
  298. //上传大数据
  299. //'large' => true,
  300. ),
  301. # 比较特殊的一些设置,不断添加中:
  302. /*
  303. //启用复制其他字段的值
  304. 'testname' => array
  305. (
  306. 'type' => 'varchar-24',
  307. 'name' => '角色名',
  308. 'default' => '',
  309. 'desc' => '请输入角色名',
  310. 'match' => 'is_string',
  311. 'update' => 'copy.name',//直接复制name的值
  312. 'search' => 'order,fulltext',
  313. 'list' => true,
  314. ),
  315. //当前的字段属于另外一个表,主要不要有type,当name不存在时,此处直接复用整个role_test表里的struct
  316. 'manage/role_test-one#name'=> array
  317. (
  318. 'name' => '测试名',
  319. 'default' => '',
  320. 'desc' => '请输入角色名',
  321. 'match' => 'option',
  322. 'update' => 'text',//直接复制name的值
  323. # 同步更新另外一个表的内容,两个表相关联的id,更新另一个表的字段,当前表、关联表
  324. 'sync' => array('role_id' => 'id'),
  325. 'list' => true,
  326. //'list' => 'Dever::load("setting/role-find#name", "{manage-role_test-name}")',
  327. ),
  328. //同时设置另外一个表的数据,设置同上,只有update的值不同
  329. 'manage/role_test' => array
  330. (
  331. 'type' => 'text-1000',
  332. 'name' => '属性设置',
  333. 'default' => '',
  334. 'desc' => '属性设置',
  335. 'match' => 'is_string',
  336. 'sync' => array('category_id' => 'id'),
  337. 'update' => array(1),
  338. ),
  339. 'text' => array
  340. (
  341. 'type' => 'text-1000',
  342. 'name' => '文字设置',
  343. 'default' => '',
  344. 'desc' => '文字设置',
  345. 'match' => 'is_string',
  346. 'option' => $text,
  347. 'update' => array
  348. (
  349. array
  350. (
  351. 'col' => 'name',
  352. 'name' => '文字内容',
  353. 'default' => '',
  354. 'desc' => '文字内容',
  355. 'match' => 'is_string',
  356. 'update' => 'textarea',
  357. ),
  358. array
  359. (
  360. 'col' => 'color',
  361. 'name' => '文字颜色',
  362. 'default' => '#000000',
  363. 'desc' => '文字颜色',
  364. 'match' => 'is_string',
  365. 'update' => 'color',
  366. ),
  367. array
  368. (
  369. 'col' => 'bgcolor_type',
  370. 'name' => '是否设置背景颜色',
  371. 'default' => '2',
  372. 'desc' => '是否设置背景颜色',
  373. 'match' => 'is_string',
  374. 'update' => 'radio',
  375. 'option' => $bgcolor_type,
  376. 'control' => 'bgcolor_type',
  377. ),
  378. array
  379. (
  380. 'col' => 'bgcolor',
  381. 'name' => '背景颜色',
  382. 'default' => '#000000',
  383. 'desc' => '背景颜色',
  384. 'match' => 'is_string',
  385. 'update' => 'color',
  386. 'show' => 'bgcolor_type=1'
  387. ),
  388. array
  389. (
  390. 'col' => 'size',
  391. 'name' => '文字大小-直接输入像素数字',
  392. 'default' => '16',
  393. 'desc' => '结果描述',
  394. 'match' => 'is_numeric',
  395. 'update' => 'text',
  396. ),
  397. array
  398. (
  399. 'col' => 'goods_id',
  400. 'name' => '选择商品',
  401. 'default' => '',
  402. 'desc' => '选择商品',
  403. 'match' => 'option',
  404. 'update' => 'select',
  405. 'update_search' => 'goods/lib/manage.search',
  406. ),
  407. ),
  408. ),
  409. 'category' => array
  410. (
  411. 'type' => 'varchar-500',
  412. 'name' => '属性分类',
  413. 'default' => '',
  414. 'desc' => '分类',
  415. 'match' => 'is_string',
  416. 'search' => 'linkage',
  417. //'update' => $id ? false : 'linkage',
  418. 'update' => 'linkage',//这里select和radio也支持
  419. 'option' => Dever::url('category.get', 'product'),
  420. 'list' => 'Dever::load("product/category.string", "{category}")',
  421. 'load' => 'product-info_attr',
  422. 'tab' => 1,
  423. ),
  424. 'product/info_attr'=> array
  425. (
  426. 'name' => '属性设置',
  427. 'default' => '',
  428. 'desc' => '请先选择属性分类',
  429. 'match' => 'option',
  430. # 同步更新另外一个表的内容,两个表相关联的id,更新另一个表的字段
  431. 'sync' => array('info_id' => 'id'),
  432. # 根据category字段的值,获取product/attr.search接口的内容
  433. 'update' => 'load',
  434. 'update_load' => array('product/attr.getManageByCate', 'category'),
  435. 'tab' => 1,
  436. ),
  437. #设置分割条
  438. /*
  439. 'hr1' => array
  440. (
  441. 'name' => '基本信息',
  442. 'class' => '',//本项必须填写
  443. 'attr' => '',
  444. ),
  445. */
  446. /*
  447. 'cate' => array
  448. (
  449. 'type' => 'varchar-300',
  450. 'name' => '标签分类',
  451. 'default' => '1',
  452. 'desc' => '标签分类',
  453. 'match' => 'is_string',
  454. 'update' => 'select',
  455. 'option' => $cate,
  456. 'search' => 'fulltext',
  457. //'list' => true,
  458. 'control' => 'cate',
  459. ),
  460. # 标签,根据分类变化的标签
  461. 'tag' => array
  462. (
  463. 'type' => 'varchar-300',
  464. 'name' => '标签',
  465. 'default' => '',
  466. 'desc' => '标签',
  467. 'match' => 'is_string',
  468. 'update' => 'checkbox',
  469. # 新增接口 暂未实现
  470. 'adding' => 'tag/manage.getByCate?cate=',
  471. # 开启这个,需要将update更换为text类型,输入文字即可选择标签
  472. //'autocomplete' => array('tag/manage.getByName', 'id', 'tag/info-one#name'),
  473. 'search' => 'fulltext',
  474. //'list' => true,
  475. # 与上边的cate联动(ajax)
  476. 'show' => 'cate=tag/manage.getByCate?cate=',
  477. # 或者加入可选项 待实现
  478. 'option' => $cate,
  479. ),
  480. # 标签,根据分类变化的标签
  481. 'tag' => array
  482. (
  483. 'type' => 'text-255',
  484. 'name' => '标签',
  485. 'default' => '',
  486. 'desc' => '标签',
  487. 'match' => 'is_string',
  488. // 多级联动+多选
  489. 'update' => 'linkage_checkbox',
  490. 'option' => array(Dever::url('api.get', 'area'), '', Dever::url('api.get', 'area')),//先选择多级联动,再选择多选
  491. ),
  492. # 加载地图
  493. 'map' => array
  494. (
  495. 'type' => 'varchar-300',
  496. 'name' => '地理位置',
  497. 'default' => '',
  498. 'desc' => '地理位置',
  499. 'match' => 'is_string',
  500. # 如果是map,必须在config的base.php中设置map信息
  501. //'update' => 'map',
  502. 'search' => 'fulltext',
  503. //'list' => true,
  504. //自定义编辑器右侧按钮
  505. 'editor' => array
  506. (
  507. 'name' => '选择插入模块',
  508. 'button' => array
  509. (
  510. array
  511. (
  512. # 名称
  513. 'name' => '图片',
  514. # 资源库id
  515. 'key' => 1,
  516. # 类型
  517. 'type' => 'image',
  518. ),
  519. array
  520. (
  521. 'name' => '音频',
  522. 'key' => 2,
  523. 'type' => 'media',
  524. ),
  525. array
  526. (
  527. 'name' => '视频',
  528. 'key' => 'video/lib/core.vod',
  529. ),
  530. array
  531. (
  532. 'name' => '直播',
  533. 'key' => 'video/lib/core.live',
  534. ),
  535. ),
  536. ),
  537. ),
  538. # 三级地区联动
  539. 'area' => array
  540. (
  541. 'type' => 'varchar-100',
  542. 'name' => '地区',
  543. 'default' => '',
  544. 'desc' => '地区',
  545. 'match' => 'is_string',
  546. 'search' => 'linkage',
  547. 'update' => 'linkage',//多级联动 option参数:请求地址(参数为level_num当前联动级数,level_id当前选择的id)
  548. 'option' => Dever::url('api.get', 'area'),
  549. 'list' => 'Dever::load("area/api.string", "{area}")',
  550. ),
  551. # 无限级联动
  552. 'category' => array
  553. (
  554. 'type' => 'varchar-500',
  555. 'name' => '分类',
  556. 'default' => '',
  557. 'desc' => '分类',
  558. 'match' => 'is_string',
  559. 'search' => 'linkage',
  560. //'update' => 'linkage',
  561. 'option' => Dever::url('api.get', 'category'),
  562. 'list' => 'Dever::load("category/api.string", "{category}")',
  563. ),
  564. # 属性管理
  565. 'attr' => array
  566. (
  567. 'type' => 'varchar-800',
  568. 'name' => '属性设置',
  569. 'default' => '',
  570. 'desc' => '属性设置',
  571. 'match' => 'option',
  572. 'update' => 'checkbox',
  573. 'option' => $attr,
  574. 'update_input' => '',
  575. 'update_input_default' => '',
  576. 'update_parent' => 'checkbox',
  577. ),
  578. # 属性管理 需要用这个来设置值
  579. 'attr_input' => array
  580. (
  581. 'type' => 'text-255',
  582. 'name' => '属性值设置',
  583. 'default' => '',
  584. 'desc' => '属性值设置',
  585. 'match' => 'option',
  586. ),
  587. */
  588. 'mobile' => array
  589. (
  590. 'type' => 'varchar-32',
  591. 'name' => '手机号',
  592. 'default' => '',
  593. 'desc' => '请输入手机号',
  594. 'match' => Dever::rule('mobile'),
  595. 'update' => 'text',
  596. 'search' => 'fulltext',
  597. 'list' => true,
  598. 'level' => 1,
  599. # 显示在table中
  600. //'list_table'=> '111',
  601. ),
  602. 'password' => array
  603. (
  604. 'type' => 'varchar-64',
  605. 'name' => '管理员密码',
  606. 'default' => '',
  607. 'desc' => '请输入管理员密码',
  608. 'match' => 'option',
  609. 'update' => 'password',
  610. 'callback' => 'hash.sha256',
  611. ),
  612. 'config' => array
  613. (
  614. 'type' => 'int-11',
  615. 'name' => '人性化配置',
  616. 'default' => '1',
  617. 'desc' => '个性化配置',
  618. 'match' => 'is_numeric',
  619. 'option' => $config,
  620. 'update' => 'select',
  621. //'list' => true,
  622. ),
  623. 'company' => array
  624. (
  625. 'type' => 'varchar-2000',
  626. 'name' => '选择公司',
  627. 'default' => '1',
  628. 'desc' => '选择公司',
  629. 'match' => 'is_string',
  630. ),
  631. 'role' => array
  632. (
  633. 'type' => 'varchar-100',
  634. 'name' => '所属角色',
  635. 'default' => '1',
  636. 'desc' => '请选择角色',
  637. 'match' => 'is_string',
  638. 'option' => $role,
  639. 'update' => 'checkbox',
  640. 'list' => true,
  641. ),
  642. 'group' => array
  643. (
  644. 'type' => 'varchar-2000',
  645. 'name' => '所属部门',
  646. 'default' => '1',
  647. 'desc' => '请选择所属部门',
  648. 'match' => 'option',
  649. 'option' => $company_group,
  650. 'update' => 'checkbox',
  651. /*
  652. 'option' => $company,
  653. 'update' => 'checkbox',
  654. 'update' => array
  655. (
  656. array
  657. (
  658. 'col' => 'group_id',
  659. 'name' => '选择部门',
  660. 'default' => '',
  661. 'desc' => '选择部门',
  662. 'match' => 'is_string',
  663. 'update' => 'select',
  664. //'update_search' => 'manage/company.search',
  665. //异步搜索选择框,{id}是当前表id,role是当前更新页面选择的role的值,company也是,多个用逗号隔开
  666. 'update_search' => 'scm_product/lib/manage.searchProduct?{id}{role,company}',
  667. ),
  668. ),*/
  669. 'list' => 'Dever::load("manage/company.getGroupName", "{company}", "{group}")',
  670. # 取代option,从接口里读取选项
  671. //'update_search' => 'goods/lib/manage.search_sku',
  672. ),
  673. 'auth' => array
  674. (
  675. 'type' => 'text-255',
  676. 'name' => '功能权限',
  677. 'default' => '',
  678. 'desc' => '请选择功能权限',
  679. 'match' => 'option',
  680. 'update' => $company == 0 ? 'checkbox' : false,
  681. //每个项对应的一个input以及父级更新的类型
  682. //'update_input' => '数量',
  683. //'update_parent' => 'radio',
  684. 'option' => $auth,
  685. ),
  686. 'top' => array
  687. (
  688. 'type' => 'text-255',
  689. 'name' => '头部菜单-这里的头部菜单如果设置,则会覆盖角色中的头部菜单',
  690. 'default' => '',
  691. 'desc' => '请选择头部菜单',
  692. 'match' => 'option',
  693. //'update' => 'checkbox',
  694. 'option' => $top,
  695. ),
  696. 'state' => array
  697. (
  698. 'type' => 'tinyint-1',
  699. 'name' => '数据状态',
  700. 'default' => '1',
  701. 'desc' => '请选择状态',
  702. 'match' => 'is_numeric',
  703. //'option' => $option,
  704. //'update' => 'radio',
  705. //'list' => true,
  706. //'extend' => true,//扩展功能,该字段为虚拟字段,只在数据库中建立extend字段来保存 后续实现
  707. ),
  708. /*
  709. 提供冲突检测机制(乐观锁),保证高并发下的数据安全
  710. 这是模仿自 php 的 Memcached 扩展 后续实现
  711. 'token' => array
  712. (
  713. 'type' => 'int-11',
  714. 'name' => 'token',
  715. 'default' => '1',
  716. 'desc' => 'token',
  717. 'match' => 'is_numeric',
  718. ),
  719. */
  720. 'status' => array
  721. (
  722. 'type' => 'tinyint-1',
  723. 'name' => '状态',
  724. 'default' => '1',
  725. 'desc' => '请选择状态',
  726. 'match' => 'is_numeric',
  727. 'option' => $status,
  728. 'update' => 'radio',
  729. 'list' => true,
  730. 'edit' => true,
  731. ),
  732. 'cdate' => array
  733. (
  734. 'type' => 'int-11',
  735. 'name' => '录入时间',
  736. 'match' => array('is_numeric', DEVER_TIME),
  737. 'desc' => '',
  738. # 只有insert时才生效
  739. //'search' => 'month_eq',//month 是月份区间搜索,year是年份区间搜索,eq是相等月份搜索,start是只有开始时间,end是只有结束时间,eqs是月份开始天和结束天搜索
  740. 'insert' => true,
  741. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  742. ),
  743. ),
  744. 'manage' => array
  745. (
  746. # 开放子管理权限,该列表和所有操作都有权限控制
  747. //'auth' => true,
  748. # 设置公司权限
  749. //'company' => 'company_id',
  750. # 后台提交时,检测该值是否为空,多个用逗号隔开
  751. //'update_check' => 'scm_servicer-out_order_goods',
  752. # 不展示保存按钮
  753. //'update_save' => false,
  754. # 显示描述
  755. //'desc' => 'test',
  756. # 定义sku对应的表,不填写则默认为info_spec和info_sku
  757. /*
  758. 'sku' => array
  759. (
  760. # 显示规格类型选项,1是显示所有,2是只显示单规格,3是只显示多规格
  761. 'show' => 1,
  762. # 定义表名
  763. 'spec' => 'info_spec',
  764. 'sku' => 'info_sku',
  765. # 定义字段
  766. 'col' => array
  767. (
  768. 'pic' => array('name' => '图片', 'verify' => 'string', 'type' => 'image'),
  769. 'code' => array('name' => '商品编码', 'verify' => 'string', 'type' => 'input'),
  770. 'un_price' => array('name' => '市场价', 'verify' => 'number', 'type' => 'input'),
  771. 'price' => array('name' => '销售价', 'verify' => 'number', 'type' => 'input'),
  772. 'buy_price' => array('name' => '采购价', 'verify' => 'number', 'type' => 'input'),
  773. 'cost_price' => array('name' => '成本价', 'verify' => 'number', 'type' => 'input'),
  774. //'unit' => array('name' => '单位', 'verify' => 'number', 'type' => 'select', 'option' => Dever::json_encode($unit(true)), 'unit'),
  775. ),
  776. # 接口
  777. 'api' => array
  778. (
  779. 'spec' => 'goods/lib/spec.get',
  780. 'sku' => 'goods/lib/sku.get',
  781. # 上传接口
  782. 'upload' => 'upload/save.start?key=1',
  783. ),
  784. ),
  785. */
  786. # 图片上传后调用的接口
  787. //'upload' => 'shop/lib/sign.upload?sign=1',
  788. # 开启语言包模式
  789. //'lang' => 'name',
  790. # 开启tab模式
  791. //'tab' => array('基础设置', '前端样式'),
  792. # 列表页的类型
  793. //'list_type' => 'tree',
  794. /*
  795. 'list_button' => array
  796. (
  797. 'add' => array('新增子分类', '"{category}" == -1 ? "category&option_category={id}" : "category&option_category={category},{id}"'),
  798. 'list' => array('商品清单', 'store_goods&parent=info.store&search_option_carrier_store_id={id}'),
  799. ),*/
  800. # 表格使用js模式,默认是html渲染模式
  801. //'list_table' => 'js',
  802. 'delete' => false,
  803. // 载入自定义资源
  804. 'res' => array
  805. (
  806. 'js' => 'demo',
  807. 'css' => 'demo',
  808. ),
  809. # 快捷更新
  810. /*
  811. 'list_button' => array
  812. (
  813. 'edit' => array('审核', 'name'),
  814. ),
  815. */
  816. /*
  817. 'insert' => false,
  818. 'edit' => false,
  819. //'delete' => false,
  820. # 自定义快捷新增和编辑
  821. 'button' => array
  822. (
  823. # 快速新增
  824. '新增' => array('fast', 'name,reorder'),
  825. '导入订单' = array('fast', '', 'import&project=upload&call=agent/lib/manage.import&key=4');
  826. //也可直接这样:Dever::load('upload/import.url', 'store/admin/order.import', 10)
  827. # 批量创建订单
  828. '创建提现单' => array('oper_mul', 'option/auth.test'),
  829. ),
  830. # 快捷更新
  831. 'list_button' => array
  832. (
  833. 'edit' => array('编辑', 'name,reorder'),
  834. ),
  835. */
  836. 'button' => array
  837. (
  838. //'新增兑换码' => array('fast', 1, 'config&where_id=1'),
  839. '公司设置' => array('list', 'company&oper_parent=admin'),
  840. '部门设置' => array('list', 'group&oper_parent=admin'),
  841. ),
  842. ),
  843. # 更新表结构
  844. 'alter' => array
  845. (
  846. 5 => array
  847. (
  848. array('update', 'group', 'group', 'varchar-1000 {} 部门'),
  849. //array('add', 'config', 'config', 'int-11 1 配置'),
  850. ),
  851. 'version' => 5,
  852. ),
  853. /*
  854. # 权限表
  855. 'end' => array
  856. (
  857. 'insert' => array
  858. (
  859. 'manage/top.sync',
  860. ),
  861. 'update' => array
  862. (
  863. 'manage/top.sync',
  864. ),
  865. ),
  866. 'top' => array
  867. (
  868. # 数据来源
  869. 'data' => 'find',
  870. # 菜单名
  871. 'name' => '期权公司设置',
  872. # 默认值
  873. 'value' => 1,
  874. # 对应的字段值,设置这个之后,所有设置等于这个值的字段,都要遵循这个权限的控制
  875. 'key' => 'option/company_id',
  876. # 本表中代表名称的字段
  877. 'col' => 'name',
  878. ),
  879. # 需要设置top权限的表
  880. 'top' => 'option/company_id',
  881. # 增加这个,为了给当前的list增加一个option $admin = Dever::load('manage/auth.info');
  882. 'top_option' => array
  883. (
  884. array
  885. (
  886. 'value' => $auth,
  887. 'col' => 'company_id',
  888. ),
  889. array
  890. (
  891. 'value' => Dever::load('manage/auth.authData'),
  892. 'col' => 'id',
  893. ),
  894. ),
  895. */
  896. # 默认值
  897. /*
  898. 'default' => array
  899. (
  900. 'col' => 'username,email,password,role,state,cdate',
  901. 'value' => array
  902. (
  903. //'"DMC","DMC@dever.cc","'. md5('admin_' . date('Y_m_d_H')) . '",1, 1,' . time(),
  904. '"admin","DMC@dever.cc","'. hash('sha256', 'admin_123') . '",1, 1,' . DEVER_TIME,
  905. ),
  906. ),
  907. */
  908. # 索引
  909. /*
  910. 'index' => array
  911. (
  912. 1 => array
  913. (
  914. # 索引名 => 索引id 如果有后缀.unique,则为建立索引的类型,如id,state.unique
  915. 'id' => 'id,state',
  916. ),
  917. # 版本号 更改版本号会更新当前表的索引
  918. 'version' => 1,
  919. ),*/
  920. # request 请求接口定义
  921. 'request' => array
  922. (
  923. # one 根据用户名和密码取一条数据
  924. 'user' => array
  925. (
  926. # 匹配的正则或函数 必填项
  927. 'where' => array
  928. (
  929. //'username' => '/^([A-Za-z0-9])/',
  930. //'username' => 'yes',
  931. 'email' => 'yes',
  932. 'status' => 1,
  933. 'state' => 1,
  934. //'password' => 'is_string',
  935. ),
  936. 'type' => 'one',
  937. # 为这个接口独立设置缓存
  938. 'cache' => true,
  939. ),
  940. # one 根据用户名和密码取一条数据
  941. 'email' => array
  942. (
  943. # 匹配的正则或函数 必填项
  944. 'where' => array
  945. (
  946. //'username' => '/^([A-Za-z0-9])/',
  947. //'username' => 'yes',
  948. 'email' => 'yes',
  949. 'status' => 1,
  950. 'state' => 1,
  951. //'password' => 'is_string',
  952. ),
  953. 'type' => 'one',
  954. # 为这个接口独立设置缓存
  955. 'cache' => true,
  956. ),
  957. # one 根据用户名和密码取一条数据
  958. 'mobile' => array
  959. (
  960. # 匹配的正则或函数 必填项
  961. 'where' => array
  962. (
  963. //'username' => '/^([A-Za-z0-9])/',
  964. //'username' => 'yes',
  965. 'mobile' => 'yes',
  966. 'status' => 1,
  967. 'state' => 1,
  968. //'password' => 'is_string',
  969. ),
  970. 'type' => 'one',
  971. # 为这个接口独立设置缓存
  972. 'cache' => true,
  973. ),
  974. # 更新密码
  975. 'password' => array
  976. (
  977. 'type' => 'update',
  978. 'where' => array
  979. (
  980. 'id' => 'yes',
  981. ),
  982. 'set' => array
  983. (
  984. 'password' => 'yes',
  985. ),
  986. ),
  987. 'getSearch' => array
  988. (
  989. # 匹配的正则或函数 选填项
  990. 'option' => array
  991. (
  992. 'col' => array('yes-mobile,username,email', 'like'),
  993. ),
  994. 'type' => 'all',
  995. 'col' => '*|id',
  996. ),
  997. 'getAll' => array
  998. (
  999. # 匹配的正则或函数 选填项
  1000. 'option' => array
  1001. (
  1002. 'ids' => array('yes-id', 'in'),
  1003. 'status' => 1,
  1004. 'state' => 1,
  1005. ),
  1006. 'type' => 'all',
  1007. 'col' => '*,username as name',
  1008. ),
  1009. # 扩展list方法的option
  1010. 'list_option' => array
  1011. (
  1012. 'col' => array('yes-username,mobile', 'like'),
  1013. 'company' => array($company > 0 ? ','.$company.',' : 0, 'like_num'),
  1014. 'state' => 1,
  1015. ),
  1016. ),
  1017. );