<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      VUE0003:Naive UI庫:滑動條,單選,多選組件

      1,滑動條,單選,多選組件

       

      <template>
        <n-scrollbar class="show-scrollbar">
          <n-space class="map-setting" vertical>
      
            <n-space style="flex-flow: row; align-items: center;">
      
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;" >加載比例</n-text>
              <n-slider
                style="padding: 8px; width: 160px;height: 28px;align-content: center;border-radius: 4px;background-color: #2080F0;"
                :min="1"
                :step="1"
                :max="maxPointNum"
                @dragend="handleDragSaveSetting"
                v-model:value="mapDrawingStore.mapSetting.pointNum"/>
              <n-input-number
                :min="1"
                :max="maxPointNum"
                :show-button="false"
                size="small"
                style="width: 80px; color: #fff;"
                v-model:value="mapDrawingStore.mapSetting.pointNum"
                @blur="handleDragSaveSetting">
                <template #suffix>萬</template>
              </n-input-number>
              
            </n-space>
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">控制模式</n-text>
              <n-radio-group v-model:value="mapDrawingStore.mapSetting.control">
                <n-space style="gap: 1px 1px;">
                  <n-radio-button class="radio-btn" style="width: 80px;" value="orbit">軌道</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="fly">飛行</n-radio-button>
                </n-space>
              </n-radio-group>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">顯示質(zhì)量</n-text>
              <n-radio-group v-model:value="mapDrawingStore.mapSetting.quality" @update:value="handleDragSaveSetting">
                <n-space style="gap: 1px 1px;">
                  <n-radio-button class="radio-btn" style="width: 80px;" value="low">低質(zhì)量</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="height">高質(zhì)量</n-radio-button>
                </n-space>
              </n-radio-group>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">顯示內(nèi)容</n-text>
              <n-space style="gap: 1px 1px;">
                <n-button
                  v-for="(item, index) of showOptions"
                  :key="'showContent' + index"
                  style="width: 60px; height: 30px;"
                  :type="item.active ? 'primary' : ''"
                  @click="handleVisible(item)">
                  {{ item.label }}
                </n-button>
              </n-space>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">顯示模式</n-text>
              <n-radio-group v-model:value="mapDrawingStore.mapSetting.cameraMode">
                <n-space style="gap: 1px 1px;">
                  <n-radio-button class="radio-btn" style="width: 80px;" value="o">正交</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="p">透視</n-radio-button>
                </n-space>
              </n-radio-group>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">渲染模式</n-text>
              <n-radio-group v-model:value="mapDrawingStore.mapSetting.cameraMode">
                <n-space style="gap: 1px 1px;">
                  <n-radio-button class="radio-btn" style="width: 80px;" value="o">表面</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="p">XRAY</n-radio-button>
                </n-space>
              </n-radio-group>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">著色模式</n-text>
              <n-radio-group v-model:value="mapDrawingStore.mapSetting.showColor">
                <n-space style="gap: 1px 1px;">
                  <n-radio-button class="radio-btn" style="width: 80px;" value="rgb">RGB</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="color">單色</n-radio-button>
                </n-space>
              </n-radio-group>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">點(diǎn)云大小</n-text>
              <n-slider 
              style="padding: 8px; width: 160px;height: 28px;align-content: center;border-radius: 4px;background-color: #2080F0;"
              :min="0.1" 
              :max="10" 
              :step="0.01" 
              v-model:value="mapDrawingStore.mapSetting.pointCloudSize"/>
              <n-input-number
                :min="0.1"
                :max="10"
                :step="0.01"
                size="small"
                :show-button="false"
                style="width: 80px; color: #fff"
                v-model:value="mapDrawingStore.mapSetting.pointCloudSize">
              </n-input-number>
            </n-space>
      
      
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">大小類型</n-text>
              <n-radio-group v-model:value="mapDrawingStore.mapSetting.showColor">
                <n-space style="gap: 1px 1px;">
                  <n-radio-button class="radio-btn" style="width: 80px;" value="rgb">固定</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="color">衰減</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="rgb">自適應(yīng)</n-radio-button>
                </n-space>
              </n-radio-group>
            </n-space>
      
            <n-divider style="margin-top: 24px; width: 330px; " />
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">透明模式</n-text>
              <n-radio-group v-model:value="mapDrawingStore.mapSetting.showColor">
                <n-space style="gap: 1px 1px;">
                  <n-radio-button class="radio-btn" style="width: 80px;" value="rgb">自動</n-radio-button>
                  <n-radio-button class="radio-btn" style="width: 80px;" value="color">手動</n-radio-button>
                </n-space>
              </n-radio-group>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;" >透明調(diào)節(jié)</n-text>
              <n-slider 
                style="padding: 8px; width: 160px;height: 28px;align-content: center;border-radius: 4px;background-color: #2080F0;"
                :min="0" 
                :max="1" 
                :step="0.01" 
                v-model:value="mapDrawingStore.mapSetting.pointCloudOpacity" />
              <n-input-number
                :min="0"
                :max="1"
                :step="0.01"
                size="small"
                :show-button="false"
                style="width: 80px; color: #fff"
                v-model:value="mapDrawingStore.mapSetting.pointCloudOpacity">
              </n-input-number>
            </n-space>
      
            <n-divider style="margin-top: 24px; width: 330px; " />
      
      
            <n-space style="flex-flow: row; align-items: center;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">顯示長度</n-text>
              <n-slider
                style="padding: 8px; width: 160px;height: 28px;align-content: center;border-radius: 4px;background-color: #2080F0;"
                :min="0"
                :step="0.01"
                @dragend="handleDragSaveSetting"
                :max="mapDrawingStore.mapSetting.maxShowHieght"
                v-model:value="mapDrawingStore.mapSetting.showHeight"/>
              <n-input-number
                :min="0"
                :step="0.01"
                :show-button="false"
                size="small"
                style="width: 80px; color: #fff"
                :max="mapDrawingStore.mapSetting.maxShowHieght"
                v-model:value="mapDrawingStore.mapSetting.showHeight"
                @blur="handleDragSaveSetting">
                <template #suffix>米</template>
              </n-input-number>
            </n-space>
      
            <n-space style="flex-flow: row; align-items: center;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">顯示寬度</n-text>
              <n-slider
                style="padding: 8px; width: 160px;height: 28px;align-content: center;border-radius: 4px;background-color: #2080F0;"
                :min="0"
                :step="0.01"
                @dragend="handleDragSaveSetting"
                :max="mapDrawingStore.mapSetting.maxShowHieght"
                v-model:value="mapDrawingStore.mapSetting.showHeight"/>
              <n-input-number
                :min="0"
                :step="0.01"
                :show-button="false"
                size="small"
                style="width: 80px; color: #fff"
                :max="mapDrawingStore.mapSetting.maxShowHieght"
                v-model:value="mapDrawingStore.mapSetting.showHeight"
                @blur="handleDragSaveSetting">
                <template #suffix>米</template>
              </n-input-number>
            </n-space>
      
      
            <n-space style="flex-flow: row; align-items: center;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">顯示高度</n-text>
              <n-slider
                style="padding: 8px; width: 160px;height: 28px;align-content: center;border-radius: 4px;background-color: #2080F0;"
                :min="0"
                :step="0.01"
                @dragend="handleDragSaveSetting"
                :max="mapDrawingStore.mapSetting.maxShowHieght"
                v-model:value="mapDrawingStore.mapSetting.showHeight"/>
              <n-input-number
                :min="0"
                :step="0.01"
                :show-button="false"
                size="small"
                style="width: 80px; color: #fff"
                :max="mapDrawingStore.mapSetting.maxShowHieght"
                v-model:value="mapDrawingStore.mapSetting.showHeight"
                @blur="handleDragSaveSetting">
                <template #suffix>米</template>
              </n-input-number>
            </n-space>
      
            <n-divider style="margin-top: 24px; width: 330px; " />
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">深度增強(qiáng)</n-text>
              <n-space style="gap: 1px 1px;">
                <n-button style="width: 26px; height: 26px;"></n-button>
              </n-space>
            </n-space>
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">三窗視圖</n-text>
              <n-space style="gap: 1px 1px;">
                <n-button style="width: 26px; height: 26px;"></n-button>
              </n-space>
            </n-space>
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">視角控件</n-text>
              <n-space style="gap: 1px 1px;">
                <n-button style="width: 26px; height: 26px;"></n-button>
              </n-space>
            </n-space>
      
            <n-space style="flex-flow: row; align-items: center; width: 340px;">
              <n-text class="color-white" style="width: 60px; display: flex; font-size: 15px;">狀態(tài)展示</n-text>
              <n-space style="gap: 1px 1px;">
                <n-button style="width: 26px; height: 26px;"></n-button>
              </n-space>
            </n-space>
      
      
            <!-- <div class="close" @click="handleClose">
              <svg-icon local-icon="map-setting-close"></svg-icon>
            </div> -->
          </n-space>
        </n-scrollbar>
      </template>

       

      posted @ 2024-09-07 10:50  琥珀君  閱讀(359)  評論(0)    收藏  舉報
      主站蜘蛛池模板: 国产午夜A理论毛片| 少妇人妻偷人免费观看| 亚洲一区二区视频在线观看| 国产中文字幕精品视频| 亚洲国产综合性亚洲综合性| 国99久9在线 | 免费| 国产综合内射日韩久| 国产亚洲精品福利在线无卡一| 亚洲精品第一区二区在线| 日韩av在线不卡一区二区三区| 久久国产免费观看精品3| 无码av永久免费专区麻豆| 国产精品香蕉在线观看不卡| 99在线精品国自产拍中文字幕| 丰满人妻被黑人猛烈进入| 亚洲AV无码一区二区一二区色戒| 忘忧草在线社区www中国中文| 夜夜躁日日躁狠狠久久av| 大胸美女吃奶爽死视频| 亚洲男人AV天堂午夜在| 国产乱码精品一区二区麻豆| 欧产日产国产精品精品| 产综合无码一区| 一区二区三区四区自拍视频| 国产精品自在自线免费观看| 丰满人妻无码∧v区视频| 真人无码作爱免费视频 | 成人精品区| 色噜噜在线视频免费观看| 亚洲二区中文字幕在线| 国产av永久无码天堂影院| av无码久久久久不卡网站蜜桃| 国产精品多p对白交换绿帽| 天堂在线中文| 老熟妇老熟女老女人天堂| 久久精品国产亚洲av麻豆不卡| 国产精品久久久天天影视| 国产精品国产三级国快看| 日韩女同在线二区三区| 亚洲日本韩国欧美云霸高清| AV无码免费不卡在线观看|