| {{Number(i) + 1}} |
- {{e.mfg_order_name}} |
+ {{e.source_container_name}} |
{{e.container_name}} |
{{e.point_code}} |
{{e.split_group}} |
{{e.manufacture_sort}} |
{{e.manufacture_date}} |
+ {{e.mfg_order_name}} |
{{e.paper_tube_or_FRP}} |
{{e.paper_tube_material}} |
{{e.paper_tube_description}} |
@@ -83,6 +95,7 @@
data() {
return {
val1: '',
+ val2: '',
options: [],
index: '',
dataList: [],
@@ -121,7 +134,7 @@
},
/** 初始化查询 */
async _feedingQueryMaterialInfo () {
- let res = await feedingQueryMaterialInfo(this.index, this.val1, this.pageNum + '', this.pageSize + '')
+ let res = await feedingQueryMaterialInfo(this.index, this.val1, this.val2, this.pageNum + '', this.pageSize + '')
this.totalCount = res.size
if (res.size > 0) {
const dataMap = res.data
diff --git a/utils/getData2.js b/utils/getData2.js
index 5620f00..c664f2d 100644
--- a/utils/getData2.js
+++ b/utils/getData2.js
@@ -345,11 +345,12 @@ export const virtualprintType = (url) => request1({
* 分切上料
*/
// 1.1分切计划初始化查询
-export const feedingQueryMaterialInfo = (area, code, page, size) => request({
+export const feedingQueryMaterialInfo = (area, dcode, sname, page, size) => request({
url:'api/pda/feeding/queryMaterialInfo',
data: {
product_area: area,
- point_code: code,
+ device_code: dcode,
+ source_container_name: sname,
page: page,
size: size
}