From b74b070367732e573001c48f64f54ab74a93352f Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Mon, 25 May 2020 09:29:34 +0800 Subject: [PATCH 01/85] =?UTF-8?q?=E7=AB=9E=E8=B5=9B=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/jsxt/competition/examDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/jsxt/competition/examDetail.vue b/src/views/jsxt/competition/examDetail.vue index 58bd26796..e47c98d32 100644 --- a/src/views/jsxt/competition/examDetail.vue +++ b/src/views/jsxt/competition/examDetail.vue @@ -157,7 +157,7 @@ export default { } else { // this.disabled = true; getCompetitionPractical(this.$route.query.raceId).then(()=>{ - participantCreatTrainingRoom(1, {mapId: 41, prdType: '02'}).then(resp => { + participantCreatTrainingRoom(this.$route.query.raceId, {mapId: 41, prdType: '02'}).then(resp => { const query = { lineCode: '11', mapId: '41', group: resp.data, roomId: '385' }; this.$router.replace({ path: `/jointTrainingNew`, query: query}); }); From aa6d821fedc27c262df2d3a76cc0697f067bfd03 Mon Sep 17 00:00:00 2001 From: zyy <1787816799@qq.com> Date: Mon, 25 May 2020 09:40:14 +0800 Subject: [PATCH 02/85] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A3=81=E5=88=A4?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E4=BA=BA=E5=91=98=E5=88=97=E8=A1=A8=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/competition.js | 7 ++--- src/views/jsxt/refereeList/index.vue | 41 ++++++---------------------- 2 files changed, 11 insertions(+), 37 deletions(-) diff --git a/src/api/competition.js b/src/api/competition.js index 1e81796d6..3e1b0bec3 100644 --- a/src/api/competition.js +++ b/src/api/competition.js @@ -72,11 +72,10 @@ export function getIsSignUp(raceId) { } /** 分页查询竞赛报名人员 */ -export function getRaceUserList(params) { +export function getRaceUserList(raceId) { return request({ - url: `/api/race/${params.raceId}/raceUser`, - method: 'get', - params + url: `/api/race/${raceId}/raceUser`, + method: 'get' }); } diff --git a/src/views/jsxt/refereeList/index.vue b/src/views/jsxt/refereeList/index.vue index 909e7f369..1a1abbc6e 100644 --- a/src/views/jsxt/refereeList/index.vue +++ b/src/views/jsxt/refereeList/index.vue @@ -8,6 +8,7 @@ + diff --git a/src/jmapNew/theme/xian_01/menus/menuTrain.vue b/src/jmapNew/theme/xian_01/menus/menuTrain.vue index a211af021..4f5507dc0 100644 --- a/src/jmapNew/theme/xian_01/menus/menuTrain.vue +++ b/src/jmapNew/theme/xian_01/menus/menuTrain.vue @@ -7,6 +7,7 @@ + @@ -22,6 +23,7 @@ import TrainDelete from './dialog/trainDelete'; import TrainMove from './dialog/trainMove'; import TrainSwitch from './dialog/trainSwitch'; import TrainEditNumber from './dialog/trainEditNumber'; +import TrainDetail from './dialog/trainDetail'; import MenuContextHandler from '@/scripts/cmdPlugin/MenuContextHandler'; export default { @@ -33,7 +35,8 @@ export default { TrainDelete, TrainMove, TrainSwitch, - TrainEditNumber + TrainEditNumber, + TrainDetail }, props: { selected: { @@ -81,17 +84,17 @@ export default { }, { label: '标记ATP切除', - handler: this.undeveloped(), + handler: this.undeveloped, cmdType: CMD.TrainWindow.CMD_TRAIN_TAG_ATP_CUT }, { label: '标记ATP激活', - handler: this.undeveloped(), + handler: this.undeveloped, cmdType: CMD.TrainWindow.CMD_TRAIN_TAG_ATP_RECOVER }, { label: '查看列车详细运行信息', - handler: this.undeveloped(), + handler: this.checkTrainDetails, cmdType: CMD.TrainWindow.CMD_TRAIN_INFO } ] @@ -322,7 +325,6 @@ export default { switchTrainId() { const step = { start: true, - operation: OperationEvent.Train.switchTrainId.menu.operation, param: { code: this.selected.code @@ -334,6 +336,22 @@ export default { this.$refs.trainSwitch.doShow(step, this.selected); } }); + }, + checkTrainDetails() { + const step = { + start: true, + code: this.selected.code, + operation: OperationEvent.Train.trainDetailInfo.menu.operation, + param: { + code: this.selected.code + } + }; + this.$store.dispatch('training/nextNew', step).then(({ valid }) => { + if (valid) { + this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); + this.$refs.trainDetail.doShow(step, this.selected); + } + }); } } }; diff --git a/src/scripts/ConstDic.js b/src/scripts/ConstDic.js index 4b05c1047..9ebfc5c2b 100644 --- a/src/scripts/ConstDic.js +++ b/src/scripts/ConstDic.js @@ -2211,7 +2211,12 @@ export const IbpShowCondition = { Show_Open_Screen_Door: {statusKey: 'screenDoorOpenStatus', statusValue:['02'], defaultStatus: 'close'}, Show_Close_Screen_Door: {statusKey: 'screenDoorOpenStatus', statusValue: ['01'], defaultStatus: 'open'} }; - +/** 列车类型 */ +export const TrainType = { + PLAN: '计划车', + HEAD: '头码车', + MANUAL: '人工车' +}; export const UrlConfig = { display: '/display', displayNew: '/displayNew', From 663f25cddc1e4ae0829fe0c5d5ef18dc71cfbcf3 Mon Sep 17 00:00:00 2001 From: joylink_cuiweidong <364937672@qq.com> Date: Mon, 25 May 2020 16:56:00 +0800 Subject: [PATCH 24/85] =?UTF-8?q?=E7=AB=9E=E8=B5=9B=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/jsxt/refereeList/index.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/jsxt/refereeList/index.vue b/src/views/jsxt/refereeList/index.vue index 6d65a8a2e..48c92a888 100644 --- a/src/views/jsxt/refereeList/index.vue +++ b/src/views/jsxt/refereeList/index.vue @@ -108,7 +108,8 @@ export default { { text: '导入试题', handler: this.handleAdd } ] }, - isLeaving:false + isLeaving:false, + inter:null }; }, computed: { @@ -162,7 +163,8 @@ export default { }, afterQuery(data) { - setTimeout(() => { + clearTimeout(this.inter); + this.inter = setTimeout(() => { if (!this.isLeaving) { this.refresh(); } From fe45d9b1ac7b338f77b88d2078edba973763511b Mon Sep 17 00:00:00 2001 From: fan <18706759286@163.com> Date: Mon, 25 May 2020 17:07:58 +0800 Subject: [PATCH 25/85] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=89=A3=E8=BD=A6?= =?UTF-8?q?=E8=B7=B3=E5=81=9C=E5=91=BD=E4=BB=A4=E6=8F=90=E7=A4=BA=E6=8D=A2?= =?UTF-8?q?=E8=A1=8C=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/StatusIcon/statusIcon.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/components/StatusIcon/statusIcon.vue b/src/views/components/StatusIcon/statusIcon.vue index 87ce1efed..0dd3a0901 100644 --- a/src/views/components/StatusIcon/statusIcon.vue +++ b/src/views/components/StatusIcon/statusIcon.vue @@ -70,7 +70,7 @@ export default { const station = this.$store.getters['map/getDeviceByCode'](stand.stationCode); const dir = stand.right ? '上行站台' : '下行站台'; if (stand) { - this.tip = this.tip + station.name + ':
' + dir + '站台存在扣车命令'; + this.tip = this.tip + station.name + ':
' + dir + '站台存在扣车命令
'; } }); } @@ -89,7 +89,7 @@ export default { const station = this.$store.getters['map/getDeviceByCode'](stand.stationCode); const dir = stand.right ? '上行站台' : '下行站台'; if (stand) { - this.tip = this.tip + station.name + ':
' + dir + '站台存在跳停命令'; + this.tip = this.tip + station.name + ':
' + dir + '站台存在跳停命令
'; } }); } From f329e30049e14562ae074dd2beb8717f12a17dcd Mon Sep 17 00:00:00 2001 From: zyy <1787816799@qq.com> Date: Mon, 25 May 2020 17:57:24 +0800 Subject: [PATCH 26/85] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=A5=BF=E5=AE=89?= =?UTF-8?q?=E4=B8=80=E4=B8=89=20=E5=8F=B7=E7=BA=BF=E8=B7=AF=20=E5=8F=B3?= =?UTF-8?q?=E9=94=AE=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PopMenu/index.vue | 8 +- src/jmapNew/theme/xian_01/menus/index.vue | 15 ++++ .../theme/xian_01/menus/menuSection.vue | 2 +- .../theme/xian_01/menus/menuSignal.vue | 2 +- .../theme/xian_01/menus/menuStation.vue | 2 +- .../theme/xian_01/menus/menuStationStand.vue | 4 +- .../theme/xian_01/menus/menuSwitch.vue | 2 +- src/jmapNew/theme/xian_01/menus/menuTrain.vue | 86 +++++++++---------- src/utils/baseUrl.js | 4 +- .../newMap/displayNew/chatView/chatBox.vue | 4 +- 10 files changed, 73 insertions(+), 56 deletions(-) diff --git a/src/components/PopMenu/index.vue b/src/components/PopMenu/index.vue index f982ae27a..c8d1baaf5 100644 --- a/src/components/PopMenu/index.vue +++ b/src/components/PopMenu/index.vue @@ -1,5 +1,5 @@ @@ -24,8 +22,6 @@ import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; // import MenuContextHandler from '@/scripts/cmdPlugin/MenuContextHandler'; import {menuOperate, commitOperate} from './utils/menuOperate'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; -import SetFault from '@/views/newMap/mapsystemNew/plugin/setFault'; -import TrainAddPlan from './dialog/trainAddPlan'; export default { name: 'SectionMenu', @@ -36,8 +32,6 @@ export default { SpeedLimitControl, AlxeEffective, NoticeInfo, - SetFault, - TrainAddPlan }, props: { selected: { @@ -205,7 +199,8 @@ export default { this.$store.dispatch('training/nextNew', step).then(({ valid }) => { if (valid) { this.$store.dispatch('menuOperation/handleBreakFlag', { break: true }); - this.$refs.trainAddPlan.doShow(step, this.selected); + // this.$refs.trainAddPlan.doShow(step, this.selected); + this.$store.dispatch('training/setCommonMenuStep', step); } }); }, @@ -213,7 +208,7 @@ export default { setStoppage() { commitOperate(menuOperate.Common.setFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.setFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.setFault); } }); }, @@ -221,7 +216,7 @@ export default { cancelStoppage() { commitOperate(menuOperate.Common.cancelFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.cancelFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.cancelFault); } }); }, diff --git a/src/jmapNew/theme/xian_02/menus/menuSignal.vue b/src/jmapNew/theme/xian_02/menus/menuSignal.vue index 7ed66994a..d769bb877 100644 --- a/src/jmapNew/theme/xian_02/menus/menuSignal.vue +++ b/src/jmapNew/theme/xian_02/menus/menuSignal.vue @@ -9,7 +9,6 @@ - @@ -29,7 +28,6 @@ import CMD from '@/scripts/cmdPlugin/CommandEnum'; import { mapGetters } from 'vuex'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; -import SetFault from '@/views/newMap/mapsystemNew/plugin/setFault'; export default { name: 'SignalMenu', @@ -42,8 +40,7 @@ export default { RouteHandControl, RouteDetail, RouterCommand, - NoticeInfo, - SetFault + NoticeInfo }, props: { selected: { @@ -268,7 +265,7 @@ export default { setStoppage() { commitOperate(menuOperate.Common.setFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.setFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.setFault); } }); }, @@ -276,7 +273,7 @@ export default { cancelStoppage() { commitOperate(menuOperate.Common.cancelFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.cancelFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.cancelFault); } }); }, diff --git a/src/jmapNew/theme/xian_02/menus/menuSwitch.vue b/src/jmapNew/theme/xian_02/menus/menuSwitch.vue index 62efcc86f..f785dda55 100644 --- a/src/jmapNew/theme/xian_02/menus/menuSwitch.vue +++ b/src/jmapNew/theme/xian_02/menus/menuSwitch.vue @@ -6,7 +6,6 @@ - @@ -24,7 +23,6 @@ import CMD from '@/scripts/cmdPlugin/CommandEnum'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; import {menuOperate, commitOperate} from './utils/menuOperate'; -import SetFault from '@/views/newMap/mapsystemNew/plugin/setFault'; export default { name: 'SwitchMenu', @@ -34,8 +32,7 @@ export default { SwitchUnLock, SpeedLimitControl, AlxeEffective, - NoticeInfo, - SetFault + NoticeInfo }, props: { selected: { @@ -245,7 +242,7 @@ export default { setStoppage() { commitOperate(menuOperate.Common.setFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.setFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.setFault); } }); }, @@ -253,7 +250,7 @@ export default { cancelStoppage() { commitOperate(menuOperate.Common.cancelFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.cancelFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.cancelFault); } }); }, diff --git a/src/jmapNew/theme/xian_02/menus/menuTrain.vue b/src/jmapNew/theme/xian_02/menus/menuTrain.vue index 761bdd473..91736ebf8 100644 --- a/src/jmapNew/theme/xian_02/menus/menuTrain.vue +++ b/src/jmapNew/theme/xian_02/menus/menuTrain.vue @@ -6,7 +6,6 @@ - @@ -22,7 +21,6 @@ import TrainDelete from './dialog/trainDelete'; import TrainDefine from './dialog/trainDefine'; import TrainMove from './dialog/trainMove'; import TrainSetPlan from './dialog/trainSetPlan'; -import TrainAddPlan from './dialog/trainAddPlan'; import TrainSetHead from './dialog/trainSetHead'; import TrainSetWork from './dialog/trainSetWork'; import trainSetWorkATP from './dialog/trainSetWorkATP'; @@ -43,7 +41,6 @@ export default { TrainDefine, TrainMove, TrainSetPlan, - TrainAddPlan, TrainSetHead, TrainSetWork, trainSetWorkATP, diff --git a/src/jmapNew/theme/xian_02/menus/popStationStand.vue b/src/jmapNew/theme/xian_02/menus/popStationStand.vue index ab4b09b25..e89137065 100644 --- a/src/jmapNew/theme/xian_02/menus/popStationStand.vue +++ b/src/jmapNew/theme/xian_02/menus/popStationStand.vue @@ -5,7 +5,6 @@ - @@ -19,7 +18,6 @@ import { mapGetters } from 'vuex'; import { OperationEvent } from '@/scripts/cmdPlugin/OperationHandler'; import { DeviceMenu, OperateMode } from '@/scripts/ConstDic'; import CMD from '@/scripts/cmdPlugin/CommandEnum'; -import SetFault from '@/views/newMap/mapsystemNew/plugin/setFault'; import {menuOperate, commitOperate} from './utils/menuOperate'; export default { @@ -29,8 +27,7 @@ export default { NoticeInfo, UpdateStandPlan, WarningConfirm, - StopProfile, - SetFault + StopProfile }, props: { selected: { @@ -282,7 +279,7 @@ export default { setStoppage() { commitOperate(menuOperate.Common.setFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.setFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.setFault); } }); }, @@ -290,7 +287,7 @@ export default { cancelStoppage() { commitOperate(menuOperate.Common.cancelFault, { code: this.selected.code }, 0).then(({valid, operate})=>{ if (valid) { - this.$refs.setFault.doShow(menuOperate.Common.cancelFault, this.selected); + this.$store.dispatch('training/setCommonMenuStep', menuOperate.Common.cancelFault); } }); }, diff --git a/src/jmapNew/theme/xian_02/menus/utils/menuOperate.js b/src/jmapNew/theme/xian_02/menus/utils/menuOperate.js index 929324f24..ce474fd46 100644 --- a/src/jmapNew/theme/xian_02/menus/utils/menuOperate.js +++ b/src/jmapNew/theme/xian_02/menus/utils/menuOperate.js @@ -260,11 +260,11 @@ export const menuOperate = { }, Common: { setFault: { - operation: OperationEvent.Section.stoppage.menu.operation, + operation: OperationEvent.MixinCommand.stoppage.menu.operation, cmdType: CMD.Fault.CMD_SET_FAULT }, cancelFault: { - operation: OperationEvent.Section.cancelStoppage.menu.operation, + operation: OperationEvent.MixinCommand.cancelStoppage.menu.operation, cmdType: CMD.Fault.CMD_CANCEL_FAULT } } diff --git a/src/scripts/cmdPlugin/OperationHandler.js b/src/scripts/cmdPlugin/OperationHandler.js index 69bedb83b..1cb6c3ca6 100644 --- a/src/scripts/cmdPlugin/OperationHandler.js +++ b/src/scripts/cmdPlugin/OperationHandler.js @@ -2079,6 +2079,18 @@ export const OperationEvent = { operation: '2994', domId: '_Tips-TotalCancel-Button{TOP}' } + }, + // 取消故障 + cancelStoppage: { + menu: { + operation: '2995' + } + }, + // 道岔故障 + stoppage: { + menu: { + operation: '2996' + } } } diff --git a/src/store/modules/training.js b/src/store/modules/training.js index f335e1a1d..86b1e400f 100644 --- a/src/store/modules/training.js +++ b/src/store/modules/training.js @@ -35,7 +35,9 @@ const training = { prdType: '', // 产品类型 roles: '', // 角色权限类型 group: '', // 设置全局 group - centerStationCode:'' // 当前居中的集中站code + centerStationCode:'', // 当前居中的集中站code + commonMenuCount: 0, // 公共菜单计数 + commonMenuStep: null // 公共菜单步骤 }, getters: { @@ -92,6 +94,12 @@ const training = { }); return trainList; + }, + commonMenuCount: (state) => { + return state.commonMenuCount; + }, + commonMenuStep: (state) => { + return state.commonMenuStep; } }, @@ -209,6 +217,10 @@ const training = { }, setCenterStationCode:(state, centerStationCode) => { state.centerStationCode = centerStationCode; + }, + setCommonMenuStep: (state, commonMenuStep) => { + state.commonMenuStep = commonMenuStep; + state.commonMenuCount++; } }, @@ -611,6 +623,11 @@ const training = { /** 设置当前居中的集中站code */ setCenterStationCode:({ commit }, centerStationCode) => { commit('setCenterStationCode', centerStationCode); + }, + + /** 公共菜单操作 */ + setCommonMenuStep:({ commit }, commonMenuStep) => { + commit('setCommonMenuStep', commonMenuStep); } } }; diff --git a/src/views/newMap/mapsystemNew/common/commonMenu.vue b/src/views/newMap/mapsystemNew/common/commonMenu.vue index ef822fdef..f10404952 100644 --- a/src/views/newMap/mapsystemNew/common/commonMenu.vue +++ b/src/views/newMap/mapsystemNew/common/commonMenu.vue @@ -1,19 +1,48 @@ diff --git a/src/views/newMap/mapsystemNew/common/index.vue b/src/views/newMap/mapsystemNew/common/index.vue index ccbba871a..0c55fe6b1 100644 --- a/src/views/newMap/mapsystemNew/common/index.vue +++ b/src/views/newMap/mapsystemNew/common/index.vue @@ -3,6 +3,7 @@ + @@ -13,12 +14,14 @@ import { getDeviceMenuByDeviceType, OperationEvent } from '@/scripts/ConstDic'; import deviceType from '@/jmap/constant/deviceType'; import JlmapVisual from '@/views/newMap/jlmapNew/index'; import TrainingTips from '@/views/newMap/mapsystemNew/plugin/trainingtip'; +import CommonMenu from './commonMenu'; export default { name: 'LessonCanvas', components: { JlmapVisual, - TrainingTips + TrainingTips, + CommonMenu }, data() { return { diff --git a/src/views/newMap/mapsystemNew/common/menus/setFault.vue b/src/views/newMap/mapsystemNew/common/menus/setFault.vue index a26fa68f1..cf848894f 100644 --- a/src/views/newMap/mapsystemNew/common/menus/setFault.vue +++ b/src/views/newMap/mapsystemNew/common/menus/setFault.vue @@ -73,9 +73,9 @@ export default { return this.dialogShow ? OperationHandler.getDomIdByOperation(this.operation) : ''; }, title() { - if (this.operation === OperationEvent.Section.stoppage.menu.operation) { + if (this.operation === OperationEvent.MixinCommand.stoppage.menu.operation) { return '设置故障'; - } else if (this.operation === OperationEvent.Section.cancelStoppage.menu.operation) { + } else if (this.operation === OperationEvent.MixinCommand.cancelStoppage.menu.operation) { return '取消故障'; } return ''; diff --git a/src/views/newMap/mapsystemNew/common/menus/trainAddPlan.vue b/src/views/newMap/mapsystemNew/common/menus/trainAddPlan.vue index c3f32f274..d30bee7e2 100644 --- a/src/views/newMap/mapsystemNew/common/menus/trainAddPlan.vue +++ b/src/views/newMap/mapsystemNew/common/menus/trainAddPlan.vue @@ -1,7 +1,7 @@ + diff --git a/src/views/newMap/displayNew/chatView/chatMemberList.vue b/src/views/newMap/displayNew/chatView/chatMemberList.vue index ddb243928..1fc6bcdb3 100644 --- a/src/views/newMap/displayNew/chatView/chatMemberList.vue +++ b/src/views/newMap/displayNew/chatView/chatMemberList.vue @@ -5,14 +5,16 @@
{{ member.memberName }}
+