7/2 系统管理

演示数据2.0
wangwei 9 months ago
parent 98e7a7b264
commit 31e87e7c6a

@ -147,7 +147,7 @@
<modifyDialog :inputQuery="inputQuery" :modifySubmit="onModifySubmit"></modifyDialog> <modifyDialog :inputQuery="inputQuery" :modifySubmit="onModifySubmit"></modifyDialog>
<div style="text-align: center;margin-top: 12px"> <div style="text-align: center;margin-top: 12px">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit" <el-button type="primary" size="small" icon="search" @click="onModifySubmit"
:disabled="!configParams.typeScan" :disabled="!configParams.typeScan" :loading="subLoading"
>提交 >提交
</el-button </el-button
> >
@ -291,7 +291,8 @@ export default {
uploadFileUrl: null, uploadFileUrl: null,
headers: {}, headers: {},
configParams: {}, configParams: {},
loading: false loading: false,
subLoading: false,
} }
}, },
@ -448,10 +449,12 @@ export default {
if(!(this.inputQuery.mainAction =='WareHouseIn' && this.inputQuery.actionType == 1)){ if(!(this.inputQuery.mainAction =='WareHouseIn' && this.inputQuery.actionType == 1)){
this.inputQuery.devInType = 0; this.inputQuery.devInType = 0;
} }
this.subLoading = true
updateBusType(this.inputQuery) updateBusType(this.inputQuery)
.then((response) => { .then((response) => {
this.subLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.loading = false // this.loading = false
this.cancelDialog() this.cancelDialog()
this.getList() this.getList()
} else { } else {
@ -459,7 +462,7 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.loading = false this.subLoading = false
this.cancelDialog() this.cancelDialog()
}) })
}, },

