|
|
@@ -2,10 +2,14 @@ import React from 'react'
|
|
|
import styles from './index.module.scss'
|
|
|
import { callIframeFu } from '@/utils/history'
|
|
|
import classNames from 'classnames'
|
|
|
-import { isPc } from '@/utils/http'
|
|
|
import MenuSider from '@/components/MenuSider'
|
|
|
+import { useSelector } from 'react-redux'
|
|
|
+import { RootState } from '@/store'
|
|
|
+import Zback from '@/components/Zback'
|
|
|
|
|
|
function A3beie() {
|
|
|
+ const { myLangue } = useSelector((state: RootState) => state.A0Layout)
|
|
|
+
|
|
|
const handleBack = () => {
|
|
|
window.location.replace('#/yblm?m=tab3')
|
|
|
callIframeFu('showInscription', -1)
|
|
|
@@ -17,28 +21,37 @@ function A3beie() {
|
|
|
}
|
|
|
|
|
|
return (
|
|
|
- <div className={classNames(styles.A3beie, isPc ? '' : styles.A3beieMo)}>
|
|
|
- <div className='back' onClick={() => handleBack()}>
|
|
|
- <img src={require('@/assets/img/btn_back.png')} alt='' />
|
|
|
- </div>
|
|
|
+ <div className={classNames(styles.A3beie, myLangue === 'ZH' ? '' : styles.A3beieEn)}>
|
|
|
+ <Zback clickFu={() => handleBack()} />
|
|
|
+
|
|
|
<div className='wenwu' onClick={() => gotoQuanwen()}>
|
|
|
- <img src={require('@/assets/img/A2_quanwen.png')} alt='' />
|
|
|
+ <img src={require(`@/assets/img/A2_quanwen${myLangue === 'EN' ? 'En' : ''}.png`)} alt='' />
|
|
|
</div>
|
|
|
<MenuSider activeTab={0} />
|
|
|
<div className='container'>
|
|
|
<div className='content'>
|
|
|
- <div className='title'>
|
|
|
+ <div className='title songFontc'>
|
|
|
{/* <div className='butterflyR'>
|
|
|
<img src={require('@/assets/img/butterflyR.png')} alt='' />
|
|
|
</div> */}
|
|
|
- 碑额
|
|
|
+ {myLangue === 'EN' ? 'top part of a tablet' : '碑额'}
|
|
|
</div>
|
|
|
<div className='text'>
|
|
|
- 碑额留出高约15厘米的空白范围,
|
|
|
- <br /> 仅在碑额左侧题写造碑日期。
|
|
|
+ {myLangue === 'EN'
|
|
|
+ ? ' A blank space approximately 15 cm high is left at the top of the stele,'
|
|
|
+ : '碑额留出高约15厘米的空白范围,'}
|
|
|
+ <br />{' '}
|
|
|
+ {myLangue === 'EN'
|
|
|
+ ? ' with only the date of the stele’s creation inscribed on the left side.'
|
|
|
+ : '仅在碑额左侧题写造碑日期。'}
|
|
|
+ <br />
|
|
|
+ {myLangue === 'EN'
|
|
|
+ ? 'The Shanxi Tongzhi notes: "The stele’s heading records, ‘Completed on the 3rd day of the 11th month of the jiazi year,'
|
|
|
+ : '《山西通志》指出:其“碑额题‘大魏天平元年岁次甲寅十一月庚辰朔三日壬午造讫’岁月书额,'}
|
|
|
<br />{' '}
|
|
|
- 《山西通志》指出:其“碑额题‘大魏天平元年岁次甲寅十一月庚辰朔三日壬午造讫’岁月书额,
|
|
|
- <br /> 唐贞观晋祠铭以前,此为仅见”。
|
|
|
+ {myLangue === 'EN'
|
|
|
+ ? 'the first year of the Tianping era of the Great Wei’—such a practice of inscribing the date on the stele’s heading is rarely seen before the Tang Dynasty’s Jinci Stele Inscription of the Zhenguan era."'
|
|
|
+ : '唐贞观晋祠铭以前,此为仅见”。'}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|