|
@@ -0,0 +1,283 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+$status = array
|
|
|
+(
|
|
|
+ 1 => '可用',
|
|
|
+ 2 => '禁用',
|
|
|
+);
|
|
|
+
|
|
|
+$cate = function()
|
|
|
+{
|
|
|
+ $array = array();
|
|
|
+ $info = Dever::db('quan/cate')->state();
|
|
|
+ if($info)
|
|
|
+ {
|
|
|
+ $array += $info;
|
|
|
+ }
|
|
|
+ return $array;
|
|
|
+};
|
|
|
+
|
|
|
+$score = function()
|
|
|
+{
|
|
|
+ $array = array();
|
|
|
+ $info = Dever::load('score/lib/core')->getScore();
|
|
|
+ if($info)
|
|
|
+ {
|
|
|
+ $array += $info;
|
|
|
+ }
|
|
|
+ return $array;
|
|
|
+};
|
|
|
+
|
|
|
+$function = array
|
|
|
+(
|
|
|
+ 1 => '消耗积分',
|
|
|
+ 2 => '赠送积分',
|
|
|
+ 3 => '满减积分',
|
|
|
+ 4 => '推荐',
|
|
|
+ 5 => '等级',
|
|
|
+ 6 => '提现',
|
|
|
+ 11 => '赠送券',
|
|
|
+);
|
|
|
+
|
|
|
+return array
|
|
|
+(
|
|
|
+
|
|
|
+ 'name' => 'info',
|
|
|
+
|
|
|
+ 'lang' => '券管理',
|
|
|
+ 'order' => 100,
|
|
|
+
|
|
|
+
|
|
|
+ 'struct' => array
|
|
|
+ (
|
|
|
+ 'id' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => 'ID',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'list' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'name' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-80',
|
|
|
+ 'name' => '券名称',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '券名称',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'text',
|
|
|
+ 'list' => true,
|
|
|
+ 'search' => 'fulltext',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'cate_id' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '所属分类',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '所属分类',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ 'update' => 'select',
|
|
|
+ 'option' => $cate,
|
|
|
+ 'search' => 'select',
|
|
|
+ 'list' => 'Dever::load("quan/cate-one#name", {cate_id})',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'desc' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-500',
|
|
|
+ 'name' => '券描述',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '券描述',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'textarea',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'value' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-80',
|
|
|
+ 'name' => '券面值',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '券面值',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'text',
|
|
|
+ 'list' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'qtime' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '有效期-直接填写天数即可,如有效期为10天,直接填写10',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '有效期',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'text',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'qdate' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '截止时间-选择时间',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '截止时间',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'date',
|
|
|
+ 'callback' => 'maketime',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'icon' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-150',
|
|
|
+ 'name' => '1:1图标-图片尺寸150*150px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '1图标',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'image',
|
|
|
+ 'key' => '1',
|
|
|
+ 'place' => '150',
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'function' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-30',
|
|
|
+ 'name' => '功能选择',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '功能选择',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'checkbox',
|
|
|
+ 'option' => $function,
|
|
|
+ 'control' => 'function',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'xh_score' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-30',
|
|
|
+ 'name' => '消耗积分',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '消耗积分',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'checkbox',
|
|
|
+ 'option' => $score,
|
|
|
+ 'show' => 'function=1',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'reorder' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '排序(数值越大越靠前)',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '请输入排序',
|
|
|
+ 'match' => 'option',
|
|
|
+ 'update' => 'text',
|
|
|
+ 'search' => 'order',
|
|
|
+ 'list' => true,
|
|
|
+ 'order' => 'desc',
|
|
|
+ 'edit' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'content' => array
|
|
|
+ (
|
|
|
+ 'type' => 'text-255',
|
|
|
+ 'name' => '内容介绍',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '请输入内容',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'editor',
|
|
|
+ 'key' => '1',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'status' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '发布状态',
|
|
|
+ 'default' => '2',
|
|
|
+ 'desc' => '发布状态',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+
|
|
|
+ 'option' => $status,
|
|
|
+ 'search' => 'select',
|
|
|
+ 'list' => true,
|
|
|
+ 'edit' => true,
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'state' => array
|
|
|
+ (
|
|
|
+ 'type' => 'tinyint-1',
|
|
|
+ 'name' => '状态',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '请选择状态',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'admin' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '操作人',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '操作人',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'udate' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '更新时间',
|
|
|
+ 'match' => array('is_numeric', time()),
|
|
|
+ 'desc' => '',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'cdate' => array
|
|
|
+ (
|
|
|
+ 'type' => 'int-11',
|
|
|
+ 'name' => '录入时间',
|
|
|
+ 'match' => array('is_numeric', time()),
|
|
|
+ 'desc' => '',
|
|
|
+
|
|
|
+ 'insert' => true,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ 'index' => array
|
|
|
+ (
|
|
|
+ 'version' => 1,
|
|
|
+
|
|
|
+ 1 => array
|
|
|
+ (
|
|
|
+ 'i1' => 'cate_id,reorder',
|
|
|
+ )
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ 'manage' => array
|
|
|
+ (
|
|
|
+
|
|
|
+ ),
|
|
|
+
|
|
|
+
|
|
|
+ 'request' => array
|
|
|
+ (
|
|
|
+ 'search' => array
|
|
|
+ (
|
|
|
+
|
|
|
+ 'option' => array
|
|
|
+ (
|
|
|
+ 'ids' => array('yes-id', 'in'),
|
|
|
+ 'cate_id' => 'yes',
|
|
|
+ 'name' => array('yes', 'like'),
|
|
|
+ 'id' => 'yes',
|
|
|
+ 'state' => 1,
|
|
|
+ ),
|
|
|
+ 'type' => 'all',
|
|
|
+ 'order' => array('reorder' => 'desc', 'pdate' => 'desc'),
|
|
|
+ 'limit' => '0,1000',
|
|
|
+ 'col' => 'name as name, id, id as value, "" as selected, "" as disabled|id',
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+);
|