card.php 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. <?php
  2. $type = array
  3. (
  4. 1 => '否',
  5. 2 => '是',
  6. );
  7. $range_type = array
  8. (
  9. 1 => '全部商品可用',
  10. 2 => '指定商品可用',
  11. );
  12. return array
  13. (
  14. # 表名
  15. 'name' => 'card',
  16. # 显示给用户看的名称
  17. 'lang' => '生成优惠券',
  18. 'order' => 100,
  19. 'check' => 'key',
  20. # 数据结构
  21. 'struct' => array
  22. (
  23. 'id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => 'ID',
  27. 'default' => '',
  28. 'desc' => '',
  29. 'match' => 'is_numeric',
  30. 'search' => 'order',
  31. 'list' => true,
  32. ),
  33. 'project_id' => array
  34. (
  35. 'type' => 'int-11',
  36. 'name' => '项目ID',
  37. 'default' => '',
  38. 'desc' => '请输入项目',
  39. 'match' => 'is_numeric',
  40. 'list' => true,
  41. ),
  42. 'hr1' => array
  43. (
  44. 'name' => '基本信息',
  45. 'class' => '',//本项必须填写
  46. 'attr' => '',
  47. ),
  48. 'key' => array
  49. (
  50. 'type' => 'varchar-20',
  51. 'name' => '优惠券key-通过key值搜索数据,key请不要重复',
  52. 'default' => '',
  53. 'desc' => '优惠券key-通过key值搜索数据',
  54. 'match' => 'is_string',
  55. 'update' => 'text',
  56. 'list' => true,
  57. 'edit' => true,
  58. ),
  59. 'name' => array
  60. (
  61. 'type' => 'varchar-120',
  62. 'name' => '名称',
  63. 'default' => '',
  64. 'desc' => '名称',
  65. 'match' => 'is_string',
  66. 'update' => 'text',
  67. 'list' => true,
  68. ),
  69. 'description' => array
  70. (
  71. 'type' => 'varchar-120',
  72. 'name' => '使用说明',
  73. 'default' => '',
  74. 'desc' => '使用说明',
  75. 'match' => 'is_string',
  76. 'update' => 'textarea',
  77. //'list' => true,
  78. ),
  79. 'create_num' => array
  80. (
  81. 'type' => 'int-11',
  82. 'name' => '生成数量',
  83. 'default' => '',
  84. 'desc' => '生成数量',
  85. 'match' => 'is_numeric',
  86. 'update' => 'text',
  87. 'list' => true,
  88. 'edit' => true,
  89. ),
  90. 'edate' => array
  91. (
  92. 'type' => 'int-11',
  93. 'name' => '优惠券结束时间',
  94. 'match' => 'option',
  95. 'desc' => '优惠券结束时间',
  96. 'update' => 'date',
  97. //'list' => 'date("Y-m-d H:i:s", {sdate})',
  98. 'callback' => 'maketime',
  99. ),
  100. 'sdate' => array
  101. (
  102. 'type' => 'int-11',
  103. 'name' => '优惠券生效时间',
  104. 'match' => 'option',
  105. 'desc' => '优惠券生效时间',
  106. 'update' => 'date',
  107. //'list' => 'date("Y-m-d H:i:s", {sdate})',
  108. 'callback' => 'maketime',
  109. ),
  110. 'fixed_term' => array
  111. (
  112. 'type' => 'int-11',
  113. 'name' => '几天内有效-当日领取之后几天内有效',
  114. 'default' => '',
  115. 'desc' => '几天内有效',
  116. 'match' => 'option',
  117. 'update' => 'text',
  118. ),
  119. 'fixed_begin_term' => array
  120. (
  121. 'type' => 'int-11',
  122. 'name' => '延迟开始的时间',
  123. 'default' => '',
  124. 'desc' => '延迟开始的时间',
  125. 'match' => 'option',
  126. //'update' => 'text',
  127. ),
  128. 'hr2' => array
  129. (
  130. 'name' => '基本设置',
  131. 'class' => '',//本项必须填写
  132. 'attr' => '',
  133. ),
  134. 'quota' => array
  135. (
  136. 'type' => 'int-11',
  137. 'name' => '每人限领个数',
  138. 'default' => '-1',
  139. 'desc' => '每人限领个数',
  140. 'match' => 'option',
  141. 'update' => 'text',
  142. ),
  143. 'total' => array
  144. (
  145. 'type' => 'int-11',
  146. 'name' => '总库存',
  147. 'default' => '1',
  148. 'desc' => '总库存',
  149. 'match' => 'option',
  150. 'update' => 'text',
  151. ),
  152. 'value' => array
  153. (
  154. 'type' => 'varchar-30',
  155. 'name' => '优惠券面值-如果填写了以下随机面额,则本字段为随机面额最小值',
  156. 'default' => '0.01',
  157. 'desc' => '优惠券面值',
  158. 'match' => 'option',
  159. 'update' => 'text',
  160. ),
  161. 'value_random_to' => array
  162. (
  163. 'type' => 'varchar-20',
  164. 'name' => '优惠券随机面额-随机面额最大值',
  165. 'default' => '',
  166. 'desc' => '优惠券随机面额',
  167. 'match' => 'option',
  168. 'update' => 'text',
  169. ),
  170. 'specify_item_ids' => array
  171. (
  172. 'type' => 'varchar-600',
  173. 'name' => '可选商品ID-需要指定可用商品ID,多个用半角逗号分隔,如不指定则为全部商品可用',
  174. 'default' => '',
  175. 'desc' => '可选商品ID',
  176. 'match' => 'option',
  177. 'update' => 'text',
  178. //'list' => true,
  179. ),
  180. 'at_least' => array
  181. (
  182. 'type' => 'varchar-20',
  183. 'name' => '优惠券使用价格-订单满这个价格,优惠券才可以使用',
  184. 'default' => '',
  185. 'desc' => '订单满这个价格,优惠券才可以使用',
  186. 'match' => 'option',
  187. 'update' => 'text',
  188. //'list' => true,
  189. ),
  190. 'discount' => array
  191. (
  192. 'type' => 'varchar-20',
  193. 'name' => '优惠券使用折扣-如填写88,就是8.8折',
  194. 'default' => '',
  195. 'desc' => '优惠券使用折扣',
  196. 'match' => 'option',
  197. 'update' => 'text',
  198. //'list' => true,
  199. ),
  200. 'expire_notice' => array
  201. (
  202. 'type' => 'tinyint-1',
  203. 'name' => '是否发送提醒-是否到期前4天发送提醒',
  204. 'default' => '1',
  205. 'desc' => '是否发送提醒',
  206. 'match' => 'option',
  207. 'update' => 'select',
  208. 'option' => $type,
  209. ),
  210. 'is_forbid_preference' => array
  211. (
  212. 'type' => 'tinyint-1',
  213. 'name' => '是否仅原价购买商品时可用',
  214. 'default' => '1',
  215. 'desc' => '是否仅原价购买商品时可用',
  216. 'match' => 'option',
  217. 'update' => 'select',
  218. 'option' => $type,
  219. ),
  220. 'is_share' => array
  221. (
  222. 'type' => 'tinyint-1',
  223. 'name' => '是否可分享领取链接',
  224. 'default' => '1',
  225. 'desc' => '是否可分享领取链接',
  226. 'match' => 'option',
  227. 'update' => 'select',
  228. 'option' => $type,
  229. ),
  230. 'mark_tag_ids' => array
  231. (
  232. 'type' => 'varchar-600',
  233. 'name' => '标签设置-领取优惠券要给用户打上的标签的ID,多个用半角逗号分隔',
  234. 'default' => '',
  235. 'desc' => '标签设置',
  236. 'match' => 'option',
  237. 'update' => 'text',
  238. //'list' => true,
  239. ),
  240. 'need_user_level' => array
  241. (
  242. 'type' => 'int-11',
  243. 'name' => '是否限制领用者的等级-小于0表示不限制,大于0 表示领用者必须是这个等级ID',
  244. 'default' => '-1',
  245. 'desc' => '是否限制领用者的等级',
  246. 'match' => 'option',
  247. 'update' => 'text',
  248. ),
  249. 'hr3' => array
  250. (
  251. 'name' => '微信设置',
  252. 'class' => '',//本项必须填写
  253. 'attr' => '',
  254. ),
  255. 'is_sync_weixin' => array
  256. (
  257. 'type' => 'tinyint-1',
  258. 'name' => '是否同步微信卡券',
  259. 'default' => '1',
  260. 'desc' => '是否同步微信卡券',
  261. 'match' => 'option',
  262. 'update' => 'select',
  263. 'option' => $type,
  264. ),
  265. 'weixin_title' => array
  266. (
  267. 'type' => 'varchar-30',
  268. 'name' => '卡券标题',
  269. 'default' => '',
  270. 'desc' => '卡券标题',
  271. 'match' => 'option',
  272. 'update' => 'text',
  273. //'list' => true,
  274. ),
  275. 'weixin_sub_title' => array
  276. (
  277. 'type' => 'varchar-30',
  278. 'name' => '卡券副标题',
  279. 'default' => '',
  280. 'desc' => '卡券副标题',
  281. 'match' => 'option',
  282. 'update' => 'text',
  283. //'list' => true,
  284. ),
  285. 'weixin_color_rgb' => array
  286. (
  287. 'type' => 'varchar-20',
  288. 'name' => '卡券颜色的值-例如:#55bd47',
  289. 'default' => '',
  290. 'desc' => '卡券颜色的值',
  291. 'match' => 'option',
  292. 'update' => 'text',
  293. //'list' => true,
  294. ),
  295. 'service_phone' => array
  296. (
  297. 'type' => 'varchar-20',
  298. 'name' => '卡券的客服电话',
  299. 'default' => '',
  300. 'desc' => '卡券的客服电话',
  301. 'match' => 'option',
  302. 'update' => 'text',
  303. //'list' => true,
  304. ),
  305. 'hr4' => array
  306. (
  307. 'name' => '微信模板消息设置',
  308. 'class' => '',//本项必须填写
  309. 'attr' => '',
  310. ),
  311. 'msg_key' => array
  312. (
  313. 'type' => 'varchar-20',
  314. 'name' => '模板消息key',
  315. 'default' => '',
  316. 'desc' => '模板消息key',
  317. 'match' => 'is_string',
  318. 'update' => 'text',
  319. //'list' => true,
  320. //'edit' => true,
  321. ),
  322. 'msg_page' => array
  323. (
  324. 'type' => 'varchar-200',
  325. 'name' => '页面路径',
  326. 'default' => 'pages/index/index',
  327. 'desc' => '页面路径',
  328. 'match' => 'is_string',
  329. 'update' => 'text',
  330. //'list' => true,
  331. ),
  332. 'msg_content' => array
  333. (
  334. 'type' => 'text-255',
  335. 'name' => '模板内容',
  336. 'default' => '',
  337. 'desc' => '请输入内容',
  338. 'match' => 'is_string',
  339. 'update' => array
  340. (
  341. array
  342. (
  343. 'col' => 'key',
  344. 'name' => '标识',
  345. 'default' => '',
  346. 'desc' => '请输入标识',
  347. 'match' => 'is_string',
  348. 'update' => 'text',
  349. ),
  350. array
  351. (
  352. 'col' => 'value',
  353. 'name' => '内容值',
  354. 'default' => '',
  355. 'desc' => '内容值',
  356. 'match' => 'is_string',
  357. 'update' => 'textarea',
  358. ),
  359. ),
  360. ),
  361. 'state' => array
  362. (
  363. 'type' => 'tinyint-1',
  364. 'name' => '状态',
  365. 'default' => '1',
  366. 'desc' => '请选择状态',
  367. 'match' => 'is_numeric',
  368. ),
  369. 'cdate' => array
  370. (
  371. 'type' => 'int-11',
  372. 'name' => '更新时间',
  373. 'match' => array('is_numeric', time()),
  374. 'desc' => '',
  375. 'default' => '',
  376. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  377. ),
  378. ),
  379. 'top' => Dever::config('base', 'youzan')->top,
  380. 'manage' => array
  381. (
  382. //'delete' => false,
  383. //'insert' => false,
  384. //'edit' => false,
  385. 'list_button' => array
  386. (
  387. 'oper' => array('立刻生成', '"youzan/card.create?id={id}"'),
  388. ),
  389. ),
  390. );