|
|
@@ -133,26 +133,52 @@
|
|
|
</template>
|
|
|
<div class="mb10 df jscb card-line aic" v-if="item.master_url">
|
|
|
<div class="s-title">正式版:</div>
|
|
|
- <el-popover placement="top" :width="200" trigger="hover">
|
|
|
+ <el-popover
|
|
|
+ placement="top"
|
|
|
+ :width="300"
|
|
|
+ :height="300"
|
|
|
+ trigger="hover"
|
|
|
+ >
|
|
|
<template #reference>
|
|
|
<el-button type="primary" size="small">小程序码</el-button>
|
|
|
</template>
|
|
|
<el-image
|
|
|
- style="width: 200px; height: 200px"
|
|
|
+ style="
|
|
|
+ width: 240px;
|
|
|
+ height: 240px;
|
|
|
+ margin: 20px auto;
|
|
|
+ display: block;
|
|
|
+ "
|
|
|
:src="item.master_url"
|
|
|
></el-image>
|
|
|
+ <div class="tac" style="font-size: 24px; margin: 20px">
|
|
|
+ 正式版小程序码
|
|
|
+ </div>
|
|
|
</el-popover>
|
|
|
</div>
|
|
|
<div class="mb10 df jscb card-line aic" v-if="item.dev_url">
|
|
|
<div class="s-title">体验版:</div>
|
|
|
- <el-popover placement="top" :width="200" trigger="hover">
|
|
|
+ <el-popover
|
|
|
+ placement="top"
|
|
|
+ :width="300"
|
|
|
+ :height="300"
|
|
|
+ trigger="hover"
|
|
|
+ >
|
|
|
<template #reference>
|
|
|
<el-button type="primary" size="small">显示二维码</el-button>
|
|
|
</template>
|
|
|
<el-image
|
|
|
- style="width: 200px; height: 200px"
|
|
|
+ style="
|
|
|
+ width: 240px;
|
|
|
+ height: 240px;
|
|
|
+ margin: 20px auto;
|
|
|
+ display: block;
|
|
|
+ "
|
|
|
:src="item.dev_url"
|
|
|
></el-image>
|
|
|
+ <div class="tac" style="font-size: 24px; margin: 20px">
|
|
|
+ 体验版二维码
|
|
|
+ </div>
|
|
|
</el-popover>
|
|
|
</div>
|
|
|
<div class="mb10 df jscb card-line aic" v-if="item.master_api">
|