yxk-20260707

习总书记讲话、巡视整改的第二个tab的反馈信息名字修改为办理情况
This commit is contained in:
ye1023
2026-07-07 10:19:47 +08:00
parent 57afadf6a6
commit 9092d126e9
8 changed files with 9 additions and 9 deletions
@@ -140,7 +140,7 @@
@click="showFeedbackDetail = !showFeedbackDetail" @click="showFeedbackDetail = !showFeedbackDetail"
> >
<Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" /> <Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
{{ showFeedbackDetail ? '收起反馈信息' : '展开反馈信息' }} {{ showFeedbackDetail ? '收起办理情况' : '展开办理情况' }}
</a-button> </a-button>
</a-space> </a-space>
</div> </div>
@@ -170,7 +170,7 @@
@click="showFeedbackDetail = !showFeedbackDetail" @click="showFeedbackDetail = !showFeedbackDetail"
> >
<Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" /> <Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
{{ showFeedbackDetail ? '收起执行情况反馈' : '展开执行情况反馈' }} {{ showFeedbackDetail ? '收起办理情况' : '展开办理情况' }}
</a-button> </a-button>
</a-space> </a-space>
</div> </div>
+1 -1
View File
@@ -590,7 +590,7 @@ import { defHttp } from '/@/utils/http/axios';
function getFormMenuList(record) { function getFormMenuList(record) {
return [ return [
{ {
text: '查看反馈', text: '查看办理情况',
icon: 'ant-design:eye-outlined', icon: 'ant-design:eye-outlined',
event: 'feedback', event: 'feedback',
divider: true, divider: true,
@@ -192,7 +192,7 @@
@click="showFeedbackDetail = !showFeedbackDetail" @click="showFeedbackDetail = !showFeedbackDetail"
> >
<Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" /> <Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
{{ showFeedbackDetail ? '收起反馈信息' : '展开反馈信息' }} {{ showFeedbackDetail ? '收起办理情况' : '展开办理情况' }}
</a-button> </a-button>
</a-space> </a-space>
</div> </div>
@@ -112,7 +112,7 @@
const title = computed(() => { const title = computed(() => {
const count = loading.value ? '加载中' : `${feedbackTableData.value.length}`; const count = loading.value ? '加载中' : `${feedbackTableData.value.length}`;
return `反馈信息${count}`; return `办理情况${count}`;
}); });
async function open(record: Recordable) { async function open(record: Recordable) {
@@ -51,7 +51,7 @@
const title = computed(() => { const title = computed(() => {
const count = loading.value ? '加载中' : `${feedbackTableData.value.length}`; const count = loading.value ? '加载中' : `${feedbackTableData.value.length}`;
return `反馈信息${count}`; return `办理情况${count}`;
}); });
const columns: BasicColumn[] = [ const columns: BasicColumn[] = [
@@ -403,7 +403,7 @@
*/ */
function getFormMenuList(record) { function getFormMenuList(record) {
return [ return [
{ text: '查看反馈', icon: 'ant-design:eye-outlined', event: 'feedback', divider: true, onClick: handleViewFeedback.bind(null, record) }, { text: '查看办理情况', icon: 'ant-design:eye-outlined', event: 'feedback', divider: true, onClick: handleViewFeedback.bind(null, record) },
{ text: '编辑', icon: 'ant-design:edit-outlined', event: 'edit', onClick: handleEdit.bind(null, record) }, { text: '编辑', icon: 'ant-design:edit-outlined', event: 'edit', onClick: handleEdit.bind(null, record) },
{ text: '详情', icon: 'ant-design:file-text-outlined', event: 'detail', onClick: handleDetail.bind(null, record) }, { text: '详情', icon: 'ant-design:file-text-outlined', event: 'detail', onClick: handleDetail.bind(null, record) },
{ {
@@ -127,7 +127,7 @@
<a-divider /> <a-divider />
<div class="feedback-header section-toolbar" v-if="showFeedbackInfo"> <div class="feedback-header section-toolbar" v-if="showFeedbackInfo">
<div class="section-title">反馈信息</div> <div class="section-title">办理情况</div>
<a-space class="section-actions"> <a-space class="section-actions">
<a-button v-if="showAddFeedback" class="section-action-button feedback-add-button" type="primary" @click="openFeedbackModal"> <a-button v-if="showAddFeedback" class="section-action-button feedback-add-button" type="primary" @click="openFeedbackModal">
<Icon icon="ant-design:plus-outlined" /> <Icon icon="ant-design:plus-outlined" />
@@ -140,7 +140,7 @@
@click="showFeedbackDetail = !showFeedbackDetail" @click="showFeedbackDetail = !showFeedbackDetail"
> >
<Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" /> <Icon :icon="showFeedbackDetail ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
{{ showFeedbackDetail ? '收起反馈信息' : '展开反馈信息' }} {{ showFeedbackDetail ? '收起办理情况' : '展开办理情况' }}
</a-button> </a-button>
</a-space> </a-space>
</div> </div>