diff --git a/src/project/fengdu/AppNewFarmerBank/integralAdd.vue b/src/project/fengdu/AppNewFarmerBank/integralAdd.vue
index 8980b91..2a2829f 100644
--- a/src/project/fengdu/AppNewFarmerBank/integralAdd.vue
+++ b/src/project/fengdu/AppNewFarmerBank/integralAdd.vue
@@ -2,9 +2,12 @@
+
+
详情描述
+
+
{{ form.content.length }}/300
@@ -17,6 +20,7 @@ export default {
return {
form: {
type: 0,
+ content: '',
}
}
},
@@ -34,6 +38,8 @@ export default {
justify-content: space-between;
background: #FFF;
padding: 24px 32px;
+ box-sizing: border-box;
+ margin-top: 24px;
.left {
width: 250px;;
}
@@ -41,6 +47,37 @@ export default {
width: calc(100% - 200px);
text-align: right;
}
+ ::v-deep .AiSelect {
+ float: right;
+ }
+ }
+ .items {
+ width: 100%;
+ background: #FFF;
+ margin-top: 24px;
+ p {
+ padding: 24px 32px;
+ box-sizing: border-box;
+ border: 1px solid #EEEEEE;
+ }
+ textarea {
+ padding: 24px 32px;
+ box-sizing: border-box;
+ }
+ ::v-deep .el-textarea__inner::placeholder {
+ color: #f56c6c;
+ font-size: 12px;
+ line-height: 1;
+ }
+
+ .tips {
+ padding: 12px 32px;
+ box-sizing: border-box;
+ text-align: right;
+ color: #999999;
+ font-size: 24px;
+ font-weight: 400;
+ }
}
}
\ No newline at end of file
diff --git a/src/project/fengdu/AppNewFarmerBank/taskDetail.vue b/src/project/fengdu/AppNewFarmerBank/taskDetail.vue
index f310431..08bbbbd 100644
--- a/src/project/fengdu/AppNewFarmerBank/taskDetail.vue
+++ b/src/project/fengdu/AppNewFarmerBank/taskDetail.vue
@@ -343,7 +343,24 @@ export default {
getAuth() {
this.$nextTick(() => {
this.token && this.getUserInfo('qujing')
+ this.$nextTick(() => {
+ this.toAuth()
+ })
})
+ },
+ toAuth() {
+ if (!this.user.idNumber) {
+ this.$dialog.confirm({
+ content: '您只有完成信息认证后,才可进行相关操作。',
+ confirmText: '去认证'
+ }).then(() => {
+ this.$linkTo('/pages/AppMine/userInfo')
+ }).catch(() => {
+ })
+ } else {
+ this.getDetail()
+ this.showPages = true
+ }
}
},
onLoad(o) {
@@ -356,19 +373,9 @@ export default {
});
if (!this.token) {
this.$refs.login.show()
- }
- if (!this.user.idNumber) {
- this.$dialog.confirm({
- content: '您只有完成信息认证后,才可进行相关操作。',
- confirmText: '去认证'
- }).then(() => {
- this.$linkTo('/pages/AppMine/userInfo')
- }).catch(() => {
- })
} else {
- this.getDetail()
- this.showPages = true
- }
+ this.toAuth()
+ }
this.qqmapsdk = new QQMapWX({
key: process.env.NODE_ENV == 'production' ? 'RWWBZ-64BEJ-MVLFJ-FTHLQ-JTR6J-SAB2S' : '3RZBZ-LZUCF-CT6J5-NWKZH-FCWOQ-UUFKY'
})