schema.uvue 1.3 KB
Newer Older
W
wanganxp 已提交
1
<template>
H
hdx 已提交
2
  <view>
D
DCloud_LXH 已提交
3
    <!-- #ifdef UNI-APP-X -->
H
hdx 已提交
4
    <button class="button" @click="openSchema('https://uniapp.dcloud.io/uni-app-x')">使用外部浏览器打开指定URL</button>
D
DCloud_LXH 已提交
5
    <!-- #ifdef APP-ANDROID -->
H
hdx 已提交
6
    <button class="button" @click="openSchema('market://details?id=com.tencent.mm')">使用应用商店打开指定App</button>
D
DCloud_LXH 已提交
7 8 9 10 11 12
    <button class="button" @click="openSchema('androidamap://viewMap?sourceApplication=Hello%20uni-app&poiname=DCloud&lat=39.9631018208&lon=116.3406135236&dev=0')">
      打开地图坐标
    </button>
    <!-- #endif -->
    <!-- #ifdef APP-IOS -->
    <button class="button" @click="openSchema('itms-apps://search.itunes.apple.com//WebObjects//MZSearch.woa/wa/search?media=software&lterm=')">打开 AppStore 到搜索页</button>
DCloud_Heavensoft's avatar
DCloud_Heavensoft 已提交
13 14
    <button class="button" @click="openSchema('http://maps.apple.com/?q=数字天堂公司&sll=39.9631018208,116.3406135236&z=10&t=s')">打开 iOS 地图坐标</button>
    <!-- apple协议:https://developer.apple.com/library/archive/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html -->
D
DCloud_LXH 已提交
15 16
    <!-- #endif -->
    <!-- #endif -->
H
hdx 已提交
17
  </view>
W
wanganxp 已提交
18 19
</template>

D
DCloud_LXH 已提交
20 21
<script setup lang="uts">
import { openSchema } from '@/uni_modules/uts-openSchema'
W
wanganxp 已提交
22 23 24
</script>

<style>
H
hdx 已提交
25 26 27
  .button {
    margin: 15px;
  }
W
wanganxp 已提交
28
</style>