doc 优化提示语

This commit is contained in:
DaxPay
2024-06-27 16:05:00 +08:00
parent 1fc08080f4
commit 7e52e7ddac
3 changed files with 4 additions and 4 deletions

View File

@@ -10,8 +10,8 @@
><qr-code :options="{ margin: 0 }" :width="250" :value="url" />
<div style="font-size: 26px"> {{}} </div>
<a-form-item label="" style="margin-top: 30px">
<a-input v-model:value="openId" disabled placeholder="请扫码获取OpenID" style="width: 350px" />
<a-button type="primary" :disabled="!openId" @click="copy">复制OpenID</a-button>
<a-input v-model:value="openId" disabled placeholder="请扫码获取OpenID或UserId" style="width: 350px" />
<a-button type="primary" :disabled="!openId" @click="copy">复制</a-button>
</a-form-item>
</div>
</template>

View File

@@ -252,7 +252,7 @@
async function getAliOpenId() {
// 获取支付宝认证链接
const { data: urlResult } = await generateAliAuthUrl()
openIdQrCode.init(urlResult.authUrl, '请使用支付宝客户端"扫一扫"')
openIdQrCode.init(urlResult.authUrl, '请使用支付宝客户端"扫一扫获取OpenId或UserId"')
// 轮训查询
const { pause, resume } = useIntervalFn(
() => {

View File

@@ -7,7 +7,7 @@
<a-col :span="20">
<a-form-item class="w-800px" name="websiteUrl">
<template #label>
<basic-title helpMessage="本支付系统的访问地址"> 系统地址 </basic-title>
<basic-title helpMessage="本支付系统的后台API的访问地址"> 系统地址 </basic-title>
</template>
<a-input placeholder="请输入支付系统的网站地址" v-model:value="form.websiteUrl" :disabled="!edit" />
</a-form-item>