修改系统配置的删除提示

This commit is contained in:
龙运模 2024-07-09 20:31:33 +08:00
parent e47723b613
commit 27b72b85dc
9 changed files with 100 additions and 67 deletions

View File

@ -309,7 +309,7 @@ export default {
}
},
userCompanyList:{
url: `${config.API_URL}/company.user.list`,
url: `${config.API_URL}/organization.user.list`,
name: "查看公司用户列表",
get: async function (params) {
return await http.post(this.url, params);

View File

@ -51,6 +51,13 @@ export default {
return await http.post(this.url, params);
},
},
resetPass:{
url: `${config.API_URL}/user.reset.pwd`,
name: "重置个人密码",
post: async function (params) {
return await http.post(this.url, params);
},
},
timeoutConfig:{
url: `${config.API_URL}/system.login.timeout.config`,
name: "登录超时退出配置",

View File

@ -129,6 +129,7 @@
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
.comMain{
.num{
color: var(--el-color-dark);
@ -168,3 +169,34 @@
}
@media (max-width: 992px){
.consoleView{
.headerBox{
}
.middleBox{
.briefing{
.item{
.comMain{
margin-bottom: 10px;
.num{
height: 80px;
}
}
}
}
}
.footerBox{
}
.progressView{
height: 200px;
}
.chartView{
height: 460px;
}
}
}

View File

@ -18,7 +18,7 @@ export default {
trigger: 'axis'
},
grid: {
left: '1%',
left: "1%",
right: '5%',
bottom: '3%',
top: "3%",
@ -72,8 +72,8 @@ export default {
show:false,
smooth:false,
},
lineStyle: {
width: 2,
itemStyle: {
color: '#1367C1',
},
areaStyle: {
opacity: 0.4,
@ -87,8 +87,8 @@ export default {
symbol: 'none',
labelLine:{
},
lineStyle: {
width: 2,
itemStyle: {
color: '#2A91C4',
},
areaStyle: {
opacity: 0.4,

View File

@ -43,7 +43,7 @@
</div>
</el-col>
<el-col class="rightCol" :span="4" :md="4" :sm="24" :xs="24">
<div class="cardBox">
<div class="cardBox progressView">
<div class="cardTitle">不良率</div>
<div class="cardBody">
<progressBox />
@ -74,7 +74,7 @@
</div>
</el-col>
<el-col class="rightCol" :span="8" :md="8" :sm="24" :xs="24">
<div class="cardBox">
<div class="cardBox chartView">
<div class="cardTitle">占位</div>
<div class="cardBody">
<pointBox />
@ -86,7 +86,7 @@
<div class="footerBox">
<el-row class="colRow" :gutter="20">
<el-col class="leftCol" :span="8" :md="8" :sm="24" :xs="24">
<div class="cardBox">
<div class="cardBox chartView">
<div class="cardTitle">实时数据</div>
<div class="cardBody">
<barBox />
@ -94,7 +94,7 @@
</div>
</el-col>
<el-col class="middleCol" :span="8" :md="8" :sm="24" :xs="24">
<div class="cardBox">
<div class="cardBox chartView">
<div class="cardTitle">占位</div>
<div class="cardBody">
<ringBox />
@ -102,7 +102,7 @@
</div>
</el-col>
<el-col class="rightCol" :span="8" :md="8" :sm="24" :xs="24">
<div class="cardBox">
<div class="cardBox chartView">
<div class="cardTitle">占位</div>
<div class="cardBody">
<pointBox />

View File

@ -140,27 +140,18 @@ export default {
},
//
async table_del(row){
const reqData = {id: row.id};
const res = await this.$API.system.company.delete.post(reqData);
if(res.code == 200){
this.$refs.table.refresh()
this.$message.success("删除成功")
}else{
await this.$alert(res.message, "提示", {type: 'error'})
}
},
//
async batch_del(){
this.$confirm(`确定删除选中的 ${this.selection.length} 项吗?如果删除项中含有子集将会被一并删除`, '提示', {
this.$confirm(`确定删除 ${row.name} 吗?`, '提示', {
type: 'warning'
}).then(() => {
const loading = this.$loading();
this.$refs.table.refresh()
loading.close();
this.$message.success("操作成功")
}).catch(() => {
})
}).then(async () => {
const reqData = {id: row.id};
const res = await this.$API.system.company.delete.post(reqData);
if(res.code == 200){
this.$refs.table.refresh()
this.$message.success("删除成功")
}else{
await this.$alert(res.message, "提示", {type: 'error'})
}
}).catch(()=>{})
},
//
table_empower(row){
@ -174,14 +165,13 @@ export default {
},
//
table_user_ist(row){
this.$message.warning(row.name+' 暂无接口')
// this.$router.push({
// path: '/setting/user/company-user-list',
// query: {
// id: row.id,
// name:row.name
// }
// })
this.$router.push({
path: '/setting/user/company-user-list',
query: {
id: row.id,
name:row.name
}
})
},
//
selectionChange(selection){
@ -208,7 +198,11 @@ export default {
},
reset(){
this.$refs.table.reload();
}
},
handleSaveSuccess(){
this.$refs.table.refresh();
},
}
}
</script>

View File

@ -105,14 +105,19 @@
},
//
async table_del(row){
const reqData = {id: row.id};
const res = await this.$API.system.dept.delete.post(reqData);
if(res.code == 200){
this.$refs.table.refresh()
this.$message.success("删除成功")
}else{
await this.$alert(res.message, "提示", {type: 'error'})
}
this.$confirm(`确定删除 ${row.name} 吗?`, '提示', {
type: 'warning'
}).then(async () => {
const reqData = {id: row.id};
const res = await this.$API.system.dept.delete.post(reqData);
if(res.code == 200){
this.$refs.table.refresh()
this.$message.success("删除成功")
}else{
await this.$alert(res.message, "提示", {type: 'error'})
}
}).catch(()=>{})
},
//
async batch_del(){

View File

@ -96,12 +96,16 @@
},
//
async table_del(row){
const params = {ids: [row.id]};
const res = await this.$API.system.role.delete.post(params);
if(res.code == 200){
this.$refs.table.refresh()
this.$message.success("删除成功")
}
this.$confirm(`确定删除 ${row.role_name} 吗?`, '提示', {
type: 'warning'
}).then(async () => {
const params = {ids: [row.id]};
const res = await this.$API.system.role.delete.post(params);
if(res.code == 200){
this.$refs.table.refresh()
this.$message.success("删除成功")
}
}).catch(()=>{})
},
//
async batch_del(){

View File

@ -1,11 +1,6 @@
<template>
<el-dialog title="重置用户密码" v-model="visible" draggable :width="500">
<el-form :model="form" :rules="rules" :disabled="mode==='show'" ref="dialogForm" label-width="100px"
label-position="right">
<el-form-item label="当前密码" prop="old_pwd">
<el-input v-model="form.old_pwd" type="password" show-password
placeholder="请输入当前密码"></el-input>
</el-form-item>
<el-form :model="form" :rules="rules" :disabled="mode==='show'" ref="dialogForm" label-width="100px" label-position="right">
<el-form-item label="新密码" prop="new_pwd">
<el-input v-model="form.new_pwd" type="password" show-password placeholder="请输入新密码"></el-input>
<sc-password-strength v-model="form.new_pwd"></sc-password-strength>
@ -44,9 +39,6 @@ export default {
isSave: false,
visible: false,
rules: {
old_pwd: [
{required: true, message: '请输入当前密码'}
],
new_pwd: [
{required: true, message: '请输入新密码'}
],
@ -77,11 +69,10 @@ export default {
this.$refs.dialogForm.validate(async (valid) => {
if (valid) {
const reqData = {
user_id: this.form.id,
old_pwd:this.form.old_pwd,
conf_pwd: this.form.conf_pwd
id: this.form.id,
new_pwd: this.form.conf_pwd
};
const res = await this.$API.user.editPass.post(reqData);
const res = await this.$API.user.resetPass.post(reqData);
if (res.code === 200) {
this.visible = false;
this.$message.success("密码重置成功")