app 开发的数据大屏,在电视上显示的分辨率只有960

请教一下,app 开发的数据大屏,电脑上模拟1920*1080都显示正常,安装在电视上后,显示的分辨率只有960。 有遇到这种情况的吗?怎么处理呀?

是用vue写的, cordova打包的。

现在的默认头是如下这样

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--    <meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">-->
    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
<!--    <link rel="stylesheet" href=" //at.alicdn.com/t/font_1806784_h47tqfslsnt.css">-->

    <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="0" />
    <title><%= htmlWebpackPlugin.options.title %></title>
  </head>
  <body>
    <noscript>
      <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
    </noscript>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>

对不起我没有钱

https://www.jianshu.com/p/f406740263e7

老哥我也遇到这个问题,我是body设宽度为1920px然后再zoom:0.5缩小到适应屏幕的960像素,不过感觉兼容不太好,你是怎么解决的呢

我也遇到了这个问题 大佬解决了吗