myApplication1.vue 1007 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view class="my-application">
  3. <u-navbar :back-text="i18n('Back')" :back-text-style="backStyle"
  4. back-icon-color="#fff" title-color="#fff"
  5. :background="background" title="">
  6. </u-navbar>
  7. <view style="margin-top: 150upx;">
  8. <view style="width:421upx;margin: auto;height: 370upx;">
  9. <image src="../../../static/img/public/7.png" style="width: 100%;height: 100%;"></image>
  10. </view>
  11. <view style="width: 100%;text-align: center;font-size: 30upx;color: #999999;margin-top: 80upx;">
  12. {{$t('common.Nodata')}}
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. name:'MyApplication',
  20. data(){
  21. return {
  22. background:{
  23. backgroundImage: 'linear-gradient(270deg, #4BC0E2 0%, #538BE7 100%)',
  24. },
  25. backStyle:{
  26. color:'#fff'
  27. },
  28. }
  29. },
  30. onLoad(e){
  31. },
  32. created(){
  33. },
  34. methods:{
  35. i18n (data) {
  36. return this.$t('common.'+data);
  37. },
  38. }
  39. }
  40. </script>
  41. <style lang="scss" scoped>
  42. .my-application{
  43. }
  44. </style>