You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
766 B
53 lines
766 B
|
|
<?php
|
|
/**
|
|
* 数据库字典表数据
|
|
*/
|
|
|
|
return [
|
|
'sqlfields' =>
|
|
array (
|
|
'status' =>
|
|
array (
|
|
0 => '禁用',
|
|
1 => '启用',
|
|
),
|
|
'sex' =>
|
|
array (
|
|
1 => '女',
|
|
2 => '男',
|
|
),
|
|
'column_type' =>
|
|
array (
|
|
0 => '列表',
|
|
1 => '单页',
|
|
2 => '外部链接',
|
|
3 => '留言板',
|
|
),
|
|
'ad_type' =>
|
|
array (
|
|
0 => '固定广告',
|
|
1 => '幻灯广告',
|
|
2 => '对联广告',
|
|
3 => '漂浮广告',
|
|
),
|
|
'image_storage_type' =>
|
|
array (
|
|
0 => '全部',
|
|
1 => '商务',
|
|
2 => '建筑',
|
|
3 => '山水',
|
|
4 => '风景',
|
|
5 => '办公',
|
|
6 => '天空',
|
|
7 => '家具',
|
|
8 => '汽车',
|
|
9 => '服装',
|
|
10 => '工厂',
|
|
11 => '安全',
|
|
12 => '峡谷',
|
|
),
|
|
)
|
|
,
|
|
];
|
|
|