diff --git a/src/api/cost/cost.js b/src/api/cost/cost.js
index 90759100..e86b8411 100644
--- a/src/api/cost/cost.js
+++ b/src/api/cost/cost.js
@@ -36,6 +36,15 @@ export function getSltInfo(params){
})
}
+// 查询材料站结算待审核详情(仅需 sltApplyCode)
+export function getClzSettledInfo(sltApplyCode) {
+ return request({
+ url: '/material/material_sltAgreementInfo/getSettledInfo',
+ method: 'get',
+ params: { sltApplyCode }
+ })
+}
+
// 查询材料站费用结算申请详情
export function getClzSltInfo(params){
return request({
@@ -119,6 +128,15 @@ export function getSltList(query) {
})
}
+// 查询材料站的结算审批列表
+export function getClzSltList(query) {
+ return request({
+ url: '/material/material_sltAgreementInfo/getSltList',
+ method: 'get',
+ params: query
+ })
+}
+
// 查询已结算报表列表
export function getSltReportedList(params){
return request({
@@ -137,6 +155,15 @@ export function costExamine(params){
})
}
+// 材料站结算审批提交
+export function clzCostExamine(params){
+ return request({
+ url: '/material/material_sltAgreementInfo/costExamine',
+ method: 'post',
+ data: params
+ })
+}
+
// 查询减免费用列表
export function getReliefList(query) {
return request({
diff --git a/src/api/stquery/stquery.js b/src/api/stquery/stquery.js
index 2aaccd20..3cc09462 100644
--- a/src/api/stquery/stquery.js
+++ b/src/api/stquery/stquery.js
@@ -193,6 +193,15 @@ export function getAllUsDetailsApi(query) {
})
}
+// 查询配件使用查询列表
+export function getPartUsingListApi(query) {
+ return request({
+ url: '/material/repair/getPartUsingList',
+ method: 'get',
+ params: query
+ })
+}
+
diff --git a/src/views/material/repair/partUsing/index.vue b/src/views/material/repair/partUsing/index.vue
new file mode 100644
index 00000000..56011bac
--- /dev/null
+++ b/src/views/material/repair/partUsing/index.vue
@@ -0,0 +1,334 @@
+
+