材料站班组结算协议查询1

This commit is contained in:
syruan 2025-07-30 15:38:01 +08:00
parent ea32584ac9
commit cb9e07f041
2 changed files with 31 additions and 3 deletions

View File

@ -27,6 +27,16 @@ export function getSltInfo(params){
}) })
} }
// 查询材料站费用结算申请详情
export function getClzSltInfo(params){
return request({
url: '/material/material_sltAgreementInfo/getSltInfo',
method: 'post',
data: params
})
}
// 费用结算申请提交 // 费用结算申请提交
export function submitFee(params){ export function submitFee(params){
return request({ return request({
@ -36,6 +46,15 @@ export function submitFee(params){
}) })
} }
// 材料站费用结算申请提交
export function submitClzFee(params){
return request({
url: '/material/material_sltAgreementInfo/submitFee',
method: 'post',
data: params
})
}
// 查询费用结算审核列表 // 查询费用结算审核列表
export function getSltExam(query) { export function getSltExam(query) {
return request({ return request({
@ -73,6 +92,15 @@ export function submitCosts(params){
}) })
} }
// 材料站费用结算提交
export function submitClzCosts(params){
return request({
url: '/material/material_sltAgreementInfo/submitCosts',
method: 'post',
data: params
})
}
// 查询结算审批列表 // 查询结算审批列表
export function getSltList(query) { export function getSltList(query) {
return request({ return request({

View File

@ -190,7 +190,7 @@
</template> </template>
<script> <script>
import { getSltInfo, submitCosts } from '@/api/cost/cost' import { getSltInfo, getClzSltInfo, submitCosts, submitClzCosts } from '@/api/cost/cost'
export default { export default {
name: '', name: '',
@ -242,7 +242,7 @@ export default {
}, },
/** 查询列表 */ /** 查询列表 */
getDataAll() { getDataAll() {
getSltInfo(this.rowData).then(response => { getClzSltInfo(this.rowData).then(response => {
this.leaseList = response.data.leaseList // this.leaseList = response.data.leaseList //
this.projectName = response.data.projectName this.projectName = response.data.projectName
this.unitName = response.data.unitName this.unitName = response.data.unitName
@ -318,7 +318,7 @@ export default {
reductionList: this.reducList reductionList: this.reducList
} }
console.log('2222222222222', params) console.log('2222222222222', params)
submitCosts(params).then(response => { submitClzCosts(params).then(response => {
this.$message({ this.$message({
type: 'success', type: 'success',
message: '提交成功' message: '提交成功'