opt:代码提交

This commit is contained in:
2026-08-04 19:10:07 +07:00
parent 285d15af7a
commit 87a7cdd496
13 changed files with 194 additions and 27 deletions

View File

@@ -53,6 +53,14 @@ export function getPoint(data) {
})
}
export function getPointByBillType(data) {
return request({
url: '/api/point/getPointByBillType',
method: 'post',
data
})
}
export function getRegion() {
return request({
url: '/api/point/getRegion',
@@ -90,4 +98,4 @@ export function download() {
})
}
export default { add, edit, del, changeActive, changeActives, findPoints, getPoint, getRegion, changeUsed, changeLock, sync }
export default { add, edit, del, changeActive, changeActives, findPoints, getPoint, getPointByBillType, getRegion, changeUsed, changeLock, sync }

View File

@@ -409,7 +409,7 @@ export default {
var area_type = '1791031105286180864'
crudPoint.getPoint({ 'area_type': area_type }).then(res => {
crudPoint.getPointByBillType({ 'area_type': area_type, 'bill_type': this.mstrow.bill_type }).then(res => {
this.pointList = res
})