manage_config.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <?php
  2. $home_top_type = array
  3. (
  4. 1 => '显示',
  5. 2 => '不显示',
  6. );
  7. $dz = array
  8. (
  9. 1 => '需要对账',
  10. 2 => '不需要对账',
  11. );
  12. return array
  13. (
  14. # 表名
  15. 'name' => 'manage_config',
  16. # 显示给用户看的名称
  17. 'lang' => '门店小程序信息',
  18. 'order' => 1,
  19. # 数据结构
  20. 'struct' => array
  21. (
  22. 'id' => array
  23. (
  24. 'type' => 'int-11',
  25. 'name' => '平台ID',
  26. 'default' => '',
  27. 'desc' => '',
  28. 'match' => 'is_numeric',
  29. ),
  30. 'name' => array
  31. (
  32. 'type' => 'varchar-32',
  33. 'name' => '小程序名称',
  34. 'default' => '',
  35. 'desc' => '小程序名称',
  36. 'match' => 'is_string',
  37. 'update' => 'text',
  38. ),
  39. 'info' => array
  40. (
  41. 'type' => 'varchar-1000',
  42. 'name' => '小程序业务描述',
  43. 'default' => '',
  44. 'desc' => '小程序业务描述',
  45. 'match' => 'option',
  46. 'update' => 'textarea',
  47. ),
  48. 'logo' => array
  49. (
  50. 'type' => 'varchar-150',
  51. 'name' => '小程序LOGO',
  52. 'default' => '',
  53. 'desc' => '小程序LOGO',
  54. 'match' => 'option',
  55. 'update' => 'image',
  56. 'key' => '1',
  57. 'place' => '150',
  58. ),
  59. 'applet' => array
  60. (
  61. 'type' => 'varchar-150',
  62. 'name' => '小程序二维码',
  63. 'default' => '',
  64. 'desc' => '小程序二维码',
  65. 'match' => 'option',
  66. 'update' => 'image',
  67. 'key' => '1',
  68. 'place' => '150*150',
  69. ),
  70. 'phone' => array
  71. (
  72. 'type' => 'varchar-100',
  73. 'name' => '客服电话',
  74. 'default' => '',
  75. 'desc' => '请输入客服电话',
  76. 'match' => 'option',
  77. 'update' => 'text',
  78. ),
  79. 'dz_phone' => array
  80. (
  81. 'type' => 'varchar-100',
  82. 'name' => '对账专员电话',
  83. 'default' => '',
  84. 'desc' => '请输入对账专员电话',
  85. 'match' => 'option',
  86. 'update' => 'text',
  87. ),
  88. 'buy_dz' => array
  89. (
  90. 'type' => 'tinyint-1',
  91. 'name' => '采购单是否需要对账',
  92. 'default' => '1',
  93. 'desc' => '采购单是否需要对账',
  94. 'match' => 'is_numeric',
  95. 'update' => 'radio',
  96. 'option' => $dz,
  97. ),
  98. 'sell_dz' => array
  99. (
  100. 'type' => 'tinyint-1',
  101. 'name' => '零售单是否需要对账',
  102. 'default' => '1',
  103. 'desc' => '采购单是否需要对账',
  104. 'match' => 'is_numeric',
  105. 'update' => 'radio',
  106. 'option' => $dz,
  107. ),
  108. 'buy_refund_day' => array
  109. (
  110. 'type' => 'varchar-32',
  111. 'name' => '采购退款时效-订单完成后几天内可以退款,直接填写天数即可',
  112. 'default' => '7',
  113. 'desc' => '采购退款时效',
  114. 'match' => 'option',
  115. 'update' => 'text',
  116. ),
  117. 'sell_refund_day' => array
  118. (
  119. 'type' => 'varchar-32',
  120. 'name' => '零售退款时效-订单完成后几天内可以退款,直接填写天数即可',
  121. 'default' => '15',
  122. 'desc' => '零售退款时效',
  123. 'match' => 'option',
  124. 'update' => 'text',
  125. ),
  126. 'shop_refund_day' => array
  127. (
  128. 'type' => 'varchar-32',
  129. 'name' => '平台商城退款时效-订单完成后几天内可以退款,直接填写天数即可',
  130. 'default' => '15',
  131. 'desc' => '平台商城退款时效',
  132. 'match' => 'option',
  133. 'update' => 'text',
  134. ),
  135. 'km' => array
  136. (
  137. 'type' => 'varchar-32',
  138. 'name' => '推荐门店公里数-单位是公里,如5公里,填写5即可',
  139. 'default' => '5',
  140. 'desc' => '推荐门店公里数',
  141. 'match' => 'option',
  142. 'update' => 'text',
  143. ),
  144. 'video' => array
  145. (
  146. 'type' => 'varchar-800',
  147. 'name' => '视频宣传片-视频格式mp4,上传大小不能超过4G',
  148. 'default' => '',
  149. 'desc' => '视频宣传片',
  150. 'match' => 'option',
  151. 'update' => 'video',
  152. 'key' => '3',
  153. 'place' => '150',
  154. 'upload' => 'yun',
  155. 'large' => true,
  156. 'cover' => 'video_cover',//封面图字段名
  157. ),
  158. 'video_cover' => array
  159. (
  160. 'type' => 'varchar-150',
  161. 'name' => '视频封面图-封面图自动生成,也可以更改,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
  162. 'default' => '',
  163. 'desc' => '封面图',
  164. 'match' => 'option',
  165. 'update' => 'image',
  166. 'key' => '1',
  167. 'place' => '750*422',
  168. ),
  169. 'file' => array
  170. (
  171. 'type' => 'varchar-150',
  172. 'name' => '宣传文件',
  173. 'default' => '',
  174. 'desc' => '宣传文件',
  175. 'match' => 'option',
  176. 'update' => 'upload',
  177. 'key' => '4',
  178. 'upload' => 'yun',
  179. 'large' => true,
  180. ),
  181. 'rule' => array
  182. (
  183. 'type' => 'text-1000',
  184. 'name' => '门店合作规则',
  185. 'default' => '',
  186. 'desc' => '门店合作规则',
  187. 'match' => 'option',
  188. 'update' => 'editor',
  189. 'key' => 1,
  190. ),
  191. 'fund' => array
  192. (
  193. 'type' => 'text-1000',
  194. 'name' => '门店资金规则',
  195. 'default' => '',
  196. 'desc' => '门店资金规则',
  197. 'match' => 'option',
  198. 'update' => 'editor',
  199. 'key' => 1,
  200. ),
  201. 'state' => array
  202. (
  203. 'type' => 'tinyint-1',
  204. 'name' => '状态',
  205. 'default' => '1',
  206. 'desc' => '请选择状态',
  207. 'match' => 'is_numeric',
  208. ),
  209. 'cdate' => array
  210. (
  211. 'type' => 'int-11',
  212. 'name' => '录入时间',
  213. 'match' => array('is_numeric', time()),
  214. 'desc' => '',
  215. # 只有insert时才生效
  216. 'insert' => true,
  217. ),
  218. ),
  219. 'default' => array
  220. (
  221. 'col' => 'name,info,cdate',
  222. 'value' => array
  223. (
  224. '"门店管理","门店管理",' . time(),
  225. ),
  226. ),
  227. 'manage' => array
  228. (
  229. # 后台管理不要列表页
  230. 'list' => 'update',
  231. ),
  232. 'request' => array
  233. (
  234. 'getFund' => array
  235. (
  236. # 匹配的正则或函数 选填项
  237. 'option' => array
  238. (
  239. 'state' => 1,
  240. ),
  241. 'type' => 'one',
  242. 'col' => 'fund',
  243. ),
  244. ),
  245. );