-
处理操作
+
处理操作 :
-
+
确认加积分
拒绝加积分
-
+
@@ -16,7 +16,7 @@
-
打卡位置: {{dataForm.address}}
+
打卡位置 : {{dataForm.address}}
diff --git a/src/views/modules/heart/actuserclocklog.vue b/src/views/modules/heart/actuserclocklog.vue
index 5aa9ce39..542b10dd 100644
--- a/src/views/modules/heart/actuserclocklog.vue
+++ b/src/views/modules/heart/actuserclocklog.vue
@@ -34,7 +34,7 @@
-
+
@@ -88,11 +88,11 @@ export default {
backToActList () {
this.$emit('refreshDataList')
this.$parent.selectComponent = 'ActInfoList'
- this.$router.push({ path: '/heart-actinfo'})
+ this.$router.push({ path: '/heart-actinfo' })
},
detailHandle (id) {
this.$parent.selectComponent = 'ActUserClockDetail'
- this.$router.push({ path: '/heart-actinfo', query: { id: id,actId: this.dataForm.actId} })
+ this.$router.push({ path: '/heart-actinfo', query: { id: id, actId: this.dataForm.actId } })
},
setRegistTime () {
this.dataForm.startTime = this.time[0]
@@ -124,7 +124,15 @@ export default {
return '男'
}
},
-
+ // 是否发放积分转义
+ isCheckPoint: function (row, column) {
+ let state = row.checkPoint
+ if (state === '0') {
+ return '否'
+ } else if (state === '1') {
+ return '是'
+ }
+ }
},
components: {
ActUserClockDetail
diff --git a/src/views/modules/heart/actuserrelation-add-or-update.vue b/src/views/modules/heart/actuserrelation-add-or-update.vue
index 5b9f491b..e019d776 100644
--- a/src/views/modules/heart/actuserrelation-add-or-update.vue
+++ b/src/views/modules/heart/actuserrelation-add-or-update.vue
@@ -1,7 +1,7 @@
-
+
通过
@@ -9,7 +9,7 @@
label="4">不通过
-
+
-
+
{{dataForm.nickname}}
-
+
{{dataForm.realName}}
-
+
{{formatSex(dataForm.sex)}}
-
+
{{dataForm.age}}
-
+
{{dataForm.mobile}}
-
+
{{dataForm.identityNo}}
-
+
{{formatState(dataForm.status)}}
-
+
{{dataForm.failureReason}}
-
+
{{dataForm.auditTime}}
-
+
{{dataForm.signupTime}}
- {{ $t('cancel') }}
+ 返回
diff --git a/src/views/modules/points/volunteerinfo-points-adjust.vue b/src/views/modules/points/volunteerinfo-points-adjust.vue
index 35065d25..5c9bee14 100644
--- a/src/views/modules/points/volunteerinfo-points-adjust.vue
+++ b/src/views/modules/points/volunteerinfo-points-adjust.vue
@@ -9,34 +9,34 @@
:model="dataForm"
:rules="dataRule"
ref="dataForm">
-
+
{{dataForm.id}}
-
+
{{dataForm.userId}}
-
+
{{dataForm.realName}}
-
+
男
女
未知
-
+
-
+
{{dataForm.mobile}}
-
+
{{dataForm.points}}
-
+
-
+
-
+
加积分
减积分
-
+
diff --git a/src/views/modules/user/volunteerinfo-check.vue b/src/views/modules/user/volunteerinfo-check.vue
index f45ca672..d2944dab 100644
--- a/src/views/modules/user/volunteerinfo-check.vue
+++ b/src/views/modules/user/volunteerinfo-check.vue
@@ -13,13 +13,13 @@
@keyup.enter.native="dataFormSubmitHandle()"
:label-width="$i18n.locale === 'en-US' ? '120px' : '80px'"
>
-
+
通过
不通过
-
+
-
+
{{dataForm.realName}}
-
+
男
女
未知
-
+
{{dataForm.birthdayString}}
-
+
{{dataForm.mobile}}
-
+
{{dataForm.identityNo}}
-
+
{{dataForm.address}}
-
+
{{dataForm.introduce}}
-
+
{{dataForm.points}}
-
+
{{dataForm.registTimeString}}
From aae0417a3df20c7958efaa2abf70cfea98fb97d1 Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Thu, 6 Feb 2020 17:23:27 +0800
Subject: [PATCH 4/9] =?UTF-8?q?=E5=B9=B2=E9=83=A8=E4=BA=BA=E5=91=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/custom/evaluatedept.vue | 6 +-
.../custom/evaluateofficer-add-or-update.vue | 46 ++---
.../modules/custom/evaluateofficer-add.vue | 160 ++++++++++++++++++
src/views/modules/custom/evaluateofficer.vue | 84 ++++++++-
4 files changed, 256 insertions(+), 40 deletions(-)
create mode 100644 src/views/modules/custom/evaluateofficer-add.vue
diff --git a/src/views/modules/custom/evaluatedept.vue b/src/views/modules/custom/evaluatedept.vue
index 79c3dd1a..49e147aa 100644
--- a/src/views/modules/custom/evaluatedept.vue
+++ b/src/views/modules/custom/evaluatedept.vue
@@ -28,7 +28,7 @@
{{ $t('update') }}
{{ $t('delete') }}
- 管理
+ 管理
@@ -73,9 +73,9 @@ export default {
Evaluateofficer
},
methods: {
- manageHandle (id, deptId) {
+ manageHandle (deptId) {
this.$parent.selectComponent = 'Evaluateofficer'
- this.$router.push({ path: '/custom-evaluateofficer', query: { id: id, deptId: deptId } })
+ this.$router.push({ path: '/custom-evaluateofficer', query: { deptId: deptId } })
}
}
}
diff --git a/src/views/modules/custom/evaluateofficer-add-or-update.vue b/src/views/modules/custom/evaluateofficer-add-or-update.vue
index cc88d4bc..7b40d359 100644
--- a/src/views/modules/custom/evaluateofficer-add-or-update.vue
+++ b/src/views/modules/custom/evaluateofficer-add-or-update.vue
@@ -1,44 +1,30 @@
-
+
-
-
+
+
+
+
+
-
-
+
+
-
+
+
+
+
@@ -69,7 +55,11 @@ export default {
createdTime: '',
updatedBy: '',
updatedTime: ''
- }
+ },
+ sexFlagArr: [
+ { dictValue: '1', dictName: '男' },
+ { dictValue: '0', dictName: '女' }
+ ]
}
},
computed: {
diff --git a/src/views/modules/custom/evaluateofficer-add.vue b/src/views/modules/custom/evaluateofficer-add.vue
new file mode 100644
index 00000000..a1ca7739
--- /dev/null
+++ b/src/views/modules/custom/evaluateofficer-add.vue
@@ -0,0 +1,160 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('cancel') }}
+ {{ $t('confirm') }}
+
+
+
+
+
diff --git a/src/views/modules/custom/evaluateofficer.vue b/src/views/modules/custom/evaluateofficer.vue
index ff441729..86e82b0c 100644
--- a/src/views/modules/custom/evaluateofficer.vue
+++ b/src/views/modules/custom/evaluateofficer.vue
@@ -2,14 +2,54 @@
-
+
+
+
+
+
+
+
+
+
+
+
{{ $t('query') }}
- {{ $t('add') }}
+ {{ $t('add') }}
+
+
+ {{ $t('export') }}
+
+
+
+ 导入
+
{{ $t('deleteBatch') }}
@@ -17,9 +57,9 @@
-
-
-
+
+
+
@@ -42,6 +82,7 @@
+
@@ -49,6 +90,7 @@
From 0467627ea3c1d125154e720d14e742aaf32c96a8 Mon Sep 17 00:00:00 2001
From: zhangyongzhangyong <2012005003@qq.coom>
Date: Thu, 6 Feb 2020 21:20:55 +0800
Subject: [PATCH 5/9] =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E7=AE=A1=E7=90=86=20?=
=?UTF-8?q?=E5=AE=A1=E6=89=B9=E6=8C=89=E9=92=AE=E9=9A=90=E8=97=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/heart/actuserrelation.vue | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/src/views/modules/heart/actuserrelation.vue b/src/views/modules/heart/actuserrelation.vue
index db387b20..b2e60b10 100644
--- a/src/views/modules/heart/actuserrelation.vue
+++ b/src/views/modules/heart/actuserrelation.vue
@@ -39,7 +39,8 @@
- 审核
+ 审核
+
查看
@@ -76,6 +77,7 @@ export default {
deleteURL: '/heart/actuserrelation',
deleteIsBatch: true
},
+ show: false,
dataForm: {
id: '',
actId: '',
@@ -114,18 +116,25 @@ export default {
formatState: function (row, column) {
let state = row.status
if (state === '0') {
+ this.show = true
return '报名'
} else if (state === '1') {
+ this.show = false
return '审核通过'
} else if (state === '2') {
+ this.show = false
return '打卡'
} else if (state === '3') {
+ this.show = false
return '取消报名'
} else if (state === '4') {
+ this.show = false
return '审核不通过'
} else if (state === '5') {
+ this.show = false
return '确认加积分'
} else if (state === '6') {
+ this.show = false
return '拒绝加积分'
}
},
From a7e431b9011b30f0e7f22d550acaeeeafcb08398 Mon Sep 17 00:00:00 2001
From: zhangyongzhangyong <2012005003@qq.coom>
Date: Fri, 7 Feb 2020 11:04:53 +0800
Subject: [PATCH 6/9] =?UTF-8?q?=E5=90=8E=E5=8F=B0=E6=89=93=E5=8D=A1?=
=?UTF-8?q?=E7=A7=AF=E5=88=86=E6=89=93=E5=8D=A1=E8=AF=A6=E6=83=85=E5=88=97?=
=?UTF-8?q?=E8=A1=A8=E6=98=BE=E7=A4=BA=E9=94=99=E8=AF=AF=20bug=E4=BF=AE?=
=?UTF-8?q?=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../modules/heart/actuserclock-detail.vue | 49 ++++++++++++++++---
1 file changed, 42 insertions(+), 7 deletions(-)
diff --git a/src/views/modules/heart/actuserclock-detail.vue b/src/views/modules/heart/actuserclock-detail.vue
index 5bd5fadd..c0e1a5c7 100644
--- a/src/views/modules/heart/actuserclock-detail.vue
+++ b/src/views/modules/heart/actuserclock-detail.vue
@@ -30,18 +30,35 @@
-
+
-
+
+
+