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

master
anthonywj 3 years ago
parent 87527aeaf8
commit 77ab482a99

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

@ -8,7 +8,13 @@
style="width: 400px"
></el-input>
</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-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
@ -110,6 +116,7 @@
data() {
return {
filterQuery: {
enable: "1",
udiwmsType: "",
thirdType: "",
page: 1,
@ -144,6 +151,7 @@
path: "",
});
this.filterQuery = {
enable: null,
udiwmsType: "",
thirdType: "",
page: 1,
@ -170,7 +178,10 @@
this.total = 0;
});
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
onAddSubmit() {
insertBussinessType(this.inputQuery)

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

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

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

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

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

Loading…
Cancel
Save