|
|
@ -18,13 +18,26 @@
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button-group style="margin-left: 10px;display:flex;">
|
|
|
|
<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" icon="search" @click="getList">查询</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
|
|
|
<el-button type="primary" @click.native="handleForm(null, null,'addTop')"
|
|
|
|
<el-button type="primary" @click.native="handleForm(null, null,'addTop')"
|
|
|
|
>添加仓库
|
|
|
|
>添加仓库
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-upload
|
|
|
|
|
|
|
|
:action="uploadFileUrl"
|
|
|
|
|
|
|
|
multiple
|
|
|
|
|
|
|
|
:limit="1"
|
|
|
|
|
|
|
|
:data="uploadData"
|
|
|
|
|
|
|
|
:show-file-list="false"
|
|
|
|
|
|
|
|
:on-success="handleChange"
|
|
|
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-button size="mini" type="primary">导入仓库信息</el-button>
|
|
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
|
|
<el-button type="primary" icon="search" @click="exportInvwarehouse">导出仓库信息</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
@ -259,8 +272,10 @@
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
filterList,
|
|
|
|
filterList,
|
|
|
|
saveWarehouse,
|
|
|
|
saveWarehouse,
|
|
|
|
deleteWarehouse
|
|
|
|
deleteWarehouse, exportJson
|
|
|
|
} from "../../api/basic/invWarehouse";
|
|
|
|
} from "../../api/basic/invWarehouse";
|
|
|
|
|
|
|
|
import {formatDate} from "@/utils/date";
|
|
|
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
const formJson = {
|
|
|
|
id: null,
|
|
|
|
id: null,
|
|
|
@ -290,6 +305,8 @@ export default {
|
|
|
|
label: "name"
|
|
|
|
label: "name"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
treeList: [],
|
|
|
|
treeList: [],
|
|
|
|
|
|
|
|
fileList: [],
|
|
|
|
|
|
|
|
uploadData: {},
|
|
|
|
loading: true,
|
|
|
|
loading: true,
|
|
|
|
index: null,
|
|
|
|
index: null,
|
|
|
|
formName: null,
|
|
|
|
formName: null,
|
|
|
@ -316,7 +333,8 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
pidData: {}
|
|
|
|
pidData: {}
|
|
|
|
,
|
|
|
|
,
|
|
|
|
deleteLoading: false
|
|
|
|
deleteLoading: false,
|
|
|
|
|
|
|
|
uploadFileUrl: null,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
;
|
|
|
|
;
|
|
|
|
},
|
|
|
|
},
|
|
|
@ -538,7 +556,45 @@ export default {
|
|
|
|
CurrentDate += '0' + Day
|
|
|
|
CurrentDate += '0' + Day
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CurrentDate
|
|
|
|
return CurrentDate
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
exportInvwarehouse() {
|
|
|
|
|
|
|
|
let tquery = {};
|
|
|
|
|
|
|
|
exportJson(tquery).then((response) => {
|
|
|
|
|
|
|
|
const binaryData = [];
|
|
|
|
|
|
|
|
binaryData.push(response);
|
|
|
|
|
|
|
|
let url = window.URL.createObjectURL(
|
|
|
|
|
|
|
|
new Blob(binaryData, {type: "application/json"})
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
const eleLink = document.createElement('a');
|
|
|
|
|
|
|
|
var timestamp = formatDate(new Date(), "yyyy-MM-dd_hh:mm")
|
|
|
|
|
|
|
|
eleLink.download = "仓库信息导出" + timestamp + ".json";
|
|
|
|
|
|
|
|
eleLink.style.display = 'none';
|
|
|
|
|
|
|
|
eleLink.href = url;
|
|
|
|
|
|
|
|
document.body.appendChild(eleLink)
|
|
|
|
|
|
|
|
eleLink.click()
|
|
|
|
|
|
|
|
document.body.removeChild(eleLink)
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
handleChange(response, files, fileList) {
|
|
|
|
|
|
|
|
if (response.code != 20000) {
|
|
|
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
|
|
|
|
|
|
|
|
this.$message.success(response.data);
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
init() {
|
|
|
|
|
|
|
|
axios.get("./config.json").then(res => {
|
|
|
|
|
|
|
|
// 基础地址
|
|
|
|
|
|
|
|
let response = res.data.BASE_URL;
|
|
|
|
|
|
|
|
this.uploadFileUrl = response + "/spms/inv/warehouse/uploadJson";
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
filters: {
|
|
|
|
statusFilterType(status) {
|
|
|
|
statusFilterType(status) {
|
|
|
@ -560,6 +616,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
// 加载表格数据
|
|
|
|
// 加载表格数据
|
|
|
|
|
|
|
|
this.init();
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|