index.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="content">
  3. <view @click="getAndroid">安卓测试</view>
  4. {{androidData}}
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. title: 'Hello',
  12. androidData:'',
  13. }
  14. },
  15. onLoad() {
  16. window.getAndroid=this.getAndroid;
  17. // setTimeout( this.getAndroid(),500)
  18. // this.callByAndroid()
  19. // window.LoginOut=this.LoginOut
  20. },
  21. created() {
  22. },
  23. methods: {
  24. // LoginOut(){
  25. // uni.showToast({
  26. // title: '66666',
  27. // icon:'none',
  28. // duration: 6000
  29. // });
  30. // },
  31. getAndroid(e){
  32. uni.showToast({
  33. title: '66666',
  34. icon:'none',
  35. duration: 6000
  36. });
  37. this.androidData=e
  38. return "hello";
  39. },
  40. callByAndroid(){
  41. alert("Js收到消息");
  42. }
  43. }
  44. }
  45. </script>
  46. <style scoped>
  47. .content {
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. justify-content: center;
  52. }
  53. .logo {
  54. height: 200rpx;
  55. width: 200rpx;
  56. margin-top: 200rpx;
  57. margin-left: auto;
  58. margin-right: auto;
  59. margin-bottom: 50rpx;
  60. }
  61. .text-area {
  62. display: flex;
  63. justify-content: center;
  64. }
  65. .title {
  66. font-size: 36rpx;
  67. color: #8f8f94;
  68. }
  69. </style>