22 lines
539 B
HTML
22 lines
539 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>okBarcode</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" href="../../css/oksub.css">
|
|
</head>
|
|
<body>
|
|
<div class="ok-body">
|
|
</div>
|
|
<!--js逻辑-->
|
|
<script src="../../lib/layui/layui.js"></script>
|
|
<script>
|
|
layui.use(["okBarcode"], function () {
|
|
let okBarcode = layui.okBarcode;
|
|
console.log(okBarcode);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|