doctor-admin-components 1.0.13-beta.72 → 1.0.13-beta.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -129,10 +129,10 @@ export function getByContractId(contractId) {
|
|
|
129
129
|
}
|
|
130
130
|
|
|
131
131
|
// 查询作废的装运销售合同列表
|
|
132
|
-
export function haveVoidShipment(
|
|
132
|
+
export function haveVoidShipment(contractId) {
|
|
133
133
|
return request({
|
|
134
|
-
url: '/biz/contract/haveVoidShipment/
|
|
134
|
+
url: '/biz/contract/haveVoidShipment/' + contractId,
|
|
135
135
|
method: 'get',
|
|
136
|
-
params:
|
|
136
|
+
params: {}
|
|
137
137
|
})
|
|
138
138
|
}
|
|
@@ -916,7 +916,7 @@ export default {
|
|
|
916
916
|
console.error(error)
|
|
917
917
|
})
|
|
918
918
|
// 查询是否有可引用的
|
|
919
|
-
haveVoidShipment(
|
|
919
|
+
haveVoidShipment(contract.contractId)
|
|
920
920
|
.then((res) => {
|
|
921
921
|
this.voidInvoiceList = res.rows && res.rows.length > 0 ? res.rows : null
|
|
922
922
|
})
|