|
|
@@ -4,7 +4,7 @@
|
|
|
<view class="phone-common-dialog">
|
|
|
<view class="common-body-box">
|
|
|
<view class="common-title">二维码</view>
|
|
|
- <img src="@/static/images/erweima.png" class="code-img"/>
|
|
|
+ <image :src="url" class="code-img"/>
|
|
|
<view class="common-btn-box">
|
|
|
<view class="confirm-btn" @click="handleClose">关闭</view>
|
|
|
</view>
|
|
|
@@ -17,6 +17,9 @@
|
|
|
import * as myApi from "@/api/my.js";
|
|
|
import {ref,reactive} from "vue"
|
|
|
const passwordPopup = ref(null); // 索引
|
|
|
+ import erweima from "@/static/images/erweima.png"
|
|
|
+
|
|
|
+ const url = ref(erweima)
|
|
|
|
|
|
// 打开弹窗
|
|
|
function handleShow() {
|