fix:位置信息修改 #118

Merged
zhaohui merged 1 commits from fix/changeimgback into test 1 year ago

@ -271,11 +271,17 @@ async function getTableData() {
"拜访小结",
"拜访项目类别",
];
fieldList.map((v) => {
if (userFieldList.includes(v.name)) {
let locationobj = {address:""}
if(v.name=='location'){
locationobj=JSON.parse(taskDetailInfo.value.ocrPicture[v.name]);
}
const item = {
label: v.fieldDesc,
value: taskDetailInfo.value.ocrPicture[v.name],
value: v.name=='location'?locationobj.address:taskDetailInfo.value.ocrPicture[v.name],
key: v.name,
blue: blueList.includes(v.fieldDesc),
};

Loading…
Cancel
Save