12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="my-application">
- <u-navbar :back-text="i18n('Back')" :back-text-style="backStyle"
- back-icon-color="#fff" title-color="#fff"
- :background="background" title="">
- </u-navbar>
-
- <view style="margin-top: 150upx;">
- <view style="width:421upx;margin: auto;height: 370upx;">
- <image src="../../../static/img/public/7.png" style="width: 100%;height: 100%;"></image>
- </view>
- <view style="width: 100%;text-align: center;font-size: 30upx;color: #999999;margin-top: 80upx;">
- {{$t('common.Nodata')}}
- </view>
- </view>
-
- </view>
- </template>
- <script>
-
- export default {
- name:'MyApplication',
- data(){
- return {
- background:{
- backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
- },
- backStyle:{
- color:'#fff'
- },
- }
- },
- onLoad(e){
-
- },
- created(){
-
- },
- methods:{
- i18n (data) {
- return this.$t('common.'+data);
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .my-application{
-
- }
- </style>
|