downloadInstruction.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <view class='root'>
  3. <view class = 'top'>【下载安装说明】</view>
  4. <view class = 'first'>本实验采用了更具真实感与影像效果的虚幻引擎,需要通过PC客户端运行。文件大小约0.6G,在10M的主流网速下,预计在2分钟内完成下载</view>
  5. <view v-for="(obj,idx) in list" :key="idx">
  6. <view class = 'intro'>{{obj.text}}</view>
  7. <view v-if='obj.image!=0?1:0'>
  8. <image class = 'image' mode="widthFix" :src="obj.image"></image>
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. list:[
  18. {
  19. 'text':'1、下载完成后,将压缩包“影视与演播空间设计创作实验客户端”解压',
  20. 'image':require("../../../assets/startLearning/learningAndExperiment/downloadInstruction/1.png"),
  21. },
  22. {
  23. 'text':'2、解压后,双击文件夹内的“影视与演播空间设计创作实验客户端.exe”,运行客户端',
  24. 'image':require("../../../assets/startLearning/learningAndExperiment/downloadInstruction/2.png"),
  25. },
  26. {
  27. 'text':'3、首次使用需安装虚幻程序,弹出窗口选择是。',
  28. 'image':require("../../../assets/startLearning/learningAndExperiment/downloadInstruction/3.png"),
  29. },
  30. {
  31. 'text':'勾选下方方框,点击“Install”,安装完毕。',
  32. 'image':require("../../../assets/startLearning/learningAndExperiment/downloadInstruction/4.png"),
  33. },
  34. {
  35. 'text':'点击确定安装。',
  36. 'image':0,
  37. },
  38. {
  39. 'text':'安装完成,不用重新启动,直接点击"close",关闭窗口。',
  40. 'image':require("../../../assets/startLearning/learningAndExperiment/downloadInstruction/5.png"),
  41. },
  42. {
  43. 'text':'4、再次双击“影视与演播空间设计创作实验客户端.exe”,运行客户端。',
  44. 'image':0,
  45. },
  46. {
  47. 'text':'5、进入客户端界面。点击登录,输入国家ilab的账号及密码,若未注册,请点击注册,注册后回到客户端登录界面,输入并登录。',
  48. 'image':0,
  49. },
  50. ]
  51. }
  52. },
  53. methods: {
  54. }
  55. }
  56. </script>
  57. <style lang="scss">
  58. .root{
  59. // border: 1px solid #B4B4B4;
  60. }
  61. .top{
  62. font-weight: 700;
  63. font-size: px2vw(22);
  64. line-height: px2vw(46);
  65. }
  66. .first{
  67. font-size: px2vw(22);
  68. line-height: px2vw(46);
  69. }
  70. .intro{
  71. font-size: px2vw(22);
  72. line-height: px2vw(46);
  73. }
  74. .image{
  75. width: 100%;
  76. border: 1px solid #B4B4B4;
  77. }
  78. </style>