242 lines
6.0 KiB
Vue
242 lines
6.0 KiB
Vue
<template>
|
|
<div class="email-list-box">
|
|
<emailScroll ref="sysEmailScroll"
|
|
:get-emailList="getEmailList"
|
|
:email-delete="allEmailDelete"
|
|
:star-add="starAdd"
|
|
:star-cancel="starCancel"
|
|
:show-star="false"
|
|
show-user-info
|
|
show-status
|
|
actionLeft="4px"
|
|
:show-account-icon="false"
|
|
@jump="jumpContent"
|
|
@refresh-before="refreshBefore"
|
|
:type="'all-email'"
|
|
|
|
>
|
|
<template #first>
|
|
<el-input
|
|
v-model="searchValue"
|
|
:placeholder="$t('searchByContent')"
|
|
class="search-input"
|
|
>
|
|
<template #prefix>
|
|
<div @click.stop="openSelect">
|
|
<el-select
|
|
ref="mySelect"
|
|
v-model="params.searchType"
|
|
:placeholder="$t('select')"
|
|
class="select"
|
|
>
|
|
<el-option key="3" :label="$t('sender')" :value="'name'"/>
|
|
<el-option key="4" :label="$t('subject')" :value="'subject'"/>
|
|
<el-option key="1" :label="$t('user')" :value="'user'"/>
|
|
<el-option key="2" :label="$t('selectEmail')" :value="'account'"/>
|
|
</el-select>
|
|
<div class="search-type">
|
|
<span>{{ selectTitle }}</span>
|
|
<Icon class="setting-icon" icon="mingcute:down-small-fill" width="20" height="20"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</el-input>
|
|
<el-select v-model="params.type" placeholder="Select" class="status-select">
|
|
<el-option key="1" :label="$t('all')" value="all"/>
|
|
<el-option key="3" :label="$t('received')" value="receive"/>
|
|
<el-option key="2" :label="$t('sent')" value="send"/>
|
|
<el-option key="4" :label="$t('selectDeleted')" value="delete"/>
|
|
<el-option key="4" :label="$t('noRecipientTitle')" value="noone"/>
|
|
</el-select>
|
|
<Icon class="icon" icon="iconoir:search" @click="search" width="20" height="20"/>
|
|
<Icon class="icon" @click="changeTimeSort" icon="material-symbols-light:timer-arrow-down-outline"
|
|
v-if="params.timeSort === 0" width="28" height="28"/>
|
|
<Icon class="icon" @click="changeTimeSort" icon="material-symbols-light:timer-arrow-up-outline" v-else
|
|
width="28" height="28"/>
|
|
</template>
|
|
</emailScroll>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {starAdd, starCancel} from "@/request/star.js";
|
|
import emailScroll from "@/components/email-scroll/index.vue"
|
|
import {computed, defineOptions, reactive, ref, watch} from "vue";
|
|
import {useEmailStore} from "@/store/email.js";
|
|
import {
|
|
allEmailList,
|
|
allEmailDelete
|
|
} from "@/request/all-email.js";
|
|
import {Icon} from "@iconify/vue";
|
|
import router from "@/router/index.js";
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
defineOptions({
|
|
name: 'all-email'
|
|
})
|
|
|
|
const { t } = useI18n();
|
|
const emailStore = useEmailStore();
|
|
const sysEmailScroll = ref({})
|
|
const searchValue = ref('')
|
|
const mySelect = ref()
|
|
|
|
const openSelect = () => {
|
|
mySelect.value.toggleMenu()
|
|
}
|
|
|
|
const params = reactive({
|
|
timeSort: 0,
|
|
type: 'receive',
|
|
userEmail: null,
|
|
accountEmail: null,
|
|
name: null,
|
|
subject: null,
|
|
searchType: 'name'
|
|
})
|
|
|
|
|
|
const selectTitle = computed(() => {
|
|
if (params.searchType === 'user') return t('user')
|
|
if (params.searchType === 'account') return t('selectEmail')
|
|
if (params.searchType === 'name') return t('sender')
|
|
if (params.searchType === 'subject') return t('subject')
|
|
})
|
|
|
|
const paramsStar = localStorage.getItem('all-email-params')
|
|
if (paramsStar) {
|
|
const locaParams = JSON.parse(paramsStar)
|
|
params.type = locaParams.type
|
|
params.timeSort = locaParams.timeSort
|
|
params.status = locaParams.status
|
|
params.searchType = locaParams.searchType
|
|
}
|
|
|
|
watch(() => params, () => {
|
|
localStorage.setItem('all-email-params',JSON.stringify(params))
|
|
}, {
|
|
deep: true
|
|
})
|
|
|
|
function refreshBefore() {
|
|
searchValue.value = null
|
|
params.timeSort = 0
|
|
params.type = 'receive'
|
|
params.userEmail = null
|
|
params.accountEmail = null
|
|
params.name = null
|
|
params.subject = null
|
|
params.searchType = 'name'
|
|
}
|
|
|
|
function search() {
|
|
|
|
params.userEmail = null
|
|
params.accountEmail = null
|
|
params.name = null
|
|
params.subject = null
|
|
|
|
if (params.searchType === 'user') {
|
|
params.userEmail = searchValue.value
|
|
}
|
|
|
|
if (params.searchType === 'account') {
|
|
params.accountEmail = searchValue.value
|
|
}
|
|
|
|
if (params.searchType === 'name') {
|
|
params.name = searchValue.value
|
|
}
|
|
|
|
if (params.searchType === 'subject') {
|
|
params.subject = searchValue.value
|
|
}
|
|
|
|
sysEmailScroll.value.refreshList();
|
|
}
|
|
|
|
function changeTimeSort() {
|
|
params.timeSort = params.timeSort ? 0 : 1
|
|
sysEmailScroll.value.refreshList();
|
|
}
|
|
|
|
function jumpContent(email) {
|
|
emailStore.contentData.email = email
|
|
emailStore.contentData.delType = 'physics'
|
|
emailStore.contentData.showStar = false
|
|
emailStore.contentData.showReply = false
|
|
router.push({name: 'content'})
|
|
}
|
|
|
|
|
|
function getEmailList(emailId, size) {
|
|
return allEmailList({emailId, size, ...params})
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.email-list-box {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
.search {
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.select {
|
|
position: absolute;
|
|
width: 40px;
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.search-type {
|
|
display: flex;
|
|
color: var(--el-text-color-regular);
|
|
}
|
|
|
|
:deep(.header-actions) {
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.search-input {
|
|
width: 100%;
|
|
max-width: 280px;
|
|
height: 28px;
|
|
.setting-icon {
|
|
position: relative;
|
|
top: 3px;
|
|
}
|
|
}
|
|
|
|
.status-select {
|
|
margin-bottom: 2px;
|
|
width: 100px;
|
|
:deep(.el-select__wrapper) {
|
|
min-height: 28px;
|
|
}
|
|
}
|
|
|
|
.input-with-select {
|
|
max-width: 200px;
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
|
|
:deep(.input-with-select .el-input-group__append) {
|
|
background-color: var(--el-fill-color-blank);
|
|
}
|
|
|
|
:deep(.el-select__wrapper) {
|
|
padding: 2px 10px;
|
|
min-height: 28px;
|
|
}
|
|
|
|
.icon {
|
|
cursor: pointer;
|
|
}
|
|
</style> |