vue3+element-plus导航栏定位

一、父组件代码:

<template>

  <div v-loading="loading" class="stock-detail" @scroll="handleScroll">

    <!-- tab导航栏 -->

    <navList

      :tabActive="activeIndex"

      :tabList="tabList"

      :tabStyle="navStyle"

      @tabClick="handleClick"

    ></navList>

    <!-- 首页中间展示板块 -->

    <div>

      <!-- 概要板块 -->

      <titleCard

        title="概要"

        :securityId="securityId"

        :symbol="symbol"

        :market="market"

        id="stockQuotation"

      ></titleCard>

      <!-- K线图板块 -->

      <titleCard

        title="数据图"

        :securityId="securityId"

        :symbol="symbol"

        :market="market"

        id="KLineChart"

      ></titleCard>

      <!-- AI综述板块 -->

      <titleCard

        title="AI综述"

        :securityId="securityId"

        id="AIInfo"

      ></titleCard>

      <!-- 新闻舆情 -->

      <titleCard

        title="新闻舆情"

        :securityId="securityId"

        id="newsPublicOpinion"

      ></titleCard>

      <!-- 新闻动态监测 -->

      <titleCard

        title="新闻动态监测"

        :securityId="securityId"

        id="newsDynamicMonitoring"

      ></titleCard>

      <!-- 公告信息 -->

      <titleCard

        title="公告信息"

        :securityId="securityId"

        id="noticeInformation"

      ></titleCard>

      <!-- 公告动态监测 -->

      <titleCard

        title="公告动态监测"

        :securityId="securityId"

        id="noticeDynamicMonitoring"

      ></titleCard>

      <!-- 评论动态监测 -->

      <titleCard

        title="评论动态监测"

        :securityId="securityId"

        id="commentDynamicMonitoring"

      ></titleCard>

      <!-- 评论摘要 -->

      <titleCard

        title="评论摘要"

        :securityId="securityId"

        id="commentSummary"

      ></titleCard>

    </div>

    <!-- 回到顶部组件 -->

    <backTop :elementClass="elementClass"></backTop>

  </div>

</template>

<script setup lang="ts">

import titleCard from './components/titleCard.vue'

import navList from './components/navList.vue'

import backTop from './components/backTop.vue'

const route = useRoute()

const loading = ref(false) // 是否加载页面

const navStyle = ref({}) // 导航栏样式

const securityId = ref<any>('') // 证券id

const symbol = ref<any>('') // 证券代码

const market = ref<any>('') // 证券市场

const elementClass = ref('.stock-detail') // 置顶元素类名

const tabList = [

  // 导航栏数据

  '概要',

  '数据图',

  'AI综述',

  '新闻舆情',

  '新闻动态监测',

  '公告信息',

  '公告动态监测',

  '评论动态监测',

  '评论摘要'

]

const activeIndex = ref(0)

// 监听参数重新赋值

watch(

  () => [route.query.securityId, route.query.market, route.query.symbol],

  (newValue: any, oldValue: any) => {

    if (newValue[0] != oldValue[0]) {

      securityId.value = newValue[0]

    }

    if (newValue[1] != oldValue[1]) {

      market.value = newValue[1]

    }

    if (newValue[2] != oldValue[2]) {

      symbol.value = newValue[2]

    }

    activeIndex.value = 0

    document.addEventListener('scroll', handleScroll)

    scrollToCard('stockQuotation')

  },

  { deep: true }

)

// tab栏切换点击

const handleClick = (index: number) => {

  activeIndex.value = index

  // 根据点击的选项卡值来滚动到相应的卡片位置

  switch (activeIndex.value) {

    case 0:

      scrollToCard('stockQuotation')

      break

    case 1:

      scrollToCard('KLineChart')

      break

    case 2:

      scrollToCard('AIInfo')

      break

    case 3:

      scrollToCard('newsPublicOpinion')

      break

    case 4:

      scrollToCard('newsDynamicMonitoring')

      break

    case 5:

      scrollToCard('noticeInformation')

      break

    case 6:

      scrollToCard('noticeDynamicMonitoring')

      break

    case 7:

      scrollToCard('commentDynamicMonitoring')

      break

    case 8:

      scrollToCard('commentSummary')

      break

  }

}

