Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #7840 from tokyo-metropolitan-gov/staging
Browse files Browse the repository at this point in the history
Release 2023/05/08
  • Loading branch information
nyagihime authored May 8, 2023
2 parents d98dc00 + 2d4e9e6 commit 1ab6a22
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 1 deletion.
6 changes: 5 additions & 1 deletion assets/locales/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -1111,5 +1111,9 @@
"オミクロン株対応ワクチン接種数 (接種率)": "オミクロン株対応ワクチン接種数 (接種率)",
"接種率(オミクロン株対応ワクチン)": "接種率(オミクロン株対応ワクチン)",
"接種数(オミクロン株対応ワクチン)": "接種数(オミクロン株対応ワクチン)",
"年代別ワクチン接種状況等の詳細はこちら": "年代別ワクチン接種状況等の詳細はこちら"
"年代別ワクチン接種状況等の詳細はこちら": "年代別ワクチン接種状況等の詳細はこちら",
"新型コロナ感染症の感染動向等に関する情報については、{covid19portal}からご確認ください。": "新型コロナ感染症の感染動向等に関する情報については、{covid19portal}からご確認ください。",
"新型コロナ感染症の5類移行に伴い、5月8日をもって本サイトの更新は停止いたします。": "新型コロナ感染症の5類移行に伴い、5月8日をもって本サイトの更新は停止いたします。",
"過去のオープンデータについては、引き続き、{opendatacatalog}からご覧いただけます。": "過去のオープンデータについては、引き続き、{opendatacatalog}からご覧いただけます。",
"なお、本サイトは、5月末をもって閉鎖いたします。": "なお、本サイトは、5月末をもって閉鎖いたします。"
}
5 changes: 5 additions & 0 deletions auto-i18n/result.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1181,3 +1181,8 @@ TAG_ADD,オミクロン株対応ワクチン接種数 (接種率)
TAG_ADD,接種率(オミクロン株対応ワクチン)
TAG_ADD,接種数(オミクロン株対応ワクチン)
TAG_ADD,年代別ワクチン接種状況等の詳細はこちら
RUN,2023/05/08 17:30
TAG_ADD,新型コロナ感染症の感染動向等に関する情報については、{covid19portal}からご確認ください。
TAG_ADD,新型コロナ感染症の5類移行に伴い、5月8日をもって本サイトの更新は停止いたします。
TAG_ADD,過去のオープンデータについては、引き続き、{opendatacatalog}からご覧いただけます。
TAG_ADD,なお、本サイトは、5月末をもって閉鎖いたします。
59 changes: 59 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
<template>
<div>
<div class="AttentionNote">
<div class="AttentionNote-Emphasis">
<p>
{{
$t(
'新型コロナ感染症の5類移行に伴い、5月8日をもって本サイトの更新は停止いたします。'
)
}}
</p>
<i18n
tag="p"
path="新型コロナ感染症の感染動向等に関する情報については、{covid19portal}からご確認ください。"
>
<template #covid19portal>
<app-link
to="https://www.fukushihoken.metro.tokyo.lg.jp/iryo/kansen/corona_portal/index.html"
>
{{ $t('新型コロナ保健医療情報ポータル') }}
</app-link>
</template>
</i18n>
</div>

<p>{{ $t('なお、本サイトは、5月末をもって閉鎖いたします。') }}</p>
<i18n
tag="p"
path="過去のオープンデータについては、引き続き、{opendatacatalog}からご覧いただけます。"
>
<template #opendatacatalog>
<app-link to="https://portal.data.metro.tokyo.lg.jp/1097/">
{{ $t('東京都オープンデータカタログサイト') }}
</app-link>
</template>
</i18n>
</div>
<page-header
:icon-path="headerItem.iconPath"
:title="headerItem.title"
Expand All @@ -16,6 +51,7 @@ import Vue from 'vue'
import { ThisTypedComponentOptionsWithRecordProps } from 'vue/types/options'
import type { MetaInfo } from 'vue-meta'
import AppLink from '@/components/_shared/AppLink.vue'
import PageHeader from '@/components/_shared/PageHeader.vue'
import CardsTab from '@/components/index/CardsTab.vue'
import SiteTopUpper from '@/components/index/SiteTopUpper.vue'
Expand Down Expand Up @@ -44,6 +80,7 @@ const options: ThisTypedComponentOptionsWithRecordProps<
Props
> = {
components: {
AppLink,
CardsTab,
PageHeader,
SiteTopUpper,
Expand Down Expand Up @@ -73,3 +110,25 @@ const options: ThisTypedComponentOptionsWithRecordProps<
export default options
</script>

<style lang="scss" scoped>
.AttentionNote {
margin-bottom: 28px;
padding: 18px;
background-color: $notice;
border-radius: 4px;
color: $gray-2;
@include font-size(14);
p {
margin: 0;
}
&-Emphasis {
@include font-size(16);
margin-bottom: 16px;
}
}
</style>

0 comments on commit 1ab6a22

Please sign in to comment.