simulationCore.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="s_container">
  3. <image src="../../assets/home/homeBG.jpg" class="s_logo" mode=""></image>
  4. <view class="s_content_container">
  5. <view class="s_title" v-text="'虚拟仿真1号摄影棚'"></view>
  6. <view class="s_content">
  7. <view class="">
  8. 影视现场实时特效是虚拟制片的一种影视创作流程与创作技术,处于虚 拟制片前、中、后期中的中期现场创作环节,与虚拟制片的前期艺术设 计、虚拟制作联系尤为密切。影视现场实时特效的核心
  9. 是通过实时渲染、数据跟踪、CG制作等核心技术,在影视拍摄现场实现虚拟创作与现 实创作的实时同步与实时协作,并在现场呈现影像最终效果。除现场摄 制以外,影视现场实时特效还包括
  10. 前期虚拟艺术(数字制景、数字道具、数字角色)的再创作和后期处理(合成、调色)的现场创作。
  11. </view>
  12. </view>
  13. </view>
  14. <view class="s_footer" style="text-align: center;padding: 80rpx;">
  15. <button size="mini" class="m_btn_download" style="" @click="goToProjectMange">进入项目管理中心</button>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. name: "simulationCore", //虚拟影视开发中心
  22. data() {
  23. return {
  24. }
  25. },
  26. methods: {
  27. init(){
  28. console.log('simulationCore init');
  29. // this.getProjectsID();
  30. },
  31. goToProjectMange(){
  32. if(mydata_userInfo.role === '老师'){
  33. this.$emit('goToTeachCreation');
  34. }
  35. else{
  36. this.$emit('goToStudentPlatform');
  37. }
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .s_container {
  44. width: 100%;
  45. height: 100%;
  46. background-color: #fff;
  47. }
  48. .s_logo {
  49. width: 100%;
  50. height: 1000rpx;
  51. }
  52. .s_content_container {
  53. padding: 0 206rpx;
  54. .s_title {
  55. font-weight: bold;
  56. text-align: center;
  57. line-height: 200rpx;
  58. font-size: 45rpx;
  59. }
  60. .s_content {
  61. font-weight: 500;
  62. font-size: 40rpx;
  63. line-height: 70rpx;
  64. }
  65. }
  66. .m_btn_download {
  67. height: 80rpx;
  68. line-height: 80rpx;
  69. padding: 0 70rpx;
  70. background: #EA252C;
  71. color: #fff;
  72. font-family: MicrosoftYaHei;
  73. }
  74. </style>