const scrollToCard = (refName: string) => {

  // 使用 Vue 的 $refs 来获取卡片元素,并滚动到其位置

  const cardElement = document.getElementById(refName)

  if (cardElement) {

    // 使用原生的 scrollIntoView 方法来滚动到元素位置

    cardElement.scrollIntoView({ behavior: 'smooth', block: 'start' })

  }

}

const handleScroll = (event: any) => {

  // 处理滚动事件加导航栏阴影效果

  if (event.target.scrollTop > 0) {

    navStyle.value = {

      boxShadow: '0px 1px 14px 0px rgba(14, 30, 61, 0.12)'

    }

  } else {

    navStyle.value = {

      boxShadow: ''

    }

  }

}

onBeforeMount(() => {

  securityId.value = route.query.securityId

  symbol.value = route.query.symbol

  market.value = route.query.market

  // 添加事件监听

  document.addEventListener('scroll', handleScroll)

})

onMounted(() => {

  nextTick(() => {

    if (route.query.tabIndex) {

      activeIndex.value = Number(route.query.tabIndex)

      // 延迟1秒滚动到评论动态监测tab

      setTimeout(() => {

        handleClick(activeIndex.value)

      }, 1000)

    }

  })

})

onUnmounted(() => {

  // 移除事件监听

  document.removeEventListener('scroll', handleScroll)

})

</script>

<style lang="less" scoped>

.stock-detail {

  background-color: #f4f7fc;

  overflow-y: auto;

  height: calc(100vh - 34px - 60px - 44px);

  position: relative;

  top: 44px;

}

</style>

二、titleCard组件代码:

<template>

  <div class="title-card" :id="id">

    <div class="top-box">

      <div class="left-box">

        <div class="line"></div>

        <div class="title">{{ title }}</div>

      </div>

      <div class="tab-box">

        <div

          class="tab-list"

          v-if="

            id === 'AIInfo' ||

            id === 'noticeInformation' ||

            id === 'commentDynamicMonitoring' ||

            id === 'commentSummary' ||

            id === 'newsPublicOpinion'

          "

        >

          <div

            v-for="(item, index) in tagList"

            :key="index"

            class="tab"

            :class="

              (tabIndex === index && id !== 'noticeInformation') ||

              (tabIndex === index + 1 && id === 'noticeInformation')

                ? 'color'

                : ''

            "

            @click="onClickItem(index)"

          >

            {{ item.name }}

          </div>

        </div>

      </div>

    </div>

    <div class="bottom-box">

      <StockCollect v-if="id === 'stockCollect'"></StockCollect>

      <stockQuotation

        :securityId="securityId"

        :symbol="symbol"

        :market="market"

        :negativeNum="negativeNum"

        :sameProportion="sameProportion"

        v-if="id === 'stockQuotation'"

      ></stockQuotation>

      <KLineChart

        :securityId="securityId"

        :symbol="symbol"

        :market="market"

        @getKLineType="getKLineType"

        v-if="id === 'KLineChart'"

      ></KLineChart>

      <review

        :tagIndex="tabIndex"

        :securityId="securityId"

        v-if="id === 'AIInfo'"

      ></review>

      <newsPublicOpinion

        :tagIndex="tabIndex"

        :securityId="securityId"

        v-if="id === 'newsPublicOpinion'"

      ></newsPublicOpinion>

      <newsDynamicMonitoring

        v-if="id === 'newsDynamicMonitoring' || id === 'newsCollect'"

        :id="id"

        :securityId="securityId"

        @getSwitchIsOpen="getSwitchIsOpen"

      ></newsDynamicMonitoring>

      <noticeInformation

        :tagIndex="tabIndex"

        :securityId="securityId"

        v-if="id === 'noticeInformation'"

      ></noticeInformation>

      <noticeDynamicMonitoring

        v-if="id === 'noticeDynamicMonitoring' || id === 'noticeCollect'"

        :id="id"

        :securityId="securityId"

        @getSwitchIsOpen="getSwitchIsOpen1"

      ></noticeDynamicMonitoring>

      <commentDynamicMonitoring

        :tagIndex="tabIndex"

        :securityId="securityId"

        v-if="id === 'commentDynamicMonitoring'"

      ></commentDynamicMonitoring>

      <commentSummary

        :id="id"

        :tagIndex="tabIndex"

        :securityId="securityId"

        v-if="id === 'commentSummary' || id === 'commentCollect'"

      ></commentSummary>

    </div>

  </div>

</template>

<script setup lang="ts">

import stockQuotation from './stockQuotation.vue'

import KLineChart from './KLineChart.vue'