@ -112,7 +112,7 @@
</el-col> </el-col>
</el-row> </el-row>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="saveSpace" <el-button type="primary" size="small" icon="search" @click="saveSpace" :loading="saveSpaceLoading"
>提交 >提交
</el-button </el-button
> >
@ -186,7 +186,8 @@ export default {
{required: true, message: "请输入货位名称", trigger: "blur"} {required: true, message: "请输入货位名称", trigger: "blur"}
], ],
}, },
modifySubInvList: [] modifySubInvList: [],
saveSpaceLoading: false,
}; };
}, },
watch: { watch: {
@ -303,7 +304,9 @@ export default {
saveSpace() { saveSpace() {
this.$refs['formData'].validate((valid) => { this.$refs['formData'].validate((valid) => {
if (valid) { if (valid) {
this.saveSpaceLoading = true
saveSpace(this.formData, this.formName).then((res) => { saveSpace(this.formData, this.formName).then((res) => {
this.saveSpaceLoading = false
if (res.code === 20000) { if (res.code === 20000) {
if ("add" === this.formName) { if ("add" === this.formName) {
this.$message.success("新增成功"); this.$message.success("新增成功");

File diff suppressed because it is too large Load Diff

@ -120,7 +120,7 @@
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button> <el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" @click.native="queryProductList" icon="el-icon-search">搜索</el-button> <el-button type="primary" @click.native="queryProductList" icon="el-icon-search">搜索</el-button>
<el-button type="primary" @click.native="formSubmit" icon="el-icon-check">选入</el-button> <el-button type="primary" @click.native="formSubmit" icon="el-icon-check" :loading="subLoading">选入</el-button>
</el-button-group> </el-button-group>
</div> </div>
@ -181,6 +181,7 @@ export default {
formLoading: false, formLoading: false,
productVisible: false, productVisible: false,
loading: false, loading: false,
subLoading: false,
productQuery: { productQuery: {
invCode: this.$store.getters.locInvCode, invCode: this.$store.getters.locInvCode,
invSpaceCode: null, invSpaceCode: null,
@ -258,7 +259,9 @@ export default {
relIdList: relIdList relIdList: relIdList
}; };
console.log(params) console.log(params)
this.subLoading = true
batchAddInvRemindSet(params).then((res) => { batchAddInvRemindSet(params).then((res) => {
this.subLoading = false
if (res.code === 20000) { if (res.code === 20000) {
this.$message.success("添加成功"); this.$message.success("添加成功");
this.closeDialog(); this.closeDialog();
@ -266,6 +269,7 @@ export default {
this.$message.error(res.message); this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
this.subLoading = false
this.$message.error(error.message); this.$message.error(error.message);
this.closeDialog(); this.closeDialog();
}) })

@ -206,7 +206,7 @@
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" size="small" @click.native="formSubmit()" <el-button type="primary" size="small" @click.native="formSubmit()" :loading="fromLoading"
>提交 >提交
</el-button> </el-button>
<el-button @click.native="cancelDialog" size="small">取消</el-button> <el-button @click.native="cancelDialog" size="small">取消</el-button>
@ -449,6 +449,7 @@ export default {
invlist: [], invlist: [],
invTotal: 0, invTotal: 0,
invLoading: false, invLoading: false,
fromLoading: false,
}; };
}, },
filters: { filters: {
@ -516,10 +517,11 @@ export default {
return; return;
} }
// this.formData.statusIds = this.getMenuAllCheckedKeys(); // this.formData.statusIds = this.getMenuAllCheckedKeys();
this.fromLoading = true
if (this.formName == "add") { if (this.formName == "add") {
saveWarehouse(this.formData, "save") saveWarehouse(this.formData, "save")
.then((response) => { .then((response) => {
this.loading = false; this.fromLoading = false
this.cancelDialog(); this.cancelDialog();
this.getList(); this.getList();
if (response.code === 20000) { if (response.code === 20000) {
@ -534,10 +536,12 @@ export default {
.catch(() => { .catch(() => {
this.cancelDialog(); this.cancelDialog();
this.loading = false; this.loading = false;
this.fromLoading = false
}); });
} else if (this.formName == "edit") { } else if (this.formName == "edit") {
saveWarehouse(this.formData, "edit") saveWarehouse(this.formData, "edit")
.then((response) => { .then((response) => {
this.fromLoading = false
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
this.getList(); this.getList();
@ -551,6 +555,7 @@ export default {
} }
}) })
.catch(() => { .catch(() => {
this.fromLoading = false
this.cancelDialog(); this.cancelDialog();
this.loading = false; this.loading = false;
}); });

@ -280,6 +280,7 @@
<el-button <el-button
type="primary" type="primary"
@click.native="forInvSubmit()" @click.native="forInvSubmit()"
:loading="submitLoading"
>提交 >提交
</el-button </el-button
> >
@ -492,6 +493,7 @@ export default {
sysList: [], sysList: [],
sysSubList: [], sysSubList: [],
advanceTypese: [], advanceTypese: [],
submitLoading: false,
}; };
}, },
methods: { methods: {
@ -640,7 +642,9 @@ export default {
forInvSubmit() { // --- forInvSubmit() { // ---
this.$refs["dataForm"].validate(valid => { this.$refs["dataForm"].validate(valid => {
if (valid) { if (valid) {
this.submitLoading = true
saveSubWarehouse(this.subData, this.formName).then((response) => { saveSubWarehouse(this.subData, this.formName).then((response) => {
this.submitLoading = false
this.subFormVisible = false; this.subFormVisible = false;
if (response.code == 20000) { if (response.code == 20000) {
this.getList(); this.getList();
@ -648,6 +652,7 @@ export default {
this.$message.error(response.message); this.$message.error(response.message);
} }
}).catch(() => { }).catch(() => {
this.submitLoading = false
this.subFormVisible = false; this.subFormVisible = false;
}); });
} }

@ -170,7 +170,7 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button> <el-button type="primary" @click="submitForm" :loading="subLoading"> </el-button>
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -223,7 +223,8 @@ export default {
dictType: [ dictType: [
{ required: true, message: "字典类型不能为空", trigger: "blur" } { required: true, message: "字典类型不能为空", trigger: "blur" }
] ]
} },
subLoading: false,
}; };
}, },
created() { created() {
@ -293,8 +294,10 @@ export default {
submitForm: function() { submitForm: function() {
this.$refs['form'].validate(valid => { this.$refs['form'].validate(valid => {
if (valid) { if (valid) {
this.subLoading = true
if (this.form.dictId != undefined) { if (this.form.dictId != undefined) {
updateType(this.form).then(response => { updateType(this.form).then(response => {
this.subLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$modal.msgSuccess('修改成功') this.$modal.msgSuccess('修改成功')
this.open = false this.open = false
@ -305,6 +308,7 @@ export default {
}) })
} else { } else {
addType(this.form).then(response => { addType(this.form).then(response => {
this.subLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$modal.msgSuccess('新增成功') this.$modal.msgSuccess('新增成功')
this.open = false this.open = false

@ -266,7 +266,7 @@
</el-row> </el-row>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button> <el-button type="primary" @click="submitForm" :loading="confirmLoading"> </el-button>
<el-button @click="cancel"> </el-button> <el-button @click="cancel"> </el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -326,7 +326,8 @@ export default {
path: [ path: [
{required: true, message: "路由地址不能为空", trigger: "blur"} {required: true, message: "路由地址不能为空", trigger: "blur"}
] ]
} },
confirmLoading: false
}; };
}, },
created() { created() {
@ -429,8 +430,10 @@ export default {
submitForm: function () { submitForm: function () {
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {
if (valid) { if (valid) {
this.confirmLoading = true
if (this.form.menuId != undefined) { if (this.form.menuId != undefined) {
updateMenu(this.form).then(response => { updateMenu(this.form).then(response => {
this.confirmLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
@ -442,6 +445,7 @@ export default {
}); });
} else { } else {
addMenu(this.form).then(response => { addMenu(this.form).then(response => {
this.confirmLoading = false
if (response.code == 20000) { if (response.code == 20000) {
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;

@ -84,7 +84,7 @@
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit" <el-button type="primary" size="small" icon="search" @click="onModifySubmit" :loading="subLoading"
>提交 >提交
</el-button </el-button
> >
@ -151,6 +151,7 @@ export default {
uploadFileUrl: null, uploadFileUrl: null,
headers: {}, headers: {},
configParms: {}, configParms: {},
subLoading: false,
}; };
@ -210,13 +211,16 @@ export default {
}, },
onModifySubmit() { onModifySubmit() {
this.subLoading = true
updateEntrustRece(this.inputQuery) updateEntrustRece(this.inputQuery)
.then((response) => { .then((response) => {
this.subLoading = false
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
this.getList(); this.getList();
}) })
.catch(() => { .catch(() => {
this.subLoading = false
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
}); });

@ -4,7 +4,8 @@
<el-card style="margin-top: -30px"> <el-card style="margin-top: -30px">
<el-button-group style="display: flex"> <el-button-group style="display: flex">
<el-button type="primary" @click.native="submitUpload()" style="margin: 0 60px 10px auto; height: 35px" <el-button type="primary" @click.native="submitUpload()" style="margin: 0 60px 10px auto; height: 35px"
:loading="loading">提交 :loading="subLoading"
>提交
</el-button> </el-button>
</el-button-group> </el-button-group>
<el-row> <el-row>
@ -26,7 +27,8 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item prop="menuName"> <el-form-item prop="menuName">
<el-input v-model="formData.menuName" auto-complete="off" :disabled="formData.auditStatus == 1"></el-input> <el-input v-model="formData.menuName" auto-complete="off" :disabled="formData.auditStatus == 1"
></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -70,21 +72,18 @@
<span>状态</span> <span>状态</span>
</div> </div>
</el-col> </el-col>
<el-col :span="8" type="flex"> <el-col :span="8" type="flex">
<el-form-item prop="userFlag"> <el-form-item prop="userFlag">
<el-radio-group v-model="formData.status" > <el-radio-group v-model="formData.status">
<el-radio :label="1">启用</el-radio> <el-radio :label="1">启用</el-radio>
<el-radio :label="0">禁用</el-radio> <el-radio :label="0">禁用</el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="3"> <el-col :span="3">
<div class="ao-text"> <div class="ao-text">
@ -109,7 +108,8 @@
:on-error="uploadHandleError" :on-error="uploadHandleError"
:file-list="fileList" :file-list="fileList"
:data="{type:'image2'}" :data="{type:'image2'}"
:auto-upload="true"> :auto-upload="true"
>
<el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1"> <el-button slot="trigger" size="small" type="primary" :disabled="formData.auditStatus == 1">
{{ choiceFile }} {{ choiceFile }}
</el-button> </el-button>
@ -130,34 +130,34 @@
</template> </template>
<script> <script>
import draggable from "vuedraggable"; import draggable from 'vuedraggable'
import store from "@/store"; import store from '@/store'
import {insertCompanyCert, updateCompanyCert} from "@/api/purchase/companyCert"; import { insertCompanyCert, updateCompanyCert } from '@/api/purchase/companyCert'
import {insertMenuHelp,updateMenuHelp} from "@/api/system/sysMenuHelp"; import { insertMenuHelp, updateMenuHelp } from '@/api/system/sysMenuHelp'
import { updateInv } from '@/api/auth/authAdmin' import { updateInv } from '@/api/auth/authAdmin'
import { isBlank } from '@/utils/strUtil' import { isBlank } from '@/utils/strUtil'
export default { export default {
name: "addhelpSettings", name: 'addhelpSettings',
props: { props: {
closeDialog: { closeDialog: {
type: Function, type: Function,
required: true, required: true
}, },
from: { from: {
type: Object, type: Object,
required: true, required: true
}, },
formName:{ formName: {
type: Object, type: Object,
required: true, required: true
} }
}, },
data() { data() {
return { return {
BASE_URL: process.env.VUE_APP_BASE_API, BASE_URL: process.env.VUE_APP_BASE_API,
code: "", code: '',
formData: { formData: {
type: 0, type: 0,
updateTime: null, updateTime: null,
@ -165,103 +165,106 @@ export default {
menuKey: null, menuKey: null,
menuName: null, menuName: null,
filePath: null, filePath: null,
status: null, status: null
}, },
formRules: { formRules: {
menuKey: [ menuKey: [
{required: true, message: "请输入组件路径", trigger: "blur"} { required: true, message: '请输入组件路径', trigger: 'blur' }
], ],
menuName: [ menuName: [
{required: true, message: "请输入菜单名称", trigger: "blur"} { required: true, message: '请输入菜单名称', trigger: 'blur' }
], ]
}, },
loading: false, loading: false,
uploadUrl: "", subLoading: false,
uploadUrl: '',
fileList: [], fileList: [],
headers: {}, headers: {},
choiceFile: "选取文件", choiceFile: '选取文件'
}; }
}, },
components: { components: {
draggable, draggable
}, },
methods: { methods: {
submitUpload() { submitUpload() {
this.$refs["dataForm"].validate(valid => { this.$refs['dataForm'].validate(valid => {
if (valid) { if (valid) {
if (this.$isBlank(this.formData.menuKey)) { if (this.$isBlank(this.formData.menuKey)) {
this.$message.error("组件路径不能为空!"); this.$message.error('组件路径不能为空!')
return; return
} }
if (this.$isBlank(this.formData.menuName)) { if (this.$isBlank(this.formData.menuName)) {
this.$message.error("菜单名称不能为空!"); this.$message.error('菜单名称不能为空!')
return; return
} }
this.subLoading = true
if(this.formName==2){ if (this.formName == 2) {
updateMenuHelp(this.formData).then((res) => { updateMenuHelp(this.formData).then((res) => {
if (res.code === 20000){ this.subLoading = false
this.$message.success( "修改状态成功"); if (res.code === 20000) {
this.closeDialog(); this.$message.success('修改状态成功')
} this.closeDialog()
}
}) })
} }
insertMenuHelp(this.formData).then((res) => { insertMenuHelp(this.formData).then((res) => {
if (res.code === 20000){ this.subLoading = false
this.$message.success( "添加成功"); if (res.code === 20000) {
this.closeDialog(); this.$message.success('添加成功')
this.closeDialog()
} }
}) })
} }
}); })
}, },
uploadHandleRemove(file, fileList) { uploadHandleRemove(file, fileList) {
console.log(file, fileList); console.log(file, fileList)
}, },
uploadHandlePreview(file) { uploadHandlePreview(file) {
console.log(file); console.log(file)
console.log(this.fileList); console.log(this.fileList)
}, },
uploadHandleExceed(files, fileList) { uploadHandleExceed(files, fileList) {
this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`); this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`)
}, },
uploadOnchange(file, fileList) { uploadOnchange(file, fileList) {
let fileName = file.name; let fileName = file.name
let uid = file.uid let uid = file.uid
let pos = fileName.lastIndexOf("."); let pos = fileName.lastIndexOf('.')
let lastName = fileName.substring(pos, fileName.length); let lastName = fileName.substring(pos, fileName.length)
if (lastName.toLowerCase() !== ".jpg" && lastName.toLowerCase() !== ".png" && lastName.toLowerCase() !== ".doc" && lastName.toLowerCase() !== ".pdf") { if (lastName.toLowerCase() !== '.jpg' && lastName.toLowerCase() !== '.png' && lastName.toLowerCase() !== '.doc' && lastName.toLowerCase() !== '.pdf') {
this.$message.error("上传文件只能是 jpg,png,doc,pdf 格式"); this.$message.error('上传文件只能是 jpg,png,doc,pdf 格式')
for (let i = 0; i < fileList.length; i++) {//list for (let i = 0; i < fileList.length; i++) {//list
if (fileList[i].uid === uid) { if (fileList[i].uid === uid) {
fileList.splice(i, 1) fileList.splice(i, 1)
} }
} }
return; return
} }
// //
const isLt = file.size / 1024 / 1024 / 2 <= 1; const isLt = file.size / 1024 / 1024 / 2 <= 1
if (!isLt) { if (!isLt) {
this.$message.error("上传文件大小不能超过 2MB"); this.$message.error('上传文件大小不能超过 2MB')
for (let i = 0; i < fileList.length; i++) { for (let i = 0; i < fileList.length; i++) {
if (fileList[i].uid === uid) { if (fileList[i].uid === uid) {
fileList.splice(i, 1) fileList.splice(i, 1)
} }
} }
} }
return isLt; return isLt
}, },
uploadHandleSuccess(response, file, fileList) { uploadHandleSuccess(response, file, fileList) {
if (response.code === 20000) { if (response.code === 20000) {
this.formData.filePath = response.data.name; this.formData.filePath = response.data.name
} else { } else {
this.$message.error("文件上传失败:" + response.message); this.$message.error('文件上传失败:' + response.message)
} }
}, },
uploadHandleError() { uploadHandleError() {
@ -269,38 +272,38 @@ export default {
}, },
toViewCompanyCert() { toViewCompanyCert() {
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; this.certFileUrl = this.BASE_URL + '/udiwms/image/register/file/getImage?type=image2&name='
window.open(this.certFileUrl + this.formData.filePath); window.open(this.certFileUrl + this.formData.filePath)
}, }
}, },
filters: {}, filters: {},
mounted() { mounted() {
document.body.ondrop = function (event) { document.body.ondrop = function(event) {
event.preventDefault(); event.preventDefault()
event.stopPropagation(); event.stopPropagation()
}; }
}, },
created() { created() {
this.uploadUrl = this.BASE_URL + "/udiwms/upload/register/file"; this.uploadUrl = this.BASE_URL + '/udiwms/upload/register/file'
this.headers = { this.headers = {
ADMINID: store.getters.adminId, ADMINID: store.getters.adminId,
ADMINTOKEN: store.getters.token, ADMINTOKEN: store.getters.token
}; }
if( isBlank(this.from.id)){ if (isBlank(this.from.id)) {
this.formData={}; this.formData = {}
}else{ } else {
// //
this.formData=this.from; this.formData = this.from
} }
if (this.formData.filePath != null) { if (this.formData.filePath != null) {
this.choiceFile = "更换文件"; this.choiceFile = '更换文件'
} else { } else {
this.choiceFile = "选取文件"; this.choiceFile = '选取文件'
} }
}, }
}; }
</script> </script>
<style scoped> <style scoped>

@ -91,7 +91,7 @@
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" size="small" @click="onAddSubmit" <el-button type="primary" size="small" @click="onAddSubmit" :loading="addLoading"
>提交 >提交
</el-button </el-button
> >
@ -169,6 +169,7 @@ export default {
edit: "编辑单据生成设置", edit: "编辑单据生成设置",
}, },
formName: null, formName: null,
addLoading: false,
}; };
}, },
@ -254,8 +255,9 @@ export default {
this.$message.error("单据类型名称不得为纯数字类型!"); this.$message.error("单据类型名称不得为纯数字类型!");
return; return;
} }
this.addLoading = true
addBusTypeChange(this.inputQuery).then((res) => { addBusTypeChange(this.inputQuery).then((res) => {
this.addLoading = false
if (res.code === 20000) { if (res.code === 20000) {
this.cancelDialog(); this.cancelDialog();
this.loading = false; this.loading = false;
@ -264,10 +266,12 @@ export default {
this.$message.error(res.message); this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
this.loading = false; this.addLoading = false
}); });
} else { } else {
this.addLoading = true
updateBusTypeChange(this.inputQuery).then((res) => { updateBusTypeChange(this.inputQuery).then((res) => {
this.addLoading = false
if (res.code === 20000) { if (res.code === 20000) {
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
@ -276,6 +280,7 @@ export default {
this.$message.error(res.message); this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
this.addLoading = false
this.loading = false; this.loading = false;
this.$message.error(error.message); this.$message.error(error.message);
this.cancelDialog(); this.cancelDialog();

@ -93,7 +93,7 @@
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" size="small" @click="onAddSubmit" <el-button type="primary" size="small" @click="onAddSubmit" :loading="addLoading"
>提交 >提交
</el-button </el-button
> >
@ -176,6 +176,7 @@ export default {
edit: "编辑出入库单据流转设置", edit: "编辑出入库单据流转设置",
}, },
formName: null, formName: null,
addLoading: false,
}; };
}, },
@ -259,28 +260,32 @@ export default {
this.$message.error("单据类型名称不得为纯数字类型!"); this.$message.error("单据类型名称不得为纯数字类型!");
return; return;
} }
this.addLoading = true
addBusTypePre(this.inputQuery).then((res) => { addBusTypePre(this.inputQuery).then((res) => {
this.addLoading = false
if (res.code === 20000) { if (res.code === 20000) {
this.loading = false; // this.loading = false;
this.cancelDialog(); this.cancelDialog();
this.getList(); this.getList();
} else { } else {
this.$message.error(res.message); this.$message.error(res.message);
} }
}).catch(() => { }).catch(() => {
this.addLoading = false
}); });
} else { } else {
this.addLoading = true
updateBusTypePre(this.inputQuery).then((res) => { updateBusTypePre(this.inputQuery).then((res) => {
this.addLoading = false
if (res.code === 20000) { if (res.code === 20000) {
this.loading = false;
this.cancelDialog(); this.cancelDialog();
this.getList(); this.getList();
} else { } else {
this.$message.error(res.message); this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
this.loading = false; this.addLoading = false
this.$message.error(error.message); this.$message.error(error.message);
this.cancelDialog(); this.cancelDialog();
}); });

@ -273,7 +273,7 @@
<div style='text-align: center; margin-bottom: 10px;margin-top: 18px ;'> <div style='text-align: center; margin-bottom: 10px;margin-top: 18px ;'>
<el-button type="primary" @click="saveSet"></el-button> <el-button type="primary" @click="saveSet" :loading="saveLoading">提交</el-button>
<el-button type="primary" @click="closeDialog"></el-button> <el-button type="primary" @click="closeDialog"></el-button>
</div> </div>
</el-card> </el-card>
@ -316,6 +316,7 @@ export default {
], ],
}, },
loading: false, loading: false,
saveLoading: false,
} }
}, },
@ -330,7 +331,9 @@ export default {
this.$message.warning("请选择" + this.invTitle + "!"); this.$message.warning("请选择" + this.invTitle + "!");
return; return;
} }
this.saveLoading = true
updateSet(data).then((response) => { updateSet(data).then((response) => {
this.saveLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.closeDialog(); this.closeDialog();
} else { } else {

@ -147,7 +147,7 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" size="small">提交</el-button> <el-button type="primary" @click="submitForm" size="small" :loading="submitLoading">提交</el-button>
<el-button @click="cancel" size="small">取消</el-button> <el-button @click="cancel" size="small">取消</el-button>
</div> </div>
</el-dialog> </el-dialog>
@ -299,7 +299,8 @@ export default {
roleSort: [ roleSort: [
{required: true, message: "角色顺序不能为空", trigger: "blur"} {required: true, message: "角色顺序不能为空", trigger: "blur"}
] ]
} },
submitLoading: false,
}; };
}, },
@ -541,6 +542,7 @@ export default {
submitForm: function () { submitForm: function () {
this.$refs["form"].validate(valid => { this.$refs["form"].validate(valid => {
if (valid) { if (valid) {
this.submitLoading = true
if (this.form.roleId != undefined) { if (this.form.roleId != undefined) {
this.form.menuIds = this.getMenuAllCheckedKeys(); this.form.menuIds = this.getMenuAllCheckedKeys();
if (this.form.menuIds.length == 0) { if (this.form.menuIds.length == 0) {
@ -548,6 +550,7 @@ export default {
return return
} }
updateRole(this.form).then(response => { updateRole(this.form).then(response => {
this.submitLoading = false
if (response.code === 20000) { if (response.code === 20000) {
this.$modal.msgSuccess("修改成功"); this.$modal.msgSuccess("修改成功");
this.open = false; this.open = false;
@ -563,6 +566,7 @@ export default {
return return
} }
addRole(this.form).then(response => { addRole(this.form).then(response => {
this.submitLoading = false
this.$modal.msgSuccess("新增成功"); this.$modal.msgSuccess("新增成功");
this.open = false; this.open = false;
this.getList(); this.getList();

@ -242,6 +242,7 @@
type="primary" type="primary"
size="small" size="small"
@click.native="formSubmit()" @click.native="formSubmit()"
:loading="formSubmitLoading"
>提交 >提交
</el-button </el-button
> >
@ -366,7 +367,8 @@ export default {
{required: true, message: "请输入密码", trigger: "blur"} {required: true, message: "请输入密码", trigger: "blur"}
] ]
}, },
deleteLoading: false deleteLoading: false,
formSubmitLoading: false,
}; };
}, },
methods: { methods: {
@ -513,10 +515,10 @@ export default {
} }
this.$refs["dataForm"].validate(valid => { this.$refs["dataForm"].validate(valid => {
if (valid) { if (valid) {
this.formLoading = true; this.formSubmitLoading = true;
let data = Object.assign({}, this.formData); let data = Object.assign({}, this.formData);
authAdminSave(data, this.formName).then(response => { authAdminSave(data, this.formName).then(response => {
this.formLoading = false; this.formSubmitLoading = false;
if (response.code !== 20000) { if (response.code !== 20000) {
this.$message.error(response.message); this.$message.error(response.message);
return false; return false;

Loading…
Cancel
Save