buy.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'buy',
  6. # 显示给用户看的名称
  7. 'lang' => '购买设置',
  8. 'menu' => false,
  9. 'end' => array
  10. (
  11. //'update' => 'service/lib/manage.feedback',
  12. //'insert' => 'service/lib/manage.feedback',
  13. ),
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => 'ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. 'search' => 'order',
  25. 'update' => 'hidden',
  26. 'value' => Dever::input('where_id')
  27. //'list' => true,
  28. ),
  29. 'info_id' => array
  30. (
  31. 'type' => 'int-11',
  32. 'name' => '小刊',
  33. 'default' => '',
  34. 'desc' => '小刊',
  35. 'match' => 'is_numeric',
  36. 'update' => 'hidden',
  37. 'value' => Dever::input('search_option_info_id')
  38. ),
  39. 'buy_score' => array
  40. (
  41. 'type' => 'int-11',
  42. 'name' => '每购买一本刊获得多少积分',
  43. 'default' => '20',
  44. 'desc' => '每购买一本刊获得多少积分',
  45. 'match' => 'is_numeric',
  46. //'update' => 'text',
  47. ),
  48. 'buy_title' => array
  49. (
  50. 'type' => 'varchar-80',
  51. 'name' => '购买小刊标题',
  52. 'default' => '购买小刊获得积分',
  53. 'desc' => '购买小刊标题',
  54. 'match' => 'is_string',
  55. 'update' => 'text',
  56. ),
  57. 'buy_applet_notice' => array
  58. (
  59. 'type' => 'varchar-800',
  60. 'name' => '购买提示-小程序与APP内直接购买小刊的提示',
  61. 'default' => '在此购买单本可直接阅读电子刊,购买多本,直接累计积分,不会生成兑换码。',
  62. 'desc' => '购买提示',
  63. 'match' => 'is_string',
  64. 'update' => 'textarea',
  65. ),
  66. 'buy_notice' => array
  67. (
  68. 'type' => 'varchar-800',
  69. 'name' => '购买一个兑换码提示-h5页面购买兑换码时的提示语',
  70. 'default' => '一次购买多本将生成一个兑换码用于兑换,如需多个兑换码,请多次购买。',
  71. 'desc' => '购买小刊提示',
  72. 'match' => 'is_string',
  73. 'update' => 'textarea',
  74. ),
  75. 'buy_notices' => array
  76. (
  77. 'type' => 'varchar-800',
  78. 'name' => '购买多个兑换码提示-h5页面购买兑换码时的提示语',
  79. 'default' => '购买兑换码赠送好友:点击下方购买后,将生成多个兑换码。
  80. 积分规则:使用兑换码兑换后,使用人获得积分,购买人不增加积分。',
  81. 'desc' => '购买小刊提示',
  82. 'match' => 'is_string',
  83. 'update' => 'textarea',
  84. ),
  85. 'buy_desc' => array
  86. (
  87. 'type' => 'varchar-800',
  88. 'name' => '购买小刊介绍',
  89. 'default' => '每购买一本刊获得20积分',
  90. 'desc' => '购买小刊介绍',
  91. 'match' => 'is_string',
  92. 'update' => 'textarea',
  93. ),
  94. 'buy_content' => array
  95. (
  96. 'type' => 'text-255',
  97. 'name' => '购买说明',
  98. 'default' => "<p>1、兑换成功后可直接点击【开始阅读】查看电子刊内容;</p>
  99. <p>2、电子刊为虚拟商品,如无系统问题,兑换后不可退款;</p>
  100. <p>3、每兑换一本电子刊增加20个积分,以此类推,谁使用兑换码则积分累计在谁的账号中;</p>
  101. <p>4、想赠送朋友,可在下方点击【购买10本生成10个兑换码】按钮,如购买后自己使用,则需要全部兑换后方可换取积分;</p>
  102. <p>5、如有其它问题可咨询在线客服。</p>",
  103. 'desc' => '请输入内容',
  104. 'match' => 'is_string',
  105. 'update' => 'editor',
  106. 'key' => 1,
  107. ),
  108. 'state' => array
  109. (
  110. 'type' => 'tinyint-1',
  111. 'name' => '状态',
  112. 'default' => '1',
  113. 'desc' => '请选择状态',
  114. 'match' => 'is_numeric',
  115. ),
  116. 'cdate' => array
  117. (
  118. 'type' => 'int-11',
  119. 'name' => '创建时间',
  120. 'match' => array('is_numeric', time()),
  121. 'desc' => '',
  122. # 只有insert时才生效
  123. 'insert' => true,
  124. 'search' => 'date',
  125. //'list' => 'date("Y-m-d H:i:s", {cdate})',
  126. ),
  127. ),
  128. 'manage' => array
  129. (
  130. ),
  131. );