Merge branch 'main' of http://47.92.168.204:3000/VoRDM/vordm-admin into main
This commit is contained in:
commit
36563a4679
|
@ -0,0 +1,84 @@
|
||||||
|
import request, {moduleName} from '/@/utils/request';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询上传数据对应的灾害分页列表
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getDisasterPage = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/otherData/queryDisasterPage',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询上传数据分页列表
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getOtherDataPage = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/otherData/pages',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 上传基础数据
|
||||||
|
* @param data
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const uploadData = (data) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/otherData/upload',
|
||||||
|
method: 'post',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'multipart/form-data'
|
||||||
|
},
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增管理员
|
||||||
|
* @param data
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const auditData = (data) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/otherData/audit',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除
|
||||||
|
* @param id
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const deleteData = (id) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/otherData/remove',
|
||||||
|
method: 'delete',
|
||||||
|
params:{
|
||||||
|
id
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
|
@ -0,0 +1,74 @@
|
||||||
|
import request, {moduleName} from '/@/utils/request';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询上传数据对应的灾害分页列表
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getDisasterPage = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/visualData/queryDisasterPage',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据灾害id查询图片数据
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getPicturePage = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/pictureInfo/page',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 上传基础数据
|
||||||
|
* @param data
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const uploadData = (data) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/pictureInfo/upload',
|
||||||
|
method: 'post',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'multipart/form-data'
|
||||||
|
},
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据灾害id查询图片数据
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const delPicture = (id) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/pictureInfo/remove',
|
||||||
|
method: 'delete',
|
||||||
|
params: {
|
||||||
|
id
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
|
@ -0,0 +1,104 @@
|
||||||
|
import request, {moduleName} from '/@/utils/request';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询上传数据对应的灾害分页列表
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getDisasterPage = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/visualData/queryDisasterPage',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据灾害id查询词云分页
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getWordClouds = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/visualData/wordCloudPage',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据灾害id查询热点分页
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getHotspot = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/visualData/hotspotPages',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 上传基础数据
|
||||||
|
* @param data
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const uploadData = (data) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/visualData/upload',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增管理员
|
||||||
|
* @param data
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const auditData = (data) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/visualData/audit',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据灾害id查询图片数据
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const delData = (id,type) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/visualData/remove',
|
||||||
|
method: 'delete',
|
||||||
|
params: {
|
||||||
|
id,
|
||||||
|
type
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
|
@ -9,7 +9,7 @@ import request, {moduleName} from '/@/utils/request';
|
||||||
*/
|
*/
|
||||||
export const getAdminManagerPage = (current,size,params) => {
|
export const getAdminManagerPage = (current,size,params) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/' + moduleName + '/adminManager/pages',
|
url: '/api/' + moduleName + '/ui/adminManager/pages',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: {
|
params: {
|
||||||
current,
|
current,
|
||||||
|
@ -26,7 +26,7 @@ export const getAdminManagerPage = (current,size,params) => {
|
||||||
*/
|
*/
|
||||||
export const auditData = (data) => {
|
export const auditData = (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/' + moduleName + '/adminManager/audit',
|
url: '/api/' + moduleName + '/ui/adminManager/audit',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
@ -35,7 +35,7 @@ export const auditData = (data) => {
|
||||||
|
|
||||||
export const remove = (ids) => {
|
export const remove = (ids) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/' + moduleName + '/administrator/delete',
|
url: '/api/' + moduleName + '/ui/administrator/delete',
|
||||||
method: 'delete',
|
method: 'delete',
|
||||||
params: {
|
params: {
|
||||||
ids,
|
ids,
|
||||||
|
|
|
@ -9,7 +9,7 @@ import request, {moduleName} from '/@/utils/request';
|
||||||
*/
|
*/
|
||||||
export const getAdminPage = (current,size,params) => {
|
export const getAdminPage = (current,size,params) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/' + moduleName + '/administrator/pages',
|
url: '/api/' + moduleName + '/ui/administrator/pages',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: {
|
params: {
|
||||||
current,
|
current,
|
||||||
|
@ -26,7 +26,7 @@ export const getAdminPage = (current,size,params) => {
|
||||||
*/
|
*/
|
||||||
export const addAdmin = (data) => {
|
export const addAdmin = (data) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/' + moduleName + '/administrator/add',
|
url: '/api/' + moduleName + '/ui/administrator/add',
|
||||||
method: 'post',
|
method: 'post',
|
||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
|
@ -35,7 +35,7 @@ export const addAdmin = (data) => {
|
||||||
|
|
||||||
export const remove = (ids) => {
|
export const remove = (ids) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/' + moduleName + '/administrator/delete',
|
url: '/api/' + moduleName + '/ui/administrator/delete',
|
||||||
method: 'delete',
|
method: 'delete',
|
||||||
params: {
|
params: {
|
||||||
ids,
|
ids,
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
import request, {moduleName} from '/@/utils/request';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询上传数据对应的灾害分页列表
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getDisasterPage = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/dataUpload/queryDisasterPage',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询上传数据分页列表
|
||||||
|
* @param current
|
||||||
|
* @param size
|
||||||
|
* @param params
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const getDataUploadPage = (current,size,params) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/dataUpload/pages',
|
||||||
|
method: 'get',
|
||||||
|
params: {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
...params
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增管理员
|
||||||
|
* @param data
|
||||||
|
* @returns {Promise<AxiosResponse<any>>}
|
||||||
|
*/
|
||||||
|
export const auditData = (data) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/' + moduleName + '/ui/dataUpload/audit',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
};
|
|
@ -1,14 +1,17 @@
|
||||||
import request from '/@/utils/request';
|
import request from '/@/utils/request';
|
||||||
import {moduleName} from '/@/utils/request';
|
import {moduleName} from '/@/utils/request';
|
||||||
export const getList = (current, size, param) => {
|
export const getList = (current, size, param) => {
|
||||||
|
let params = {
|
||||||
|
current,
|
||||||
|
size,
|
||||||
|
};
|
||||||
|
if(param){
|
||||||
|
params = Object.assign(params, param);
|
||||||
|
}
|
||||||
return request({
|
return request({
|
||||||
url: '/api/'+moduleName+'/ui/tool/list',
|
url: '/api/'+moduleName+'/ui/tool/list',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: {
|
params: params,
|
||||||
current,
|
|
||||||
size,
|
|
||||||
param,
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
export const submit = (row) => {
|
export const submit = (row) => {
|
||||||
|
@ -37,3 +40,10 @@ export const detail = (id) => {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
export const review = (data) => {
|
||||||
|
return request({
|
||||||
|
url: '/api/'+moduleName+'/ui/tool/review',
|
||||||
|
method: 'post',
|
||||||
|
data:data
|
||||||
|
})
|
||||||
|
}
|
|
@ -0,0 +1,13 @@
|
||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "index"
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -77,22 +77,6 @@ export const dynamicRoutes = [
|
||||||
zh: '用户响应管理',
|
zh: '用户响应管理',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: '/responseManagement/administrator',
|
|
||||||
name: 'administrator-management',
|
|
||||||
component: () => import('/@/views/responseManagement/administrator/addAdministrator.vue'),
|
|
||||||
meta: {
|
|
||||||
title: 'Administrator management',
|
|
||||||
isLink: '',
|
|
||||||
isHide: false,
|
|
||||||
isKeepAlive: true,
|
|
||||||
isAffix: false,
|
|
||||||
isIframe: false,
|
|
||||||
roles: ['admin', 'chief'],
|
|
||||||
icon: 'ele-ColdDrink',
|
|
||||||
zh: '管理员管理',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: '/responseManagement/dataUpload',
|
path: '/responseManagement/dataUpload',
|
||||||
name: 'data-upload-management',
|
name: 'data-upload-management',
|
||||||
|
@ -208,6 +192,38 @@ export const dynamicRoutes = [
|
||||||
zh: '其他数据服务',
|
zh: '其他数据服务',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/dataService/visualData',
|
||||||
|
name: 'visualData',
|
||||||
|
component: () => import('/@/views/dataService/visualData/index.vue'),
|
||||||
|
meta: {
|
||||||
|
title: 'visual data service',
|
||||||
|
isLink: '',
|
||||||
|
isHide: false,
|
||||||
|
isKeepAlive: true,
|
||||||
|
isAffix: false,
|
||||||
|
isIframe: false,
|
||||||
|
roles: ['admin', 'chief'],
|
||||||
|
icon: 'ele-ColdDrink',
|
||||||
|
zh: '其他数据服务',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/dataService/pictureInfo',
|
||||||
|
name: 'pictureInfo',
|
||||||
|
component: () => import('/@/views/dataService/pictureInfo/index.vue'),
|
||||||
|
meta: {
|
||||||
|
title: 'picture info service',
|
||||||
|
isLink: '',
|
||||||
|
isHide: false,
|
||||||
|
isKeepAlive: true,
|
||||||
|
isAffix: false,
|
||||||
|
isIframe: false,
|
||||||
|
roles: ['admin', 'chief'],
|
||||||
|
icon: 'ele-ColdDrink',
|
||||||
|
zh: '其他数据服务',
|
||||||
|
},
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -227,6 +243,22 @@ export const dynamicRoutes = [
|
||||||
zh: '系统管理',
|
zh: '系统管理',
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
|
{
|
||||||
|
path: '/systemManagement/chief/administrator',
|
||||||
|
name: 'chief-administrator-management',
|
||||||
|
component: () => import('/@/views/systemManagement/chiefAdministrator/index.vue'),
|
||||||
|
meta: {
|
||||||
|
title: 'Chief Administrator management',
|
||||||
|
isLink: '',
|
||||||
|
isHide: false,
|
||||||
|
isKeepAlive: true,
|
||||||
|
isAffix: false,
|
||||||
|
isIframe: false,
|
||||||
|
roles: ['admin', 'chief'],
|
||||||
|
icon: 'ele-ColdDrink',
|
||||||
|
zh: '管理员管理',
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/systemManagement/administrator',
|
path: '/systemManagement/administrator',
|
||||||
name: 'administratorManagement',
|
name: 'administratorManagement',
|
||||||
|
|
|
@ -0,0 +1,185 @@
|
||||||
|
<template>
|
||||||
|
<el-dialog title="upload" v-model="state.isShowDialog" width="700px">
|
||||||
|
<el-form :model="state.ruleForm" size="default" label-width="120px" :rules="rules" ref="adminAddFormRef">
|
||||||
|
<el-form-item label="upload picture" prop="img">
|
||||||
|
<el-upload
|
||||||
|
ref="upFileRef"
|
||||||
|
class="upload-demo"
|
||||||
|
drag
|
||||||
|
accept="image/*"
|
||||||
|
action="#"
|
||||||
|
multiple
|
||||||
|
:http-request="uploadPic"
|
||||||
|
:on-remove="removePic"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
>
|
||||||
|
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
|
||||||
|
<div class="el-upload__text">
|
||||||
|
Drop file here or <em>click to upload</em>
|
||||||
|
</div>
|
||||||
|
<template #tip>
|
||||||
|
<div class="el-upload__tip">
|
||||||
|
image files with a size less than 1GB
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-upload>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="type" label="data type">
|
||||||
|
<el-select v-model="state.ruleForm.type" class="m-2" placeholder="please select data type">
|
||||||
|
<el-option
|
||||||
|
v-for="item in options"
|
||||||
|
:key="item.value"
|
||||||
|
:label="item.label"
|
||||||
|
:value="item.value"
|
||||||
|
/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="remark" label="data details">
|
||||||
|
<el-input v-model="state.ruleForm.remark" class="m-2" placeholder="please enter data details" :rows="3" type="textarea" style="width:220px;"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<span class="dialog-footer">
|
||||||
|
<el-button @click="onCancel" size="default">cancel</el-button>
|
||||||
|
<el-button type="primary" @click="onSubmit" size="default" :loading="state.isLoading">upload</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {reactive, ref} from "vue";
|
||||||
|
import {uploadData} from '/@/api/data/otherData.js';
|
||||||
|
import {ElMessage} from "element-plus";
|
||||||
|
import { UploadFilled } from '@element-plus/icons-vue'
|
||||||
|
const upFileRef = ref();
|
||||||
|
const options = [
|
||||||
|
{
|
||||||
|
value: '0',
|
||||||
|
label: 'basic data',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: '1',
|
||||||
|
label: 'responded report',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: '2',
|
||||||
|
label: 'cartographic product',
|
||||||
|
}
|
||||||
|
]
|
||||||
|
const emit = defineEmits(['callback']);
|
||||||
|
const adminAddFormRef = ref();
|
||||||
|
const state = reactive({
|
||||||
|
isShowDialog: false,
|
||||||
|
isLoading:false,
|
||||||
|
ruleForm: {
|
||||||
|
name: '', //标样名称
|
||||||
|
code: '',//标样编号
|
||||||
|
states: '',//标样状态
|
||||||
|
tableData: [],
|
||||||
|
},
|
||||||
|
tableData: [],
|
||||||
|
//字典值
|
||||||
|
dictData: [],
|
||||||
|
unitData:[],
|
||||||
|
standardId: '',
|
||||||
|
detectionData: [],
|
||||||
|
disasterId:null,
|
||||||
|
dataForm:new FormData(),
|
||||||
|
fileArray:[],
|
||||||
|
})
|
||||||
|
const validImg = (rule, value, callback) => {
|
||||||
|
if(state.fileArray.length>0){
|
||||||
|
adminAddFormRef.value.clearValidate('img')
|
||||||
|
callback();
|
||||||
|
}else{
|
||||||
|
return callback(new Error('please upload image'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//校验规则
|
||||||
|
const rules = reactive({
|
||||||
|
img: [
|
||||||
|
{required: true,trigger: 'change',validator:validImg}
|
||||||
|
],
|
||||||
|
type: [
|
||||||
|
{required: true, message: 'please select data type', trigger: 'change'}
|
||||||
|
],
|
||||||
|
remark:[
|
||||||
|
{required: true, message: 'please select data details', trigger: 'blur'}
|
||||||
|
],
|
||||||
|
})
|
||||||
|
//图片上传之前
|
||||||
|
const beforeUpload = (file) => {
|
||||||
|
const isLt1GB = file.size / 1024 / 1024 / 1024 < 1;
|
||||||
|
if (!isLt1GB) {
|
||||||
|
ElMessage.warning('The size of the uploaded picture cannot exceed 1GB!');
|
||||||
|
}
|
||||||
|
return isLt1GB;
|
||||||
|
}
|
||||||
|
//手动上传操作
|
||||||
|
const uploadPic = (data) => {
|
||||||
|
state.fileArray.push(data.file);
|
||||||
|
}
|
||||||
|
//移除时
|
||||||
|
const removePic = (data) => {
|
||||||
|
state.fileArray.splice(state.fileArray.findIndex(item=>item.uid===data.raw.uid), 1)
|
||||||
|
console.log(state.fileArray)
|
||||||
|
}
|
||||||
|
//重置表单
|
||||||
|
const resetField = () => {
|
||||||
|
adminAddFormRef.value.resetFields();
|
||||||
|
state.fileArray = [];
|
||||||
|
upFileRef.value.clearFiles();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 打开弹窗
|
||||||
|
const openDialog = (row) => {
|
||||||
|
state.isShowDialog = true;
|
||||||
|
state.disasterId = row;
|
||||||
|
};
|
||||||
|
// 关闭弹窗
|
||||||
|
const closeDialog = () => {
|
||||||
|
state.isShowDialog = false;
|
||||||
|
//重置表格数据
|
||||||
|
state.ruleForm.tableData = [];
|
||||||
|
resetField();
|
||||||
|
};
|
||||||
|
// 取消
|
||||||
|
const onCancel = () => {
|
||||||
|
closeDialog();
|
||||||
|
};
|
||||||
|
// 新增
|
||||||
|
const onSubmit = () => {
|
||||||
|
adminAddFormRef.value.validate((valid, fields) => {
|
||||||
|
if (valid) {
|
||||||
|
state.isLoading = true;
|
||||||
|
state.fileArray.forEach(item=>{
|
||||||
|
state.dataForm.append('file',item);
|
||||||
|
})
|
||||||
|
state.dataForm.append('type',state.ruleForm.type);
|
||||||
|
state.dataForm.append('remark',state.ruleForm.remark);
|
||||||
|
state.dataForm.append('disasterId',state.disasterId);
|
||||||
|
for(let [a, b] of state.dataForm.entries()){
|
||||||
|
console.log(a, b, '--------------');
|
||||||
|
}
|
||||||
|
uploadData(state.dataForm).then(res => {
|
||||||
|
ElMessage.success("Upload successfully");
|
||||||
|
emit('callback');
|
||||||
|
}).finally(()=>{
|
||||||
|
state.isLoading = false;
|
||||||
|
})
|
||||||
|
closeDialog();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// 暴露变量
|
||||||
|
defineExpose({
|
||||||
|
openDialog,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -1,191 +1,142 @@
|
||||||
<template>
|
<template>
|
||||||
<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">
|
<el-row :gutter="22">
|
||||||
<div class="system-user-search mb15">
|
<el-col :span="10">
|
||||||
<!-- 选择灾害类型下拉框 -->
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
<el-select v-model="value_disastertype"
|
<el-table :data="state.disasterData.data"
|
||||||
size="default"
|
v-loading="state.disasterData.loading"
|
||||||
placeholder="Select disaster type">
|
style="width: 100%"
|
||||||
<el-option v-for="item in options_disastertype"
|
highlight-current-row
|
||||||
:key="item.value"
|
@row-click="tableClick">
|
||||||
:label="item.label"
|
<el-table-column type="index"
|
||||||
:value="item.value" />
|
label="ID"
|
||||||
</el-select>
|
width="50" />
|
||||||
<!-- 选择灾害时间下拉框 -->
|
<el-table-column prop="disasterType"
|
||||||
<el-date-picker v-model="value_disastertime"
|
label="Disaster type"
|
||||||
type="date"
|
show-overflow-tooltip></el-table-column>
|
||||||
placeholder="Select disaster time"
|
<el-table-column prop="disasterKeyword"
|
||||||
class="ml10"
|
label="DisasterKeyword"
|
||||||
size="default" />
|
show-overflow-tooltip></el-table-column>
|
||||||
<!-- 选择灾害事件下拉框 -->
|
</el-table>
|
||||||
<el-select v-model="value_disasterevent"
|
<el-pagination @size-change="onHandleDisasterSizeChange"
|
||||||
size="default"
|
@current-change="onHandleDisasterCurrentChange"
|
||||||
placeholder="Select disaster event"
|
class="mt15"
|
||||||
class="ml10">
|
:pager-count="5"
|
||||||
<el-option v-for="item in options_disasterevent"
|
:page-sizes="[10, 20, 30]"
|
||||||
:key="item.value"
|
v-model:current-page="state.disasterData.param.pageNum"
|
||||||
:label="item.label"
|
background
|
||||||
:value="item.value" />
|
v-model:page-size="state.disasterData.param.pageSize"
|
||||||
</el-select>
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
:total="state.disasterData.total">
|
||||||
<!-- 选择数据类型下拉框 -->
|
</el-pagination>
|
||||||
<el-select v-model="value_datatype"
|
</div>
|
||||||
size="default"
|
</el-col>
|
||||||
placeholder="Select data type"
|
<el-col :span="14">
|
||||||
class="ml10">
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
<el-option v-for="item in options_datatype"
|
<div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;">
|
||||||
:key="item.value"
|
<el-select v-model="state.searchName" placeholder="please select data type" style="max-width: 200px" size="default" clearable>
|
||||||
:label="item.label"
|
<el-option value="1" label="basic data"></el-option>
|
||||||
:value="item.value" />
|
<el-option value="2" label="responded report"></el-option>
|
||||||
</el-select>
|
<el-option value="3" label="cartographic product"></el-option>
|
||||||
<!-- 选择是否可视化下拉框 -->
|
</el-select>
|
||||||
<!-- <el-select v-model="value_visualization" size="default" placeholder="Visualization" class="ml10">
|
<el-button size="default" type="primary" class="ml10" @click="getTableData">
|
||||||
<el-option v-for="item in options_visualization" :key="item.value" :label="item.label" :value="item.value" />
|
<el-icon>
|
||||||
</el-select> -->
|
<ele-Search/>
|
||||||
|
</el-icon>
|
||||||
<!-- <el-input v-model="state.tableData.param.search" size="default" placeholder="请输入角色名称" style="max-width: 180px"> </el-input> -->
|
search
|
||||||
|
</el-button>
|
||||||
<el-button size="default"
|
<el-button size="default" type="success" class="ml10" @click="uploadData">
|
||||||
type="primary"
|
<el-icon>
|
||||||
class="ml10">
|
<ele-Upload/>
|
||||||
<el-icon>
|
</el-icon>
|
||||||
<ele-Search />
|
upload
|
||||||
</el-icon>
|
</el-button>
|
||||||
Search
|
</div>
|
||||||
</el-button>
|
<el-table :data="state.tableData.data"
|
||||||
|
v-loading="state.tableData.loading"
|
||||||
<el-button size="default"
|
style="width: 100%">
|
||||||
type="success"
|
<el-table-column type="index"
|
||||||
class="ml10">
|
label="ID"
|
||||||
<el-icon>
|
width="50" />
|
||||||
<ele-Search />
|
<el-table-column prop="uploaderName"
|
||||||
</el-icon>
|
label="uploader Name"
|
||||||
Upload
|
show-overflow-tooltip></el-table-column>
|
||||||
</el-button>
|
<el-table-column prop="sourceOrganization"
|
||||||
|
label="Organization"
|
||||||
<!-- <el-button size="default" type="success" class="ml10" @click="onOpenAddRole('add')">
|
show-overflow-tooltip></el-table-column>
|
||||||
<el-icon>
|
<el-table-column prop="title"
|
||||||
<ele-FolderAdd />
|
label="Professional title"
|
||||||
</el-icon>
|
show-overflow-tooltip></el-table-column>
|
||||||
新增角色
|
<el-table-column prop="size"
|
||||||
</el-button> -->
|
label="Data size"
|
||||||
</div>
|
show-overflow-tooltip>
|
||||||
<!-- <el-table :data="state.tableData.data" v-loading="state.tableData.loading" style="width: 100%">
|
<template #default="scope">
|
||||||
<el-table-column type="vordmId" label="VoRDM ID" show-overflow-tooltip />
|
{{formatSizeUnits(scope.row.size)}}
|
||||||
<el-table-column prop="disasterKeyword" label="Disaster keyword" show-overflow-tooltip></el-table-column>
|
</template>
|
||||||
<el-table-column prop="disasterTime" label="Disaster time" show-overflow-tooltip></el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="crawlertype" label="Crawler type" show-overflow-tooltip></el-table-column>
|
<el-table-column prop="uploadTime"
|
||||||
<el-table-column prop="crawlerStatus" label="Crawler status" show-overflow-tooltip></el-table-column> -->
|
label="Upload time"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
<!-- 需修改弹出框页面 -->
|
<el-table-column prop="Operate"
|
||||||
<!-- <el-table-column label="Crawler operation" width="100">
|
label="Operate"
|
||||||
<template #default="scope">
|
show-overflow-tooltip>
|
||||||
<el-button size="small" text type="primary" @click="onOpenEditRole('edit', scope.row)">Start</el-button>
|
<template #default="scope">
|
||||||
<el-button size="small" text type="primary" @click="onRowDel(scope.row)">Stop</el-button>
|
<el-button size="small" text type="primary" @click="del(scope.row)">delete</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table> -->
|
</el-table>
|
||||||
|
<el-pagination @size-change="onHandleSizeChange"
|
||||||
<!-- <el-pagination
|
@current-change="onHandleCurrentChange"
|
||||||
@size-change="onHandleSizeChange"
|
class="mt15"
|
||||||
@current-change="onHandleCurrentChange"
|
:pager-count="5"
|
||||||
class="mt15"
|
:page-sizes="[10, 20, 30]"
|
||||||
:pager-count="5"
|
v-model:current-page="state.tableData.param.pageNum"
|
||||||
:page-sizes="[10, 20, 30]"
|
background
|
||||||
v-model:current-page="state.tableData.param.pageNum"
|
v-model:page-size="state.tableData.param.pageSize"
|
||||||
background
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
v-model:page-size="state.tableData.param.pageSize"
|
:total="state.tableData.total">
|
||||||
layout="total, sizes, prev, pager, next, jumper"
|
</el-pagination>
|
||||||
:total="state.tableData.total"
|
</div>
|
||||||
>
|
</el-col>
|
||||||
</el-pagination> -->
|
</el-row>
|
||||||
</div>
|
|
||||||
<RoleDialog ref="roleDialogRef"
|
<RoleDialog ref="roleDialogRef"
|
||||||
@refresh="getTableData()" />
|
@refresh="getTableData()" />
|
||||||
|
<Upload ref="uploadRef" @callback="getTableData"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup name="systemRole">
|
<script lang="ts" setup name="systemRole">
|
||||||
|
import type { TabsPaneContext } from 'element-plus';
|
||||||
|
import Upload from './component/upload.vue';
|
||||||
|
import {getOtherDataPage,getDisasterPage,deleteData} from '/@/api/data/otherData.js'
|
||||||
|
const activeName = ref('first');
|
||||||
|
|
||||||
|
const handleClick = (tab: TabsPaneContext, event: Event) => {
|
||||||
|
console.log(tab, event);
|
||||||
|
};
|
||||||
|
|
||||||
|
//复制内容
|
||||||
import { defineAsyncComponent, reactive, onMounted, ref } from 'vue';
|
import { defineAsyncComponent, reactive, onMounted, ref } from 'vue';
|
||||||
import { ElMessageBox, ElMessage } from 'element-plus';
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
||||||
|
|
||||||
// 引入组件
|
// 引入组件
|
||||||
const RoleDialog = defineAsyncComponent(() => import('/@/views/system/role/dialog.vue'));
|
const RoleDialog = defineAsyncComponent(() => import('/@/views/system/role/dialog.vue'));
|
||||||
const value_disastertype = ref('');
|
const auditRef = ref();
|
||||||
const value_disastertime = ref('');
|
const uploadRef = ref();
|
||||||
const value_datatype = ref('');
|
|
||||||
const value_crawlerstatus = ref('');
|
|
||||||
|
|
||||||
//选择灾害类型下拉框
|
|
||||||
const options_disastertype = [
|
|
||||||
{
|
|
||||||
value: 'Earthquake',
|
|
||||||
label: 'Earthquake',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Hurricane',
|
|
||||||
label: 'Hurricane',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Flood',
|
|
||||||
label: 'Flood',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Volcano',
|
|
||||||
label: 'Volcano',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Drought',
|
|
||||||
label: 'Drought',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Landslide',
|
|
||||||
label: 'Landslide',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
//选择数据类型下拉框
|
|
||||||
const options_datatype = [
|
|
||||||
{
|
|
||||||
value: 'Basic data',
|
|
||||||
label: 'Basic data',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'News picture',
|
|
||||||
label: 'News picture',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Disaster report',
|
|
||||||
label: 'Disaster report',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Disaster mapping',
|
|
||||||
label: 'Disaster mapping',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Word cloud',
|
|
||||||
label: 'Word cloud',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'Hotspot area',
|
|
||||||
label: 'Hotspot area',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
//选择是否可视化下拉框
|
|
||||||
const options_visualization = [
|
|
||||||
{
|
|
||||||
value: 'Yes',
|
|
||||||
label: 'Yes',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
value: 'No',
|
|
||||||
label: 'No',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
// 定义变量内容
|
// 定义变量内容
|
||||||
const roleDialogRef = ref();
|
const roleDialogRef = ref();
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
|
searchName:'',
|
||||||
|
disasterId:null,
|
||||||
|
disasterData: {
|
||||||
|
data: [],
|
||||||
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
search: '',
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
tableData: {
|
tableData: {
|
||||||
data: [],
|
data: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
|
@ -197,46 +148,102 @@ const state = reactive({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
const auditData = (row) => {
|
||||||
|
let id = row.id
|
||||||
|
auditRef.value.openDialog([{"id":id}]);
|
||||||
|
}
|
||||||
|
//格式化字节
|
||||||
|
const formatSize = (size) => {
|
||||||
|
var data = "";
|
||||||
|
if (size < 0.1 * 1024) { //如果小于0.1KB转化成B
|
||||||
|
data = size.toFixed(2) + "B";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024) {//如果小于0.1MB转化成KB
|
||||||
|
data = (size / 1024).toFixed(2) + "KB";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024 * 1024) { //如果小于0.1GB转化成MB
|
||||||
|
data = (size / (1024 * 1024)).toFixed(2) + "MB";
|
||||||
|
} else { //其他转化成GB
|
||||||
|
data = (size / (1024 * 1024 * 1024)).toFixed(2) + "GB";
|
||||||
|
}
|
||||||
|
var sizestr = data + "";
|
||||||
|
var len = sizestr.indexOf("\.");
|
||||||
|
var dec = sizestr.substr(len + 1, 2);
|
||||||
|
if (dec == "00") {//当小数点后为00时 去掉小数部分
|
||||||
|
return sizestr.substring(0, len) + sizestr.substr(len + 3, 2);
|
||||||
|
}
|
||||||
|
return sizestr;
|
||||||
|
}
|
||||||
|
const formatSizeUnits = (size) => {
|
||||||
|
if (size === 0) return '0 B';
|
||||||
|
var k = 1000, // or 1024
|
||||||
|
sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
|
||||||
|
i = Math.floor(Math.log(size) / Math.log(k));
|
||||||
|
|
||||||
|
return (size / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i];
|
||||||
|
}
|
||||||
|
//灾害表格点击事件
|
||||||
|
const tableClick = (row, column, event) => {
|
||||||
|
state.disasterId = row.disasterId;
|
||||||
|
getTableData();
|
||||||
|
}
|
||||||
|
// 初始化灾害表格数据
|
||||||
|
const getDisasterData = () => {
|
||||||
|
state.disasterData.loading = true;
|
||||||
|
getDisasterPage(state.disasterData.param.pageNum,state.disasterData.param.pageSize,{}).then(res=>{
|
||||||
|
state.disasterData.data = res.records;
|
||||||
|
state.disasterData.total = res.total;
|
||||||
|
state.disasterData.loading = false;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 初始化表格数据
|
// 初始化表格数据
|
||||||
const getTableData = () => {
|
const getTableData = () => {
|
||||||
state.tableData.loading = true;
|
state.tableData.loading = true;
|
||||||
const data = [];
|
getOtherDataPage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"disasterId":state.disasterId,"type":state.searchName,"isDeleted":0}).then(res=>{
|
||||||
for (let i = 0; i < 20; i++) {
|
state.tableData.data = res.records;
|
||||||
data.push({
|
state.tableData.total = res.total;
|
||||||
roleName: i === 0 ? '超级管理员' : '主要管理员',
|
})
|
||||||
roleSign: i === 0 ? 'admin' : 'chief',
|
/* state.tableData.data = data;
|
||||||
describe: `测试角色${i + 1}`,
|
state.tableData.total = state.tableData.data.length;*/
|
||||||
sort: i,
|
|
||||||
status: true,
|
|
||||||
createTime: new Date().toLocaleString(),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
state.tableData.data = data;
|
|
||||||
state.tableData.total = state.tableData.data.length;
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
state.tableData.loading = false;
|
state.tableData.loading = false;
|
||||||
}, 500);
|
}, 500);
|
||||||
};
|
};
|
||||||
// 打开新增角色弹窗
|
// 打开上传弹窗
|
||||||
const onOpenAddRole = (type) => {
|
const uploadData = () => {
|
||||||
roleDialogRef.value.openDialog(type);
|
if(state.disasterId == null){
|
||||||
|
ElMessage.warning("Please select the disaster first")
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
uploadRef.value.openDialog(state.disasterId);
|
||||||
};
|
};
|
||||||
// 打开修改角色弹窗
|
// 打开修改角色弹窗
|
||||||
const onOpenEditRole = (type, row) => {
|
const onOpenEditRole = (type, row) => {
|
||||||
roleDialogRef.value.openDialog(type, row);
|
roleDialogRef.value.openDialog(type, row);
|
||||||
};
|
};
|
||||||
// 删除角色
|
// 删除角色
|
||||||
const onRowDel = (row) => {
|
const del = (row) => {
|
||||||
ElMessageBox.confirm(`此操作将永久删除角色名称:“${row.roleName}”,是否继续?`, '提示', {
|
ElMessageBox.confirm(`This action deletes the other data:“${row.title}”,Whether to continue?`, 'tip', {
|
||||||
confirmButtonText: '确认',
|
confirmButtonText: 'confirm',
|
||||||
cancelButtonText: '取消',
|
cancelButtonText: 'cancel',
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
getTableData();
|
deleteData(row.id).then(res=>{
|
||||||
ElMessage.success('删除成功');
|
getTableData();
|
||||||
})
|
ElMessage.success('delete successfully');
|
||||||
.catch(() => { });
|
})
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleDisasterSizeChange = (val) => {
|
||||||
|
state.disasterData.param.pageSize = val;
|
||||||
|
getDisasterData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleDisasterCurrentChange = (val) => {
|
||||||
|
state.disasterData.param.pageNum = val;
|
||||||
|
getDisasterData();
|
||||||
};
|
};
|
||||||
// 分页改变
|
// 分页改变
|
||||||
const onHandleSizeChange = (val) => {
|
const onHandleSizeChange = (val) => {
|
||||||
|
@ -250,17 +257,24 @@ const onHandleCurrentChange = (val) => {
|
||||||
};
|
};
|
||||||
// 页面加载时
|
// 页面加载时
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
getDisasterData();
|
||||||
getTableData();
|
getTableData();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
<style>
|
||||||
|
.demo-tabs > .el-tabs__content {
|
||||||
|
padding: 32px;
|
||||||
|
color: #6b778c;
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
<style scoped lang="scss">
|
|
||||||
.system-role-container {
|
.system-role-container {
|
||||||
.system-role-padding {
|
.system-role-padding {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
.el-table {
|
.el-table {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -0,0 +1,169 @@
|
||||||
|
<template>
|
||||||
|
<el-dialog title="upload" v-model="state.isShowDialog" width="700px">
|
||||||
|
<el-form :model="state.ruleForm" size="default" label-width="150px" :rules="rules" ref="adminAddFormRef">
|
||||||
|
<el-form-item label="upload picture" prop="img">
|
||||||
|
<el-upload
|
||||||
|
ref="upFileRef"
|
||||||
|
class="upload-demo"
|
||||||
|
drag
|
||||||
|
accept="image/*"
|
||||||
|
action="#"
|
||||||
|
multiple
|
||||||
|
:http-request="uploadPic"
|
||||||
|
:on-remove="removePic"
|
||||||
|
:before-upload="beforeUpload"
|
||||||
|
>
|
||||||
|
<el-icon class="el-icon--upload"><upload-filled /></el-icon>
|
||||||
|
<div class="el-upload__text">
|
||||||
|
Drop file here or <em>click to upload</em>
|
||||||
|
</div>
|
||||||
|
<template #tip>
|
||||||
|
<div class="el-upload__tip">
|
||||||
|
image files with a size less than 1GB
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-upload>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="Home page show" prop="isMain">
|
||||||
|
<el-select v-model="state.ruleForm.isMain" class="m-2" placeholder="please select home show">
|
||||||
|
<el-option
|
||||||
|
label="show"
|
||||||
|
value="1"
|
||||||
|
></el-option>
|
||||||
|
<el-option
|
||||||
|
label="not show"
|
||||||
|
value="0"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<span class="dialog-footer">
|
||||||
|
<el-button @click="onCancel" size="default">cancel</el-button>
|
||||||
|
<el-button type="primary" @click="onSubmit" size="default" :loading="state.isLoading">upload</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {reactive, ref} from "vue";
|
||||||
|
import {uploadData} from '/@/api/data/pictureInfo.js';
|
||||||
|
import {ElMessage} from "element-plus";
|
||||||
|
import { UploadFilled } from '@element-plus/icons-vue'
|
||||||
|
const upFileRef = ref();
|
||||||
|
const emit = defineEmits(['callback']);
|
||||||
|
const adminAddFormRef = ref();
|
||||||
|
const state = reactive({
|
||||||
|
isShowDialog: false,
|
||||||
|
isLoading:false,
|
||||||
|
ruleForm: {
|
||||||
|
name: '', //标样名称
|
||||||
|
code: '',//标样编号
|
||||||
|
states: '',//标样状态
|
||||||
|
tableData: [],
|
||||||
|
},
|
||||||
|
tableData: [],
|
||||||
|
//字典值
|
||||||
|
dictData: [],
|
||||||
|
unitData:[],
|
||||||
|
standardId: '',
|
||||||
|
detectionData: [],
|
||||||
|
disasterId:null,
|
||||||
|
dataForm:new FormData(),
|
||||||
|
fileArray:[],
|
||||||
|
})
|
||||||
|
const validImg = (rule, value, callback) => {
|
||||||
|
if(state.fileArray.length>0){
|
||||||
|
adminAddFormRef.value.clearValidate('img')
|
||||||
|
callback();
|
||||||
|
}else{
|
||||||
|
return callback(new Error('please upload image'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//校验规则
|
||||||
|
const rules = reactive({
|
||||||
|
img: [
|
||||||
|
{required: true,trigger: 'change',validator:validImg}
|
||||||
|
],
|
||||||
|
isMain: [
|
||||||
|
{required: true, message: 'please select home page show', trigger: 'change'}
|
||||||
|
],
|
||||||
|
remark:[
|
||||||
|
{required: true, message: 'please select data details', trigger: 'blur'}
|
||||||
|
],
|
||||||
|
})
|
||||||
|
//图片上传之前
|
||||||
|
const beforeUpload = (file) => {
|
||||||
|
const isLt1GB = file.size / 1024 / 1024 / 1024 < 1;
|
||||||
|
if (!isLt1GB) {
|
||||||
|
ElMessage.warning('The size of the uploaded picture cannot exceed 1GB!');
|
||||||
|
}
|
||||||
|
return isLt1GB;
|
||||||
|
}
|
||||||
|
//手动上传操作
|
||||||
|
const uploadPic = (data) => {
|
||||||
|
state.fileArray.push(data.file);
|
||||||
|
}
|
||||||
|
//移除时
|
||||||
|
const removePic = (data) => {
|
||||||
|
state.fileArray.splice(state.fileArray.findIndex(item=>item.uid===data.raw.uid), 1)
|
||||||
|
console.log(state.fileArray)
|
||||||
|
}
|
||||||
|
//重置表单
|
||||||
|
const resetField = () => {
|
||||||
|
adminAddFormRef.value.resetFields();
|
||||||
|
state.fileArray = [];
|
||||||
|
upFileRef.value.clearFiles();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 打开弹窗
|
||||||
|
const openDialog = (row) => {
|
||||||
|
state.isShowDialog = true;
|
||||||
|
state.disasterId = row;
|
||||||
|
};
|
||||||
|
// 关闭弹窗
|
||||||
|
const closeDialog = () => {
|
||||||
|
state.isShowDialog = false;
|
||||||
|
//重置表格数据
|
||||||
|
state.ruleForm.tableData = [];
|
||||||
|
resetField();
|
||||||
|
};
|
||||||
|
// 取消
|
||||||
|
const onCancel = () => {
|
||||||
|
closeDialog();
|
||||||
|
};
|
||||||
|
// 新增
|
||||||
|
const onSubmit = () => {
|
||||||
|
adminAddFormRef.value.validate((valid, fields) => {
|
||||||
|
if (valid) {
|
||||||
|
state.isLoading = true;
|
||||||
|
state.fileArray.forEach(item=>{
|
||||||
|
state.dataForm.append('file',item);
|
||||||
|
})
|
||||||
|
state.dataForm.append('disasterId',state.disasterId);
|
||||||
|
state.dataForm.append('isMain',state.ruleForm.isMain);
|
||||||
|
for(let [a, b] of state.dataForm.entries()){
|
||||||
|
console.log(a, b, '--------------');
|
||||||
|
}
|
||||||
|
uploadData(state.dataForm).then(res => {
|
||||||
|
ElMessage.success("Upload successfully");
|
||||||
|
emit('callback');
|
||||||
|
}).finally(()=>{
|
||||||
|
state.isLoading = false;
|
||||||
|
})
|
||||||
|
closeDialog();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// 暴露变量
|
||||||
|
defineExpose({
|
||||||
|
openDialog,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -0,0 +1,283 @@
|
||||||
|
<template>
|
||||||
|
<div class="system-role-container layout-padding">
|
||||||
|
<el-row :gutter="22">
|
||||||
|
<el-col :span="10">
|
||||||
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
|
<el-table :data="state.disasterData.data"
|
||||||
|
v-loading="state.disasterData.loading"
|
||||||
|
style="width: 100%"
|
||||||
|
highlight-current-row
|
||||||
|
@row-click="tableClick">
|
||||||
|
<el-table-column type="index"
|
||||||
|
label="ID"
|
||||||
|
width="50" />
|
||||||
|
<el-table-column prop="disasterType"
|
||||||
|
label="Disaster type"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column prop="disasterKeyword"
|
||||||
|
label="DisasterKeyword"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-pagination @size-change="onHandleDisasterSizeChange"
|
||||||
|
@current-change="onHandleDisasterCurrentChange"
|
||||||
|
class="mt15"
|
||||||
|
:pager-count="5"
|
||||||
|
:page-sizes="[10, 20, 30]"
|
||||||
|
v-model:current-page="state.disasterData.param.pageNum"
|
||||||
|
background
|
||||||
|
v-model:page-size="state.disasterData.param.pageSize"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
:total="state.disasterData.total">
|
||||||
|
</el-pagination>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="14">
|
||||||
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
|
<div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;">
|
||||||
|
<el-input size="default" placeholder="please enter username" style="max-width: 180px" v-model="state.searchName"
|
||||||
|
clearable></el-input>
|
||||||
|
<el-button size="default" type="primary" class="ml10" @click="getTableData">
|
||||||
|
<el-icon>
|
||||||
|
<ele-Search/>
|
||||||
|
</el-icon>
|
||||||
|
search
|
||||||
|
</el-button>
|
||||||
|
<el-button size="default" type="success" class="ml10" @click="uploadData">
|
||||||
|
<el-icon>
|
||||||
|
<ele-Upload/>
|
||||||
|
</el-icon>
|
||||||
|
upload
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<el-table :data="state.tableData.data"
|
||||||
|
v-loading="state.tableData.loading"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-table-column type="index"
|
||||||
|
label="ID"
|
||||||
|
width="50" />
|
||||||
|
<el-table-column prop="link"
|
||||||
|
label="image"
|
||||||
|
show-overflow-tooltip>
|
||||||
|
<template #default="scope">
|
||||||
|
<el-popover trigger="hover" placement="right" popper-class="max-h-300px overflow-auto" :width="330">
|
||||||
|
<!-- table中原本显示的图片 -->
|
||||||
|
<template #reference>
|
||||||
|
<img :src="scope.row.link" :alt="scope.row.link" style="max-height: 130px;max-width: 130px">
|
||||||
|
</template>
|
||||||
|
<!-- 鼠标移入时弹出的图片 -->
|
||||||
|
<img :src="scope.row.link" alt="" style="height: 150px;width: 300px">
|
||||||
|
</el-popover>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="size"
|
||||||
|
label="size"
|
||||||
|
show-overflow-tooltip>
|
||||||
|
<template #default="scope">
|
||||||
|
{{formatSizeUnits(scope.row.size)}}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column prop="type"
|
||||||
|
label="type"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column prop="Operate"
|
||||||
|
label="Operate"
|
||||||
|
show-overflow-tooltip>
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button size="small" text type="primary" @click="del(scope.row)">delete</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-pagination @size-change="onHandleSizeChange"
|
||||||
|
@current-change="onHandleCurrentChange"
|
||||||
|
class="mt15"
|
||||||
|
:pager-count="5"
|
||||||
|
: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, jumper"
|
||||||
|
:total="state.tableData.total">
|
||||||
|
</el-pagination>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<RoleDialog ref="roleDialogRef"
|
||||||
|
@refresh="getTableData()" />
|
||||||
|
<Upload ref="uploadRef" @callback="getTableData"/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup name="systemRole">
|
||||||
|
import type { TabsPaneContext } from 'element-plus';
|
||||||
|
import Upload from './component/upload.vue';
|
||||||
|
import {getPicturePage,getDisasterPage,delPicture} from '/@/api/data/pictureInfo.js';
|
||||||
|
const activeName = ref('first');
|
||||||
|
|
||||||
|
//复制内容
|
||||||
|
import { defineAsyncComponent, reactive, onMounted, ref } from 'vue';
|
||||||
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
||||||
|
// 引入组件
|
||||||
|
const RoleDialog = defineAsyncComponent(() => import('/@/views/system/role/dialog.vue'));
|
||||||
|
const auditRef = ref();
|
||||||
|
const uploadRef = ref();
|
||||||
|
// 定义变量内容
|
||||||
|
const roleDialogRef = ref();
|
||||||
|
const state = reactive({
|
||||||
|
tabVal:'first',
|
||||||
|
disasterId:null,
|
||||||
|
disasterData: {
|
||||||
|
data: [],
|
||||||
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
search: '',
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
tableData: {
|
||||||
|
data: [],
|
||||||
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
search: '',
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const auditData = (row) => {
|
||||||
|
let id = row.id
|
||||||
|
auditRef.value.openDialog([{"id":id}]);
|
||||||
|
}
|
||||||
|
//格式化字节
|
||||||
|
const formatSize = (size) => {
|
||||||
|
var data = "";
|
||||||
|
if (size < 0.1 * 1024) { //如果小于0.1KB转化成B
|
||||||
|
data = size.toFixed(2) + "B";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024) {//如果小于0.1MB转化成KB
|
||||||
|
data = (size / 1024).toFixed(2) + "KB";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024 * 1024) { //如果小于0.1GB转化成MB
|
||||||
|
data = (size / (1024 * 1024)).toFixed(2) + "MB";
|
||||||
|
} else { //其他转化成GB
|
||||||
|
data = (size / (1024 * 1024 * 1024)).toFixed(2) + "GB";
|
||||||
|
}
|
||||||
|
var sizestr = data + "";
|
||||||
|
var len = sizestr.indexOf("\.");
|
||||||
|
var dec = sizestr.substr(len + 1, 2);
|
||||||
|
if (dec == "00") {//当小数点后为00时 去掉小数部分
|
||||||
|
return sizestr.substring(0, len) + sizestr.substr(len + 3, 2);
|
||||||
|
}
|
||||||
|
return sizestr;
|
||||||
|
}
|
||||||
|
const formatSizeUnits = (size) => {
|
||||||
|
if (size === 0 || size === -1) return '0 B';
|
||||||
|
var k = 1000, // or 1024
|
||||||
|
sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
|
||||||
|
i = Math.floor(Math.log(size) / Math.log(k));
|
||||||
|
|
||||||
|
return (size / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i];
|
||||||
|
}
|
||||||
|
//灾害表格点击事件
|
||||||
|
const tableClick = (row, column, event) => {
|
||||||
|
state.disasterId = row.disasterId;
|
||||||
|
getTableData();
|
||||||
|
}
|
||||||
|
// 初始化灾害表格数据
|
||||||
|
const getDisasterData = () => {
|
||||||
|
state.disasterData.loading = true;
|
||||||
|
getDisasterPage(state.disasterData.param.pageNum,state.disasterData.param.pageSize,{}).then(res=>{
|
||||||
|
state.disasterData.data = res.records;
|
||||||
|
state.disasterData.total = res.total;
|
||||||
|
state.disasterData.loading = false;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 初始化表格数据
|
||||||
|
const getTableData = () => {
|
||||||
|
state.tableData.loading = true;
|
||||||
|
getPicturePage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"disasterId_equal":state.disasterId,"isDeleted_equal":0}).then(res=>{
|
||||||
|
state.tableData.data = res.records;
|
||||||
|
state.tableData.total = res.total;
|
||||||
|
})
|
||||||
|
setTimeout(() => {
|
||||||
|
state.tableData.loading = false;
|
||||||
|
}, 500);
|
||||||
|
};
|
||||||
|
// 打开上传弹窗
|
||||||
|
const uploadData = () => {
|
||||||
|
if(state.disasterId == null){
|
||||||
|
ElMessage.warning("Please select the disaster first")
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
uploadRef.value.openDialog(state.disasterId);
|
||||||
|
};
|
||||||
|
// 打开修改角色弹窗
|
||||||
|
const onOpenEditRole = (type, row) => {
|
||||||
|
roleDialogRef.value.openDialog(type, row);
|
||||||
|
};
|
||||||
|
// 删除角色
|
||||||
|
const del = (row) => {
|
||||||
|
ElMessageBox.confirm(`This action will delete the picture:“${row.name}”,,Whether to continue?`, 'tip', {
|
||||||
|
confirmButtonText: 'confirm',
|
||||||
|
cancelButtonText: 'cancel',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
delPicture(row.id).then(res=>{
|
||||||
|
getTableData();
|
||||||
|
ElMessage.success('delete successfully');
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleDisasterSizeChange = (val) => {
|
||||||
|
state.disasterData.param.pageSize = val;
|
||||||
|
getDisasterData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleDisasterCurrentChange = (val) => {
|
||||||
|
state.disasterData.param.pageNum = val;
|
||||||
|
getDisasterData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleSizeChange = (val) => {
|
||||||
|
state.tableData.param.pageSize = val;
|
||||||
|
getTableData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleCurrentChange = (val) => {
|
||||||
|
state.tableData.param.pageNum = val;
|
||||||
|
getTableData();
|
||||||
|
};
|
||||||
|
// 页面加载时
|
||||||
|
onMounted(() => {
|
||||||
|
getDisasterData();
|
||||||
|
//getTableData();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
.demo-tabs > .el-tabs__content {
|
||||||
|
padding: 32px;
|
||||||
|
color: #6b778c;
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.system-role-container {
|
||||||
|
.system-role-padding {
|
||||||
|
padding: 15px;
|
||||||
|
.el-table {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.demo-tabs > .el-tabs__content {
|
||||||
|
padding: 32px;
|
||||||
|
color: #6b778c;
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,125 @@
|
||||||
|
<template>
|
||||||
|
<el-dialog title="upload" v-model="state.isShowDialog" width="700px">
|
||||||
|
<el-form :model="state.ruleForm" size="default" label-width="120px" :rules="rules" ref="adminAddFormRef">
|
||||||
|
<el-form-item label="area cn" prop="areaCn">
|
||||||
|
<el-input v-model="state.ruleForm.areaCn" placeholder="please enter area cn" style="width: 300px"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="area en" label="areaEn">
|
||||||
|
<el-input v-model="state.ruleForm.areaEn" placeholder="please enter area en" style="width: 300px"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="frequency" label="frequency">
|
||||||
|
<el-input v-model="state.ruleForm.frequency" placeholder="please enter frequency" style="width: 300px"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<span class="dialog-footer">
|
||||||
|
<el-button @click="onCancel" size="default">cancel</el-button>
|
||||||
|
<el-button type="primary" @click="onSubmit" size="default" :loading="state.isLoading">submit</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {reactive, ref} from "vue";
|
||||||
|
import {uploadData} from '/@/api/data/visualData.js';
|
||||||
|
import {ElMessage} from "element-plus";
|
||||||
|
import { UploadFilled } from '@element-plus/icons-vue'
|
||||||
|
const options = [
|
||||||
|
{
|
||||||
|
value: '0',
|
||||||
|
label: 'basic data',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: '1',
|
||||||
|
label: 'responded report',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: '2',
|
||||||
|
label: 'cartographic product',
|
||||||
|
}
|
||||||
|
]
|
||||||
|
const emit = defineEmits(['callback']);
|
||||||
|
const adminAddFormRef = ref();
|
||||||
|
const state = reactive({
|
||||||
|
isShowDialog: false,
|
||||||
|
isLoading:false,
|
||||||
|
ruleForm: {
|
||||||
|
name: '', //标样名称
|
||||||
|
code: '',//标样编号
|
||||||
|
states: '',//标样状态
|
||||||
|
tableData: [],
|
||||||
|
},
|
||||||
|
tableData: [],
|
||||||
|
//字典值
|
||||||
|
dictData: [],
|
||||||
|
unitData:[],
|
||||||
|
standardId: '',
|
||||||
|
detectionData: [],
|
||||||
|
disasterId:null,
|
||||||
|
dataForm:new FormData(),
|
||||||
|
fileArray:[],
|
||||||
|
})
|
||||||
|
const uploadPic = (data) => {
|
||||||
|
state.fileArray.push(data.file);
|
||||||
|
}
|
||||||
|
//移除时
|
||||||
|
const removePic = (data) => {
|
||||||
|
state.fileArray.splice(state.fileArray.findIndex(item=>item.uid===data.raw.uid), 1)
|
||||||
|
console.log(state.fileArray)
|
||||||
|
}
|
||||||
|
//校验规则
|
||||||
|
const rules = reactive({
|
||||||
|
status: [
|
||||||
|
{required: true, message: 'please check pass or not', trigger: 'change'}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
//重置表单
|
||||||
|
const resetField = () => {
|
||||||
|
adminAddFormRef.value.resetFields();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 打开弹窗
|
||||||
|
const openDialog = (row) => {
|
||||||
|
state.isShowDialog = true;
|
||||||
|
state.disasterId = row;
|
||||||
|
};
|
||||||
|
// 关闭弹窗
|
||||||
|
const closeDialog = () => {
|
||||||
|
state.isShowDialog = false;
|
||||||
|
//重置表格数据
|
||||||
|
state.ruleForm.tableData = [];
|
||||||
|
resetField();
|
||||||
|
};
|
||||||
|
// 取消
|
||||||
|
const onCancel = () => {
|
||||||
|
closeDialog();
|
||||||
|
};
|
||||||
|
// 新增
|
||||||
|
const onSubmit = () => {
|
||||||
|
adminAddFormRef.value.validate((valid, fields) => {
|
||||||
|
if (valid) {
|
||||||
|
state.isLoading = true;
|
||||||
|
state.ruleForm.type = 2;
|
||||||
|
state.ruleForm.disasterId = state.disasterId;
|
||||||
|
uploadData(state.ruleForm).then(res => {
|
||||||
|
ElMessage.success("Submit successfully");
|
||||||
|
emit('callback');
|
||||||
|
}).finally(()=>{
|
||||||
|
state.isLoading = false;
|
||||||
|
})
|
||||||
|
closeDialog();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// 暴露变量
|
||||||
|
defineExpose({
|
||||||
|
openDialog,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -0,0 +1,131 @@
|
||||||
|
<template>
|
||||||
|
<el-dialog title="upload" v-model="state.isShowDialog" width="700px">
|
||||||
|
<el-form :model="state.ruleForm" size="default" label-width="120px" :rules="rules" ref="adminAddFormRef">
|
||||||
|
<el-form-item label="time" prop="time">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="state.ruleForm.time"
|
||||||
|
type="date"
|
||||||
|
placeholder="pick a date"
|
||||||
|
style="width: 300px"
|
||||||
|
value-format="YYYY-MM-DD"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="frequency" label="frequency">
|
||||||
|
<el-input v-model="state.ruleForm.frequency" placeholder="please enter frequency" style="width: 300px"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item prop="word" label="word">
|
||||||
|
<el-input v-model="state.ruleForm.word" placeholder="please enter word" style="width: 300px"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<span class="dialog-footer">
|
||||||
|
<el-button @click="onCancel" size="default">cancel</el-button>
|
||||||
|
<el-button type="primary" @click="onSubmit" size="default" :loading="state.isLoading">submit</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {reactive, ref} from "vue";
|
||||||
|
import {uploadData} from '/@/api/data/visualData.js';
|
||||||
|
import {ElMessage} from "element-plus";
|
||||||
|
import { UploadFilled } from '@element-plus/icons-vue'
|
||||||
|
const options = [
|
||||||
|
{
|
||||||
|
value: '0',
|
||||||
|
label: 'basic data',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: '1',
|
||||||
|
label: 'responded report',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: '2',
|
||||||
|
label: 'cartographic product',
|
||||||
|
}
|
||||||
|
]
|
||||||
|
const emit = defineEmits(['callback']);
|
||||||
|
const adminAddFormRef = ref();
|
||||||
|
const state = reactive({
|
||||||
|
isShowDialog: false,
|
||||||
|
isLoading:false,
|
||||||
|
ruleForm: {
|
||||||
|
name: '', //标样名称
|
||||||
|
code: '',//标样编号
|
||||||
|
states: '',//标样状态
|
||||||
|
tableData: [],
|
||||||
|
},
|
||||||
|
tableData: [],
|
||||||
|
//字典值
|
||||||
|
dictData: [],
|
||||||
|
unitData:[],
|
||||||
|
standardId: '',
|
||||||
|
detectionData: [],
|
||||||
|
disasterId:null,
|
||||||
|
dataForm:new FormData(),
|
||||||
|
fileArray:[],
|
||||||
|
})
|
||||||
|
const uploadPic = (data) => {
|
||||||
|
state.fileArray.push(data.file);
|
||||||
|
}
|
||||||
|
//移除时
|
||||||
|
const removePic = (data) => {
|
||||||
|
state.fileArray.splice(state.fileArray.findIndex(item=>item.uid===data.raw.uid), 1)
|
||||||
|
console.log(state.fileArray)
|
||||||
|
}
|
||||||
|
//校验规则
|
||||||
|
const rules = reactive({
|
||||||
|
status: [
|
||||||
|
{required: true, message: 'please check pass or not', trigger: 'change'}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
//重置表单
|
||||||
|
const resetField = () => {
|
||||||
|
adminAddFormRef.value.resetFields();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 打开弹窗
|
||||||
|
const openDialog = (row) => {
|
||||||
|
state.isShowDialog = true;
|
||||||
|
state.disasterId = row;
|
||||||
|
};
|
||||||
|
// 关闭弹窗
|
||||||
|
const closeDialog = () => {
|
||||||
|
state.isShowDialog = false;
|
||||||
|
//重置表格数据
|
||||||
|
state.ruleForm.tableData = [];
|
||||||
|
resetField();
|
||||||
|
};
|
||||||
|
// 取消
|
||||||
|
const onCancel = () => {
|
||||||
|
closeDialog();
|
||||||
|
};
|
||||||
|
// 新增
|
||||||
|
const onSubmit = () => {
|
||||||
|
adminAddFormRef.value.validate((valid, fields) => {
|
||||||
|
if (valid) {
|
||||||
|
state.isLoading = true;
|
||||||
|
state.ruleForm.type = 1;
|
||||||
|
state.ruleForm.disasterId = state.disasterId;
|
||||||
|
uploadData(state.ruleForm).then(res => {
|
||||||
|
ElMessage.success("Submit successfully");
|
||||||
|
emit('callback');
|
||||||
|
}).finally(()=>{
|
||||||
|
state.isLoading = false;
|
||||||
|
})
|
||||||
|
closeDialog();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// 暴露变量
|
||||||
|
defineExpose({
|
||||||
|
openDialog,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -0,0 +1,348 @@
|
||||||
|
<template>
|
||||||
|
<div class="system-role-container layout-padding">
|
||||||
|
<el-row :gutter="22">
|
||||||
|
<el-col :span="10">
|
||||||
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
|
<el-table :data="state.disasterData.data"
|
||||||
|
v-loading="state.disasterData.loading"
|
||||||
|
style="width: 100%"
|
||||||
|
highlight-current-row
|
||||||
|
@row-click="tableClick">
|
||||||
|
<el-table-column type="index"
|
||||||
|
label="ID"
|
||||||
|
width="50" />
|
||||||
|
<el-table-column prop="disasterType"
|
||||||
|
label="Disaster type"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column prop="disasterKeyword"
|
||||||
|
label="DisasterKeyword"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-pagination @size-change="onHandleDisasterSizeChange"
|
||||||
|
@current-change="onHandleDisasterCurrentChange"
|
||||||
|
class="mt15"
|
||||||
|
:pager-count="5"
|
||||||
|
:page-sizes="[10, 20, 30]"
|
||||||
|
v-model:current-page="state.disasterData.param.pageNum"
|
||||||
|
background
|
||||||
|
v-model:page-size="state.disasterData.param.pageSize"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
:total="state.disasterData.total">
|
||||||
|
</el-pagination>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="14">
|
||||||
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
|
<div class="system-user-search mb15" style="display: flex;margin-left: 10px;margin-top: 10px;">
|
||||||
|
<!-- <el-input size="default" placeholder="please enter username" style="max-width: 180px" v-model="state.searchName"
|
||||||
|
clearable></el-input>
|
||||||
|
<el-button size="default" type="primary" class="ml10" @click="getTableData">
|
||||||
|
<el-icon>
|
||||||
|
<ele-Search/>
|
||||||
|
</el-icon>
|
||||||
|
search
|
||||||
|
</el-button>-->
|
||||||
|
<el-button size="default" type="success" class="ml10" @click="uploadData">
|
||||||
|
<el-icon>
|
||||||
|
<ele-Upload/>
|
||||||
|
</el-icon>
|
||||||
|
upload
|
||||||
|
</el-button>
|
||||||
|
</div>
|
||||||
|
<el-tabs v-model="activeName" class="demo-tabs" @tab-change="handleClick" type="card">
|
||||||
|
<el-tab-pane label="wordclouds" name="first">
|
||||||
|
<el-table :data="state.tableData.data"
|
||||||
|
v-loading="state.tableData.loading"
|
||||||
|
style="width: 100%">
|
||||||
|
<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="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="Operate"
|
||||||
|
label="Operate"
|
||||||
|
show-overflow-tooltip>
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button size="small" text type="primary" @click="delWordCloud(scope.row)">delete</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-pagination @size-change="onHandleSizeChange"
|
||||||
|
@current-change="onHandleCurrentChange"
|
||||||
|
class="mt15"
|
||||||
|
:pager-count="5"
|
||||||
|
: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, jumper"
|
||||||
|
:total="state.tableData.total">
|
||||||
|
</el-pagination>
|
||||||
|
</el-tab-pane>
|
||||||
|
<el-tab-pane label="hotspot" name="second">
|
||||||
|
<el-table :data="state.tableData.data"
|
||||||
|
v-loading="state.tableData.loading"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-table-column type="index"
|
||||||
|
label="ID"
|
||||||
|
width="50" />
|
||||||
|
<el-table-column prop="areaCn"
|
||||||
|
label="area cn"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column prop="areaEn"
|
||||||
|
label="area en"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column prop="frequency"
|
||||||
|
label="frequency"
|
||||||
|
show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column prop="Operate"
|
||||||
|
label="Operate"
|
||||||
|
show-overflow-tooltip>
|
||||||
|
<template #default="scope">
|
||||||
|
<el-button size="small" text type="primary" @click="delHotspot(scope.row)">delete</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<el-pagination @size-change="onHandleSizeChange"
|
||||||
|
@current-change="onHandleCurrentChange"
|
||||||
|
class="mt15"
|
||||||
|
:pager-count="5"
|
||||||
|
: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, jumper"
|
||||||
|
:total="state.tableData.total">
|
||||||
|
</el-pagination>
|
||||||
|
</el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<RoleDialog ref="roleDialogRef"
|
||||||
|
@refresh="getTableData()" />
|
||||||
|
<HotspotForm ref="hotspotRef" @callback="getTableData"/>
|
||||||
|
<WordClouds ref="wordCloudsRef" @callback="getTableData"/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup name="systemRole">
|
||||||
|
import type { TabsPaneContext } from 'element-plus';
|
||||||
|
import HotspotForm from './component/hotspotForm.vue';
|
||||||
|
import WordClouds from './component/wordCloudForm.vue';
|
||||||
|
import {getWordClouds,getHotspot,getDisasterPage,delData} from '/@/api/data/visualData.js';
|
||||||
|
const activeName = ref('first');
|
||||||
|
const hotspotRef = ref();
|
||||||
|
const wordCloudsRef = ref();
|
||||||
|
const handleClick = (tab) => {
|
||||||
|
state.tabVal = tab;
|
||||||
|
state. tableData={
|
||||||
|
data: [],
|
||||||
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
search: '',
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
getTableData();
|
||||||
|
};
|
||||||
|
|
||||||
|
//复制内容
|
||||||
|
import { defineAsyncComponent, reactive, onMounted, ref } from 'vue';
|
||||||
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
||||||
|
// 引入组件
|
||||||
|
const RoleDialog = defineAsyncComponent(() => import('/@/views/system/role/dialog.vue'));
|
||||||
|
const auditRef = ref();
|
||||||
|
const uploadRef = ref();
|
||||||
|
// 定义变量内容
|
||||||
|
const roleDialogRef = ref();
|
||||||
|
const state = reactive({
|
||||||
|
tabVal:'first',
|
||||||
|
disasterId:null,
|
||||||
|
disasterData: {
|
||||||
|
data: [],
|
||||||
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
search: '',
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
tableData: {
|
||||||
|
data: [],
|
||||||
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
search: '',
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const auditData = (row) => {
|
||||||
|
let id = row.id
|
||||||
|
auditRef.value.openDialog([{"id":id}]);
|
||||||
|
}
|
||||||
|
//格式化字节
|
||||||
|
const formatSize = (size) => {
|
||||||
|
var data = "";
|
||||||
|
if (size < 0.1 * 1024) { //如果小于0.1KB转化成B
|
||||||
|
data = size.toFixed(2) + "B";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024) {//如果小于0.1MB转化成KB
|
||||||
|
data = (size / 1024).toFixed(2) + "KB";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024 * 1024) { //如果小于0.1GB转化成MB
|
||||||
|
data = (size / (1024 * 1024)).toFixed(2) + "MB";
|
||||||
|
} else { //其他转化成GB
|
||||||
|
data = (size / (1024 * 1024 * 1024)).toFixed(2) + "GB";
|
||||||
|
}
|
||||||
|
var sizestr = data + "";
|
||||||
|
var len = sizestr.indexOf("\.");
|
||||||
|
var dec = sizestr.substr(len + 1, 2);
|
||||||
|
if (dec == "00") {//当小数点后为00时 去掉小数部分
|
||||||
|
return sizestr.substring(0, len) + sizestr.substr(len + 3, 2);
|
||||||
|
}
|
||||||
|
return sizestr;
|
||||||
|
}
|
||||||
|
const formatSizeUnits = (size) => {
|
||||||
|
if (size === 0) return '0 B';
|
||||||
|
var k = 1000, // or 1024
|
||||||
|
sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
|
||||||
|
i = Math.floor(Math.log(size) / Math.log(k));
|
||||||
|
|
||||||
|
return (size / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i];
|
||||||
|
}
|
||||||
|
//灾害表格点击事件
|
||||||
|
const tableClick = (row, column, event) => {
|
||||||
|
state.disasterId = row.disasterId;
|
||||||
|
getTableData();
|
||||||
|
}
|
||||||
|
// 初始化灾害表格数据
|
||||||
|
const getDisasterData = () => {
|
||||||
|
state.disasterData.loading = true;
|
||||||
|
getDisasterPage(state.disasterData.param.pageNum,state.disasterData.param.pageSize,{}).then(res=>{
|
||||||
|
state.disasterData.data = res.records;
|
||||||
|
state.disasterData.total = res.total;
|
||||||
|
state.disasterData.loading = false;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 初始化表格数据
|
||||||
|
const getTableData = () => {
|
||||||
|
state.tableData.loading = true;
|
||||||
|
if(state.tabVal == 'first'){
|
||||||
|
getWordClouds(state.tableData.param.pageNum,state.tableData.param.pageSize,{"disasterId_equal":state.disasterId,"isDeleted_equal":0}).then(res=>{
|
||||||
|
state.tableData.data = res.records;
|
||||||
|
state.tableData.total = res.total;
|
||||||
|
})
|
||||||
|
}else {
|
||||||
|
getHotspot(state.tableData.param.pageNum,state.tableData.param.pageSize,{"disasterId_equal":state.disasterId,"isDeleted_equal":0}).then(res=>{
|
||||||
|
state.tableData.data = res.records;
|
||||||
|
state.tableData.total = res.total;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
setTimeout(() => {
|
||||||
|
state.tableData.loading = false;
|
||||||
|
}, 500);
|
||||||
|
};
|
||||||
|
// 打开上传弹窗
|
||||||
|
const uploadData = () => {
|
||||||
|
if(state.disasterId == null){
|
||||||
|
ElMessage.warning("Please select the disaster first")
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
state.tabVal == 'first' ? wordCloudsRef.value.openDialog(state.disasterId) : hotspotRef.value.openDialog(state.disasterId);
|
||||||
|
};
|
||||||
|
// 打开修改角色弹窗
|
||||||
|
const onOpenEditRole = (type, row) => {
|
||||||
|
roleDialogRef.value.openDialog(type, row);
|
||||||
|
};
|
||||||
|
// 删除词云
|
||||||
|
const delWordCloud = (row) => {
|
||||||
|
ElMessageBox.confirm(`This action deletes the word cloud:“${row.word}”,Whether to continue?`, 'tip', {
|
||||||
|
confirmButtonText: 'confirm',
|
||||||
|
cancelButtonText: 'cancel',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
delData(row.id,1).then(res=>{
|
||||||
|
getTableData();
|
||||||
|
ElMessage.success('delete successfully');
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
};
|
||||||
|
|
||||||
|
// 删除热点
|
||||||
|
const delHotspot = (row) => {
|
||||||
|
ElMessageBox.confirm(`This action deletes the hotspot:“${row.areaEn}”,Whether to continue?`, 'tip', {
|
||||||
|
confirmButtonText: 'confirm',
|
||||||
|
cancelButtonText: 'cancel',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
delData(row.id,2).then(res=>{
|
||||||
|
getTableData();
|
||||||
|
ElMessage.success('delete successfully');
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleDisasterSizeChange = (val) => {
|
||||||
|
state.disasterData.param.pageSize = val;
|
||||||
|
getDisasterData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleDisasterCurrentChange = (val) => {
|
||||||
|
state.disasterData.param.pageNum = val;
|
||||||
|
getDisasterData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleSizeChange = (val) => {
|
||||||
|
state.tableData.param.pageSize = val;
|
||||||
|
getTableData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleCurrentChange = (val) => {
|
||||||
|
state.tableData.param.pageNum = val;
|
||||||
|
getTableData();
|
||||||
|
};
|
||||||
|
// 页面加载时
|
||||||
|
onMounted(() => {
|
||||||
|
getDisasterData();
|
||||||
|
//getTableData();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
.demo-tabs > .el-tabs__content {
|
||||||
|
padding: 32px;
|
||||||
|
color: #6b778c;
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.system-role-container {
|
||||||
|
.system-role-padding {
|
||||||
|
padding: 15px;
|
||||||
|
.el-table {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.demo-tabs > .el-tabs__content {
|
||||||
|
padding: 32px;
|
||||||
|
color: #6b778c;
|
||||||
|
font-size: 32px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,99 @@
|
||||||
|
<template>
|
||||||
|
<el-dialog title="audit" v-model="state.isShowDialog" width="700px">
|
||||||
|
<el-form :model="state.ruleForm" size="default" label-width="120px" :rules="rules" ref="adminAddFormRef">
|
||||||
|
<el-form-item label="pass or not" prop="status">
|
||||||
|
<el-radio-group v-model="state.ruleForm.status">
|
||||||
|
<el-radio :label="1">pass</el-radio>
|
||||||
|
<el-radio :label="2">no pass</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<template #footer>
|
||||||
|
<span class="dialog-footer">
|
||||||
|
<el-button @click="onCancel" size="default">cancel</el-button>
|
||||||
|
<el-button type="primary" @click="onSubmit" size="default" :loading="state.isLoading">confirm</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {reactive, ref} from "vue";
|
||||||
|
import {addAdmin} from '/@/api/response/administrator.js';
|
||||||
|
import {auditData} from '/@/api/response/dataUpload.js';
|
||||||
|
import {ElMessage} from "element-plus";
|
||||||
|
const emit = defineEmits(['callback']);
|
||||||
|
const adminAddFormRef = ref();
|
||||||
|
const state = reactive({
|
||||||
|
isShowDialog: false,
|
||||||
|
isLoading:false,
|
||||||
|
ruleForm: {
|
||||||
|
name: '', //标样名称
|
||||||
|
code: '',//标样编号
|
||||||
|
states: '',//标样状态
|
||||||
|
tableData: [],
|
||||||
|
},
|
||||||
|
tableData: [],
|
||||||
|
//字典值
|
||||||
|
dictData: [],
|
||||||
|
unitData:[],
|
||||||
|
standardId: '',
|
||||||
|
detectionData: [],
|
||||||
|
data:[],
|
||||||
|
})
|
||||||
|
|
||||||
|
//校验规则
|
||||||
|
const rules = reactive({
|
||||||
|
status: [
|
||||||
|
{required: true, message: 'please check pass or not', trigger: 'change'}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
//重置表单
|
||||||
|
const resetField = () => {
|
||||||
|
adminAddFormRef.value.resetFields();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 打开弹窗
|
||||||
|
const openDialog = (row) => {
|
||||||
|
console.log(row);
|
||||||
|
state.isShowDialog = true;
|
||||||
|
state.data = row;
|
||||||
|
};
|
||||||
|
// 关闭弹窗
|
||||||
|
const closeDialog = () => {
|
||||||
|
state.isShowDialog = false;
|
||||||
|
//重置表格数据
|
||||||
|
state.ruleForm.tableData = [];
|
||||||
|
resetField();
|
||||||
|
};
|
||||||
|
// 取消
|
||||||
|
const onCancel = () => {
|
||||||
|
closeDialog();
|
||||||
|
};
|
||||||
|
// 新增
|
||||||
|
const onSubmit = () => {
|
||||||
|
adminAddFormRef.value.validate((valid, fields) => {
|
||||||
|
if (valid) {
|
||||||
|
state.isLoading = true;
|
||||||
|
state.data.map(item=>item.status = state.ruleForm.status);
|
||||||
|
auditData(state.data).then(res => {
|
||||||
|
ElMessage.success("Audit successfully");
|
||||||
|
}).finally(()=>{
|
||||||
|
emit('callback');
|
||||||
|
state.isLoading = false;
|
||||||
|
})
|
||||||
|
closeDialog();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// 暴露变量
|
||||||
|
defineExpose({
|
||||||
|
openDialog,
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
|
@ -1,82 +1,94 @@
|
||||||
<template>
|
<template>
|
||||||
<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">
|
<el-row :gutter="22">
|
||||||
<el-table :data="state.tableData.data"
|
<el-col :span="10">
|
||||||
v-loading="state.tableData.loading"
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
style="width: 100%">
|
<el-table :data="state.disasterData.data"
|
||||||
<el-table-column type="index"
|
v-loading="state.disasterData.loading"
|
||||||
label="ID"
|
style="width: 100%"
|
||||||
width="50" />
|
highlight-current-row
|
||||||
<el-table-column prop="userName"
|
@row-click="tableClick">
|
||||||
label="User name"
|
<el-table-column type="index"
|
||||||
show-overflow-tooltip></el-table-column>
|
label="ID"
|
||||||
<el-table-column prop="Organization"
|
width="50" />
|
||||||
label="Organization"
|
<el-table-column prop="disasterType"
|
||||||
show-overflow-tooltip></el-table-column>
|
label="Disaster type"
|
||||||
<el-table-column prop="professionalTitle"
|
show-overflow-tooltip></el-table-column>
|
||||||
label="Professional title"
|
<el-table-column prop="disasterKeyword"
|
||||||
show-overflow-tooltip></el-table-column>
|
label="DisasterKeyword"
|
||||||
<el-table-column prop="researchField"
|
show-overflow-tooltip></el-table-column>
|
||||||
label="Research field"
|
</el-table>
|
||||||
show-overflow-tooltip></el-table-column>
|
<el-pagination @size-change="onHandleDisasterSizeChange"
|
||||||
<el-table-column prop="Email"
|
@current-change="onHandleDisasterCurrentChange"
|
||||||
label="Email"
|
class="mt15"
|
||||||
show-overflow-tooltip></el-table-column>
|
:pager-count="5"
|
||||||
<el-table-column prop="dataDetails"
|
:page-sizes="[10, 20, 30]"
|
||||||
label="Data details"
|
v-model:current-page="state.disasterData.param.pageNum"
|
||||||
show-overflow-tooltip></el-table-column>
|
background
|
||||||
<el-table-column prop="dataFormat"
|
v-model:page-size="state.disasterData.param.pageSize"
|
||||||
label="Data Format"
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
show-overflow-tooltip></el-table-column>
|
:total="state.disasterData.total">
|
||||||
<el-table-column prop="dataSize"
|
</el-pagination>
|
||||||
label="Data size"
|
</div>
|
||||||
show-overflow-tooltip></el-table-column>
|
</el-col>
|
||||||
<el-table-column prop="uploadTime"
|
<el-col :span="14">
|
||||||
label="Upload time"
|
<div class="system-role-padding layout-padding-auto layout-padding-view">
|
||||||
show-overflow-tooltip></el-table-column>
|
<el-table :data="state.tableData.data"
|
||||||
<el-table-column prop="Operate"
|
v-loading="state.tableData.loading"
|
||||||
label="Operate"
|
style="width: 100%">
|
||||||
show-overflow-tooltip></el-table-column>
|
<el-table-column type="index"
|
||||||
|
label="ID"
|
||||||
<!-- <el-table-column prop="describe" label="角色描述" show-overflow-tooltip></el-table-column>
|
width="50" />
|
||||||
<el-table-column prop="createTime" label="创建时间" show-overflow-tooltip></el-table-column> -->
|
<el-table-column prop="uploaderName"
|
||||||
<!-- <el-table-column prop="status" label="角色状态" show-overflow-tooltip>
|
label="uploader Name"
|
||||||
<template #default="scope">
|
show-overflow-tooltip></el-table-column>
|
||||||
<el-tag type="success" v-if="scope.row.status">启用</el-tag>
|
<el-table-column prop="sourceOrganization"
|
||||||
<el-tag type="info" v-else>禁用</el-tag>
|
label="Organization"
|
||||||
</template>
|
show-overflow-tooltip></el-table-column>
|
||||||
</el-table-column>
|
<el-table-column prop="title"
|
||||||
<el-table-column label="操作" width="100">
|
label="Professional title"
|
||||||
<template #default="scope">
|
show-overflow-tooltip></el-table-column>
|
||||||
<el-button :disabled="scope.row.roleName === '超级管理员'" size="small" text type="primary" @click="onOpenEditRole('edit', scope.row)"
|
<el-table-column prop="size"
|
||||||
>修改</el-button
|
label="Data size"
|
||||||
>
|
show-overflow-tooltip>
|
||||||
<el-button :disabled="scope.row.roleName === '超级管理员'" size="small" text type="primary" @click="onRowDel(scope.row)"
|
<template #default="scope">
|
||||||
>删除</el-button
|
{{formatSizeUnits(scope.row.size)}}
|
||||||
>
|
</template>
|
||||||
</template>
|
</el-table-column>
|
||||||
</el-table-column> -->
|
<el-table-column prop="uploadTime"
|
||||||
</el-table>
|
label="Upload time"
|
||||||
<el-pagination @size-change="onHandleSizeChange"
|
show-overflow-tooltip></el-table-column>
|
||||||
@current-change="onHandleCurrentChange"
|
<el-table-column prop="Operate"
|
||||||
class="mt15"
|
label="Operate"
|
||||||
:pager-count="5"
|
show-overflow-tooltip>
|
||||||
:page-sizes="[10, 20, 30]"
|
<template #default="scope">
|
||||||
v-model:current-page="state.tableData.param.pageNum"
|
<el-button size="small" text type="primary" @click="auditData(scope.row)">audit</el-button>
|
||||||
background
|
</template>
|
||||||
v-model:page-size="state.tableData.param.pageSize"
|
</el-table-column>
|
||||||
layout="total, sizes, prev, pager, next, jumper"
|
</el-table>
|
||||||
:total="state.tableData.total">
|
<el-pagination @size-change="onHandleSizeChange"
|
||||||
</el-pagination>
|
@current-change="onHandleCurrentChange"
|
||||||
</div>
|
class="mt15"
|
||||||
|
:pager-count="5"
|
||||||
|
: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, jumper"
|
||||||
|
:total="state.tableData.total">
|
||||||
|
</el-pagination>
|
||||||
|
</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
<RoleDialog ref="roleDialogRef"
|
<RoleDialog ref="roleDialogRef"
|
||||||
@refresh="getTableData()" />
|
@refresh="getTableData()" />
|
||||||
|
<Audit ref="auditRef" @callback="getTableData"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup name="systemRole">
|
<script lang="ts" setup name="systemRole">
|
||||||
import type { TabsPaneContext } from 'element-plus';
|
import type { TabsPaneContext } from 'element-plus';
|
||||||
|
import {getDataUploadPage,getDisasterPage} from '/@/api/response/dataUpload.js'
|
||||||
const activeName = ref('first');
|
const activeName = ref('first');
|
||||||
|
|
||||||
const handleClick = (tab: TabsPaneContext, event: Event) => {
|
const handleClick = (tab: TabsPaneContext, event: Event) => {
|
||||||
|
@ -86,13 +98,24 @@ const handleClick = (tab: TabsPaneContext, event: Event) => {
|
||||||
//复制内容
|
//复制内容
|
||||||
import { defineAsyncComponent, reactive, onMounted, ref } from 'vue';
|
import { defineAsyncComponent, reactive, onMounted, ref } from 'vue';
|
||||||
import { ElMessageBox, ElMessage } from 'element-plus';
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
||||||
|
import Audit from './component/audit.vue';
|
||||||
// 引入组件
|
// 引入组件
|
||||||
const RoleDialog = defineAsyncComponent(() => import('/@/views/system/role/dialog.vue'));
|
const RoleDialog = defineAsyncComponent(() => import('/@/views/system/role/dialog.vue'));
|
||||||
|
const auditRef = ref();
|
||||||
// 定义变量内容
|
// 定义变量内容
|
||||||
const roleDialogRef = ref();
|
const roleDialogRef = ref();
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
|
disasterId:null,
|
||||||
|
disasterData: {
|
||||||
|
data: [],
|
||||||
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
search: '',
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
tableData: {
|
tableData: {
|
||||||
data: [],
|
data: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
|
@ -104,22 +127,62 @@ const state = reactive({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
const auditData = (row) => {
|
||||||
|
let id = row.id
|
||||||
|
auditRef.value.openDialog([{"id":id}]);
|
||||||
|
}
|
||||||
|
//格式化字节
|
||||||
|
const formatSize = (size) => {
|
||||||
|
var data = "";
|
||||||
|
if (size < 0.1 * 1024) { //如果小于0.1KB转化成B
|
||||||
|
data = size.toFixed(2) + "B";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024) {//如果小于0.1MB转化成KB
|
||||||
|
data = (size / 1024).toFixed(2) + "KB";
|
||||||
|
} else if (size < 0.1 * 1024 * 1024 * 1024) { //如果小于0.1GB转化成MB
|
||||||
|
data = (size / (1024 * 1024)).toFixed(2) + "MB";
|
||||||
|
} else { //其他转化成GB
|
||||||
|
data = (size / (1024 * 1024 * 1024)).toFixed(2) + "GB";
|
||||||
|
}
|
||||||
|
var sizestr = data + "";
|
||||||
|
var len = sizestr.indexOf("\.");
|
||||||
|
var dec = sizestr.substr(len + 1, 2);
|
||||||
|
if (dec == "00") {//当小数点后为00时 去掉小数部分
|
||||||
|
return sizestr.substring(0, len) + sizestr.substr(len + 3, 2);
|
||||||
|
}
|
||||||
|
return sizestr;
|
||||||
|
}
|
||||||
|
const formatSizeUnits = (size) => {
|
||||||
|
if (size === 0) return '0 B';
|
||||||
|
var k = 1000, // or 1024
|
||||||
|
sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
|
||||||
|
i = Math.floor(Math.log(size) / Math.log(k));
|
||||||
|
|
||||||
|
return (size / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i];
|
||||||
|
}
|
||||||
|
//灾害表格点击事件
|
||||||
|
const tableClick = (row, column, event) => {
|
||||||
|
state.disasterId = row.disasterId;
|
||||||
|
getTableData();
|
||||||
|
}
|
||||||
|
// 初始化灾害表格数据
|
||||||
|
const getDisasterData = () => {
|
||||||
|
state.disasterData.loading = true;
|
||||||
|
getDisasterPage(state.disasterData.param.pageNum,state.disasterData.param.pageSize,{}).then(res=>{
|
||||||
|
state.disasterData.data = res.records;
|
||||||
|
state.disasterData.total = res.total;
|
||||||
|
state.disasterData.loading = false;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
// 初始化表格数据
|
// 初始化表格数据
|
||||||
const getTableData = () => {
|
const getTableData = () => {
|
||||||
state.tableData.loading = true;
|
state.tableData.loading = true;
|
||||||
const data = [];
|
getDataUploadPage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"disasterId":state.disasterId}).then(res=>{
|
||||||
for (let i = 0; i < 10; i++) {
|
state.tableData.data = res.records;
|
||||||
data.push({
|
state.tableData.total = res.total;
|
||||||
roleName: i === 0 ? '超级管理员' : '主要管理员',
|
})
|
||||||
roleSign: i === 0 ? 'admin' : 'chief',
|
/* state.tableData.data = data;
|
||||||
describe: `测试角色${i + 1}`,
|
state.tableData.total = state.tableData.data.length;*/
|
||||||
sort: i,
|
|
||||||
status: true,
|
|
||||||
createTime: new Date().toLocaleString(),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
state.tableData.data = data;
|
|
||||||
state.tableData.total = state.tableData.data.length;
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
state.tableData.loading = false;
|
state.tableData.loading = false;
|
||||||
}, 500);
|
}, 500);
|
||||||
|
@ -146,6 +209,16 @@ const onRowDel = (row) => {
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
};
|
};
|
||||||
// 分页改变
|
// 分页改变
|
||||||
|
const onHandleDisasterSizeChange = (val) => {
|
||||||
|
state.disasterData.param.pageSize = val;
|
||||||
|
getDisasterData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleDisasterCurrentChange = (val) => {
|
||||||
|
state.disasterData.param.pageNum = val;
|
||||||
|
getDisasterData();
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
const onHandleSizeChange = (val) => {
|
const onHandleSizeChange = (val) => {
|
||||||
state.tableData.param.pageSize = val;
|
state.tableData.param.pageSize = val;
|
||||||
getTableData();
|
getTableData();
|
||||||
|
@ -157,6 +230,7 @@ const onHandleCurrentChange = (val) => {
|
||||||
};
|
};
|
||||||
// 页面加载时
|
// 页面加载时
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
getDisasterData();
|
||||||
getTableData();
|
getTableData();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,142 +1,173 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="system-user-container" style="width:calc(100% - 10px) !important ;">
|
|
||||||
<el-row :gutter="10" >
|
<div class="system-user-container" style="width:calc(100% - 10px) !important ;">
|
||||||
<el-col :span="24">
|
<el-config-provider :locale="en">
|
||||||
<el-card shadow="hover">
|
<el-row :gutter="10">
|
||||||
<div class="system-user-search mb15">
|
<el-col :span="24">
|
||||||
<el-row>
|
<el-card shadow="hover">
|
||||||
<span class="label-span">名称:</span><el-input size="default" placeholder="请输入名称" style="max-width: 180px" v-model="state.query.name" clearable> </el-input>
|
<div class="system-user-search mb15">
|
||||||
<el-button size="default" type="primary" class="ml10" @click="initTableData" >
|
<el-form>
|
||||||
<el-icon>
|
<el-row>
|
||||||
<ele-Search />
|
<el-col :span="4">
|
||||||
</el-icon>
|
<el-form-item label="Tool Name"><el-input size="default" style="max-width: 180px"
|
||||||
查询
|
v-model="state.query.toolName" clearable> </el-input>
|
||||||
</el-button>
|
</el-form-item>
|
||||||
</el-row>
|
</el-col>
|
||||||
<el-row style="margin-top: 20px; margin-left: -10px;">
|
<el-col :span="4">
|
||||||
|
<el-form-item label="checked">
|
||||||
|
<el-select size="default" v-model="state.query.checked" clearable
|
||||||
|
placeholder="Please select">
|
||||||
|
<el-option label="checked" value="0"></el-option>
|
||||||
|
<el-option label="unchecked" value="1"></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-button size="default" type="primary" class="ml15" style="margin-top: 4px ;"
|
||||||
|
@click="initTableData">
|
||||||
|
<el-icon>
|
||||||
|
<ele-Search />
|
||||||
|
</el-icon>
|
||||||
|
search
|
||||||
|
</el-button>
|
||||||
|
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<!-- <el-row style="margin-top: 20px; margin-left: -10px;">
|
||||||
<el-button size="default" type="success" class="ml10" @click="onOpenAdd" >
|
<el-button size="default" type="success" class="ml10" @click="onOpenAdd" >
|
||||||
<el-icon>
|
<el-icon>
|
||||||
<ele-FolderAdd />
|
<ele-FolderAdd />
|
||||||
</el-icon>
|
</el-icon>
|
||||||
新增
|
ADD
|
||||||
</el-button>
|
</el-button>
|
||||||
</el-row>
|
</el-row> -->
|
||||||
</div>
|
</div>
|
||||||
<el-table :data="state.tableData.data" style="width: 100%" v-loading="state.tableData.loading" @selection-change="handleSelectionChange">
|
<el-table :data="state.tableData.data" style="width: 100%" v-loading="state.tableData.loading"
|
||||||
<el-table-column prop="toolName" label="Tool Name" >
|
@selection-change="handleSelectionChange">
|
||||||
|
<el-table-column prop="toolName" label="Tool Name">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<a :href="scope.row.link" target="_blank">{{scope.row.toolName}}</a>
|
<a :href="scope.row.link" target="_blank">{{ scope.row.toolName }}</a>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column prop="label" label="label" > </el-table-column>
|
<el-table-column prop="label" label="label" width="140"> </el-table-column>
|
||||||
<el-table-column prop="introduction" label="introduction" > </el-table-column>
|
<el-table-column prop="introduction" label="introduction"> </el-table-column>
|
||||||
<el-table-column prop="showName" label="Show Name" ></el-table-column>
|
<el-table-column prop="showName" label="Show Name"></el-table-column>
|
||||||
<el-table-column label="Operate" width="100">
|
<el-table-column prop="reviewTime" label="Review Time"></el-table-column>
|
||||||
<template #default="scope">
|
<el-table-column label="Operate" width="140">
|
||||||
<el-button :disabled="scope.row.userName === 'admin'" size="small" text type="primary" @click="onOpenEdit(scope.row)">修改</el-button>
|
<template #default="scope">
|
||||||
<el-button :disabled="scope.row.userName === 'admin'" size="small" text type="primary" @click="onRowDel(scope.row)">删除</el-button>
|
<el-button :disabled="scope.row.userName === 'admin'" size="small" text type="primary"
|
||||||
</template>
|
@click="onOpenEdit(scope.row)">Review</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
|
</template>
|
||||||
@size-change="onHandleSizeChange"
|
</el-table-column>
|
||||||
@current-change="onHandleCurrentChange"
|
</el-table>
|
||||||
class="mt15"
|
<el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange"
|
||||||
:pager-count="5"
|
class="mt15" :pager-count="5" :page-sizes="[10, 20, 30]"
|
||||||
: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, jumper"
|
layout="total, sizes, prev, pager, next, jumper" :total="state.tableData.total">
|
||||||
:total="state.tableData.total"
|
</el-pagination>
|
||||||
>
|
</el-card>
|
||||||
</el-pagination>
|
</el-col>
|
||||||
</el-card>
|
</el-row>
|
||||||
</el-col>
|
</el-config-provider>
|
||||||
</el-row>
|
</div>
|
||||||
<Add ref = 'AddRef' @callback="initTableData"></Add>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup name="systemUser">
|
<script setup name="systemUser">
|
||||||
import { getList ,remove} from '/@/api/tool/index'
|
import en from 'element-plus/dist/locale/en.mjs'
|
||||||
import { ElMessageBox, ElMessage } from 'element-plus';
|
import { getList, remove ,review } from '/@/api/tool/index'
|
||||||
import { reactive, ref,onMounted,nextTick } from 'vue';
|
import { ElMessageBox, ElMessage } from 'element-plus';
|
||||||
import Add from '/@/views/responseManagement/tool/component/add.vue';
|
import { reactive, ref, onMounted, nextTick } from 'vue';
|
||||||
const AddRef = ref();
|
const AddRef = ref();
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
tableData: {
|
tableData: {
|
||||||
data: [],
|
data: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
|
loading: false,
|
||||||
|
param: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
//请求条件
|
||||||
|
query: {
|
||||||
|
checked: '1',
|
||||||
|
},
|
||||||
|
selected: [],
|
||||||
|
//字典数据
|
||||||
|
});
|
||||||
|
// 初始化表格数据
|
||||||
|
const initTableData = () => {
|
||||||
|
state.tableData.loading = true;
|
||||||
|
getList(state.tableData.param.pageNum, state.tableData.param.pageSize, state.query).then(res => {
|
||||||
|
state.tableData = {
|
||||||
|
data: res.records,
|
||||||
|
total: res.total,
|
||||||
loading: false,
|
loading: false,
|
||||||
param:{
|
param: {
|
||||||
pageNum: 1,
|
pageNum: res.current,
|
||||||
pageSize: 10,
|
pageSize: res.size,
|
||||||
},
|
|
||||||
},
|
|
||||||
//请求条件
|
|
||||||
query: {
|
|
||||||
},
|
|
||||||
selected: [],
|
|
||||||
//字典数据
|
|
||||||
});
|
|
||||||
// 初始化表格数据
|
|
||||||
const initTableData = () => {
|
|
||||||
state.tableData.loading = true;
|
|
||||||
getList(state.tableData.param.pageNum,state.tableData.param.pageSize,state.query).then(res=>{
|
|
||||||
state.tableData = {
|
|
||||||
data: res.records,
|
|
||||||
total: res.total,
|
|
||||||
loading :false,
|
|
||||||
param: {
|
|
||||||
pageNum: res.current,
|
|
||||||
pageSize: res.size,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
})
|
||||||
|
|
||||||
};
|
};
|
||||||
// 打开新增
|
// 打开新增
|
||||||
const onOpenAdd = () => {
|
const onOpenAdd = () => {
|
||||||
AddRef.value.openDialog();
|
AddRef.value.openDialog();
|
||||||
};
|
};
|
||||||
// 打开修改用户弹窗
|
// 打开修改用户弹窗
|
||||||
const onOpenEdit = (row) => {
|
const onOpenEdit = (row) => {
|
||||||
AddRef.value.openDialog(row);
|
// AddRef.value.openDialog(row);
|
||||||
};
|
ElMessageBox.confirm(`Is it approved? This will be publicly displayed!`, 'Tips', {
|
||||||
// 删除用户
|
confirmButtonText: 'Yes',
|
||||||
const onRowDel = (row) => {
|
cancelButtonText: 'cancel',
|
||||||
ElMessageBox.confirm(`此操作将永久此参数:“${row.name}”,是否继续?`, '提示', {
|
type: 'warning',
|
||||||
confirmButtonText: '确认',
|
})
|
||||||
cancelButtonText: '取消',
|
.then(() => {
|
||||||
type: 'warning',
|
review({id:row.id}).then(res => {
|
||||||
})
|
ElMessage.success('success');
|
||||||
.then(() => {
|
|
||||||
remove(row.id).then(res=>{
|
|
||||||
ElMessage.success('删除成功');
|
|
||||||
initTableData();
|
|
||||||
})
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
};
|
|
||||||
// 分页改变
|
|
||||||
const onHandleSizeChange = (val) => {
|
|
||||||
state.tableData.param.pageSize = val;
|
|
||||||
initTableData();
|
|
||||||
};
|
|
||||||
// 多选
|
|
||||||
const handleSelectionChange = (val) => {
|
|
||||||
state.selected = val;
|
|
||||||
};
|
|
||||||
// 分页改变
|
|
||||||
const onHandleCurrentChange = (val) => {
|
|
||||||
state.tableData.param.pageNum = val;
|
|
||||||
initTableData();
|
|
||||||
};
|
|
||||||
onMounted(() => {
|
|
||||||
nextTick(() => {
|
|
||||||
initTableData();
|
initTableData();
|
||||||
});
|
})
|
||||||
|
})
|
||||||
|
.catch(() => { });
|
||||||
|
|
||||||
|
};
|
||||||
|
// 删除用户
|
||||||
|
const onRowDel = (row) => {
|
||||||
|
ElMessageBox.confirm(`此操作将永久此参数:“${row.name}”,是否继续?`, '提示', {
|
||||||
|
confirmButtonText: '确认',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
remove(row.id).then(res => {
|
||||||
|
ElMessage.success('删除成功');
|
||||||
|
initTableData();
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.catch(() => { });
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleSizeChange = (val) => {
|
||||||
|
state.tableData.param.pageSize = val;
|
||||||
|
initTableData();
|
||||||
|
};
|
||||||
|
// 多选
|
||||||
|
const handleSelectionChange = (val) => {
|
||||||
|
state.selected = val;
|
||||||
|
};
|
||||||
|
// 分页改变
|
||||||
|
const onHandleCurrentChange = (val) => {
|
||||||
|
state.tableData.param.pageNum = val;
|
||||||
|
initTableData();
|
||||||
|
};
|
||||||
|
onMounted(() => {
|
||||||
|
nextTick(() => {
|
||||||
|
initTableData();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -23,6 +23,7 @@ import {addAdmin} from '/@/api/response/administrator.js';
|
||||||
import {auditData} from '/@/api/response/adminManager.js';
|
import {auditData} from '/@/api/response/adminManager.js';
|
||||||
import {ElMessage} from "element-plus";
|
import {ElMessage} from "element-plus";
|
||||||
const adminAddFormRef = ref();
|
const adminAddFormRef = ref();
|
||||||
|
const emit = defineEmits(['callback']);
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
isShowDialog: false,
|
isShowDialog: false,
|
||||||
isLoading:false,
|
isLoading:false,
|
||||||
|
|
|
@ -122,7 +122,6 @@ 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}).then(res=>{
|
||||||
console.log("分页数据",res);
|
|
||||||
state.tableData.data = res.records;
|
state.tableData.data = res.records;
|
||||||
state.tableData.total = res.total;
|
state.tableData.total = res.total;
|
||||||
})
|
})
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<el-input v-model="state.ruleForm.phone" placeholder="please enter phone" clearable style="width: 300px"></el-input>
|
<el-input v-model="state.ruleForm.phone" placeholder="please enter phone" clearable style="width: 300px"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="organization" prop="organization">
|
<el-form-item label="organization" prop="organization">
|
||||||
<el-input v-model="state.ruleForm.organization" placeholder="please enter phone" clearable style="width: 300px"></el-input>
|
<el-input v-model="state.ruleForm.organization" placeholder="please enter organization" clearable style="width: 300px"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
|
@ -47,20 +47,50 @@ const state = reactive({
|
||||||
standardId: '',
|
standardId: '',
|
||||||
detectionData: []
|
detectionData: []
|
||||||
})
|
})
|
||||||
|
//自定义校验邮箱
|
||||||
|
let validateEmail = (rule, value, callback) => {
|
||||||
|
if (!value) {
|
||||||
|
return callback(new Error("please enter email!"));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
const reg= /^[a-z0-9]+([._\\-]*[a-z0-9])*@([a-z0-9]+[-a-z0-9]*[a-z0-9]+.){1,63}[a-z0-9]+$/
|
||||||
|
if(reg.test(value)){
|
||||||
|
callback();
|
||||||
|
}else {
|
||||||
|
return callback(new Error("The mailbox format is incorrect!"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
//自定义校验手机号
|
||||||
|
let checkPhone = (rule, value, callback) => {
|
||||||
|
if (!value) {
|
||||||
|
return callback(new Error('please enter phone'));
|
||||||
|
} else {
|
||||||
|
//验证手机号
|
||||||
|
const reg = /^1[3|4|5|7|8][0-9]\d{8}$/
|
||||||
|
//验证区号
|
||||||
|
const phoneReg = /^\d{3}-\d{8}|\d{4}-\d{7}$/
|
||||||
|
if (reg.test(value)||phoneReg.test(value)) {
|
||||||
|
callback();
|
||||||
|
} else {
|
||||||
|
return callback(new Error('Please enter the correct contact number'));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
//校验规则
|
//校验规则
|
||||||
const rules = reactive({
|
const rules = reactive({
|
||||||
name: [
|
name: [
|
||||||
{required: true, message: 'please enter name', trigger: 'blur'}
|
{required: true, message: 'please enter name', trigger: 'blur'}
|
||||||
],
|
],
|
||||||
email: [
|
email: [
|
||||||
{required: true, message: 'please enter email', trigger: 'blur'}
|
/* {required: true, trigger: 'blur',validator:validateEmail}*/
|
||||||
|
{required: true, trigger: 'blur',type:'email'}
|
||||||
],
|
],
|
||||||
account: [
|
account: [
|
||||||
{required: true, message: 'please enter account', trigger: 'blur'}
|
{required: true, message: 'please enter account', trigger: 'blur'}
|
||||||
],
|
],
|
||||||
phone: [
|
phone: [
|
||||||
{required: true, message: 'please enter phone', trigger: 'blur'}
|
{required: true, trigger: 'blur',validator:checkPhone}
|
||||||
],
|
],
|
||||||
organization: [
|
organization: [
|
||||||
{required: true, message: 'please enter organization', trigger: 'blur'}
|
{required: true, message: 'please enter organization', trigger: 'blur'}
|
||||||
|
@ -95,7 +125,7 @@ const onSubmit = () => {
|
||||||
ElMessage.success("Add successfully");
|
ElMessage.success("Add successfully");
|
||||||
emit('callback');
|
emit('callback');
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
ElMessage.error("Add failure");
|
//ElMessage.error("Add failure");
|
||||||
}).finally(()=>{
|
}).finally(()=>{
|
||||||
state.isLoading = false;
|
state.isLoading = false;
|
||||||
})
|
})
|
|
@ -110,7 +110,6 @@ const state = reactive({
|
||||||
const getTableData = () => {
|
const getTableData = () => {
|
||||||
state.tableData.loading = true;
|
state.tableData.loading = true;
|
||||||
getAdminPage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"name_like":state.searchName}).then(res=>{
|
getAdminPage(state.tableData.param.pageNum,state.tableData.param.pageSize,{"name_like":state.searchName}).then(res=>{
|
||||||
console.log("分页数据",res);
|
|
||||||
state.tableData.data = res.records;
|
state.tableData.data = res.records;
|
||||||
state.tableData.total = res.total;
|
state.tableData.total = res.total;
|
||||||
})
|
})
|
Loading…
Reference in New Issue