import review from './review.vue'

import newsPublicOpinion from './newsPublicOpinion.vue'

import newsDynamicMonitoring from './newsDynamicMonitoring.vue'

import noticeInformation from './noticeInformation.vue'

import noticeDynamicMonitoring from './noticeDynamicMonitoring.vue'

import commentDynamicMonitoring from './commentDynamicMonitoring.vue'

import commentSummary from './commentSummary.vue'

import { ElMessage } from 'element-plus'

import { queryNewsCount } from '@/service/stockIndex/index'

import StockCollect from '@/views/personal-center/components/stockCollect.vue'

const props = defineProps({

  title: {

    // 板块名称

    type: String,

    default: ''

  },

  id: {

    // 板块id

    type: String,

    default: ''

  },

  securityId: {

    // 证券id

    type: [String, Number],

    required: true

  },

  symbol: {

    type: String,

    default: ''

  },

  market: {

    type: String,

    default: ''

  }

})

const emit = defineEmits(['getSwitchStatus', 'getSwitchStatus1'])

const tagList = ref<any>([]) // tab栏列表

const tabIndex = ref(1)

const dateLineType = ref(60) // websocket发送频率

const negativeNum = ref(0) // 负面条数

const sameProportion = ref('0.00') // 同比上期率

const securityId1 = ref(props.securityId) // 页面新的证券id

const symbol1 = ref(props.symbol) // 页面新的证券代码

const market1 = ref(props.market) // 页面新的证券市场

const switchOpen = ref(false) // 开关状态

const switchOpen1 = ref(false) // 开关状态

// 监听参数重新赋值

watch(

  () => [dateLineType.value, props.securityId, props.market, props.symbol],

  (newValue: any, oldValue: any) => {

    if (newValue[0] != oldValue[0]) {

      dateLineType.value = newValue[0]

      getNewsCount()

    }

    if (newValue[1] != oldValue[1]) {

      securityId1.value = newValue[1]

      initData()

    }

    if (newValue[2] != oldValue[2]) {

      market1.value = newValue[2]

      initData()

    }

    if (newValue[3] != oldValue[3]) {

      symbol1.value = newValue[3]

      initData()

    }

  },

  { deep: true }

)

// 初始化数据

const initData = () => {

  tabIndex.value = 1

}

// 导航栏切换

const onClickItem = (index: number) => {

  if (props.id === 'noticeInformation') {

    tabIndex.value = index + 1

  } else {

    tabIndex.value = index

  }

}

// 获取开关状态

const getSwitchIsOpen = (val: boolean) => {

  switchOpen.value = val

  emit('getSwitchStatus', switchOpen.value)

}

// 获取开关状态

const getSwitchIsOpen1 = (val: boolean) => {

  switchOpen1.value = val

  emit('getSwitchStatus1', switchOpen1.value)

}

// 获取websocket发送频率

const getKLineType = (type: any) => {

  dateLineType.value = type

}

// 初始化数据

const init = () => {

  if (

    props.id === 'AIInfo' ||

    props.id === 'commentDynamicMonitoring' ||

    props.id === 'commentSummary'

  ) {

    tagList.value = [

      { value: 0, name: '今日' },

      { value: 1, name: '近1周' },

      { value: 2, name: '近1个月' }

    ]

  } else if (props.id === 'newsPublicOpinion') {

    tagList.value = [

      { value: 0, name: '今日' },

      { value: 1, name: '近1周' },

      { value: 2, name: '近1个月' },

      { value: 3, name: '近3个月' }

    ]

  } else if (props.id === 'noticeInformation') {

    tagList.value = [

      { value: 1, name: '近1周' },

      { value: 2, name: '近1个月' },

      { value: 3, name: '近3个月' }

    ]

  }

}

// 获取条数与同比上期率

const getNewsCount = () => {

  queryNewsCount(securityId1.value).then((res: any) => {

    if (res.code === 200) {

      negativeNum.value = res.data.todayNum

      sameProportion.value = res.data.changePercentage

    } else {

      ElMessage({

        message: res.message,

        type: 'error'

      })

    }

  })

}

onMounted(() => {

  nextTick(() => {

    init()

    if (props.id === 'stockQuotation') {

      getNewsCount()

    }

  })

})

</script>

<style lang="less" scoped>

