diff --git a/src/views/modules/api/imgconfig-add-or-update.vue b/src/views/modules/api/imgconfig-add-or-update.vue index 552711e..bb15e89 100644 --- a/src/views/modules/api/imgconfig-add-or-update.vue +++ b/src/views/modules/api/imgconfig-add-or-update.vue @@ -11,6 +11,9 @@ + + + @@ -52,6 +55,7 @@ export default { id: '', imgType: '', imgUrl: '', + imgCode: '', sort: '', revision: '', delFlag: '', @@ -72,6 +76,9 @@ export default { imgType: [ { required: true, message: this.$t('validate.required'), trigger: 'blur' } ], + imgCode: [ + { required: true, message: this.$t('validate.required'), trigger: 'blur' } + ], imgUrl: [ { required: true, message: this.$t('validate.required'), trigger: 'blur' } ] diff --git a/src/views/modules/api/imgconfig.vue b/src/views/modules/api/imgconfig.vue index 2810477..94f2285 100644 --- a/src/views/modules/api/imgconfig.vue +++ b/src/views/modules/api/imgconfig.vue @@ -25,6 +25,7 @@ + {}) }, imgTypeFormat (row, column) { - if (row.imgType === '0') { - return '志愿者咨询热线' - } else { - return ' ' + for (var property in this.optionImgType) { + if (row.imgType === this.optionImgType[property].dictValue) { + return this.optionImgType[property].dictName + } } } } diff --git a/src/views/modules/partygroup/party-group-manager-list.vue b/src/views/modules/partygroup/party-group-manager-list.vue new file mode 100644 index 0000000..e2ff1c9 --- /dev/null +++ b/src/views/modules/partygroup/party-group-manager-list.vue @@ -0,0 +1,85 @@ + + + + + + + + + {{ $t('query') }} + + + + + + + + + + + 设为群主 + + + + + + + + + diff --git a/src/views/modules/partygroup/partygroup-add-or-update.vue b/src/views/modules/partygroup/partygroup-add-or-update.vue new file mode 100644 index 0000000..40f254b --- /dev/null +++ b/src/views/modules/partygroup/partygroup-add-or-update.vue @@ -0,0 +1,245 @@ + + + + + + + + 只能上传jpg/png文件,且不超过500kb + + + + + + + + + + + + + + 点击选择群主 + {{nickname}} + + + + + + + + {{ $t('cancel') }} + {{ $t('confirm') }} + + + + + + + + diff --git a/src/views/modules/partygroup/partygroup-list.vue b/src/views/modules/partygroup/partygroup-list.vue new file mode 100644 index 0000000..1612307 --- /dev/null +++ b/src/views/modules/partygroup/partygroup-list.vue @@ -0,0 +1,69 @@ + + + + + + {{ $t('add') }} + + + + + + + + + + + 群成员 + {{ $t('update') }} + {{ $t('delete') }} + + + + + + + + + + + + diff --git a/src/views/modules/partygroup/partygroup.vue b/src/views/modules/partygroup/partygroup.vue new file mode 100644 index 0000000..a98dbfe --- /dev/null +++ b/src/views/modules/partygroup/partygroup.vue @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/src/views/modules/partygroup/partygroupofficials-add-or-update.vue b/src/views/modules/partygroup/partygroupofficials-add-or-update.vue new file mode 100644 index 0000000..c505e2b --- /dev/null +++ b/src/views/modules/partygroup/partygroupofficials-add-or-update.vue @@ -0,0 +1,223 @@ + + + + + + + + 只能上传jpg/png文件,且不超过500kb + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ $t('cancel') }} + {{ $t('confirm') }} + + + + + + diff --git a/src/views/modules/partygroup/partygroupofficials.vue b/src/views/modules/partygroup/partygroupofficials.vue new file mode 100644 index 0000000..5e5b528 --- /dev/null +++ b/src/views/modules/partygroup/partygroupofficials.vue @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + {{ $t('query') }} + + + {{ $t('add') }} + + + + + + + + + + + + + {{ $t('update') }} + {{ $t('delete') }} + + + + + + + + + + + + diff --git a/src/views/modules/partygroup/partytopic-close.vue b/src/views/modules/partygroup/partytopic-close.vue new file mode 100644 index 0000000..a73301d --- /dev/null +++ b/src/views/modules/partygroup/partytopic-close.vue @@ -0,0 +1,67 @@ + + + + + + + + + {{ $t('cancel') }} + {{ $t('confirm') }} + + + + + diff --git a/src/views/modules/partygroup/partytopic-detail.vue b/src/views/modules/partygroup/partytopic-detail.vue new file mode 100644 index 0000000..cd9d6b0 --- /dev/null +++ b/src/views/modules/partygroup/partytopic-detail.vue @@ -0,0 +1,266 @@ + + + + + 话题详情 + + + {{dataForm.topicContent}} + + + + + {{dataForm.partyGroupName}} + + + {{dataForm.groupName === 0 ? '事好儿鼓个掌' : '话对捧个场'}} + + + {{dataForm.nickname}} + + + 点击查看评论 + + + + + + 返回 + + + + + + + + + + {{ $t('delete') }} + + + + + + + + + + + + + + diff --git a/src/views/modules/partygroup/partytopic-list.vue b/src/views/modules/partygroup/partytopic-list.vue new file mode 100644 index 0000000..34d97b7 --- /dev/null +++ b/src/views/modules/partygroup/partytopic-list.vue @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ $t('query') }} + + + + + + + + + + + + + {{ $t('look') }} + {{ $t('close') }} + 已关闭 + + + + + + + + + + + diff --git a/src/views/modules/partygroup/partytopic.vue b/src/views/modules/partygroup/partytopic.vue new file mode 100644 index 0000000..9fa312e --- /dev/null +++ b/src/views/modules/partygroup/partytopic.vue @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/src/views/modules/partygroup/partyusergroup-add-or-update.vue b/src/views/modules/partygroup/partyusergroup-add-or-update.vue new file mode 100644 index 0000000..28fd185 --- /dev/null +++ b/src/views/modules/partygroup/partyusergroup-add-or-update.vue @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {{ $t('cancel') }} + {{ $t('confirm') }} + + + + + diff --git a/src/views/modules/partygroup/partyusergroup-banned.vue b/src/views/modules/partygroup/partyusergroup-banned.vue new file mode 100644 index 0000000..5e15ac1 --- /dev/null +++ b/src/views/modules/partygroup/partyusergroup-banned.vue @@ -0,0 +1,96 @@ + + + + + + + + + + + + {{ $t('cancel') }} + {{ $t('confirm') }} + + + + + diff --git a/src/views/modules/partygroup/partyusergroup-list.vue b/src/views/modules/partygroup/partyusergroup-list.vue new file mode 100644 index 0000000..c46ec02 --- /dev/null +++ b/src/views/modules/partygroup/partyusergroup-list.vue @@ -0,0 +1,267 @@ + + + + + + 返回 + + + + + + + + + + + + + {{ $t('query') }} + + + + + + + + + + + + + + 禁言 + 设置群主 + 设置副群主 + 设置群成员 + + + + + + + + + + + + + + 取 消 + 确 定 + + + + + + +