|
|
@ -75,7 +75,7 @@ export function getPrecisionStrategyParamsByLocation(detailSource, toLocationCod |
|
|
|
* @param {*} |
|
|
|
* |
|
|
|
*/ |
|
|
|
export function getPrecisionStrategyList(itemList, callback) { |
|
|
|
export async function getPrecisionStrategyList(itemList, callback) { |
|
|
|
// let jsonParem = JSON.stringify(param)
|
|
|
|
let result = { |
|
|
|
list: [], |
|
|
@ -83,7 +83,7 @@ export function getPrecisionStrategyList(itemList, callback) { |
|
|
|
message: '' |
|
|
|
}; |
|
|
|
|
|
|
|
getPrecisionStrategy(itemList).then(res => { |
|
|
|
await getPrecisionStrategy(itemList).then(res => { |
|
|
|
if (res.data == null) { |
|
|
|
result.success = false |
|
|
|
result.message = '未查询到管理精度信息' |
|
|
|