PC端Demo

sdk演示地址:[点击体验](https://pub.wellsign.cn/sdko/h5/V2.5.0/pc.html) ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,viewport-fit=cover" /> <title>好签-试签文件</title> <script src="https://pub.wellsign.cn/jslib/jquery-3.3.1.js"></script> <script src="https://test.wellsign.cn/sdko/context/ws.loader.js"></script> <script> $(document).ready(() => { // 加载移动端JS API WSLoader.loadPC(() => { // 实例化签字界面 const ctx = new WSContext('#ctx', { token: 'xxx', fileIds: 'xxx', userId: 'xxx', userName: 'xxx' }) }) }) </script> </head> <body> <div id="ctx" style="width: 100%; height: 100%; position: relative"></div> </body> <style> html, body { height: 100%; width: 100%; padding: 0; margin: 0; position: fixed; } </style> </html> ```