|
|
@ -37,7 +37,7 @@ |
|
|
<text class="text-gray">订单编号</text> |
|
|
<text class="text-gray">订单编号</text> |
|
|
<view> |
|
|
<view> |
|
|
<text class="margin-right">67432428794847982374</text> |
|
|
<text class="margin-right">67432428794847982374</text> |
|
|
<text class="text-orange text-sm">复制</text> |
|
|
|
|
|
|
|
|
<text class="text-orange text-sm" @click="copy()">复制</text> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
<view class="cu-bar padding-lr solid-bottom"> |
|
|
<view class="cu-bar padding-lr solid-bottom"> |
|
|
@ -65,8 +65,7 @@ |
|
|
<self-line/> |
|
|
<self-line/> |
|
|
<view class="bg-white flex flex-direction justify-around align-center text-center padding-tb"> |
|
|
<view class="bg-white flex flex-direction justify-around align-center text-center padding-tb"> |
|
|
<view> |
|
|
<view> |
|
|
<tki-qrcode ref="qrcode" @result="qrR" :val="area" :size="120" unit="px" background="#fff" foreground="#000" |
|
|
|
|
|
pdground="#000" :onval="true" :loadMake="true" :icon="require('@/static/images/system/user-default.jpg')" /> |
|
|
|
|
|
|
|
|
<image src="../../static/tu.png" mode="widthFix" style="height: 150px;width: 150px;"></image> |
|
|
</view> |
|
|
</view> |
|
|
<view class="flex justify-around align-center text-center margin-top-sm"> |
|
|
<view class="flex justify-around align-center text-center margin-top-sm"> |
|
|
<view> |
|
|
<view> |
|
|
@ -95,7 +94,6 @@ |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<script> |
|
|
<script> |
|
|
import tkiQrcode from "tki-qrcode" // 二维码生成器 |
|
|
|
|
|
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js"; |
|
|
import MescrollMixin from "@/components/mescroll-uni/mescroll-mixins.js"; |
|
|
export default { |
|
|
export default { |
|
|
mixins: [MescrollMixin], // 使用mixin |
|
|
mixins: [MescrollMixin], // 使用mixin |
|
|
@ -113,9 +111,6 @@ |
|
|
price: '', //价格 |
|
|
price: '', //价格 |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
components: { |
|
|
|
|
|
tkiQrcode |
|
|
|
|
|
}, |
|
|
|
|
|
computed: { |
|
|
computed: { |
|
|
disabled() { |
|
|
disabled() { |
|
|
// 必须输入 邮箱和验证码 才能点击下一步 |
|
|
// 必须输入 邮箱和验证码 才能点击下一步 |
|
|
@ -133,10 +128,6 @@ |
|
|
},1000) |
|
|
},1000) |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
//二维码回调 |
|
|
|
|
|
qrR(data) { |
|
|
|
|
|
this.base64Img = data; |
|
|
|
|
|
}, |
|
|
|
|
|
// 点击复制 |
|
|
// 点击复制 |
|
|
copy(text) { |
|
|
copy(text) { |
|
|
//app的复制方法 |
|
|
//app的复制方法 |
|
|
|