downloadCenter.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <template>
  2. <div class="download-list">
  3. <div class="title">
  4. <div class="head-line">
  5. <div class="b_line"></div>
  6. <div class="triangle"></div>
  7. </div>
  8. <div class="label">猎豹AI软件</div>
  9. </div>
  10. <div class="lb-list">
  11. <div class="lb-app" v-for="(v,i) in lbApp" :key="i">
  12. <img class="img" :src="v.img" alt="">
  13. <div class="name">{{v.name}}</div>
  14. <div class="tips">{{v.tips}}</div>
  15. <div @click="download(v.src)" v-if="v.download" class="download">下载</div>
  16. </div>
  17. </div>
  18. <div class="title">
  19. <div class="head-line">
  20. <div class="b_line"></div>
  21. <div class="triangle"></div>
  22. </div>
  23. <div class="label">USB打印插件<span>(使用USB打印机必装插件、请根据电脑操作系统位数选择对应插件安装)</span></div>
  24. </div>
  25. <div class="plug-list">
  26. <div class="plug" v-for="(v,i) in necessaryPlug" :key="i">
  27. <div class="name">{{v.name}}</div>
  28. <div class="tips">{{v.tips}}</div>
  29. <div @click="download(v.src)" class="download">下载</div>
  30. </div>
  31. </div>
  32. <div class="title">
  33. <div class="head-line">
  34. <div class="b_line"></div>
  35. <div class="triangle"></div>
  36. </div>
  37. <div class="label">打印机驱动<span>(请依据打印机品牌安装对应的驱动)</span></div>
  38. </div>
  39. <div class="plug-list">
  40. <div class="plug" v-for="(v,i) in printerPlug" :key="i">
  41. <div class="name">{{v.name}}</div>
  42. <div class="tips">{{v.tips}}</div>
  43. <div @click="download(v.src)" class="download">下载</div>
  44. </div>
  45. </div>
  46. <div class="title">
  47. <div class="head-line">
  48. <div class="b_line"></div>
  49. <div class="triangle"></div>
  50. </div>
  51. <div class="label">其他软件</div>
  52. </div>
  53. <div class="lb-list">
  54. <div class="lb-app">
  55. <img class="img" src="../../static/image/xiangrikui.png" alt="">
  56. <div class="name">向日葵</div>
  57. <div class="tips">远程桌面控制软件,便于更好的排查解决问题,提供更优质的服务</div>
  58. <div @click="download('https://sunlogin.oray.com/download')" class="download">下载</div>
  59. </div>
  60. </div>
  61. </div>
  62. </template>
  63. <script>
  64. export default {
  65. name: "downloadCenter",
  66. data() {
  67. return {
  68. lbApp: [
  69. {
  70. img: require("../../static/image/download.png"),
  71. name: "Android手机版",
  72. tips: "适合大部分安卓手机使用",
  73. download: false,
  74. src: "",
  75. },
  76. {
  77. img: require("../../static/image/download.png"),
  78. name: "Iphone手机版",
  79. tips: "应用市场搜索[AI聚合配送]",
  80. download: false,
  81. src: "",
  82. },
  83. {
  84. img: require("../../static/image/juhe-icon.png"),
  85. name: "Windows",
  86. tips: "客户端、支持Windows系统",
  87. download: true,
  88. src: "https://pc.liebaoai.cn/download/liebao-web%20Setup%200.2.0.exe",
  89. },
  90. ],
  91. necessaryPlug: [
  92. {
  93. name: "Lodop打印网页插件(64位)",
  94. tips: "Lodop打印网页插件,该插件只支持64位Windows操作系统",
  95. src: "https://pc.liebaoai.cn/download/install_lodop64.exe",
  96. },
  97. {
  98. name: "C-Lodop打印服务插件(64位)",
  99. tips: "C-Lodop打印服务插件,该插件只支持64位Windows操作系统",
  100. src: "https://pc.liebaoai.cn/download/CLodop_Setup_for_Win64NT.exe",
  101. },
  102. {
  103. name: "Lodop打印网页插件(32位)",
  104. tips: "Lodop打印网页插件,该插件只支持32位Windows操作系统",
  105. src: "https://pc.liebaoai.cn/download/install_lodop32.exe",
  106. },
  107. {
  108. name: "C-Lodop打印服务插件(32位)",
  109. tips: "C-Lodop打印服务插件,该插件只支持32位Windows操作系统",
  110. src: "https://pc.liebaoai.cn/download/CLodop_Setup_for_Win32NT.exe",
  111. },
  112. ],
  113. printerPlug: [
  114. {
  115. name: "佳博打印机驱动",
  116. tips: "进入驱动下载页面,选择对应打印机驱动进行下载",
  117. src: "http://cn.gainscha.com/qudong.html",
  118. },
  119. {
  120. name: "佳博IP修改工具",
  121. tips: "点击下载IP修改工具,安装后进行相关操作",
  122. src: "https://pc.liebaoai.cn/download/GP_printer.exe",
  123. },
  124. {
  125. name: "芯烨打印机驱动",
  126. tips: "进入驱动下载页面,根据打印机小票宽度,选择对应驱动",
  127. src: "https://www.xprinter.net/companyfile/6/",
  128. },
  129. {
  130. name: "芯烨IP修改工具",
  131. tips: "进入测试工具下载页面,选择V3.2C打印测试工具并下载",
  132. src: "https://www.xprinter.net/companyfile/5/",
  133. },
  134. ],
  135. };
  136. },
  137. // 监听属性 类似于data概念
  138. computed: {},
  139. // 监控data中的数据变化
  140. watch: {},
  141. // 生命周期 - 创建完成(可以访问当前this实例)
  142. created() {},
  143. // 生命周期 - 挂载完成(可以访问DOM元素)
  144. mounted() {},
  145. // 方法集合
  146. methods: {
  147. download(src) {
  148. window.open(src, "_blank");
  149. },
  150. },
  151. };
  152. </script>
  153. <style lang="scss" scoped type="text/css">
  154. .download-list {
  155. .title {
  156. display: flex;
  157. align-items: center;
  158. margin-bottom: 10px;
  159. .head-line {
  160. position: relative;
  161. width: 4px;
  162. height: 15px;
  163. background: #fc7200;
  164. border-radius: 4px;
  165. overflow: hidden;
  166. margin-right: 10px;
  167. .b_line {
  168. width: 100px;
  169. height: 6px;
  170. background: #462bf7;
  171. }
  172. .triangle {
  173. width: 0;
  174. height: 0;
  175. border-top: 100px solid #462bf7;
  176. border-left: 100px solid transparent;
  177. }
  178. }
  179. .label {
  180. font-size: 15px;
  181. font-weight: 500;
  182. color: #0d1e40;
  183. span {
  184. font-size: 12px;
  185. color: #999;
  186. }
  187. }
  188. }
  189. .lb-list {
  190. display: flex;
  191. flex-wrap: wrap;
  192. margin-bottom: 20px;
  193. .lb-app {
  194. display: flex;
  195. flex-direction: column;
  196. align-items: center;
  197. padding: 10px 20px;
  198. width: 215px;
  199. height: 235px;
  200. background: #ffffff;
  201. opacity: 1;
  202. border-radius: 8px;
  203. margin: 0 10px 10px 0;
  204. .img {
  205. width: 100px;
  206. height: 100px;
  207. margin-top: 20px;
  208. }
  209. .name {
  210. font-size: 15px;
  211. color: #333;
  212. margin-top: 10px;
  213. }
  214. .tips {
  215. font-size: 12px;
  216. color: #999;
  217. margin: 10px 0;
  218. text-align: center;
  219. }
  220. .download {
  221. display: flex;
  222. justify-content: center;
  223. align-items: center;
  224. padding: 5px 20px;
  225. border-radius: 15px;
  226. font-size: 12px;
  227. color: #fff;
  228. background: #fc7200;
  229. cursor: pointer;
  230. }
  231. }
  232. }
  233. .plug-list {
  234. display: flex;
  235. flex-wrap: wrap;
  236. margin-bottom: 20px;
  237. .plug {
  238. display: flex;
  239. flex-direction: column;
  240. align-items: center;
  241. justify-content: space-evenly;
  242. padding: 10px 20px;
  243. width: 215px;
  244. height: 155px;
  245. background: #fff;
  246. border-radius: 8px;
  247. margin: 0 10px 10px 0;
  248. .name {
  249. font-size: 16px;
  250. color: #333;
  251. }
  252. .tips {
  253. font-size: 12px;
  254. color: #999;
  255. text-align: center;
  256. }
  257. .download {
  258. display: flex;
  259. justify-content: center;
  260. align-items: center;
  261. padding: 5px 20px;
  262. border-radius: 15px;
  263. font-size: 12px;
  264. color: #fff;
  265. background: #fc7200;
  266. cursor: pointer;
  267. }
  268. }
  269. }
  270. }
  271. </style>