| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <template>
- <view class="s_container">
- <image src="../../assets/home/homeBG.png" class="s_logo" mode=""></image>
- <view class="s_content_container">
- <view class="s_title" v-text="'虚拟仿真1号摄影棚'">
- </view>
- <view class="s_content">
- <view class="">
- 影视现场实时特效是虚拟制片的一种影视创作流程与创作技术,处于虚 拟制片前、中、后期中的中期现场创作环节,与虚拟制片的前期艺术设 计、虚拟制作联系尤为密切。影视现场实时特效的核心
- 是通过实时渲染、数据跟踪、CG制作等核心技术,在影视拍摄现场实现虚拟创作与现 实创作的实时同步与实时协作,并在现场呈现影像最终效果。除现场摄 制以外,影视现场实时特效还包括
- 前期虚拟艺术(数字制景、数字道具、数字角色)的再创作和后期处理(合成、调色)的现场创作。
- </view>
- </view>
- </view>
- <view class="s_footer" style="text-align: center;padding: 80rpx;">
- <view class="s_title" v-text="'推荐项目'">
- </view>
- <view class="s_table_padding">
- <table style="width: 100%;border: 1px solid #DDDDDD;border-collapse: collapse">
- <thead class="m-table-hander">
- <tr>
- <th>项目</th>
- <th>名称</th>
- <th>类型</th>
- <th>介绍</th>
- <th>进度</th>
- <th>项目文件</th>
- <th>项目成员</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="(item,index) in projectData" :key="index">
- <th>{{item.ProjectName}}</th>
- <th>{{item.ProjectName}}</th>
- <th>类型</th>
- <th>介绍</th>
- <th>进度</th>
- <th class="m_yl"><button type="default" size="mini" class="m_edit">预览</button></th>
- <th style="position: relative;"><button type="default" @click="projectRemove(item)" size="mini" class="m_delete">删除</button></th>
- </tr>
- </tbody>
- </table>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "simulationCore", //虚拟影视开发中心
- data() {
- return {
- projectData: []
- }
- },
- created() {
- this.getlist();
- },
- methods: {
- getlist() {
- uni.request({
- url: this.$Api + "/project/getprojectcontent",
- data: {
- "UserID": this.$UserId
- },
- method: "POST",
- dataType: "json",
- success: res => {
- var {
- data
- } = res;
- this.projectData = data.Project;
- }
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .s_container {
- width: 100%;
- height: 100%;
- background-color: #fff;
- }
- .s_logo {
- width: 100%;
- height: 1000rpx;
- }
- .s_content_container {
- padding: 0 206rpx;
- .s_title {
- font-weight: bold;
- text-align: center;
- line-height: 200rpx;
- font-size: 45rpx;
- }
- .s_content {
- font-weight: 500;
- font-size: 40rpx;
- line-height: 70rpx;
- }
- }
- .m_btn_download {
- height: 80rpx;
- line-height: 80rpx;
- padding: 0 70rpx;
- background: #EA252C;
- color: #fff;
- font-family: MicrosoftYaHei;
- }
- tbody tr {
- border-top: 2rpx solid #DDDDDD !important;
- }
- tbody tr th:first-child {
- position: relative;
- }
- tbody tr th {
- font-weight: 400 !important;
- height: 140rpx;
- line-height: 140rpx;
- }
- tbody tr:hover {
- // color: #fff;
- background: #FDEBEC;
- // opacity: 0.08;
- }
- .m-table-hander {
- background-color: #FFF8F7;
- height: 140rpx;
- line-height: 140rpx;
- font-family: MicrosoftYaHei-Bold, MicrosoftYaHei;
- font-weight: bold;
- }
- .m_edit {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background: rgb(67, 127, 250);
- color: rgb(255, 255, 255);
- min-width: 130rpx;
- }
- .m_delete {
- position: absolute;
- top: 50%;
- left: 50%;
- min-width: 130rpx;
- transform: translate(-50%, -50%);
- background: rgb(234, 37, 44);
- color: rgb(255, 255, 255);
- }
- .m_yl {
- position: relative;
- }
- .s_table_padding {
- padding: 20rpx 400rpx;
- }
- .s_title {
- line-height: 120rpx;
- font-size: 40rpx;
- }
- </style>
|