From cc8e2149e08cd4eecfd33e30215e9277bb7c21a1 Mon Sep 17 00:00:00 2001
From: liuweiwen <“529520975@qq.com>
Date: Wed, 26 Feb 2020 16:23:11 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9C=80=E4=BD=8E=E9=A2=9D=E5=BA=A6=EF=BC=8C?=
=?UTF-8?q?=E6=9C=80=E9=AB=98=E9=A2=9D=E5=BA=A6=EF=BC=8C=E6=AF=94=E4=BE=8B?=
=?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=A0=BC=E5=BC=8F=E6=A0=A1=E9=AA=8C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
Application/Admin/View/ResourceVerifyConfig/add.html | 8 ++++----
Application/Admin/View/ResourceVerifyConfig/edit.html | 8 ++++----
Data/update.sql | 8 ++++----
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/Application/Admin/View/ResourceVerifyConfig/add.html b/Application/Admin/View/ResourceVerifyConfig/add.html
index ecf97c301..2ea28940c 100644
--- a/Application/Admin/View/ResourceVerifyConfig/add.html
+++ b/Application/Admin/View/ResourceVerifyConfig/add.html
@@ -111,28 +111,28 @@
*新用户判断标准(说明第几次之前为新用户)(次): |
-
+
|
新用户资源最低申请额度(/个): |
-
+
|
新用户资源最高申请额度(/个): |
-
+
|
非新用户可申请额度占总充值量的比例(%): |
-
+
|
diff --git a/Application/Admin/View/ResourceVerifyConfig/edit.html b/Application/Admin/View/ResourceVerifyConfig/edit.html
index c15f37fb3..24ae3f2ff 100644
--- a/Application/Admin/View/ResourceVerifyConfig/edit.html
+++ b/Application/Admin/View/ResourceVerifyConfig/edit.html
@@ -110,28 +110,28 @@
*新用户判断标准(说明第几次之前为新用户)(次): |
-
+
|
新用户资源最低申请额度(/个): |
-
+
|
新用户资源最高申请额度(/个): |
-
+
|
非新用户可申请额度占总充值量的比例(%): |
-
+
|
diff --git a/Data/update.sql b/Data/update.sql
index c3cac1170..b0ed7a0a0 100644
--- a/Data/update.sql
+++ b/Data/update.sql
@@ -1365,12 +1365,12 @@ CREATE TABLE `tab_resource_verify_config` (
`game_name` varchar(64) COLLATE utf8mb4_bin DEFAULT NULL COMMENT '游戏名称',
`sdk_version` tinyint(2) DEFAULT NULL COMMENT '区别版本 1安卓 2苹果 0 双版本',
`new_apply_count` int(4) DEFAULT '0' COMMENT '新用户判断标准(申请次数不大于此值)',
- `new_low_value` decimal(20,2) DEFAULT '0.00' COMMENT '新用户资源最低申请额度',
- `new_high_value` decimal(20,2) DEFAULT '0.00' COMMENT '新用户资源最高申请额度',
- `old_value_ratio` varchar(5) COLLATE utf8mb4_bin DEFAULT '0' COMMENT '非新用户可申请额度占总充值量的比例',
+ `new_low_value` int(11) DEFAULT '0' COMMENT '新用户资源最低申请额度',
+ `new_high_value` int(11) DEFAULT '0' COMMENT '新用户资源最高申请额度',
+ `old_value_ratio` decimal(5,2) DEFAULT '0.00' COMMENT '非新用户可申请额度占总充值量的比例',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态:0-锁定;1-正常',
`uid` int(11) DEFAULT '0' COMMENT '后台操作员id',
`add_time` int(11) DEFAULT '0' COMMENT '新增时间',
`update_time` int(11) DEFAULT '0' COMMENT '更新时间',
PRIMARY KEY (`id`)
-) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='资源审核配置';
+) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='资源审核配置';