From 68450275e7c24dd3935f2d7a84feecf50d199ac2 Mon Sep 17 00:00:00 2001 From: fengchenchen Date: Thu, 11 Jul 2024 14:12:13 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90update=E3=80=91-=E4=BC=9A=E8=AE=AE?= =?UTF-8?q?=E9=85=92=E5=BA=97=E6=8E=A8=E8=8D=90=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E4=BC=9A=E8=AE=AE=E7=B1=BB=E5=9E=8B=E4=B8=BA=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E6=A1=86=EF=BC=8C=E5=A2=9E=E5=8A=A0=E6=9F=A5=E7=9C=8B=E6=8C=89?= =?UTF-8?q?=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectManagement/RecommendHotelPage.vue | 33 ++++- .../modules/RecommendHotelModal.vue | 123 ++++++++++++++++++ 2 files changed, 149 insertions(+), 7 deletions(-) create mode 100644 src/views/projectManagement/modules/RecommendHotelModal.vue diff --git a/src/views/projectManagement/RecommendHotelPage.vue b/src/views/projectManagement/RecommendHotelPage.vue index a4690c5..7d17452 100644 --- a/src/views/projectManagement/RecommendHotelPage.vue +++ b/src/views/projectManagement/RecommendHotelPage.vue @@ -38,10 +38,11 @@ - + + + + + @@ -96,8 +97,14 @@
{{ text }}
+ + + 查看 + + + @@ -106,12 +113,14 @@ import {JeroListMixin} from '@/mixins/JeroListMixin' import IconImg from '@/assets/imgs/icon/icon_other_meeting.png' import PageHeaderTitle from '@comp/layouts/PageHeaderTitle' +import RecommendHotelModal from './modules/RecommendHotelModal' export default { name: 'RecommendHotelPage', mixins: [JeroListMixin], components: { - PageHeaderTitle + PageHeaderTitle, + RecommendHotelModal }, data() { return { @@ -166,7 +175,7 @@ export default { { title: '曾举办会议类型', align: 'center', - dataIndex: 'meetingType_dictText', + dataIndex: 'meetingType', scopedSlots: {customRender: 'text'}, width: 100, }, @@ -183,6 +192,14 @@ export default { dataIndex: 'remark', scopedSlots: {customRender: 'text'}, width: 100, + }, + { + title: '操作', + dataIndex: 'action', + align: 'center', + // fixed: 'right', + width: 100, + scopedSlots: { customRender: 'action' } } ], url: { @@ -198,7 +215,9 @@ export default { }, }, methods: { - + handleDetail(record) { + this.$refs.modal.open(record) + } } } diff --git a/src/views/projectManagement/modules/RecommendHotelModal.vue b/src/views/projectManagement/modules/RecommendHotelModal.vue new file mode 100644 index 0000000..3e5faae --- /dev/null +++ b/src/views/projectManagement/modules/RecommendHotelModal.vue @@ -0,0 +1,123 @@ + + + + + \ No newline at end of file