Compare commits
2 Commits
d0abf7d8ab
...
b282562cdd
Author | SHA1 | Date | |
---|---|---|---|
b282562cdd | |||
642992640f |
@ -191,7 +191,7 @@ const handleGroupNoticeModalConfirm = () => {
|
|||||||
state.isShowNoticeHintModal = true
|
state.isShowNoticeHintModal = true
|
||||||
if (state?.groupNoticeInfo?.id && !state.groupNoticeInEdit) {
|
if (state?.groupNoticeInfo?.id && !state.groupNoticeInEdit) {
|
||||||
//如果是在编辑中,但是没有输入内容,此时点击完成即为删除群公告
|
//如果是在编辑中,但是没有输入内容,此时点击完成即为删除群公告
|
||||||
state.noticeHintModalContent = '确定清空群公告吗?'
|
state.noticeHintModalContent = '确定清空群公告'
|
||||||
state.noticeHintModalActionBtns = {
|
state.noticeHintModalActionBtns = {
|
||||||
confirmBtn: {
|
confirmBtn: {
|
||||||
text: '清空',
|
text: '清空',
|
||||||
@ -596,7 +596,7 @@ const hideSearchResultModal = () => {
|
|||||||
<n-input
|
<n-input
|
||||||
type="text"
|
type="text"
|
||||||
v-model:value="state.searchRecordByConditionText"
|
v-model:value="state.searchRecordByConditionText"
|
||||||
placeholder="请输入"
|
:placeholder="state.conditionTag && state.conditionTag !== 'all'?'':'请输入'"
|
||||||
clearable
|
clearable
|
||||||
>
|
>
|
||||||
<template #clear-icon>
|
<template #clear-icon>
|
||||||
|
@ -448,6 +448,11 @@ onMounted(() => {
|
|||||||
const showAddressBookModal = () => {
|
const showAddressBookModal = () => {
|
||||||
state.isShowAddressBookModal = true
|
state.isShowAddressBookModal = true
|
||||||
}
|
}
|
||||||
|
// 点击关闭通讯录模态框
|
||||||
|
const closeAddressBookModal = () => {
|
||||||
|
state.isShowAddressBookModal = false
|
||||||
|
resetAddressBookModal()
|
||||||
|
}
|
||||||
const handleTreeClick = ({ selectedKey, tree }) => {
|
const handleTreeClick = ({ selectedKey, tree }) => {
|
||||||
// console.log(tree)
|
// console.log(tree)
|
||||||
state.clickKey = tree.key
|
state.clickKey = tree.key
|
||||||
@ -840,6 +845,8 @@ const handleEnterSearchResultChat = () => {
|
|||||||
:style="state.customModalStyle"
|
:style="state.customModalStyle"
|
||||||
:customCloseBtn="true"
|
:customCloseBtn="true"
|
||||||
:closable="false"
|
:closable="false"
|
||||||
|
:customCloseEvent="true"
|
||||||
|
@customCloseModal="closeAddressBookModal"
|
||||||
>
|
>
|
||||||
<template #content>
|
<template #content>
|
||||||
<div class="custom-modal-content">
|
<div class="custom-modal-content">
|
||||||
|
Loading…
Reference in New Issue
Block a user