소스 검색

fix: 去掉示例资源,默认使用本地资源,增加属性

tnt group 3 년 전
부모
커밋
be992ab9b1

BIN
src/assets/videos/earth.mp4


+ 7 - 9
src/packages/components/Informations/Mores/Video/config.ts

@@ -2,23 +2,21 @@ import { PublicConfigClass } from '@/packages/public'
 import { CreateComponentType } from '@/packages/index.d'
 import { VideoConfig } from './index'
 import cloneDeep from 'lodash/cloneDeep'
-
-export const VideoList = [
-  { label: '数字楼宇', value: 'https://video.699pic.com/videos/76/09/36/b_D4DKnb48qdCI1631760936.mp4' },
-  { label: '旋转魔方', value: 'https://video.699pic.com/videos/90/02/69/b_YjJAJZMT6vRK1554900269.mp4' },
-  { label: '旋转地球', value: 'https://video.699pic.com/videos/32/13/12/b_7dng21IHECP51553321312.mp4' },
-  { label: '声音示例', value: 'https://video.699pic.com/videos/80/62/39/a_qmbxMqNvK9jr1583806239.mp4' }
-]
+import video from '@/assets/videos/earth.mp4'
 
 export const option = {
   // 视频路径
-  dataset: '',
+  dataset: video,
   // 循环播放
   loop: true,
   // 自动播放
   autoplay: true,
   // 静音
-  muted: true
+  muted: true,
+  // 适应方式
+  fit: 'contain',
+  // 圆角
+  borderRadius: 10
 }
 
 export default class Config extends PublicConfigClass implements CreateComponentType {

+ 41 - 27
src/packages/components/Informations/Mores/Video/config.vue

@@ -3,27 +3,9 @@
 <template>
   <collapse-item name="视频" expanded>
     <setting-item-box name="源" alone>
-      <setting-item name="自定义视频源">
+      <setting-item name="自定义源">
         <n-input v-model:value="optionData.dataset" size="small"></n-input>
       </setting-item>
-      <setting-item name="使用内置视频">
-        <n-select
-          v-model:value="optionData.dataset"
-          size="small"
-          placeholder="自定义或选择内置视频"
-          clearable
-          :options="VideoList"
-        ></n-select>
-      </setting-item>
-      <!-- <setting-item>
-        <n-upload
-          action="https://www.mocky.io/v2/5e4bafc63100007100d8b70f"
-          accept="video/*"
-          @finish="finishHandleFinish"
-        >
-          <n-button size="small">本地上传</n-button>
-        </n-upload>
-      </setting-item> -->
     </setting-item-box>
 
     <setting-item-box name="控制">
@@ -37,24 +19,56 @@
         <n-checkbox v-model:checked="optionData.muted" size="small">静音</n-checkbox>
       </setting-item>
     </setting-item-box>
+
+    <setting-item-box name="样式">
+      <setting-item name="类型">
+        <n-select v-model:value="optionData.fit" size="small" :options="fitList"></n-select>
+      </setting-item>
+      <setting-item name="圆角">
+        <n-input-number
+          v-model:value="optionData.borderRadius"
+          size="small"
+          :min="0"
+          placeholder="圆角"
+        ></n-input-number>
+      </setting-item>
+    </setting-item-box>
   </collapse-item>
 </template>
 
 <script setup lang="ts">
 import { PropType } from 'vue'
-import { option, VideoList } from './config'
+import { option } from './config'
 import { CollapseItem, SettingItemBox, SettingItem } from '@/components/Pages/ChartItemSetting'
 
-// eslint-disable-next-line no-unused-vars
-const props = defineProps({
+// 适应类型
+const fitList = [
+  {
+    value: 'fill',
+    label: 'fill'
+  },
+  {
+    value: 'contain',
+    label: 'contain'
+  },
+  {
+    value: 'cover',
+    label: 'cover'
+  },
+  {
+    value: 'scale-down',
+    label: 'scale-down'
+  },
+  {
+    value: 'none',
+    label: 'none'
+  }
+]
+
+defineProps({
   optionData: {
     type: Object as PropType<typeof option>,
     required: true
   }
 })
-
-// eslint-disable-next-line no-unused-vars
-const finishHandleFinish = () => {
-  // console.log()
-}
 </script>

+ 2 - 1
src/packages/components/Informations/Mores/Video/index.vue

@@ -64,7 +64,8 @@ watch(
 <style lang="scss" scoped>
 @include go('video') {
   display: block;
-  object-fit: cover;
   mix-blend-mode: screen;
+  object-fit: v-bind('option.fit');
+  border-radius: v-bind('option.borderRadius');
 }
 </style>