simulation.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <template>
  2. <view class="s_container">
  3. <image src="../../assets/home/homeBG.png" class="s_logo" mode=""></image>
  4. <view class="s_content_container">
  5. <view class="s_title" v-text="'虚拟仿真1号摄影棚'">
  6. </view>
  7. <view class="s_content">
  8. <view class="">
  9. 影视现场实时特效是虚拟制片的一种影视创作流程与创作技术,处于虚 拟制片前、中、后期中的中期现场创作环节,与虚拟制片的前期艺术设 计、虚拟制作联系尤为密切。影视现场实时特效的核心
  10. 是通过实时渲染、数据跟踪、CG制作等核心技术,在影视拍摄现场实现虚拟创作与现 实创作的实时同步与实时协作,并在现场呈现影像最终效果。除现场摄 制以外,影视现场实时特效还包括
  11. 前期虚拟艺术(数字制景、数字道具、数字角色)的再创作和后期处理(合成、调色)的现场创作。
  12. </view>
  13. </view>
  14. </view>
  15. <view class="s_footer" style="text-align: center;padding: 80rpx;">
  16. <button size="mini" class="m_btn_download" style="" @click="onClick_download_btn">客户端下载</button>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. name: "simulation",
  23. data() {
  24. return {
  25. }
  26. },
  27. created() {
  28. },
  29. methods: {
  30. onClick_download_btn(){
  31. let url = mydata_api + "/file/simulationexe";
  32. uni.request({
  33. url: url, //仅为示例,并非真实接口地址。
  34. success: (res) => {
  35. console.log('get成功');
  36. console.log(res.data);
  37. window.location.href = res.data;
  38. },
  39. fail:(res)=>{
  40. console.log('get失败');
  41. console.log(res.data);
  42. }
  43. });
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss" scoped>
  49. .s_container {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. .s_logo {
  54. width: 100%;
  55. height: 1000rpx;
  56. }
  57. .s_content_container {
  58. padding: 0 206rpx;
  59. .s_title {
  60. font-weight: bold;
  61. text-align: center;
  62. line-height: 200rpx;
  63. font-size: 45rpx;
  64. }
  65. .s_content {
  66. font-weight: 500;
  67. font-size: 40rpx;
  68. line-height: 70rpx;
  69. }
  70. }
  71. .m_btn_download {
  72. height: 80rpx;
  73. line-height: 80rpx;
  74. padding: 0 70rpx;
  75. background: #EA252C;
  76. color: #fff;
  77. font-family: MicrosoftYaHei;
  78. }
  79. </style>