zhengyiming
3 天以前 0e2cd06ac9a66da506a23002799cf2a398ff7c4c
apps/housekeepingMiniApp/src/pages/home/index.vue
@@ -1,5 +1,5 @@
<template>
  <PageLayoutWithBg class="index-page-wrapper" :title="'首页'" :need-auth="false">
  <PageLayoutWithBg class="index-page-wrapper" :title="'淘闪工'" :need-auth="false">
    <!-- <template #left>
      <div class="menu-btn-wrapper menu-logo">
        <img :src="IconLogo" class="logo" />
@@ -94,6 +94,7 @@
import { setOSSLink, trim } from '@12333/utils';
import * as standardServiceServices from '@12333/services/apiV2/standardService';
import { EnumPagedListOrder, EnumStandardServiceReleaseStatus } from '@12333/constants';
import { useSystemStore } from '@/stores/modules/system';
const { locationCity } = useUser();
@@ -159,10 +160,12 @@
}
const switchTab = useSwitchTab();
const systemStore = useSystemStore();
function goService(item: API.SelectOptionStringGetDictionaryDataSelectQueryResultOption) {
  systemStore.setServicePageJobCode(item.value);
  switchTab({
    url: `${RouterPath.service}?id=${item.value}`,
    url: `${RouterPath.service}`,
  });
}
</script>