Skip to content

Commit

Permalink
Update year
Browse files Browse the repository at this point in the history
  • Loading branch information
hiwuyi committed Mar 7, 2023
1 parent 915b5a0 commit 4c6f936
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
5 changes: 3 additions & 2 deletions web/src/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</div>
<div class="fes-icon">
<div class="fes-icon-copy">
<span2022 FilSwan</span>
<span{{fullYear}} FilSwan</span>
<el-divider direction="vertical"></el-divider>
<a href="https://www.filswan.com/" target="_block">filswan.com</a>

Expand Down Expand Up @@ -62,7 +62,8 @@ export default {
networkTip: false,
dialogFormVisible: false,
typeName: 'emailLogin',
changeTitle: ''
changeTitle: '',
fullYear: new Date().getFullYear()
}
},
components: {
Expand Down
5 changes: 3 additions & 2 deletions web/src/components/footHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<a href="https://github.com/filswan" target="_blank"><img :src="share_github" alt=""></a>
<a href="https://t.me/filswan" target="_blank"><img :src="share_telegram" alt=""></a>
</div>
<p class="copy">{{$t('footer.copy')}}</p>
<p class="copy">© {{fullYear}}{{$t('footer.copy')}}</p>
</div>

<pop-ups v-if="ComingSoon" :dialogFormVisible="ComingSoon" :typeModule="typeName" :fixed="true" @getPopUps="getPopUps"></pop-ups>
Expand All @@ -34,7 +34,8 @@ export default {
share_telegram: require('@/assets/images/landing/telegram.png'),
share_discord: require('@/assets/images/landing/discord.png'),
ComingSoon: false,
typeName: 'comingSoon'
typeName: 'comingSoon',
fullYear: new Date().getFullYear()
}
},
components: {
Expand Down
2 changes: 1 addition & 1 deletion web/src/lang/cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ export default {
Developer_Quick_Start: '开发人员快速入门',
FAQ: '常见问题解答',
Get_Help: '获取帮助',
copy: '© 2022 MULTICHAIN.STORAGE. ALL RIGHTS RESERVED.'
copy: ' MULTICHAIN.STORAGE. ALL RIGHTS RESERVED.'
},
metaSpace: {
home_title: '多链存储',
Expand Down
2 changes: 1 addition & 1 deletion web/src/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ export default {
Developer_Quick_Start: 'Developer Quick Start',
FAQ: 'FAQ',
Get_Help: 'Get Help',
copy: '© 2022 MULTICHAIN.STORAGE. ALL RIGHTS RESERVED.'
copy: ' MULTICHAIN.STORAGE. ALL RIGHTS RESERVED.'
},
metaSpace: {
home_title: 'Multichain.Storage',
Expand Down
2 changes: 1 addition & 1 deletion web/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Vue.prototype.baseAPIURL = netData === 80001 ? process.env.BASE_PAYMENT_GATEWAY_
Vue.prototype.baseAddressURL = netData === 80001 ? process.env.BASE_MUMBAI_ADDRESS : process.env.BASE_POLYGON_ADDRESS
Vue.prototype.Web3 = Web3
Vue.prototype.baseNetwork = process.env.BASE_ENV === true
console.log('update time: 2022-3-2', 'env:', process.env.BASE_ENV === true ? 'Main' : 'Cali', process.env.BASE_ENV)
console.log('update time: 2023-3-7', 'env:', process.env.BASE_ENV === true ? 'Main' : 'Cali', process.env.BASE_ENV)
router.beforeEach((to, from, next) => {
if (to.matched.some(record => record.meta.requiresAuth)) {
if (!sessionStorage.getItem('metaAddress')) {
Expand Down
4 changes: 2 additions & 2 deletions web/src/views/apiKey/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
<div>
<h4>{{$t('my_profile.apiKey_your_Domain')}}</h4>
<h6></h6>
<div class="form_top">
<!-- <div class="form_top">
<div class="search_file">
<div class="createTask">
<a @click="dialogFun('add_domain')">
Expand All @@ -109,7 +109,7 @@
</a>
</div>
</div>
</div>
</div> -->
<div class="fes-search">
<el-table :data="domainData" stripe style="width: 100%" max-height="300" :empty-text="$t('deal.formNotData')" class="table_cell">
<el-table-column prop="api_key" :label="$t('my_profile.apiKey_your_Domain_label')">
Expand Down

0 comments on commit 4c6f936

Please sign in to comment.