|
|
@ -5,12 +5,16 @@ |
|
|
|
<!-- <vue-qr bgSrc='https://img2.baidu.com/it/u=1188690822,3145215011&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=1038' logoSrc="https://img1.baidu.com/it/u=605875105,1314303687&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500" text="Hello world!" :size="200"></vue-qr> --> |
|
|
|
<vue-qr :text="apkUrl" :size="200" ></vue-qr> |
|
|
|
</div> |
|
|
|
<el-button type="primary" v-if="pdaUrl" link @click="handleClose">PDA安装程序下载链接</el-button> |
|
|
|
<div style="display: flex; flex-direction: row; justify-content: space-between;width: 100%;"> |
|
|
|
<span style="margin-left:50px;color:#909399;font-size: 14px;" v-if="version">版本号 {{version}}</span> |
|
|
|
<el-button type="primary" v-if="pdaUrl" link @click="handleClose">PDA安装程序下载链接</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script setup lang="ts"> |
|
|
|
import { downloadApk } from "@/api/login"; |
|
|
|
import { getPDAUrl,getNeedCode } from '@/utils/systemParam' |
|
|
|
import { getPDAUrl,getNeedCode,getVersion } from '@/utils/systemParam' |
|
|
|
const version = ref(getVersion()) |
|
|
|
|
|
|
|
// import logoImg from '@/assets/imgs/logo_white_blue.png' |
|
|
|
|
|
|
|