diff --git a/components/config/configPopup.vue b/components/config/configPopup.vue
index ef2d21c..4dfca72 100644
--- a/components/config/configPopup.vue
+++ b/components/config/configPopup.vue
@@ -20,14 +20,11 @@
onShow(){
},
methods: {
-
//打开配置信息菜单
open(key){
this.content = this.configList[key]
this.$refs.popup.open('bottom');
}
-
-
},
computed : {
diff --git a/config.js b/config.js
index 290aa53..195406f 100644
--- a/config.js
+++ b/config.js
@@ -7,7 +7,7 @@ import uvUI from '@/uni_modules/uv-ui-tools'
Vue.use(uvUI);
// 当前环境
-const type = 'lzx'
+const type = 'dev'
// 环境配置
diff --git a/pages_order/auth/certification.vue b/pages_order/auth/certification.vue
index e742b0f..9a71862 100644
--- a/pages_order/auth/certification.vue
+++ b/pages_order/auth/certification.vue
@@ -6,7 +6,10 @@
@leftClick="$utils.navigateBack"/>
- 完成实名认证,您将获得《实名认证平台特权》
+ 完成实名认证,您将获得《个人实名认证平台特权》
+
+
+ 已驳回,原因:{{form.remark}}
@@ -73,10 +76,23 @@
-
+
+
+
认证
+
+ 已审核通过
+
+
+
+ 已驳回,请重新提交
+
+
+
+
+
- 阅读并同意我们的“服务协议与隐私条款”
-
-
- 以及个人信息保护指引
+ 阅读并同意我们的《个人实名认证服务协议》
@@ -110,6 +123,7 @@
checkboxValue : [],
form : {},
fileList: [],
+ sub:0
}
},
onLoad() {
@@ -120,6 +134,8 @@
getAuthenticationPerson(){
this.$api('getAuthenticationPerson',{}, res =>{
if(res.code == 200){
+ this.sub = res.result.status;
+
this.form = res.result || {};
this.fileList = this.form.image ? this.form.image.split(',').map(url => {
diff --git a/uni.scss b/uni.scss
index 060598b..693d446 100644
--- a/uni.scss
+++ b/uni.scss
@@ -14,6 +14,7 @@
/* 颜色变量 */
$uni-color: #3796F8;
+
/* 行为相关颜色 */
$uni-color-primary: #007aff;
$uni-color-success: #4cd964;
@@ -93,4 +94,14 @@ $uni-font-size-paragraph:15px;
color: $uni-color;
text-align: center;
font-size: 28rpx;
+}
+
+.uni-redcolor-btn{
+ border-radius: 40rpx;
+ padding: 20rpx;
+ margin: 40rpx;
+ border: 1px solid $uni-color-error;
+ color: $uni-color-error;
+ text-align: center;
+ font-size: 28rpx;
}
\ No newline at end of file