Some checks failed
Build docker and publish / linux (1.24.5) (push) Failing after 40s
feat(pay): 添加支付API基础结构 feat(miniapp): 创建支付测试小程序页面与配置 feat(wechatpay): 配置微信支付参数与证书 fix(guild): 修复成员列表查询条件 docs: 更新代码规范文档与需求文档 style: 统一前后端枚举显示与注释格式 refactor(admin): 重构用户奖励发放接口参数处理 test(title): 添加称号效果参数验证测试
18 lines
814 B
Plaintext
18 lines
814 B
Plaintext
<view class="page">
|
|
<view class="row">
|
|
<button bindtap="doLogin" disabled="{{logging}}">{{ logging ? '登录中...' : '登录' }}</button>
|
|
</view>
|
|
<view class="row">
|
|
<input placeholder="输入订单号" value="{{orderNo}}" bindinput="onOrderNoInput" />
|
|
</view>
|
|
<view class="row">
|
|
<button bindtap="doPay" disabled="{{paying || !token}}">{{ paying ? '发起中...' : '发起支付' }}</button>
|
|
</view>
|
|
<view class="row">
|
|
<button bindtap="doCreateOrder" disabled="{{!token}}">生成订单号</button>
|
|
</view>
|
|
<view class="info">openid: {{openid}}</view>
|
|
<view class="info">token: {{token ? '已获取' : '未登录'}}</view>
|
|
<view class="info">昵称: {{nickname}}</view>
|
|
<image wx:if="{{avatar}}" src="{{avatar}}" mode="aspectFit" style="width: 80px; height: 80px;" />
|
|
</view> |