From bd7d7bf4a7f4c8f2e6ac4f4affa39920a303fc0b Mon Sep 17 00:00:00 2001
From: zhouh <2443635148@qq.com>
Date: Thu, 8 Jan 2026 08:58:23 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../modules/communityParty/elegant/index.vue | 18 +-
.../serviceManage/recordReview/index.vue | 392 ++++++++++++++++++
.../serviceManage/serviceRecord/index.vue | 385 +++++++++++++++++
3 files changed, 786 insertions(+), 9 deletions(-)
create mode 100644 src/views/modules/serviceManage/recordReview/index.vue
create mode 100644 src/views/modules/serviceManage/serviceRecord/index.vue
diff --git a/src/views/modules/communityParty/elegant/index.vue b/src/views/modules/communityParty/elegant/index.vue
index 0c5a8e79a..0bfd6910a 100644
--- a/src/views/modules/communityParty/elegant/index.vue
+++ b/src/views/modules/communityParty/elegant/index.vue
@@ -138,7 +138,7 @@
是
-
+
取消
确定
@@ -283,7 +283,7 @@ export default {
},
async handleDetail (row) {
this.lookDetail = true
- const url = "/actual/base/partyActivity/"+row.id;
+ const url = "/actual/base/partyMemberStyle/"+row.id;
let params = {};
let data = await requestPost(url, params);
console.log(data,"1111111111111")
@@ -299,7 +299,7 @@ export default {
this.resetForm()
this.lookDetail = false
- const url = "/actual/base/partyActivity/"+row.id;
+ const url = "/actual/base/partyMemberStyle/"+row.id;
let params = {};
let data = await requestPost(url, params);
console.log(data,"1111111111111")
@@ -328,7 +328,7 @@ export default {
cancelButtonText: "取消",
type: "warning"
}).then( async () => {
- const url = "/actual/base/partyActivity/updateStatus"
+ const url = "/actual/base/partyMemberStyle/updateStatus"
const { data, code, msg } = await requestPost(url, { id: row.id, top: row.top, status: val })
if (code === 0) {
this.$message({
@@ -379,7 +379,7 @@ export default {
cancelButtonText: "取消",
type: "warning"
}).then( async () => {
- const url = "/actual/base/partyActivity/delete"
+ const url = "/actual/base/partyMemberStyle/delete"
const { data, code, msg } = await requestPost(url, this.strToArrStr(row.id),{
'Content-Type': 'application/json' // 关键:改为后端支持的类型
})
@@ -479,7 +479,7 @@ export default {
// 示例:this.$api.addData(this.addForm).then(res => { ... })
if(this.addForm.id){
- const url = "/actual/base/partyActivity/update";
+ const url = "/actual/base/partyMemberStyle/update";
let data = await requestPost(url, this.addForm);
console.log(data,"1111111111111")
if (data.code === 0) {
@@ -490,7 +490,7 @@ export default {
this.$message.error(data.msg)
}
}else {
- const url = "/actual/base/partyActivity/save";
+ const url = "/actual/base/partyMemberStyle/save";
let data = await requestPost(url, this.addForm);
console.log(data,"1111111111111")
if (data.code === 0) {
@@ -582,11 +582,11 @@ export default {
/* 穿透scoped,针对quill内部容器设置高度 */
/* Vue2中深度选择器:/deep/ 或 ::v-deep(兼容不同预处理器) */
/deep/ .my-quill-editor .ql-container {
- height: 260px !important; /* !important 覆盖默认样式 */
+ height: 230px !important; /* !important 覆盖默认样式 */
}
/* 可选:调整编辑区的最小高度,防止内容过少时高度塌陷 */
/deep/ .my-quill-editor .ql-editor {
- min-height: 260px;
+ min-height: 230px;
}
diff --git a/src/views/modules/serviceManage/recordReview/index.vue b/src/views/modules/serviceManage/recordReview/index.vue
new file mode 100644
index 000000000..1248e9172
--- /dev/null
+++ b/src/views/modules/serviceManage/recordReview/index.vue
@@ -0,0 +1,392 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 审核
+ 查看
+
+
+
+
+
+
+
+
+
+
+
+
基本信息
+
+
+
+
+ {{ baseForm.organization }}
+
+
+
+
+ {{ baseForm.memberType }}
+
+
+
+
+ {{ baseForm.postType }}
+
+
+
+
+ {{ baseForm.name }}
+
+
+
+
+ {{ baseForm.phone }}
+
+
+
+
+ {{ baseForm.idCard }}
+
+
+
+
+ {{ baseForm.remark }}
+
+
+
+
+
+
+
+
提报信息
+
+
+
+
+ {{ serviceForm.content }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ serviceForm.time }}
+
+
+
+
+ {{ serviceForm.address }}
+
+
+
+
+
+
+
+
审核信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 确定
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/serviceManage/serviceRecord/index.vue b/src/views/modules/serviceManage/serviceRecord/index.vue
new file mode 100644
index 000000000..20dc0fcfa
--- /dev/null
+++ b/src/views/modules/serviceManage/serviceRecord/index.vue
@@ -0,0 +1,385 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查看
+
+
+
+
+
+
+
+
+
+
+
+
基本信息
+
+
+
+
+ {{ baseForm.organization }}
+
+
+
+
+ {{ baseForm.memberType }}
+
+
+
+
+ {{ baseForm.postType }}
+
+
+
+
+ {{ baseForm.currentPost }}
+
+
+
+
+ {{ baseForm.name }}
+
+
+
+
+ {{ baseForm.phone }}
+
+
+
+
+ {{ baseForm.idCard }}
+
+
+
+
+ {{ baseForm.remark }}
+
+
+
+
+
+
+
+
服务信息
+
+
+
+
+ {{ serviceForm.content }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ serviceForm.time }}
+
+
+
+
+ {{ serviceForm.address }}
+
+
+
+
+
+ 下载
+
+
+
+
+
+
+