2023-09-14 09:33:58 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2023-09-19 02:40:27 +00:00
|
|
|
<script type="text/javascript" src="../vue/js/vue.js"></script>
|
2023-09-14 09:33:58 +00:00
|
|
|
<style type="text/css" >
|
|
|
|
.left-box {
|
|
|
|
width: 1344px;
|
|
|
|
height: 880px;
|
2023-09-19 02:40:27 +00:00
|
|
|
/* background-color: skyblue; */
|
|
|
|
border: 0.5px solid #999;
|
|
|
|
float: left;
|
2023-09-14 09:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.right-box {
|
|
|
|
width: 360px;
|
|
|
|
height: 880px;
|
2023-09-19 02:40:27 +00:00
|
|
|
margin-left: -0.5px;
|
2023-09-14 09:33:58 +00:00
|
|
|
/* background-color: orange; */
|
2023-09-19 02:40:27 +00:00
|
|
|
float: left;
|
2023-09-14 09:33:58 +00:00
|
|
|
border: 0.5px solid #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
div .qr-block {
|
|
|
|
margin: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div .qr-title {
|
|
|
|
font-family: '思源黑体';
|
|
|
|
font-size: 28px;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 42px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#icon {
|
|
|
|
width: 32px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#qrcode {
|
|
|
|
width: 312px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
border: #256294 4px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.font-botton {
|
|
|
|
width: 320px;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
2023-09-19 02:40:27 +00:00
|
|
|
button {
|
|
|
|
display: block;
|
2023-09-14 09:33:58 +00:00
|
|
|
height: 38px;
|
|
|
|
width: 318px;
|
|
|
|
border-radius: 4px;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
#use-it {
|
|
|
|
background-color: #256294;
|
|
|
|
color: #fff;
|
|
|
|
border: #256294 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#change {
|
|
|
|
background-color: #fff;
|
|
|
|
color: #256294;
|
|
|
|
border: #256294 1px solid;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2023-09-19 02:40:27 +00:00
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
padding: 40px 20px;
|
|
|
|
line-height: 40px;
|
|
|
|
/* background-color: black; */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tbody:hover {
|
|
|
|
background-color: skyblue;
|
|
|
|
}
|
|
|
|
|
2023-09-14 09:33:58 +00:00
|
|
|
</style>
|
|
|
|
<title>QRCode Qurey</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-09-19 02:40:27 +00:00
|
|
|
<div class="left-box" id="root">
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>QRCode</th>
|
|
|
|
<th>State</th>
|
|
|
|
<th>User</th>
|
|
|
|
<th>ActName</th>
|
|
|
|
<th>UpdateTime</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr v-for="(qr) in qrcode">
|
|
|
|
<td v-text="qr.qrcode"></td>
|
|
|
|
<td v-text="qr.state"></td>
|
|
|
|
<td v-text="qr.user"></td>
|
|
|
|
<td v-text="qr.actname"></td>
|
|
|
|
<td v-text="qr.updatetime"></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2023-09-14 14:53:16 +00:00
|
|
|
</div>
|
2023-09-14 09:33:58 +00:00
|
|
|
<div class="right-box">
|
|
|
|
<div class="qr-block">
|
|
|
|
<div class="qr-title">
|
|
|
|
<img src="https://nasofcori.fun:9000/qrcode/qr/1470981902416.png" alt="" id="icon">
|
|
|
|
<span>FIT_110211</span>
|
|
|
|
</div>
|
|
|
|
<img src="https://nasofcori.fun:9000/qrcode/qr/1470981902416.png" alt="qrcode" id="qrcode">
|
|
|
|
<div class="font-botton">
|
|
|
|
<img src="#" alt="">
|
|
|
|
<span>Download Pic</span>
|
|
|
|
<span>丨</span>
|
|
|
|
<img src="#" alt="">
|
|
|
|
<span>Export CSV</span>
|
|
|
|
</div>
|
2023-09-19 02:40:27 +00:00
|
|
|
<button id="use-it">USE IT</button>
|
|
|
|
<button id="change">CHANGE</button>
|
2023-09-14 09:33:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
2023-09-19 02:40:27 +00:00
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
const vm = new Vue({
|
|
|
|
el:'#root',
|
|
|
|
data:{
|
|
|
|
qrcode:[
|
|
|
|
{qrcode:'FIT_110211', state:'used', user:'张帆', actname:'本溪医保查询', updatetime:'2023-09-14 18:16:32'},
|
|
|
|
{qrcode:'FIT_110985', state:'unused', user:'张帆', actname:'抚顺医保查询', updatetime:'2023-09-14 18:16:32'},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
2023-09-14 09:33:58 +00:00
|
|
|
</html>
|