<!--
source: https://blueos.niceshare.site/api/system/short-message-service/
site: 蓝河文档馆
summary: 在蓝河系统中，我们提供了 Deeplink 链接来使您可以快速打开短信服务所对应的页面。
-->
---
title: '短信'
description: '在蓝河系统中，我们提供了 Deeplink 链接来使您可以快速打开短信服务所对应的页面。'
lastUpdated: 2025-02-17T01:59:02.000Z
---

在蓝河系统中，我们提供了 Deeplink 链接来使您可以快速打开短信服务所对应的页面。

我们已经为短信服务功能提供了 Deeplink 链接，具体链接为 `hap://app/com.vivo.mms/pages/entry`。

该 Deeplink 链接的页面拉取是通过 Router 调用来实现的，您可以方便地打开短信服务页面并进行相关操作。

## 示例

以下是一个演示示例，为您展示如何通过调用 Deeplink 链接来实现轻松发送短信的操作过程：

```html
<template>
  <text @click="sendMessage">发短信</text>
</template>
<script>
  import router from '@blueos.app.appmanager.router'
  export default {
    sendMessage () {
      router.push({
        uri: `hap://app/com.vivo.mms/pages/entry`,
      })
    }
  }
</script>
```
