| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view>
- <web-view :webview-styles="webviewStyles" :src="url"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- webviewStyles: {
- progress: {
- color: '#FF3333'
- }
- },
- url:''
- }
- },
- onLoad() {
- var language = uni.getStorageSync('language');
- if(language=='yuenan'){
- this.url='https://backend.cityexpress168.com.vn/ynszc_vi.html'
- }
- else if(language=='zh-Hant'){
- this.url='https://backend.cityexpress168.com.vn/ynszc_tw.html'
- }
- else{
- this.url='https://backend.cityexpress168.com.vn/ynszc.html'
- }
- setTimeout(() => {
- uni.setNavigationBarTitle({
- title: this.$t('index.yinsizc'),
- });
- }, 2000);
- },
- methods: {
-
- }
- }
- </script>
- <style>
- </style>
|