admin.php 30 KB

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