23 lines
601 B
Plaintext
23 lines
601 B
Plaintext
|
<!--pages/API/scan-code/scan-code.wxml-->
|
||
|
<import src="../../common/head.wxml" />
|
||
|
<import src="../../common/foot.wxml" />
|
||
|
|
||
|
<view class="container">
|
||
|
<template is="head" data="{{title: 'scanCode'}}"/>
|
||
|
|
||
|
<view class="page-body">
|
||
|
<view class="weui-cells__title">扫码结果</view>
|
||
|
<view class="weui-cells weui-cells_after-title">
|
||
|
<view class="weui-cell">
|
||
|
<view class="weui-cell__bd">{{result}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="btn-area">
|
||
|
<button type="primary" bindtap="scanCode">扫一扫</button>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<template is="foot" />
|
||
|
</view>
|
||
|
|