+
- 查看
-
+
+ 查看
+ 申请
+
+ 撤销申请
+
+
+
+
+ 查看
+
+ 撤回
+
+
+ 同意
+ 不同意
+
+
+
年审
导出申请表
-
-
-
-
- 申请
-
- 撤销申请
-
@@ -276,7 +285,6 @@ layout("/layouts/platform.html"){
-->
|
- *
微信号
|
@@ -444,7 +452,7 @@ layout("/layouts/platform.html"){
unitName: [{required: true, message: '必填', trigger: ['blur', 'change']}],
mobile: [{required: true, message: '必填', trigger: ['blur', 'change']}],
// QQNumber: [{required: true, message: '必填', trigger: ['blur', 'change']}],
- weChatNumber: [{required: true, message: '必填', trigger: ['blur', 'change']}],
+ //weChatNumber: [{required: true, message: '必填', trigger: ['blur', 'change']}],
sickness: [{required: true, message: '必填', trigger: ['blur', 'change']}],
familyUserName: [{required: true, message: '必填', trigger: ['blur', 'change']}],
familyRelation: [{required: true, message: '必填', trigger: ['blur', 'change']}],
@@ -471,6 +479,30 @@ layout("/layouts/platform.html"){
'club-regist-info': httpVueLoader('/components/club/clubRegistInfo.vue'),
},
methods: {
+ async rollbackInvite(o) {
+ const confirm = await this.$confirm('您确定要撤回吗?', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ })
+ if (confirm === "confirm") {
+ const resp = await $.post('/platform/sys/club/sq/rollbackInvite', {clubId: o.id})
+ this.$message.success(resp.msg)
+ this.doSearch()
+ }
+ },
+ async inviteNotAgree(o) {
+ const confirm = await this.$confirm('您确定要不同意' + o.name + '的入会邀请吗?', '提示', {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: 'warning'
+ })
+ if (confirm === "confirm") {
+ const resp = await $.post('/platform/sys/club/sq/inviteNotAgree', {clubId: o.id})
+ this.$message.success(resp.msg)
+ this.doSearch()
+ }
+ },
async yearAudit(row) {
this.$confirm('您确定要提交今年的年审吗?', '提示', {
confirmButtonText: '确定',
|