Commit 8fd4d870 authored by youjie's avatar youjie

no message

parent 7ec07a1b
...@@ -1167,6 +1167,7 @@ export default { ...@@ -1167,6 +1167,7 @@ export default {
month: '月' month: '月'
}, },
scheduledTripDetails:{ scheduledTripDetails:{
pageTitle: 'スケジュールの詳細です',
since: '起きます', since: '起きます',
selectionscheme: '案を選びます', selectionscheme: '案を選びます',
headerlabel:{ headerlabel:{
......
...@@ -1167,6 +1167,7 @@ export default { ...@@ -1167,6 +1167,7 @@ export default {
month:"달" month:"달"
}, },
scheduledTripDetails:{ scheduledTripDetails:{
pageTitle: '여정 상세 상황',
since:'일어나', since:'일어나',
selectionscheme:"배열 선택", selectionscheme:"배열 선택",
headerlabel:{ headerlabel:{
......
...@@ -1167,6 +1167,7 @@ export default { ...@@ -1167,6 +1167,7 @@ export default {
month: '月' month: '月'
}, },
scheduledTripDetails:{ scheduledTripDetails:{
pageTitle: '行程詳情',
since: '起', since: '起',
selectionscheme: '選擇方案', selectionscheme: '選擇方案',
headerlabel:{ headerlabel:{
......
...@@ -286,6 +286,7 @@ import { inject, reactive, toRefs, defineComponent, ref, watch, getCurrentInstan ...@@ -286,6 +286,7 @@ import { inject, reactive, toRefs, defineComponent, ref, watch, getCurrentInstan
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { useI18n } from 'vue-i18n' import { useI18n } from 'vue-i18n'
import { DirtionmaryHelper } from 'src/config/dictionary' import { DirtionmaryHelper } from 'src/config/dictionary'
import useMetaModule from '../../module/meta/metaModule'
import scheduledTripService from 'src/api/scheduledTrip' import scheduledTripService from 'src/api/scheduledTrip'
import { ApiResult } from 'src/@types/enumHelper' import { ApiResult } from 'src/@types/enumHelper'
import message from 'src/utils/message' import message from 'src/utils/message'
...@@ -318,7 +319,11 @@ export default defineComponent({ ...@@ -318,7 +319,11 @@ export default defineComponent({
const diyContext = ref(null) as any const diyContext = ref(null) as any
const pricelistref = ref(null) as any const pricelistref = ref(null) as any
let { ctx: that, proxy } = getCurrentInstance() let { ctx: that, proxy } = getCurrentInstance()
let { setTitle } = useMetaModule()
const pageTitle = inject(DirtionmaryHelper.PAGE_TITLE_KEY) as any
pageTitle.value = t('v103.scheduledTripDetails.pageTitle')
setTitle(pageTitle.value)
const data = reactive({ const data = reactive({
tab: t('v103.scheduledTripDetails.righttitle.d1'), tab: t('v103.scheduledTripDetails.righttitle.d1'),
searchDate:'', searchDate:'',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment