diff --git a/src/api/materialsStation/index.js b/src/api/materialsStation/index.js index 45d1979a..807cf72e 100644 --- a/src/api/materialsStation/index.js +++ b/src/api/materialsStation/index.js @@ -773,3 +773,49 @@ export function getListDetailsApi(data) { params: data }) } + +//分公司下拉 +export function getImpUnitListApi(query) { + return request({ + url: '/material/material_maMachine/getImpUnitNameList', + method: 'get', + params: query + }) +} + +//项目部下拉 +export function getDepartListByImpUnitApi(query) { + return request({ + url: '/material/material_maMachine/getDepartNameList', + method: 'get', + params: query + }) +} + +//工程下拉 +export function getProListByDepartApi(query) { + return request({ + url: '/material/material_maMachine/getProjectList', + method: 'get', + params: query + }) +} + +//班组下拉 +export function getTeamList(query) { + return request({ + url: '/material/material_maMachine/getTeamList', + method: 'get', + params: query + }) +} + +//分包单位下拉 +export function getSubUnitList(query) { + return request({ + url: '/material/material_maMachine/getSubUnitList', + method: 'get', + params: query + }) +} + diff --git a/src/views/materialsStation/equipment/equipmentRecord/index.vue b/src/views/materialsStation/equipment/equipmentRecord/index.vue index f6d785ef..9d87877a 100644 --- a/src/views/materialsStation/equipment/equipmentRecord/index.vue +++ b/src/views/materialsStation/equipment/equipmentRecord/index.vue @@ -2,67 +2,127 @@
- + @change="handleImpUnitChange" + > + + + - + @change="handleDepartChange" + > + + + + - + @change="getTeamList" + > + + + - + > + + + - + > + + + - + @change="handleMaModel" + > + + + - + > + + 查询 @@ -87,18 +147,30 @@
-
{{ tipForm.allNum || 0 }}
-
总保有量
+
{{ tipForm.countNum || 0 }}
+
计件类总保有量
+
+
+
{{ tipForm.ropeNum || 0 }}
+
绳索类总保有量
-
{{ tipForm.inNum || 0 }}
-
站内数量
+
{{ tipForm.inCountNum || 0 }}
+
计件类站内数量
+
+
+
{{ tipForm.inRopeNum || 0 }}
+
绳索类站内数量
-
{{ tipForm.useNum || 0 }}
-
在用数量
+
{{ tipForm.useCountNum || 0 }}
+
计件类在用数量
+
+
+
{{ tipForm.useRopeNum || 0 }}
+
绳索类在用数量
@@ -133,6 +205,7 @@ +