代码提交,分页转右侧

This commit is contained in:
glj 2023-04-23 16:00:18 +08:00
parent 1a82c09598
commit ac02974a87
16 changed files with 308 additions and 381 deletions

View File

@ -380,7 +380,7 @@ onMounted(() => {
} }
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -278,7 +278,7 @@ onMounted(() => {
} }
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -291,8 +291,8 @@ onMounted(() => {
</script> </script>
<style> <style>
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
.demo-tabs>.el-tabs__content { .demo-tabs>.el-tabs__content {

View File

@ -641,7 +641,7 @@ const searchDisasterDate = () => {
padding-left: 1%; padding-left: 1%;
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -49,7 +49,7 @@
@selection-change="handleSelectionChange" style="width: 100%"> @selection-change="handleSelectionChange" style="width: 100%">
<el-table-column type="selection" width="55" /> <el-table-column type="selection" width="55" />
<el-table-column type="index" label="ID" width="50" /> <el-table-column type="index" label="ID" width="50" />
<el-table-column prop="time" label="time" show-overflow-tooltip></el-table-column> <el-table-column prop="date" label="date" show-overflow-tooltip></el-table-column>
<el-table-column prop="frequency" label="frequency" show-overflow-tooltip></el-table-column> <el-table-column prop="frequency" label="frequency" show-overflow-tooltip></el-table-column>
<el-table-column prop="word" label="word" show-overflow-tooltip></el-table-column> <el-table-column prop="word" label="word" show-overflow-tooltip></el-table-column>
<el-table-column prop="Operate" label="Operate" show-overflow-tooltip> <el-table-column prop="Operate" label="Operate" show-overflow-tooltip>
@ -367,7 +367,7 @@ onMounted(() => {
font-weight: 600; font-weight: 600;
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -1,22 +1,23 @@
<template> <template>
<div class="system-user-container" style="width:calc(100% - 10px) !important ;"> <div class="system-user-container" style="width:calc(100% - 10px) !important ;">
<el-config-provider :locale="en"> <el-config-provider :locale="en">
<el-row :gutter="10"> <el-row :gutter="10">
<el-col :span="24"> <el-col :span="24">
<el-card shadow="hover"> <el-card shadow="hover">
<div class="system-user-search mb15"> <div class="system-user-search mb15">
<el-form> <el-form>
<el-row> <el-row>
<el-col :span="4"> <el-col :span="4">
<el-form-item label="UserName"><el-input size="default" style="max-width: 180px" <el-form-item label="UserName"><el-input size="default" style="max-width: 180px"
v-model="state.query.userName" clearable placeholder="Please enter the UserName"> v-model="state.query.userName" clearable
</el-input> placeholder="Please enter the UserName">
</el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4"> <el-col :span="4">
<el-form-item label="checked" style="margin-left: 10px;"> <el-form-item label="checked" style="margin-left: 10px;">
<el-select size="default" v-model="state.query.status" clearable style="max-width: 180px" <el-select size="default" v-model="state.query.status" clearable
placeholder="Replied"> style="max-width: 180px" placeholder="Replied">
<el-option label="UnReplied" :value="0"></el-option> <el-option label="UnReplied" :value="0"></el-option>
<el-option label="Replied" :value="1"></el-option> <el-option label="Replied" :value="1"></el-option>
<el-option label="Observed" :value="2"></el-option> <el-option label="Observed" :value="2"></el-option>
@ -36,66 +37,64 @@
</div> </div>
<el-table :data="state.tableData.data" style="width: 100%" v-loading="state.tableData.loading" <el-table :data="state.tableData.data" style="width: 100%" v-loading="state.tableData.loading"
@selection-change="handleSelectionChange"> @selection-change="handleSelectionChange">
<el-table-column prop="userName" label="userName"> </el-table-column> <el-table-column prop="userName" label="userName"> </el-table-column>
<el-table-column prop="email" label="email"> </el-table-column> <el-table-column prop="email" label="email"> </el-table-column>
<el-table-column prop="organization" label="organization"> </el-table-column> <el-table-column prop="organization" label="organization"> </el-table-column>
<el-table-column prop="message" label="message"> </el-table-column> <el-table-column prop="message" label="message"> </el-table-column>
<el-table-column label="Operate" width="180"> <el-table-column label="Operate" width="180">
<template #default="scope"> <template #default="scope">
<el-button :disabled="scope.row.userName === 'admin'" size="small" v-if="scope.row.status != 2 " text type="primary" <el-button :disabled="scope.row.userName === 'admin'" size="small"
@click="onObserved(scope.row)">Observed</el-button> v-if="scope.row.status != 2" text type="primary"
<el-button :disabled="scope.row.userName === 'admin'" size="small" v-if="scope.row.status != 1 " text type="primary" @click="onObserved(scope.row)">Observed</el-button>
@click="onOpenEdit(scope.row)">Reply e-mail</el-button> <el-button :disabled="scope.row.userName === 'admin'" size="small"
<el-button :disabled="scope.row.userName === 'admin'" size="small" v-if="scope.row.status == 1 " text type="primary" v-if="scope.row.status != 1" text type="primary"
@click="onOpenEdit(scope.row)">Reply Info</el-button> @click="onOpenEdit(scope.row)">Reply e-mail</el-button>
<el-button :disabled="scope.row.userName === 'admin'" size="small" text type="primary" <el-button :disabled="scope.row.userName === 'admin'" size="small"
@click="onRowDel(scope.row)">Delete</el-button> v-if="scope.row.status == 1" text type="primary"
</template> @click="onOpenEdit(scope.row)">Reply Info</el-button>
</el-table-column> <el-button :disabled="scope.row.userName === 'admin'" size="small" text type="primary"
</el-table> @click="onRowDel(scope.row)">Delete</el-button>
<el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" class="mt15" </template>
:pager-count="3" :page-sizes="[10, 20, 30]" v-model:current-page="state.tableData.param.pageNum" </el-table-column>
background v-model:page-size="state.tableData.param.pageSize" </el-table>
layout="total, sizes, prev, pager, next" :total="state.tableData.total"> <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange"
</el-pagination> class="mt15" :pager-count="3" :page-sizes="[10, 20, 30]"
</el-card> v-model:current-page="state.tableData.param.pageNum" background
</el-col> v-model:page-size="state.tableData.param.pageSize" layout="total, sizes, prev, pager, next"
</el-row> :total="state.tableData.total">
<el-dialog v-model="state.dialogVisible" title="Send Email" width="60%" :before-close="handleClose"> </el-pagination>
<el-form-item label="Subject:" > </el-card>
<el-input v-model="state.email.subject" placeholder="Please enter the Subject"></el-input> </el-col>
</el-form-item> </el-row>
<!-- <el-form-item label="Content:" > --> <el-dialog v-model="state.dialogVisible" title="Send Email" width="60%" :before-close="handleClose">
<el-form-item label="Subject:">
<el-input v-model="state.email.subject" placeholder="Please enter the Subject"></el-input>
</el-form-item>
<!-- <el-form-item label="Content:" > -->
<QuillEditor ref="myQuillEditor" <QuillEditor ref="myQuillEditor" theme="snow" v-model:content="state.email.text" :options="state.options"
theme="snow" contentType="html" @update:content="setValue()" style="height:500px ;" />
v-model:content="state.email.text" <!-- </el-form-item> -->
:options="state.options" <template #footer>
contentType="html" <span class="dialog-footer">
@update:content="setValue()" <el-button @click="state.dialogVisible = false">Cancel</el-button>
style="height:500px ;" <el-button type="primary" @click="send()" v-if="state.email.status != 1">
/> Send
<!-- </el-form-item> --> </el-button>
<template #footer> </span>
<span class="dialog-footer"> </template>
<el-button @click="state.dialogVisible = false">Cancel</el-button> </el-dialog>
<el-button type="primary" @click="send()" v-if="state.email.status != 1"> </el-config-provider>
Send
</el-button>
</span>
</template>
</el-dialog>
</el-config-provider>
</div> </div>
</template> </template>
<script setup name="contact"> <script setup name="contact">
import { getList, remove,emailSend } from '/@/api/contact/index' import { getList, remove, emailSend } from '/@/api/contact/index'
import { ElMessageBox, ElMessage } from 'element-plus'; import { ElMessageBox, ElMessage } from 'element-plus';
import { ref, reactive, onMounted, nextTick,toRaw } from 'vue'; import { ref, reactive, onMounted, nextTick, toRaw } from 'vue';
import en from 'element-plus/dist/locale/en.mjs' import en from 'element-plus/dist/locale/en.mjs'
import { QuillEditor } from '@vueup/vue-quill' import { QuillEditor } from '@vueup/vue-quill'
import '@vueup/vue-quill/dist/vue-quill.snow.css' import '@vueup/vue-quill/dist/vue-quill.snow.css'
@ -116,7 +115,7 @@ const state = reactive({
}, },
selected: [], selected: [],
dialogVisible: false, dialogVisible: false,
options:{ options: {
modules: { modules: {
toolbar: [ toolbar: [
['bold', 'italic', 'underline', 'strike'], ['bold', 'italic', 'underline', 'strike'],
@ -133,20 +132,20 @@ const state = reactive({
}, },
placeholder: '请输入内容...' placeholder: '请输入内容...'
}, },
email:{ email: {
subject:'Thank You for Your Support', subject: 'Thank You for Your Support',
text:'Dear Rising Sun,'+ text: 'Dear Rising Sun,' +
'I would like to express my heartfelt gratitude to you for your kind support and assistance during my recent project. I appreciate the time and effort you have dedicated to helping me with technical and news-related issues.'+ 'I would like to express my heartfelt gratitude to you for your kind support and assistance during my recent project. I appreciate the time and effort you have dedicated to helping me with technical and news-related issues.' +
'It has been a pleasure working with such a knowledgeable and professional individual like you. Your expertise and guidance have proven to be invaluable to me, and I am truly grateful for your assistance throughout the process.'+ 'It has been a pleasure working with such a knowledgeable and professional individual like you. Your expertise and guidance have proven to be invaluable to me, and I am truly grateful for your assistance throughout the process.' +
'Once again, thank you so much for your help and cooperation. I look forward to collaborating with you again in the future.'+ 'Once again, thank you so much for your help and cooperation. I look forward to collaborating with you again in the future.' +
' Best regards,'+ ' Best regards,' +
' yyhouc' ' yyhouc'
} , },
// //
}); });
const setValue = () => { const setValue = () => {
const text = toRaw(myQuillEditor.value).getHTML() const text = toRaw(myQuillEditor.value).getHTML()
console.log(text) console.log(text)
} }
// //
const initTableData = () => { const initTableData = () => {
@ -174,7 +173,7 @@ const onOpenEdit = (row) => {
}; };
const send = () => { const send = () => {
state.email.email="792163605@qq.com" state.email.email = "792163605@qq.com"
emailSend(state.email).then(res => { emailSend(state.email).then(res => {
ElMessage.success('发送成功'); ElMessage.success('发送成功');
state.dialogVisible = false; state.dialogVisible = false;
@ -218,9 +217,8 @@ onMounted(() => {
}); });
</script> </script>
<style> <style>
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -224,7 +224,7 @@ onMounted(() => {
getTableData(); getTableData();
}); });
</script> </script>
<style> <style scoped lang="scss">
.demo-tabs>.el-tabs__content { .demo-tabs>.el-tabs__content {
padding: 32px; padding: 32px;
color: #6b778c; color: #6b778c;
@ -242,7 +242,7 @@ onMounted(() => {
} }
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -1,7 +1,6 @@
<template> <template>
<div class="system-user-container" style="width:calc(100% - 10px) !important ;">
<div class="system-user-container" style="width:calc(100% - 10px) !important ;"> <el-config-provider :locale="en">
<el-config-provider :locale="en">
<el-row :gutter="10"> <el-row :gutter="10">
<el-col :span="24"> <el-col :span="24">
<el-card shadow="hover"> <el-card shadow="hover">
@ -54,8 +53,8 @@
<el-table-column prop="reviewTime" label="Review Time"></el-table-column> <el-table-column prop="reviewTime" label="Review Time"></el-table-column>
<el-table-column label="Operate" width="140"> <el-table-column label="Operate" width="140">
<template #default="scope"> <template #default="scope">
<el-button :style='scope.row.reviewTime?"display:none;":"" ' size="small" text type="primary" <el-button :style='scope.row.reviewTime ? "display:none;" : ""' size="small" text
@click="onOpenEdit(scope.row)">Review</el-button> type="primary" @click="onOpenEdit(scope.row)">Review</el-button>
<el-button :disabled="scope.row.userName === 'admin'" size="small" text type="primary" <el-button :disabled="scope.row.userName === 'admin'" size="small" text type="primary"
@click="onRowDel(scope.row)">Delete</el-button> @click="onRowDel(scope.row)">Delete</el-button>
</template> </template>
@ -64,20 +63,19 @@
<el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange"
class="mt15" :pager-count="3" :page-sizes="[10, 20, 30]" class="mt15" :pager-count="3" :page-sizes="[10, 20, 30]"
v-model:current-page="state.tableData.param.pageNum" background v-model:current-page="state.tableData.param.pageNum" background
v-model:page-size="state.tableData.param.pageSize" v-model:page-size="state.tableData.param.pageSize" layout="total, sizes, prev, pager, next"
layout="total, sizes, prev, pager, next" :total="state.tableData.total"> :total="state.tableData.total">
</el-pagination> </el-pagination>
</el-card> </el-card>
</el-col> </el-col>
</el-row> </el-row>
</el-config-provider> </el-config-provider>
</div> </div>
</template> </template>
<script setup name="systemUser"> <script setup name="systemUser">
import en from 'element-plus/dist/locale/en.mjs' import en from 'element-plus/dist/locale/en.mjs'
import { getList, remove ,review } from '/@/api/tool/index' import { getList, remove, review } from '/@/api/tool/index'
import { ElMessageBox, ElMessage } from 'element-plus'; import { ElMessageBox, ElMessage } from 'element-plus';
import { reactive, ref, onMounted, nextTick } from 'vue'; import { reactive, ref, onMounted, nextTick } from 'vue';
const AddRef = ref(); const AddRef = ref();
@ -126,13 +124,13 @@ const onOpenEdit = (row) => {
cancelButtonText: 'cancel', cancelButtonText: 'cancel',
type: 'warning', type: 'warning',
}) })
.then(() => { .then(() => {
review({id:row.id}).then(res => { review({ id: row.id }).then(res => {
ElMessage.success('success'); ElMessage.success('success');
initTableData(); initTableData();
})
}) })
}) .catch(() => { });
.catch(() => { });
}; };
// //
@ -172,9 +170,8 @@ onMounted(() => {
}); });
</script> </script>
<style> <style>
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -5,27 +5,28 @@
<div class="system-user-search mb15"> <div class="system-user-search mb15">
<el-input size="default" placeholder="Name" style="max-width: 180px" <el-input size="default" placeholder="Name" style="max-width: 180px"
v-model="state.tableData.query.name"> </el-input> v-model="state.tableData.query.name"> </el-input>
<el-button size="default" type="primary" class="ml10" @click="getTableData" > <el-button size="default" type="primary" class="ml10" @click="getTableData">
<el-icon> <el-icon>
<ele-Search /> <ele-Search />
</el-icon> </el-icon>
search search
</el-button> </el-button>
</div> </div>
<el-table :data="state.tableData.data" v-loading="state.tableData.loading" style="width: 100%" @selection-change = "selectionChange"> <el-table :data="state.tableData.data" v-loading="state.tableData.loading" style="width: 100%"
@selection-change="selectionChange">
<el-table-column type="selection" width="60" @select="selectRow" /> <el-table-column type="selection" width="60" @select="selectRow" />
<el-table-column prop="name" label="Name" show-overflow-tooltip></el-table-column> <el-table-column prop="name" label="Name" show-overflow-tooltip></el-table-column>
<el-table-column prop="email" label="E-mail" show-overflow-tooltip></el-table-column> <el-table-column prop="email" label="E-mail" show-overflow-tooltip></el-table-column>
</el-table> </el-table>
<el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" class="mt15" <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" class="mt15"
:pager-count="3" :page-sizes="[10, 20, 30]" v-model:current-page="state.tableData.param.pageNum" :pager-count="3" :page-sizes="[10, 20, 30]" v-model:current-page="state.tableData.param.pageNum"
background v-model:page-size="state.tableData.param.pageSize" background v-model:page-size="state.tableData.param.pageSize" layout="total, sizes, prev, pager, next"
layout="total, sizes, prev, pager, next" :total="state.tableData.total"> :total="state.tableData.total">
</el-pagination> </el-pagination>
</el-card> </el-card>
<template #footer> <template #footer>
<span class="dialog-footer"> <span class="dialog-footer">
<el-button @click="state.isShowDialog = false" >Cancel</el-button> <el-button @click="state.isShowDialog = false">Cancel</el-button>
<el-button type="success" @click="save()"> <el-button type="success" @click="save()">
Save Save
</el-button> </el-button>
@ -37,7 +38,7 @@
<script setup> <script setup>
import { ElMessage } from 'element-plus'; import { ElMessage } from 'element-plus';
import { getUserList,submit } from '/@/api/disasterInfo/index'; import { getUserList, submit } from '/@/api/disasterInfo/index';
import { ref, reactive, onMounted } from 'vue'; import { ref, reactive, onMounted } from 'vue';
const formRef = ref(); const formRef = ref();
@ -81,9 +82,9 @@ const save = async () => {
return; return;
} }
let params = { let params = {
id:state.rowData.id, id: state.rowData.id,
chiefId:state.selectData[0].id, chiefId: state.selectData[0].id,
chiefName:state.selectData[0].name, chiefName: state.selectData[0].name,
}; };
let res = await submit(params); let res = await submit(params);
emit('callback'); emit('callback');
@ -133,7 +134,7 @@ defineExpose({
</script> </script>
<style> <style>
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -118,8 +118,6 @@
<el-input placeholder="请输入内容" style="height:35px;"></el-input> <el-input placeholder="请输入内容" style="height:35px;"></el-input>
</el-container> </el-container>
<Map style="height:350px ; width:100% ;margin-bottom: 10px;" ref="map"></Map>
<MapPage style="height:350px ; width:100% ;margin-bottom: 10px;" ref="mapRef"></MapPage> <MapPage style="height:350px ; width:100% ;margin-bottom: 10px;" ref="mapRef"></MapPage>
<el-form-item label="Disaster Time"> <el-form-item label="Disaster Time">
@ -386,7 +384,7 @@ const getValue = (key) => {
} }
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -2,89 +2,50 @@
<div class="system-role-container layout-padding"> <div class="system-role-container layout-padding">
<div class="system-role-padding layout-padding-auto layout-padding-view"> <div class="system-role-padding layout-padding-auto layout-padding-view">
<div class="system-user-search mb15"> <div class="system-user-search mb15">
<el-input v-model="state.tableData.param.search" <el-input v-model="state.tableData.param.search" size="default" placeholder="请输入角色名称" style="max-width: 180px">
size="default" </el-input>
placeholder="请输入角色名称" <el-button size="default" type="primary" class="ml10">
style="max-width: 180px"> </el-input>
<el-button size="default"
type="primary"
class="ml10">
<el-icon> <el-icon>
<ele-Search /> <ele-Search />
</el-icon> </el-icon>
查询 查询
</el-button> </el-button>
<el-button size="default" <el-button size="default" type="success" class="ml10" @click="onOpenAddRole('add')">
type="success"
class="ml10"
@click="onOpenAddRole('add')">
<el-icon> <el-icon>
<ele-FolderAdd /> <ele-FolderAdd />
</el-icon> </el-icon>
新增角色 新增角色
</el-button> </el-button>
</div> </div>
<el-table :data="state.tableData.data" <el-table :data="state.tableData.data" v-loading="state.tableData.loading" style="width: 100%">
v-loading="state.tableData.loading" <el-table-column type="index" label="序号" width="60" />
style="width: 100%"> <el-table-column prop="roleName" label="角色名称" show-overflow-tooltip></el-table-column>
<el-table-column type="index" <el-table-column prop="roleSign" label="角色标识" show-overflow-tooltip></el-table-column>
label="序号" <el-table-column prop="sort" label="排序" show-overflow-tooltip></el-table-column>
width="60" /> <el-table-column prop="status" label="角色状态" show-overflow-tooltip>
<el-table-column prop="roleName"
label="角色名称"
show-overflow-tooltip></el-table-column>
<el-table-column prop="roleSign"
label="角色标识"
show-overflow-tooltip></el-table-column>
<el-table-column prop="sort"
label="排序"
show-overflow-tooltip></el-table-column>
<el-table-column prop="status"
label="角色状态"
show-overflow-tooltip>
<template #default="scope"> <template #default="scope">
<el-tag type="success" <el-tag type="success" v-if="scope.row.status">启用</el-tag>
v-if="scope.row.status">启用</el-tag> <el-tag type="info" v-else>禁用</el-tag>
<el-tag type="info"
v-else>禁用</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="describe" <el-table-column prop="describe" label="角色描述" show-overflow-tooltip></el-table-column>
label="角色描述" <el-table-column prop="createTime" label="创建时间" show-overflow-tooltip></el-table-column>
show-overflow-tooltip></el-table-column> <el-table-column label="操作" width="100">
<el-table-column prop="createTime"
label="创建时间"
show-overflow-tooltip></el-table-column>
<el-table-column label="操作"
width="100">
<template #default="scope"> <template #default="scope">
<el-button :disabled="scope.row.roleName === '超级管理员'" <el-button :disabled="scope.row.roleName === '超级管理员'" size="small" text type="primary"
size="small" @click="onOpenEditRole('edit', scope.row)">修改</el-button>
text <el-button :disabled="scope.row.roleName === '超级管理员'" size="small" text type="primary"
type="primary" @click="onRowDel(scope.row)">删除</el-button>
@click="onOpenEditRole('edit', scope.row)">修改</el-button>
<el-button :disabled="scope.row.roleName === '超级管理员'"
size="small"
text
type="primary"
@click="onRowDel(scope.row)">删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination @size-change="onHandleSizeChange" <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" class="mt15"
@current-change="onHandleCurrentChange" :pager-count="3" :page-sizes="[10, 20, 30]" v-model:current-page="state.tableData.param.pageNum" background
class="mt15" v-model:page-size="state.tableData.param.pageSize" layout="total, sizes, prev, pager, next"
:pager-count="3" :total="state.tableData.total">
:page-sizes="[10, 20, 30]"
v-model:current-page="state.tableData.param.pageNum"
background
v-model:page-size="state.tableData.param.pageSize"
layout="total, sizes, prev, pager, next"
:total="state.tableData.total">
</el-pagination> </el-pagination>
</div> </div>
<RoleDialog ref="roleDialogRef" <RoleDialog ref="roleDialogRef" @refresh="getTableData()" />
@refresh="getTableData()" />
</div> </div>
</template> </template>
@ -168,15 +129,17 @@ onMounted(() => {
<style scoped lang="scss"> <style scoped lang="scss">
.system-role-container { .system-role-container {
.system-role-padding { .system-role-padding {
padding: 15px; padding: 15px;
.el-table {
flex: 1; .el-table {
} flex: 1;
} }
}
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -149,7 +149,7 @@ onMounted(() => {
} }
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -2,83 +2,63 @@
<div class="system-role-container layout-padding"> <div class="system-role-container layout-padding">
<div class="system-role-padding layout-padding-auto layout-padding-view"> <div class="system-role-padding layout-padding-auto layout-padding-view">
<el-config-provider :locale="en"> <el-config-provider :locale="en">
<div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;"> <div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;">
<el-input size="default" placeholder="please enter manager name" style="max-width: 200px" v-model="state.searchName" <el-input size="default" placeholder="please enter manager name" style="max-width: 200px"
clearable></el-input> v-model="state.searchName" clearable></el-input>
<el-button size="default" type="primary" class="ml10" @click="getTableData"> <el-select v-model="state.status" placeholder="please select data type" style="max-width: 200px"
<el-icon> size="default" clearable>
<ele-Search/> <el-option value= "0" label="Unclaimed"></el-option>
</el-icon> <el-option value= "1" label="Claimed"></el-option>
search </el-select>
</el-button> <el-button size="default" type="primary" class="ml10" @click="getTableData">
<el-button size="default" type="primary" class="ml10" @click="batchAudit"> <el-icon>
<el-icon> <ele-Search />
<ele-EditPen/> </el-icon>
</el-icon> search
batch audit </el-button>
</el-button> <el-button size="default" type="primary" class="ml10" @click="batchAudit">
</div> <el-icon>
<el-table :data="state.tableData.data" <ele-EditPen />
v-loading="state.tableData.loading" </el-icon>
@selection-change="handleSelectionChange" batch audit
style="width: 100%"> </el-button>
<el-table-column type="selection" width="55" /> </div>
<el-table-column type="index" <el-table :data="state.tableData.data" v-loading="state.tableData.loading"
label="ID" @selection-change="handleSelectionChange" style="width: 100%">
width="50" /> <el-table-column type="selection" width="55" />
<el-table-column prop="disasterType" <el-table-column type="index" label="ID" width="50" />
label="DisasterType" <el-table-column prop="disasterType" label="DisasterType" show-overflow-tooltip></el-table-column>
show-overflow-tooltip></el-table-column> <el-table-column prop="disasterCountry" label="DisasterCountry" show-overflow-tooltip></el-table-column>
<el-table-column prop="disasterCountry" <el-table-column prop="disasterKeyword" label="DisasterKeyword" show-overflow-tooltip></el-table-column>
label="DisasterCountry" <el-table-column prop="managerName" label="ManagerName" show-overflow-tooltip></el-table-column>
show-overflow-tooltip></el-table-column> <el-table-column prop="sponsorOrganization" label="SponsorOrganization" show-overflow-tooltip></el-table-column>
<el-table-column prop="disasterKeyword" <el-table-column prop="researchField" label="ResearchField" show-overflow-tooltip></el-table-column>
label="DisasterKeyword" <el-table-column prop="occupation" label="occupation" show-overflow-tooltip></el-table-column>
show-overflow-tooltip></el-table-column> <el-table-column prop="applyTime" label="applyTime" show-overflow-tooltip></el-table-column>
<el-table-column prop="managerName" <el-table-column v-if="state.status == '1'" prop="reviewTime" label="reviewTime" show-overflow-tooltip></el-table-column>
label="ManagerName" <el-table-column v-if="state.status == '0'" prop="Operate" label="Operate" show-overflow-tooltip>
show-overflow-tooltip></el-table-column> <template #default="scope">
<el-table-column prop="sponsorOrganization" <!-- <el-button link type="primary" size="small" @click="handleClick">Detail</el-button>-->
label="SponsorOrganization" <el-button link type="primary" size="small" @click="auditManager(scope.row)">Audit</el-button>
show-overflow-tooltip></el-table-column> </template>
<el-table-column prop="researchField" </el-table-column>
label="ResearchField" </el-table>
show-overflow-tooltip></el-table-column> <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" class="mt15"
<el-table-column prop="occupation" :pager-count="3" :page-sizes="[10, 20, 30]" v-model:current-page="state.tableData.param.pageNum" background
label="occupation" v-model:page-size="state.tableData.param.pageSize" layout="total, sizes, prev, pager, next"
show-overflow-tooltip></el-table-column> :total="state.tableData.total">
<el-table-column prop="Operate" </el-pagination>
label="Operate"
show-overflow-tooltip>
<template #default="scope">
<!-- <el-button link type="primary" size="small" @click="handleClick">Detail</el-button>-->
<el-button link type="primary" size="small" @click="auditManager(scope.row)">Audit</el-button>
</template>
</el-table-column>
</el-table>
<el-pagination @size-change="onHandleSizeChange"
@current-change="onHandleCurrentChange"
class="mt15"
:pager-count="3"
:page-sizes="[10, 20, 30]"
v-model:current-page="state.tableData.param.pageNum"
background
v-model:page-size="state.tableData.param.pageSize"
layout="total, sizes, prev, pager, next"
:total="state.tableData.total">
</el-pagination>
</el-config-provider> </el-config-provider>
</div> </div>
<RoleDialog ref="roleDialogRef" <RoleDialog ref="roleDialogRef" @refresh="getTableData()" />
@refresh="getTableData()" /> <Audit ref="auditRef" @callback="getTableData" />
<Audit ref="auditRef" @callback="getTableData"/>
</div> </div>
</template> </template>
<script lang="ts" setup name="systemRole"> <script lang="ts" setup name="systemRole">
import en from 'element-plus/dist/locale/en.mjs' import en from 'element-plus/dist/locale/en.mjs'
import type { TabsPaneContext } from 'element-plus'; import type { TabsPaneContext } from 'element-plus';
import {getAdminManagerPage,auditData} from '/@/api/response/adminManager.js'; import { getAdminManagerPage, auditData } from '/@/api/response/adminManager.js';
import Audit from './component/audit.vue'; import Audit from './component/audit.vue';
const activeName = ref('first'); const activeName = ref('first');
const auditRef = ref(); const auditRef = ref();
@ -95,8 +75,9 @@ const RoleDialog = defineAsyncComponent(() => import('/@/views/system/role/dialo
// //
const roleDialogRef = ref(); const roleDialogRef = ref();
const state = reactive({ const state = reactive({
multipleSelection:[], status:"0",
searchName:'', multipleSelection: [],
searchName: '',
tableData: { tableData: {
data: [], data: [],
total: 0, total: 0,
@ -113,7 +94,7 @@ const handleSelectionChange = (val) => {
} }
// //
const auditManager = (row) => { const auditManager = (row) => {
auditRef.value.openDialog([{...row}]); auditRef.value.openDialog([{ ...row }]);
/*ElMessageBox.confirm(`This operation will audit the disaster data${row.disasterType}Whether to continue?`, 'tip', { /*ElMessageBox.confirm(`This operation will audit the disaster data${row.disasterType}Whether to continue?`, 'tip', {
confirmButtonText: 'confirm', confirmButtonText: 'confirm',
cancelButtonText: 'cancel', cancelButtonText: 'cancel',
@ -130,7 +111,7 @@ const auditManager = (row) => {
// //
const getTableData = () => { const getTableData = () => {
state.tableData.loading = true; state.tableData.loading = true;
getAdminManagerPage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"managerName":state.searchName}).then(res=>{ getAdminManagerPage(state.tableData.param.pageNum, state.tableData.param.pageSize, { "managerName": state.searchName,"status": state.status}).then(res => {
state.tableData.data = res.records; state.tableData.data = res.records;
state.tableData.total = res.total; state.tableData.total = res.total;
}) })
@ -149,7 +130,7 @@ const onOpenEditRole = (type, row) => {
}; };
// //
const batchAudit = () => { const batchAudit = () => {
if(state.multipleSelection.length == 0){ if (state.multipleSelection.length == 0) {
ElMessage.warning("Select the data to be operated first"); ElMessage.warning("Select the data to be operated first");
return false; return false;
} }
@ -162,13 +143,13 @@ const deleteUser = (row) => {
cancelButtonText: 'cancel', cancelButtonText: 'cancel',
type: 'warning', type: 'warning',
}) })
.then(() => { .then(() => {
/* remove(row.id).then(res=>{ /* remove(row.id).then(res=>{
getTableData(); getTableData();
ElMessage.success('Deleted successfully'); ElMessage.success('Deleted successfully');
})*/ })*/
}) })
.catch(() => {}); .catch(() => { });
}; };
// //
const onHandleSizeChange = (val) => { const onHandleSizeChange = (val) => {
@ -185,8 +166,13 @@ onMounted(() => {
getTableData(); getTableData();
}); });
</script> </script>
<style> <style scoped lang="scss">
.demo-tabs > .el-tabs__content { .mt15 {
display: flex;
justify-content: end;
}
.demo-tabs>.el-tabs__content {
padding: 32px; padding: 32px;
color: #6b778c; color: #6b778c;
font-size: 32px; font-size: 32px;
@ -194,15 +180,12 @@ onMounted(() => {
} }
.system-role-container { .system-role-container {
.system-role-padding { .system-role-padding {
padding: 15px; padding: 15px;
.el-table {
flex: 1; .el-table {
} flex: 1;
} }
} }
.mt15 {
float: right;
margin-bottom: 15px;
} }
</style> </style>

View File

@ -126,7 +126,7 @@ defineExpose({
<style scoped> <style scoped>
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -1,75 +1,62 @@
<template> <template>
<el-config-provider :locale="en"> <el-config-provider :locale="en">
<el-drawer <el-drawer v-model="state.table" title="Management Disaster" direction="rtl" size="50%">
v-model="state.table" <div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;">
title="Management Disaster" <el-input size="default" placeholder="please enter disaster type" style="max-width: 190px"
direction="rtl" v-model="state.searchName" clearable></el-input>
size="50%" <el-button size="default" type="primary" class="ml10" @click="getTableData">
> <el-icon>
<div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;"> <ele-Search />
<el-input size="default" placeholder="please enter disaster type" style="max-width: 190px" v-model="state.searchName" </el-icon>
clearable></el-input> search
<el-button size="default" type="primary" class="ml10" @click="getTableData"> </el-button>
<el-icon> <el-button size="default" type="success" class="ml10" @click="addDisaster">
<ele-Search/> <el-icon>
</el-icon> <ele-FolderAdd />
search </el-icon>
</el-button> add
<el-button size="default" type="success" class="ml10" @click="addDisaster"> </el-button>
<el-icon> <el-button size="default" type="danger" class="ml10" @click="batchDelete">
<ele-FolderAdd/> <el-icon>
</el-icon> <ele-Delete />
add </el-icon>
</el-button> batch delete
<el-button size="default" type="danger" class="ml10" @click="batchDelete"> </el-button>
<el-icon> </div>
<ele-Delete/> <el-table :data="state.tableData.data" @selection-change="handleSelectionChange">
</el-icon> <el-table-column type="selection" width="55" />
batch delete <el-table-column property="dictValue" label="DisasterType" width="150" />
</el-button> <el-table-column property="disasterCountry" label="DisasterCountry" width="200" />
</div> <el-table-column property="disasterTime" label="DisasterTime" />
<el-table :data="state.tableData.data" @selection-change="handleSelectionChange"> <el-table-column prop="Operate" label="Operate" show-overflow-tooltip>
<el-table-column type="selection" width="55" /> <template #default="scope">
<el-table-column property="dictValue" label="DisasterType" width="150" /> <el-button link type="primary" size="small" @click="deleteDisaster(scope.row)">Delete</el-button>
<el-table-column property="disasterCountry" label="DisasterCountry" width="200" /> </template>
<el-table-column property="disasterTime" label="DisasterTime" /> </el-table-column>
<el-table-column prop="Operate" </el-table>
label="Operate" <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" class="mt15"
show-overflow-tooltip> :pager-count="3" :page-sizes="[10, 20, 30]" v-model:current-page="state.tableData.param.pageNum" background
<template #default="scope"> v-model:page-size="state.tableData.param.pageSize" layout="total, sizes, prev, pager, next"
<el-button link type="primary" size="small" @click="deleteDisaster(scope.row)">Delete</el-button> :total="state.tableData.total">
</template> </el-pagination>
</el-table-column> <DisasterInfo ref="disasterInfoRef" @callback="getTableData" />
</el-table> </el-drawer>
<el-pagination @size-change="onHandleSizeChange"
@current-change="onHandleCurrentChange"
class="mt15"
:pager-count="3"
:page-sizes="[10, 20, 30]"
v-model:current-page="state.tableData.param.pageNum"
background
v-model:page-size="state.tableData.param.pageSize"
layout="total, sizes, prev, pager, next"
:total="state.tableData.total">
</el-pagination>
<DisasterInfo ref="disasterInfoRef" @callback="getTableData"/>
</el-drawer>
</el-config-provider> </el-config-provider>
</template> </template>
<script setup> <script setup>
import en from 'element-plus/dist/locale/en.mjs' import en from 'element-plus/dist/locale/en.mjs'
import {reactive, ref} from "vue"; import { reactive, ref } from "vue";
import DisasterInfo from './disasterInfo.vue'; import DisasterInfo from './disasterInfo.vue';
import {getPage,removeManage} from '/@/api/disasterInfo/index.js'; import { getPage, removeManage } from '/@/api/disasterInfo/index.js';
import {ElMessage, ElMessageBox} from "element-plus"; import { ElMessage, ElMessageBox } from "element-plus";
const disasterInfoRef = ref(); const disasterInfoRef = ref();
const state = reactive({ const state = reactive({
table:false, table: false,
loading:false, loading: false,
userId:null, userId: null,
multipleSelection:[], multipleSelection: [],
searchName:'', searchName: '',
tableData: { tableData: {
data: [], data: [],
total: 0, total: 0,
@ -89,7 +76,7 @@ const addDisaster = () => {
} }
//chief //chief
const batchDelete = () => { const batchDelete = () => {
if(state.multipleSelection.length == 0){ if (state.multipleSelection.length == 0) {
ElMessage.warning("Select the data to be operated first"); ElMessage.warning("Select the data to be operated first");
return false; return false;
} }
@ -98,14 +85,14 @@ const batchDelete = () => {
cancelButtonText: 'cancel', cancelButtonText: 'cancel',
type: 'warning', type: 'warning',
}) })
.then(() => { .then(() => {
let id = state.multipleSelection.map(item=>({id:item.id,chiefId:null})) let id = state.multipleSelection.map(item => ({ id: item.id, chiefId: null }))
removeManage(id).then(res=>{ removeManage(id).then(res => {
getTableData(); getTableData();
ElMessage.success('delete successfully'); ElMessage.success('delete successfully');
})
}) })
.catch(() => {}); })
.catch(() => { });
} }
const deleteDisaster = (row) => { const deleteDisaster = (row) => {
ElMessageBox.confirm(`This operation will delete the disaster${row.dictValue}Whether to continue?`, 'tip', { ElMessageBox.confirm(`This operation will delete the disaster${row.dictValue}Whether to continue?`, 'tip', {
@ -113,14 +100,14 @@ const deleteDisaster = (row) => {
cancelButtonText: 'cancel', cancelButtonText: 'cancel',
type: 'warning', type: 'warning',
}) })
.then(() => { .then(() => {
let delData = [{"id":row.id,"cheif":null}] let delData = [{ "id": row.id, "cheif": null }]
removeManage(delData).then(res=>{ removeManage(delData).then(res => {
getTableData(); getTableData();
ElMessage.success('Deleted successfully'); ElMessage.success('Deleted successfully');
})
}) })
.catch(() => {}); })
.catch(() => { });
} }
// //
const openDialog = (userId) => { const openDialog = (userId) => {
@ -130,7 +117,7 @@ const openDialog = (userId) => {
}; };
// //
const getTableData = () => { const getTableData = () => {
getPage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"chiefIdEquals":state.userId,"disasterType":state.searchName}).then(res=>{ getPage(state.tableData.param.pageNum, state.tableData.param.pageSize, { "chiefIdEquals": state.userId, "disasterType": state.searchName }).then(res => {
state.tableData.data = res.records; state.tableData.data = res.records;
state.tableData.total = res.total; state.tableData.total = res.total;
}) })
@ -155,7 +142,7 @@ defineExpose({
<style scoped> <style scoped>
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>

View File

@ -235,7 +235,7 @@ onMounted(() => {
} }
} }
.mt15 { .mt15 {
float: right; display: flex;
margin-bottom: 15px; justify-content: end;
} }
</style> </style>