wip
This commit is contained in:
parent
fda3ba4e4d
commit
7b73314351
@ -1,27 +0,0 @@
|
|||||||
<mk-special-message>
|
|
||||||
<p v-if="m == 1 && d == 1">%i18n:common.tags.mk-special-message.new-year%</p>
|
|
||||||
<p v-if="m == 12 && d == 25">%i18n:common.tags.mk-special-message.christmas%</p>
|
|
||||||
<style lang="stylus" scoped>
|
|
||||||
:scope
|
|
||||||
display block
|
|
||||||
|
|
||||||
&:empty
|
|
||||||
display none
|
|
||||||
|
|
||||||
> p
|
|
||||||
margin 0
|
|
||||||
padding 4px
|
|
||||||
text-align center
|
|
||||||
font-size 14px
|
|
||||||
font-weight bold
|
|
||||||
text-transform uppercase
|
|
||||||
color #fff
|
|
||||||
background #ff1036
|
|
||||||
|
|
||||||
</style>
|
|
||||||
<script lang="typescript">
|
|
||||||
const now = new Date();
|
|
||||||
this.d = now.getDate();
|
|
||||||
this.m = now.getMonth() + 1;
|
|
||||||
</script>
|
|
||||||
</mk-special-message>
|
|
42
src/web/app/common/views/components/special-message.vue
Normal file
42
src/web/app/common/views/components/special-message.vue
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
<template>
|
||||||
|
<div class="mk-special-message">
|
||||||
|
<p v-if="m == 1 && d == 1">%i18n:common.tags.mk-special-message.new-year%</p>
|
||||||
|
<p v-if="m == 12 && d == 25">%i18n:common.tags.mk-special-message.christmas%</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import Vue from 'vue';
|
||||||
|
export default Vue.extend({
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
now: new Date()
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
d(): number {
|
||||||
|
return now.getDate();
|
||||||
|
},
|
||||||
|
m(): number {
|
||||||
|
return now.getMonth() + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
.mk-special-message
|
||||||
|
&:empty
|
||||||
|
display none
|
||||||
|
|
||||||
|
> p
|
||||||
|
margin 0
|
||||||
|
padding 4px
|
||||||
|
text-align center
|
||||||
|
font-size 14px
|
||||||
|
font-weight bold
|
||||||
|
text-transform uppercase
|
||||||
|
color #fff
|
||||||
|
background #ff1036
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue
Block a user