|
|
|
@ -3,11 +3,11 @@
|
|
|
|
|
<div class="avue-crud"> |
|
|
|
|
<el-row v-if="!search"> |
|
|
|
|
<!-- 查询模块 --> |
|
|
|
|
<el-form :inline="true" :model="query" style='width:100%'> |
|
|
|
|
<el-form :inline="true" :model="query" style="width: 100%"> |
|
|
|
|
<!-- 查询按钮 --> |
|
|
|
|
|
|
|
|
|
<el-form-item class='fr-fo'> |
|
|
|
|
<el-col class='el-sl'> |
|
|
|
|
<el-form-item class="fr-fo"> |
|
|
|
|
<el-col class="el-sl"> |
|
|
|
|
<div> |
|
|
|
|
<el-form-item label="启用状态:" prop="areaStatus"> |
|
|
|
|
<!-- <el-input v-model="form.areaStatus" placeholder="请输入货区状态;1-启用,2-禁用"/>--> |
|
|
|
@ -61,7 +61,12 @@
|
|
|
|
|
<el-button type="danger" icon="el-icon-delete" @click="handleDelete" plain |
|
|
|
|
>删 除</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="danger" icon="el-icon-download" @click="handleExport" plain |
|
|
|
|
<el-button |
|
|
|
|
type="danger" |
|
|
|
|
icon="el-icon-download" |
|
|
|
|
:loading="buttonLoadingList.handleExportBtn" |
|
|
|
|
@click="handleExport" |
|
|
|
|
plain |
|
|
|
|
>导 出 货 区</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="danger" icon="el-icon-upload" plain @click="handleImport" |
|
|
|
@ -229,7 +234,11 @@
|
|
|
|
|
<!-- 表单按钮 --> |
|
|
|
|
<template #footer> |
|
|
|
|
<span v-if="!view" class="dialog-footer"> |
|
|
|
|
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmit" |
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
icon="el-icon-circle-check" |
|
|
|
|
:loading="buttonLoadingList.handleSubmitBtn" |
|
|
|
|
@click="handleSubmit" |
|
|
|
|
>提 交</el-button |
|
|
|
|
> |
|
|
|
|
<el-button icon="el-icon-circle-close" @click="handleClose">取 消</el-button> |
|
|
|
@ -470,6 +479,7 @@ export default {
|
|
|
|
|
areaType: [{ required: true, message: '请选择货区类型!', trigger: 'change' }], |
|
|
|
|
}, |
|
|
|
|
aaa: false, |
|
|
|
|
buttonLoadingList: { handleSubmitBtn: false, handleExportBtn: false }, |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
@ -571,6 +581,8 @@ export default {
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleExport(row) { |
|
|
|
|
try { |
|
|
|
|
this.buttonLoadingList.handleExportBtn = true; |
|
|
|
|
let downloadUrl = `/api/logpm-basicdata/goodsArea/export-warehouseGoodsArea?${ |
|
|
|
|
this.website.tokenHeader |
|
|
|
|
}=${getToken()}`; |
|
|
|
@ -593,11 +605,16 @@ export default {
|
|
|
|
|
NProgress.done(); |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} finally { |
|
|
|
|
this.buttonLoadingList.handleExportBtn = false; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
handleSubmit() { |
|
|
|
|
//表单校验 |
|
|
|
|
this.$refs.form.validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
this.buttonLoadingList.handleSubmitBtn = true; |
|
|
|
|
try { |
|
|
|
|
if (!this.form.id) { |
|
|
|
|
add(this.form).then(() => { |
|
|
|
|
this.box = false; |
|
|
|
@ -618,6 +635,9 @@ export default {
|
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} finally { |
|
|
|
|
this.buttonLoadingList.handleSubmitBtn = false; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
console.log('error submit!!'); |
|
|
|
|
return false; |
|
|
|
@ -853,12 +873,12 @@ export default {
|
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang='scss'> |
|
|
|
|
.fr-fo{ |
|
|
|
|
width:100%; |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
.fr-fo { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
.el-sl{ |
|
|
|
|
display:flex; |
|
|
|
|
.el-sl { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|