Browse Source

11

intex_online20241111
zhang_li 1 month ago
parent
commit
a9541bae06
  1. 4
      src/common/balance.js

4
src/common/balance.js

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

Loading…
Cancel
Save