update
1.添加急救路线
This commit is contained in:
@@ -7,10 +7,9 @@ export const legend1 = new URL('/@/assets/img/legend1.png', import.meta.url).hre
|
||||
export const legend2 = new URL('/@/assets/img/legend5.png', import.meta.url).href;
|
||||
export const legend3 = new URL('/@/assets/img/legend3.png', import.meta.url).href;
|
||||
|
||||
async function getDict(code) {
|
||||
return await getDictByCode2({ dictCode: code });
|
||||
}
|
||||
export const checkData = await getDict('xj_check_type');
|
||||
export const checkData = await (async () => {
|
||||
return await getDictByCode2({ dictCode: 'xj_check_type' });
|
||||
})();
|
||||
|
||||
export function getClassCharts(dx, dy, m) {
|
||||
return {
|
||||
@@ -159,7 +158,7 @@ export function infoContent1(res) {
|
||||
</div>
|
||||
<div class="modal-item">
|
||||
<span class="item-one">地点:</span>
|
||||
<span class="item-two">${res.name ? res.name : '--'}</span>
|
||||
<span class="item-two">${res.orgName ? res.orgName : '--'}</span>
|
||||
</div>
|
||||
</div> `;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user