.title-card {

  width: 1450px;

  background-color: #fff;

  border-radius: 6px;

  display: flex;

  flex-direction: column;

  scroll-margin: 10px; // 使用css中scroll-margin设置滚动到该元素的距离

  margin: 10px auto;

  .top-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 0 20px;

    height: 39px;

    border-bottom: 1px solid #ebeef8;

    position: relative;

    .left-box {

      display: flex;

      align-items: center;

      .line {

        width: 4px;

        height: 14px;

        background: #3a5bb7;

        border-radius: 0px 2px 2px 0px;

        margin-right: 7px;

      }

      .title {

        font-weight: 600;

        font-size: 16px;

        color: #333333;

      }

    }

    .tab-list {

      display: flex;

      background: #f4f7fc;

      border-radius: 11px;

      .tab {

        display: flex;

        align-items: center;

        justify-content: center;

        padding: 0 18px;

        height: 22px;

        border-radius: 12px;

        font-weight: 500;

        font-size: 12px;

        color: #999999;

        background: #f4f7fc;

        border: 1px solid #f4f7fc;

        cursor: pointer;

        &:hover {

          color: #3a5bb7;

        }

      }

      .color {

        border: 1px solid #3a5bb7;

        background: #ffffff;

        color: #3a5bb7;

      }

    }

  }

  .bottom-box {

    margin: 0 20px;

  }

}

</style>

这里每个组件代码为每个板块,就不一一列举出来了

三、navList组件代码:

<template>

  <!-- tab导航栏 -->

  <div class="tab-box" :style="tabStyle">

    <div class="tab-list">

      <div

        v-for="(item, index) in tabList"

        :key="index"

        class="item-tab"

        @click="handleClick(index)"

      >

        <div :class="tabActive === index ? 'color' : ''" class="tab">

          {{ item }}

        </div>

        <div v-if="tabActive === index" class="line-box" />

      </div>

    </div>

  </div>

</template>

<script setup lang="ts">

const props = defineProps({

  tabStyle: {

    // tab栏样式

    type: Object,

    default: () => {}

  },

  tabList: {

    // tab栏列表

    type: Array,

    default: () => []

  },

  tabActive: {

    // tab栏索引

    type: Number,

    default: 0

  }

})

const emit = defineEmits(['tabClick'])

// tab栏切换点击

const handleClick = (index: number) => {

  emit('tabClick', index)

}

</script>

<style lang="less" scoped>

.tab-box {

  width: 100%;

  display: flex;

  flex-direction: column;

  position: fixed;

  top: 94px;

  background-color: #ffffff;

  height: 44px;

  margin-bottom: 4px;

  z-index: 1;

  .tab-list {

    height: 100%;

    display: flex;

    width: 1450px;

    margin: 0 auto;

    .item-tab {

      height: 100%;

      padding: 0 35px;

      display: flex;

      justify-content: center;

      align-items: center;

      flex-direction: column;

      cursor: pointer;

      position: relative;

      .tab {

        font-weight: normal;

        font-size: 14px;

        color: #666666;

        position: relative;

      }

      .color {

        color: #3a5bb7;

        font-weight: 600;

      }

      .line-box {

        width: 40px;

        height: 3px;

        background: #3a5bb7;

        position: absolute;

        bottom: 0;

        border-radius: 2px 2px 0px 0px;

      }

    }

  }

}

</style>

四、backTop置顶组件

<template>

  <el-backtop

    :target="elementClass"

    :right="36"

    :bottom="100"

    :visibility-height="50"

  >

    <el-popover

      placement="left"

      trigger="hover"

      content="回到顶部"

      popper-class="popper-style"

    >

      <template #reference>

        <div class="totop">

          <span class="icon iconfont icon-huidaodingbu"></span>

        </div>

      </template>

    </el-popover>

  </el-backtop>

</template>

<script setup lang="ts">

const props = defineProps({

  elementClass: {

    // 置顶元素类名

    type: String,

    default: ''

  }

})

</script>

<style lang="less" scoped>

