库存查询,文件导入导出等

master
anthonywj 3 years ago
parent 87527aeaf8
commit 77ab482a99

@ -1,7 +1,7 @@
{ {
"BASE_URL":"http://139.159.187.130:8080/UDI_WMS_MC", "BASE_URL":"http://127.0.0.1:9991",
"SERVER_IP": "http://139.159.187.130:8080/", "SERVER_IP": "http://127.0.0.1:9991/",
"WEBSOCKET_URL": "ws://139.159.187.130:8080/UDI_WMS_MC/api/websocket/" "BASE_URL2": "ws://127.0.0.1:9991/api/websocket/"
} }

@ -8,7 +8,13 @@
style="width: 400px" style="width: 400px"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item class="query-form-item">
<el-select v-model="filterQuery.enable" placeholder="启用状态" clearable>
<el-option label="全部" value=""></el-option>
<el-option label="已启用" value="1"></el-option>
<el-option label="未启用" value="0"></el-option>
</el-select>
</el-form-item>
<el-form-item> <el-form-item>
<el-button-group> <el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
@ -110,6 +116,7 @@
data() { data() {
return { return {
filterQuery: { filterQuery: {
enable: "1",
udiwmsType: "", udiwmsType: "",
thirdType: "", thirdType: "",
page: 1, page: 1,
@ -144,6 +151,7 @@
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
enable: null,
udiwmsType: "", udiwmsType: "",
thirdType: "", thirdType: "",
page: 1, page: 1,
@ -170,7 +178,10 @@
this.total = 0; this.total = 0;
}); });
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
onAddSubmit() { onAddSubmit() {
insertBussinessType(this.inputQuery) insertBussinessType(this.inputQuery)

@ -160,6 +160,10 @@
}; };
return statusMap[status]; return statusMap[status];
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
}, },
mounted() { mounted() {
}, },

@ -175,15 +175,18 @@
}; };
return statusMap[status]; return statusMap[status];
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
}, },
mounted() { mounted() {
}, },
created() { created() {
this.getList(); this.getList();
}, },
filters: { filters: {},
},
}; };
</script> </script>
<style> <style>

@ -148,6 +148,10 @@
this.total = 0; this.total = 0;
}); });
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
}, },
mounted() { mounted() {
}, },

@ -158,6 +158,10 @@
console.log("----" + val); console.log("----" + val);
this.multipleSelection = val; this.multipleSelection = val;
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
} }
} }

@ -196,6 +196,10 @@
console.log("----" + val); console.log("----" + val);
this.multipleSelection = val; this.multipleSelection = val;
}, },
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
} }
} }

Loading…
Cancel
Save