救援新增身份校验

liujun0703-新项目开发
liujun 2024-08-13 20:15:28 +08:00
parent 3c1f47e4ad
commit 2ef3e8b69d
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="sys_chat_container"> <div class="sys_chat_container">
<div v-for="(item, ind) in chatData" :key="ind" class="chat_body"> <div v-for="(item, ind) in chatData" :key="ind" class="chat_body">
<p class="chat_title">{{ item.info.MESS }}</p> <p class="chat_title">{{ '指令:' + item.info.MESS }}</p>
<p v-for="(answer, indx) in item.list" :key="indx" :class="{ 'ready': answer.READ_STATUS === '1'}" class="chat_item"> <p v-for="(answer, indx) in item.list" :key="indx" :class="{ 'ready': answer.READ_STATUS === '1'}" class="chat_item">
<span v-if="answer.IDENT_SIGN === '1'" class="chat_item_head">{{ answer.SEND_MEN_NAME + ' :' }} </span> <span v-if="answer.IDENT_SIGN === '1'" class="chat_item_head">{{ answer.SEND_MEN_NAME + ' :' }} </span>
<span v-if="answer.IDENT_SIGN === '1'" class="chat_item_content">{{ answer.MESS }}</span> <span v-if="answer.IDENT_SIGN === '1'" class="chat_item_content">{{ answer.MESS }}</span>

View File

@ -276,10 +276,10 @@
</div> </div>
</el-dialog> </el-dialog>
<el-dialog :visible.sync="exceltempFormAdd" title="模版导入" width="280px"> <el-dialog :visible.sync="exceltempFormAdd" title="模版导入" width="300px">
<spa>{{ '注意:导入本月数据后会覆盖之前的手动编排的数据,请注意!' }}</spa>
<el-form ref="formPeople" label-width="100px" > <el-form ref="formPeople" label-width="100px" >
<el-form-item label="请选择模版"> <el-form-item label="请选择模版">
<el-upload <el-upload
ref="upload" ref="upload"
:on-change="handleEditChange" :on-change="handleEditChange"

View File

@ -98,7 +98,7 @@ export const menuList = [
model: 'emergency', model: 'emergency',
click: () => { click: () => {
store.dispatch('permission/setShowModel', 'emergency') store.dispatch('permission/setShowModel', 'emergency')
router.push({ path: '/emergency/plan' }) router.push({ path: '/emergency/equipment' })
} }
}, },
{ {