.totop {

  width: 46px;

  height: 46px;

  background: linear-gradient(0deg, #ffffff, #f4f6f9);

  box-shadow: 0px 1px 14px 0px rgba(14, 30, 61, 0.06);

  border-radius: 50%;

  border: 2px solid #ffffff;

  cursor: pointer;

  text-align: center;

  line-height: 46px;

  position: fixed;

  right: 25px;

  bottom: 45px;

  &:hover {

    .icon-huidaodingbu {

      color: #3a5bb7;

    }

  }

  .icon-huidaodingbu {

    font-size: 20px;

    color: #8b90a0;

  }

}

</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/63916.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数仓高频面试 | 数仓为什么要分层

大家好&#xff0c;我是大D呀。 关于数仓分层&#xff0c;在面试过程中几乎是必问的。不过&#xff0c;面试官一般也不会直接考你数仓为什么要分层&#xff0c;而是在你介绍项目时&#xff0c;可能会换一种形式来穿插着问&#xff0c;比如数据链路为什么要这样设计&#xff0c…

revit转gltf,revit转3dtiles,如何将Revit模型转为3DTiles格式并在Cesiumjs中高效可视化

Revit模型导出gltf、glb与3dtiles有多种方式&#xff0c;但一般的商业工具收费普遍较高&#xff1a;Cesiumlab导出3dTile格式数据&#xff0c;Cesiumlab暂时可试用3天&#xff0c;会员版收费每年800&#xff1b;BimAngleEngine导出3dTile格式数据BimAngleEngine暂时可试用30天&…

可视化建模与UML《部署图实验报告》

一、实验目的&#xff1a; 1、熟悉部署图的基本功能和使用方法。 2、掌握使用建模工具软件绘制部署图的方法 二、实验环境&#xff1a; window11 EA15 三、实验内容&#xff1a; 根据以下的描述&#xff0c;绘制部署图。 网上选课系统在服务器端使用了两台主机&#xff0c;一…

在CentOS中安装和卸载mysql

在CentOS7中安装和卸载mysql 卸载mysql1、查看是否安装过mysql2、查看mysql服务状态3、关闭mysql服务4、卸载mysql相关的rpm程序5、删除mysql相关的文件6、删除mysql的配置文件my.cnf 安装mysql1、下载mysql相关的rpm程序2、检查/tmp临时目录权限3、安装mysql前的依赖检查3、安…

三相电机不转,如何判断好坏?

在现代工业生产中&#xff0c;三相电机被广泛应用于各类机械设备中&#xff0c;由于其高效能和稳定性&#xff0c;成为驱动设备的首选。然而&#xff0c;在实际使用过程中&#xff0c;三相电机有时会出现不转动的情况&#xff0c;这不仅会影响生产效率&#xff0c;还可能对设备…

ChatGPT大模型 创作高质量文案的使用教程和案例

引言 随着人工智能技术的飞速发展,大语言模型如 ChatGPT 在创作文案、生成内容方面展现出了强大的能力。无论是个人用户还是企业用户,都可以利用 ChatGPT 提高工作效率、激发创意、甚至解决实际问题。本文将详细介绍 ChatGPT 如何帮助创作各类高质量文案,并通过具体案例展示…

使用ERA5数据绘制风向玫瑰图的简易流程

使用ERA5数据绘制风向玫瑰图的简易流程 今天需要做一个2017年-2023年的平均风向的统计,做一个风向玫瑰图&#xff0c;想到的还是高分辨率的ERA5land的数据&#xff08;0.1分辨率&#xff0c;逐小时分辨率&#xff0c;1950年至今&#xff09;。 风向&#xff0c;我分为了16个&…

软考:工作后再考的性价比分析

引言 在当今的就业市场中&#xff0c;软考&#xff08;软件设计师、系统分析师等资格考试&#xff09;是否值得在校学生花费时间和精力去准备&#xff1f;本文将从多个角度深入分析软考在不同阶段的性价比&#xff0c;帮助大家做出明智的选择。 一、软考的价值与局限性 1.1 …

Qt绘制仪表————附带详细说明和代码示例

文章目录 1 效果2 原理3 编码实践3.1 创建仪表属性类3.2 设置类属性3.3 绘制图案3.3.1 设置反走样3.3.2 绘制背景3.3.3 重新定义坐标原点3.3.4 绘制圆环3.3.5 绘制刻度线3.3.6 绘制刻度线上的描述值3.3.7 绘制指针3.3.8 绘制指针数值和单位3.3.9 控制指针变化 扩展福利参考 1 效…

vue 纯前端预览pdf,纯前端实现pdf加水印下载文件也带水印,防止pdf下载

效果图 1.pdf预览 原理:主要是利用pdfh5这个插件来完成的 使用方法: 1.页面需要有一个容器例子: 2.下载pdfh5插件 npm install pdfh5 (注意:webpack5之后不会下载polyfill 需要手动下载 所以引入pdfh5的时候会报错) 解决方案:下载 node-polyfill-webpack-plugin npm i…

重生之我在异世界学编程之C语言:深入文件操作篇(上)

大家好&#xff0c;这里是小编的博客频道 小编的博客&#xff1a;就爱学编程 很高兴在CSDN这个大家庭与大家相识&#xff0c;希望能在这里与大家共同进步&#xff0c;共同收获更好的自己&#xff01;&#xff01;&#xff01; 函数递归与迭代 引言正文一、为什么要用文件二、文…

linux-16 关于shell(十五)date,clock,hwclock,man,时间管理,命令帮助

想显示一下当前系统上的时间该怎么显示&#xff1f;有一个命令叫做date&#xff0c;来看date命令&#xff0c;如下图&#xff0c; 第一个星期几对吧&#xff1f;然后是月日小时分钟秒&#xff0c;最后一个是年对吧&#xff1f;CST指的是它的时间格式&#xff0c;我这个可以先姑…

【Apache paimon】-- 集成 hive3.1.3 异常

目录 1、场景再现 Step1:在 hive cli beeline 执行创建 hive paimon 表 Step2:使用 insert into 写入数据 Step3:抛出异常 2、原因分析 Step1:在 yarn resource manager 作业界面查询 hive sql mr job 的 yarn log Step2:搜索job 使用的 zstd jar 版本 Step3:定…

严蔚敏老师,一路走好

Hey&#xff0c;小伙伴们&#xff0c;今天我要和大家分享一个令人心痛的消息&#xff0c;但也是我们向一位伟大的学者致敬的时刻。&#xff1a;清华大学计算机教授、《数据结构》编著者严蔚敏 去世&#xff0c;享年 86 岁。她的离去&#xff0c;让无数学子和同行感到深深的哀痛…

Input Action (输入动作) 在虚幻引擎中常用的值类型

1. Digital (bool) 含义: Digital 类型代表一个离散的、二元的输入状态,它只有两种可能的值:true(按下,激活)或 false(未按下,未激活)。 用途: 最常用于表示按键或按钮的按下状态。 适合于开关类型的操作,比如: 跳跃(按键按下时跳跃,松开时不跳跃) 奔跑/行走切换 …

PostgreSQL的学习心得和知识总结(一百六十四)|深入理解PostgreSQL数据库之在 libpq 中支持负载平衡

目录结构 注&#xff1a;提前言明 本文借鉴了以下博主、书籍或网站的内容&#xff0c;其列表如下&#xff1a; 1、参考书籍&#xff1a;《PostgreSQL数据库内核分析》 2、参考书籍&#xff1a;《数据库事务处理的艺术&#xff1a;事务管理与并发控制》 3、PostgreSQL数据库仓库…

智能机器人技术突破,开启移动领域无限可能

移动机器人已经成为现代社会不可或缺的一部分&#xff0c;在各个领域发挥着越来越重要的作用。在这个过程中&#xff0c;富唯智能机器人以其卓越的技术突破&#xff0c;引领着移动机器人领域的发展潮流。 一、技术突破的体现 1.深度学习与计算机视觉&#xff1a;富唯智能机器人…

解决 “TypeError: ‘tuple‘ object cannot be interpreted as an integer“ 错误提示

错误背景 这个错误通常出现在期望一个整数时&#xff0c;却传入了一个元组&#xff08;tuple&#xff09;。Python 无法将元组解释为整数&#xff0c;因此会抛出 TypeError。 错误示例 python 复制代码 for i in (1, 2, 3): print(range(i)) 运行时会抛出如下错误&#xff1a;…

【C语言】拆数字组成最大数

相信你是最棒哒&#xff01;&#xff01;&#xff01; 文章目录 题目描述 正确代码 法一注释版 简洁版 法二注释版 简洁版 题目描述 任意输入一个自然数&#xff0c;输出该自然数的各位数字组成的最大数。例如&#xff0c;输入 1593 &#xff0c;则输出为 9531 。 输入描述 …

Android14 AOSP 允许system分区和vendor分区应用进行AIDL通信

在Android14上&#xff0c;出于种种原因&#xff0c;system分区的应用无法和vendor分区的应用直接通过AIDL的方法进行通信&#xff0c;但是项目的某个功能又需要如此。 好在Binder底层其实是支持的&#xff0c;只是在上层进行了屏蔽。 修改 frameworks/native/libs/binder/Bp…