提交 01f31e15 编写于 作者: 杜庆泉's avatar 杜庆泉

修复vue2 模式下提示找不到 页面的Bug

上级 babeb0ba
<template>
<view>
<page-head :title="title"></page-head>
<view class="uni-btn-v uni-common-mt">
<button @tap="callKotlinMethodGetInfoTest">调用kotlin方法</button>
<button @tap="callJavaMethodGetInfoTest">调用java方法(需自定义基座)</button>
</view>
</view>
</template>
<script>
import { callKotlinMethodGetInfo, callJavaMethodGetInfo} from "../../uni_modules/uts-syntaxcase";
export default {
data() {
return {
title: 'UTS混编示例',
}
},
methods: {
callKotlinMethodGetInfoTest: function () {
let phoneInfo = callKotlinMethodGetInfo();
uni.showToast({
title:phoneInfo
})
},
callJavaMethodGetInfoTest: function () {
let javaInfo = callJavaMethodGetInfo();
uni.showToast({
title:javaInfo
})
},
}
}
</script>
<style>
</style>
\ No newline at end of file
......@@ -119,7 +119,8 @@
},{
name: "实例测试示例",
url: "SyntaxCase/instanceTest"
}]
}
]
},
{
name: "日志打印",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册