vue2 el-table新增行内删除行内(两种写法)里面第一个是树组件,第二个是数字组件,第一个数组件只能勾选最后一个节点

news2024/11/27 18:50:06

第一种

<template>
  <div class="time_table">
    <div style="margin-bottom: 10px">
      <el-button @click="addRowFn">新增</el-button>
    </div>
    <el-form ref="costForm" :model="formData">
      <el-table :data="formData.tableData" style="width: 100%" :value="tableData">
        <el-table-column prop="productId" label="所属产品(集成选非产线)" type="productId">
          <template #header>
            <span style="color: red; margin-right: 4px">*</span>
            <span>所属产品(集成选非产线)</span>
          </template>
          <template slot-scope="scope">
            <div v-if="!selectSure">
              <div style="display: flex; justify-content: space-between">
                <div> {{ scope.row.productId }} </div>
                <div v-if="scope.$index != cellIndexInput" @click="gropeFn(scope, scope.row)">
                  <el-icon class="el-icon-search"></el-icon>
                </div>
              </div>
            </div>
            <div v-if="scope.row.productId == '' || scope.row.productId == null">
              <div class="titelno-style">
                {{ `请填写所属产品` }}
              </div>
            </div>
            <div v-if="scope.$index == cellIndexInput && tableId == scope.row.id" style="display: flex; justify-content: space-between">
              <div class="about">
                <el-select
                  v-model="selectValue"
                  placeholder="请选择"
                  :popper-append-to-body="false"
                  @remove-tag="removetag"
                  @clear="clearall"
                  clearable
                  filterable
                  collapse-tags
                  ref="select"
                  @change="changelabel"
                >
                  <el-input style="width: 260px; margin: 10px" placeholder="输入关键字进行过滤" v-model="filterText"> </el-input>
                  <el-option :value="selectTree" class="setstyle" disabled>
                    <el-tree
                      :filter-node-method="filterNode"
                      :data="list"
                      @node-click="handleNodeClick"
                      :props="defaultProps"
                      ref="tree"
                      node-key="id"
                      default-expand-all
                      highlight-current
                    ></el-tree>
                  </el-option>
                </el-select>
              </div>
            </div>
            <div v-if="scope.$index !== cellIndexInput && selectSure">
              <div style="display: flex; justify-content: space-between">
                <div> {{ scope.row.productId }} </div>
                <div v-if="scope.$index != cellIndexInput" @click="gropeFn(scope, scope.row)"> <el-icon class="el-icon-search"></el-icon> </div>
              </div>
            </div>
          </template>
        </el-table-column>
        <el-table-column prop="productMoney" label="产品金额" type="productMoney">
          <template #header>
            <span style="color: red; margin-right: 4px">*</span>
            <span>产品金额</span>
          </template>
          <template slot-scope="scope">
            <div v-if="!numberSure">
              <div style="display: flex; justify-content: space-between">
                <div> {{ scope.row.productMoney | currencyFormat }} </div>
                <div v-if="scope.$index != cellIndexnumber" @click="gropesFn(scope, scope.row, scope.row.productMoney)">
                  <el-icon class="el-icon-search"></el-icon>
                </div>
              </div>
            </div>
            <div v-if="scope.row.productMoney == '' || scope.row.productMoney == null">
              <div class="titelno-style">
                {{ `请填写所属金额` }}
              </div>
            </div>
            <div v-if="scope.$index == cellIndexnumber && tablelistId == scope.row.id" style="display: flex; justify-content: space-between">
              <inputNumberA
                :values="values"
                :newDates="newDates"
                :rowinputNumber="rowinputNumber"
                @close="closeinputNumberFn"
                @change="changeinputNumberFn"
              ></inputNumberA>
              <!-- <el-form-item :prop="`tableData.${scope.$index}.productMoney`" :rules="[{ required: true, message: '请输入' }]">
                <el-input v-model.trim="scope.row.productMoney" @keyup.native="handleNumberType" style="width: 250px" placeholder="请输入"></el-input>
              </el-form-item> -->
            </div>
            <div style="display: flex; justify-content: space-between" v-if="scope.$index !== cellIndexnumber && numberSure">
              <div>$ {{ scope.row.productMoney | currencyFormat }} </div>
              <div @click="gropesFn(scope, scope.row)">
                <el-icon class="el-icon-search"></el-icon>
              </div>
            </div>
          </template>
        </el-table-column>

        <el-table-column prop="answer" label="操作">
          <template slot-scope="scope">
            <el-button @click="delOptionFn(scope.$index, tableData)">删除</el-button>
          </template>
        </el-table-column>
      </el-table>
    </el-form>
  </div>
</template>

<script>
import inputNumberA from './inputNumber.vue'

function filterTreeData(treeData) {
  return treeData.filter((item) => {
    if (isNotEmpty(item.children)) {
      item.disabled = true
      item.children = filterTreeData(item.children)
    }
    return item
  })
}
function isNotEmpty(arr) {
  return arr && Array.isArray(arr) && arr.length > 0
}
function addToTreeFn(treeData, type1) {
  treeData.forEach((node) => {
    if (node.children && node.children.length > 0) {
      addToTreeFn(node.children, type1)
    } else {
      node.sos = type1
    }
  })
}

export default {
  name: 'timeTable',
  props: {
    value: {
      type: Array,
      default: () => [{}],
    },
  },

  components: {
    inputNumberA,
  },
  data() {
    return {
      dialogVisible: true,
      selectValue: '',
      selectTree: [],
      expandedList: [],
      filterText: '', //input搜索
      rowinputNumber: {},
      list: [],
      defaultProps: {
        children: 'children',
        label: 'label',
      },
      nameValue: '',
      defaultValue: [], //tree唯一的id
      values: '',
      newDates: {},
      formData: {
        // tableData: [...this.value],
        tableData: [],
      },
      tableId: '',
      cellIndexInput: null,
      cellIndexnumber: null,
      prodectmark: null,

      options: [], //节点下拉框数据

      selectSure: false,
      numberSure: false,
      tablelistId: '',
      //验证规则
      rules: {
        // productId: [
        //   {
        //     required: true,
        //     message: '请输入姓名',
        //     trigger: ['blur', 'change'],
        //   },
        // ],
        sex: [
          {
            required: true,
            message: '请选择性别',
            trigger: ['blur', 'change'],
          },
        ],
      },
      tableData: [],
    }
  },
  watch: {
    tableData: {
      handler(newval) {
        this.$emit('input', newval)
      },
      deep: true,
    },
    selectValue(newValue) {
      this.changelabel(newValue)
    },
    // 搜索
    filterText(val) {
      this.$refs.tree.filter(val)
    },
    value: {
      handler(newval) {
        this.handleFn(newval)
        console.log(newval, 'newval_____')
      },
      deep: true,
    },
  },
  created() {
    console.log(this.value, 'yyiyyyyyyyyyyyyy')
    // this.fetchEntryTimeDic()
    // this.listFn()
    this.treeFn()
  },
  methods: {
    handleFn(val) {
      // this.formData.tableData = val
      // const v = val
      // const vo = v.map((item) => {
      //   return { productId: item.productName, productMoney: item.productMoney, productName: item.productId }
      // })

      this.formData.tableData = val
    },
    changelabel(val) {
      console.log('changelabel----', val)
    },
    // 下拉框移除
    removetag() {
      this.$refs.tree.setCheckedKeys([])
    },
    // 可清空的单选模式下用户点击清空按钮时触发
    clearall() {
      this.selectTree = []
      this.$nextTick(() => {
        this.$refs.tree.setCheckedNodes([])
      })
    },
    handleNodeClick(data, node) {
      let arr = []
      if (data.sos === '1') {
        arr.push(data)
        this.selectTree = arr[0]
        this.selectValue = this.selectTree.label
        this.$nextTick(() => {
          if (this.selectValue !== '') {
            this.$emit('treechagelist', this.selectTree, this.row1)
            this.cellIndexInput = null
          }
        })
      }
    },
    // 模糊查询(搜索过滤),实质为筛选出树形控件中符合输入条件的选项,过滤掉其他选项
    filterNode(value, data) {
      console.log(value, 'kkkkkkkkkkkkkkkk')
      if (!value) return true
      let filterRes = data.label.indexOf(value) !== -1
      return filterRes
    },
    treeFn() {
      // 接口
      treeAPI().then((res) => {
        this.list = res
        this.selectValue = ''
        addToTreeFn(this.list, '1')
        filterTreeData(this.list)
      })
    },

    gropeFn(v, row) {
      console.log(row, v, 'gropeFn-----------', row.productId)
      this.selectValue = row.productId
      console.log(this.selectValue, ' this.selectValue ')
      this.selectSure = true
      this.tableId = row.id
      this.cellIndexInput = v.$index
      this.rows = row
      this.row1 = v
      console.log(row.id, ' row.id')
    },
    gropesFn(v, row, i) {
      console.log(v, row, 'gropesFn', i)
      this.numberSure = true
      this.tablelistId = row.id
      this.cellIndexnumber = v.$index
      this.values = i
      this.newDates = v
    },
    //表格的单元格单机  --->  将每行的isEdit改成true
    rowClickFn(row, column, event) {
      this.$set(row, 'isEdit', true)
    },
    // 新增
    addRowFn() {
      this.formData.tableData.unshift({
        productMoney: '',
        productId: '',
        productName: '',
      })
      this.selectValue = ''
    },
    // 下面的数据保存
    addFn(id, tableData) {
      tableData.orderNum = Number(tableData.orderNum)
      // 存起来数据
      localStorage.setItem('tableData', JSON.stringify(tableData)),
        // 取出来
        localStorage.getItem('tableData')
      this.tableData = JSON.parse(localStorage.getItem('tableData'))
      this.tableData.forEach((item) => {
        item.orderNum = Number(item.orderNum)
      })
      if (!tableData[id].productMoney) {
        return this.$message.error('请您填写描述信息哦~')
      }
    },

    delOptionFn(index) {
      this.formData.tableData.splice(index, 1)
    },
    async upOption(row) {
      console.log(row)
    },

    closeinputNumberFn() {
      this.handleChange()
    },
    handleChange() {
      this.inputNumberSure = false
      this.cellIndexNumber = null
    },
    changeinputNumberFn(val, v, row) {
      this.$emit('inputnumberchagelist', Number(val), row)
      this.cellIndexnumber = null
    },
    handleClose() {
      this.dialogVisible = false
    },
  },
}
</script>

<style lang="scss" scoped>
/* ::v-deep.el-table--fit {
  border-right: 0;
  border-bottom: 0;
  margin-left: -55px;
} */
.titelno-style {
  color: red;
  font-size: 8px;
}
.setstyle {
  min-height: 200px;
  padding: 0 !important;
  margin: 0;
  overflow: auto;
  cursor: default !important;
}
</style>

inputNumber.vue文件

<template>
  <div class="cell-input-number">
    <input type="number" class="cell-input-inner" ref="inputEl" size="mini" v-model.trim="newValue" @blur="handleBlur" :min="mins" :max="maxs" />
  </div>
</template>

<script>
export default {
  props: {
    values: {
      type: [String, Number],
      required: false,
      default: '',
    },
    rowinputNumber: {
      type: Object,
      default: () => {},
    },
    newDates: {
      type: Object,
      default: () => {},
    },
  },
  data() {
    return {
      newValue: '',
      currentHeight: this.height,
      mins: 0,
      maxs: 0,
    }
  },
  created() {
    console.log(this.rowinputNumber, 'rowinputNumberrowinputNumber')
  },
  mounted() {
    this.newValue = this.values
    // 用户双击后,让其处于获取焦点的状态
    this.$refs.inputEl.focus()
  },
  methods: {
    formatInput(val) {
      console.log(val, 'hhhhhhhhhhhhhhhhhhhh')
    },
    parseInput() {},
    checknum() {},
    numberChangeFn(event) {
      console.log(event, 'yyyyyyy')
    },
    handleInput(event) {
      console.log(event, 'event')
      const { values, selectionStart, selectionEnd } = event.target

      // 只保留数字和小数点
      let pureValue = values.replace(/[^\d.]/g, '')

      // 如果小数点超过一个,只保留第一个
      const idx = pureValue.indexOf('.')
      if (idx !== -1 && pureValue.indexOf('.', idx + 1) !== -1) {
        pureValue = pureValue.slice(0, idx + 1) + pureValue.slice(idx + 1).replace(/\./g, '')
      }

      // 如果小数点在开头,前面加 0
      const isBeginningWithDot = pureValue[0] === '.'
      let newValue = isBeginningWithDot ? `0${pureValue}` : pureValue

      // 根据光标位置修改输入值
      const num = Number(newValue)
      if (num > 0 && selectionStart !== selectionEnd) {
        const start = Math.max(selectionStart, newValue.indexOf(num))
        const end = Math.min(selectionEnd, newValue.indexOf(num) + String(num).length)
        newValue = newValue.slice(0, start) + num + newValue.slice(end, newValue.length)
      }

      // 更新输入框中的值和组件中的值
      event.target.values = newValue

      this.newValue = newValue
    },
    handleBlur() {
      if (this.newValue !== this.values) {
        if (this.newValue === '') {
          this.newValue = 0
        }
        this.$emit('change', this.newValue, this.rowinputNumber, this.newDates)
      }
      this.$emit('close')
    },
  },
}
</script>

<style lang="scss">
.cell-input-number {
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: inherit;
  box-shadow: 0 0 24px #0000002e;
  .cell-input-inner {
    margin: 0;
    padding: 2px 8px;
    font-size: inherit;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    background-color: transparent;
    line-height: 23px;
    resize: none;
    overflow: hidden;
    white-space: pre-wrap;
    word-break: break-all;
    font-family: inherit;
    box-sizing: border-box;
  }
}
</style>

父页面

拿到数据传递给子去,然后进项本地储存 ,监听

    inputnumberchagelistFn(i, row) {
      this.$set(this.value[row.$index], 'productMoney', i)
      localStorage.setItem('mutate-1', JSON.stringify(this.value))
    },
    treechagelistFn(i, row) {
      this.$set(this.value[row.$index], 'productId', i.label)
      localStorage.setItem('mutate-1', JSON.stringify(this.value))
      this.$set(this.value[row.$index], 'id', i.id)
    },

第二种写法

<template>
  <div class="time_table">
    <el-card style="margin-bottom: 20px">
      <div slot="header" class="clearfix">
        <el-button type="text" @click="newlyAddedFn">新增</el-button>
      </div>
      <el-table border :data="tableData" style="width: 100%" :value="tableData">
        <el-table-column label="序号" width="100px" align="center">
          <template slot-scope="scope">
            {{ scope.$index + 1 }}
          </template>
        </el-table-column>
        <el-table-column prop="productId" label="xxxxx">
          <template slot-scope="scope">
            <el-select
              :filter-method="filterMethod"
              filterable
              :ref="'productId' + scope.$index"
              v-model="tableData[scope.$index]['productId']"
              placeholder="请选择文档类别"
              clearable
            >
              <el-option :value="tableData[scope.$index]['productId']" style="height: auto">
                <el-tree
                  :filter-node-method="filterNode"
                  :ref="'categoryNameTree' + scope.$index"
                  :data="data"
                  node-key="id"
                  :props="defaultProps"
                  @node-click="getTypeList(scope.$index, scope)"
                  :expand-on-click-node="false"
                  default-expand-all
                >
                  <span slot-scope="{ node }">{{ node.label }}</span>
                </el-tree>
              </el-option>
            </el-select>
            <div style="color: red; font-size: 12px" v-if="JSON.stringify(scope.row) == '{}' || scope.row.productId == ''"> 请选择所属产品(集成选非产线) </div>
          </template>
        </el-table-column>

        <el-table-column prop="productMoney" label="产品金额" :sortable="true">
          <template slot-scope="scope">
            <el-input type="number" v-model="scope.row.productMoney" placeholder="请输入数字"> </el-input>
            <div
              style="color: red; font-size: 12px"
              v-if="JSON.stringify(scope.row) == '{}' || scope.row.productMoney == null || scope.row.productMoney == 0 || scope.row.productMoney == ''"
            >
              请输入产品金额
            </div>
          </template>
        </el-table-column>
        <el-table-column prop="answer" label="操作" width="100px">
          <template slot-scope="{ row }">
            <el-button type="text" @click="delOption(row, tableData)">
              <span style="color: red">删除</span>
            </el-button>
          </template>
        </el-table-column>
      </el-table>
      <div class="money-style">
        <div class="amount-to-style">合计:</div>
        <div class="total-quotation-style">
          {{ preSignMoney | currencyFormat }}
        </div>
      </div>
    </el-card>
  </div>
</template>

<script>


export default {
  name: 'induction',
  props: {
    value: {
      type: Array,
      default: () => [],
    },
  },
  data() {
    return {
      preSignMoney: '',
      categoryId: null,
      tableData: [{}],
      options: [],
      data: [],
      dialogVisible: false,
      defaultProps: {
        children: 'children',
        label: 'label',
      },
    }
  },
  created() {
    this.getListFn()
    this.tableData = this.value
  },
  watch: {
    tableData: {
      handler(newval) {
        this.$emit('input', newval)
        this.countFn(newval)
      },
      deep: true,
    },
    value(val) {
      this.tableData = val
    },
  },

  methods: {
    countFn(data) {
      const total = data.reduce((accumulator, currentItem) => {
        return Number(accumulator) + Number(currentItem.productMoney)
      }, 0)
      this.preSignMoney = total
    },
    // 新增
    newlyAddedFn() {
      this.tableData.unshift({ productMoney: '', productId: '', productName: '' })
    },

    // 删除
    delOption(index, data) {
      data.splice(index, 1)
    },
    getListFn() {
      treeAPI().then((res) => {
        this.data = res
      })
    },
    filterNode(value, data) {
      if (!value) return true
      return data.label.indexOf(value) !== -1
    },
    filterMethod(value) {
      this.$refs.tree.filter(value)
    },

    clearValue() {
      this.$refs.tree.setCurrentKey(null)
    },
    getTypeList(index, row) {
      console.log(index, 'ccvcv', row)
      // .getCurrentKey()获取到当前要选择节点的key值
      // 使用此方法必须设置 node-key 属性,若没有节点被选中则返回 null
      const nodeId = this.$refs['categoryNameTree' + index].getCurrentKey()
      // .getNode(nodeId) 根据 data 或者 key 拿到 Tree 组件中的 node
      const node = this.$refs['categoryNameTree' + index].getNode(nodeId)
      if (node.childNodes.length === 0) {
        // 根据index给当前元素的categoryName参数赋值
        this.$set(this.tableData[index], 'productId', node.label)
        this.$set(this.tableData[index], 'label', node.data.id)

        // 此时页面上已经可以动态选择
        // 这一步是通过判断当前元素的v-model是否有值来控制el-option是否隐藏
        if (this.tableData[index].productId) {
          // .blur()用来隐藏当前展开的下拉选择框
          this.$refs['productId' + index].blur()
        }
      } else {
        this.$message({
          message: '请勾选子级',
          type: 'warring',
        })
      }
    },
  },
}
</script>
<style lang="scss" scoped>
.money-style {
  height: 46px;
  font-size: 16px;
  // margin-top: 20px;
  border-right: 1px solid #d9dbe0;
  border-left: 1px solid #d9dbe0;
  border-bottom: 1px solid #d9dbe0;
  line-height: 23px;

  display: -webkit-box;
  .amount-to-style {
    width: 50%;
    text-align: center;
    line-height: 44px;
    border-right: 1px solid #d9dbe0;
  }
  .total-quotation-style {
    text-align: center;

    line-height: 44px;

    width: 50%;
  }
}
</style>

父页面

   inputChange(val) {
      this.tablesProps = val
    },

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

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

相关文章

云原生数据库 GaiaDB 的核心技术演进和解析

导读 在越来越强调云原生的环境下&#xff0c;存算分离作为一种新的架构理念&#xff0c;已经是大势所趋。新的技术架构带来新的问题和挑战&#xff0c;百度智能云的云原生数据库 GaiaDB 采用 Quorum 分布式协议、高性能网络、高可靠分布式存储引擎等技术实现更高的性能和可用性…

[开源]GPT Boss – 用图形化的方式部署您的私人GPT镜像网站

在这个以数据和智能为核心的时代&#xff0c;掌握最新的技术趋势是每个企业和个人都需要做到的。这就是GPT Boss存在的意义&#xff1a;一个基于OpenAI技术的一站式GPT应用解决方案。 自2022年起&#xff0c;GPT Boss团队便投身于人工智能领域&#xff0c;将OpenAI的GPT模型带给…

Bard 最新更新:全球开放访问Gemini Pro并生成图片

深入解析最新的技术突破、实际应用案例和未来的趋势。与全球数同行一同&#xff0c;从行业内部的深度分析和实用指南中受益。不要错过这个机会&#xff0c;成为AI领域的领跑者。点击订阅&#xff0c;与未来同行&#xff01; 订阅&#xff1a;https://rengongzhineng.io/ 。 今…

2024/2/4学习记录

微信小程序 网络数据请求 出于安全性方面的考虑&#xff0c;小程序官方对数据接口得请求做出了俩个限制 只能对 https 类型的接口必须将接口的域名添加到信任列表中 需要去这里设置 域名只支持 https 协议域名不能使用 ip 地址 或者localhost域名必须经过 ICP 备案 服务器域…

在 iOS 上安装自定企业级应用

了解如何安装您的组织创建的自定应用并为其建立信任。 本文适用于学校、企业或其他组织的系统管理员。 您的组织可以使用 Apple Developer Enterprise Program 创建和分发企业专用的 iOS 应用&#xff0c;以供内部使用。您必须先针对这些应用建立信任后&#xff0c;才能将其打…

Excel没有内置统计字数功能,但可以用一些变通的方法

是否需要计算Excel工作簿中某个单元格或单元格范围内的单词数? 出于多种原因,你可能需要计算文本数据中的字数。也许你有逗号分隔的列表,需要计算每个列表中的项目数。 不幸的是,Excel没有内置的单词计数方法。但是有一些聪明的方法可以得到你需要的结果。 这篇文章将向…

【开源】基于JAVA+Vue+SpringBoot的软件学院思政案例库系统

目录 一、摘要1.1 项目介绍1.2 项目录屏 二、功能模块2.1 系统管理员2.2 普通教师 三、系统展示四、核心代码4.1 查询思政案例4.2 审核思政案例4.3 查询思政课程4.4 思政案例点赞4.5 新增思政案例评语 五、免责说明 一、摘要 1.1 项目介绍 基于JAVAVueSpringBootMySQL的软件学…

文心一言 VS 讯飞星火 VS chatgpt (194)-- 算法导论14.3 2题

二、用go语言&#xff0c;改写 INTERVAL-SEARCH 的代码&#xff0c;使得当所有区间都是开区间时&#xff0c;它也能正确地工作。 文心一言&#xff0c;代码正常运行&#xff1a; 在Go语言中&#xff0c;处理开区间&#xff08;open intervals&#xff09;时&#xff0c;我们需…

Linux的库文件

概述&#xff1a; 库文件一般就是编译好的二进制文件&#xff0c;用于在链接阶段同目标代码一块生成可执行文件&#xff0c;或者运行可执行文件的时候被加载&#xff0c;以遍调用库文件中的某段代码。 动态链接都是索引的.so文件&#xff0c;静态链接都是压缩打包的.a文件。 …

配置visualsvn提交后自动邮件通知

参考&#xff1a; https://blog.csdn.net/wiker_yong/article/details/10334967 # -*- coding: utf-8 -*- import sys import os import smtplib from email.mime.text import MIMEText from email.header import Headermail_host smtp.163.com #发送邮件的smtp地址 mail_us…

【RPA】什么是RPA

一、什么是RPA? RPA&#xff0c;全称机器人流程自动化&#xff0c;是一种利用机器人技术实现工作信息与业务交互自动化的过程。它能够按照预先设计的流程&#xff0c;高效地处理大量的工作信息与业务交互&#xff0c;极大地节约了人工成本。如今&#xff0c;RPA已成为智能化软…

26.云原生ArgoCD高级之ApplicationSet

云原生专栏大纲 文章目录 ApplicationSet介绍ApplicationSet 特性ApplicationSet 安装ApplicationSet 工作原理ApplicationSet 生成器列表类型生成器集群生成器基础使用方法Label Selector 指定集群Values 字段传递额外的参数 git生成器git目录生成参数排除目录git文件生成器矩…

zabbix server/agent源码编译成rpm包(通用版-小白教程)

前言 工作环境需要用到很多信创的操作系统&#xff0c;zabbix agent2的官方没有现成的包可用&#xff0c;网上巴拉了一下找到zabbix agent2通用版编译成rpm包的方法 思路&#xff1a;假如当你有一批ky10_x86的机器需要配套的zabbix agent的rpm包&#xff0c;那就找一台ky10_x…

6个国内可用的chat大模型

文心一言 - 一款适合中国人使用的AI智能助理&#xff0c;能够帮助用户进行对话、生成内容等工作&#xff0c;提高工作效率和创作水平 文心一言 文心一言 App 是一款适合中国人的 AI 智能助理&#xff0c;它的功能点主要包括&#xff1a; 工作生活助理&#xff1a;该应用通过简…

鉴权失败原因

在技术领域&#xff0c;鉴权失败是指一个系统或应用程序中的身份验证或权限验证过程失败。当用户试图访问受限资源或执行受限操作时&#xff0c;系统会进行鉴权过程来确认用户是否具有足够的权限。如果鉴权过程失败&#xff0c;则表示用户无法获得所需的访问权限。 鉴权失败可…

Java代码实现基数排序算法(附带源码)

基数排序是一种非比较型整数排序算法&#xff0c;其原理是将整数按位数切割成不同的数字&#xff0c;然后按每个位数分别比较。由于整数也可以表达字符串&#xff08;比如名字或日期&#xff09;和特定格式的浮点数&#xff0c;所以基数排序也不是只能使用于整数。 1. 基数排序…

基于Springboot的兼职网(有报告)。Javaee项目,springboot项目。

演示视频&#xff1a; 基于Springboot的兼职网&#xff08;有报告&#xff09;。Javaee项目&#xff0c;springboot项目。 项目介绍&#xff1a; 采用M&#xff08;model&#xff09;V&#xff08;view&#xff09;C&#xff08;controller&#xff09;三层体系结构&#xff0…

ubuntu离线安装k8s

目录 一、前期准备 二、安装前配置 三、安装docker 四、安装cri-dockerd 五、部署k8s master节点 六、整合kubectl与cri-dockerd 七、网络等插件安装 八、常见问题及解决方法 一、前期准备 ①ubuntu系统 本地已安装ubuntu系统&#xff0c;lsb_release -a命令查看版本信…

HarmonyOS应用/服务发布:打造多设备生态的关键一步

目前 前言HarmonyOS 应用/服务发布的重要性使用HarmonyOS 构建跨设备的应用生态前期准备工作简述发布流程生成签名文件配置签名信息编译构建.app文件上架.app文件到AGC结束语 前言 随着智能设备的快速普及和多样化&#xff0c;以及编程语言的迅猛发展&#xff0c;构建一个无缝…

打印文件pdf怎么转换成word文档?pdf转换工具推荐

有时候我们可能需要重用PDF文件中的文本内容&#xff0c;比如引用某些段落、复制粘贴特定文字或提取数据&#xff0c;通过将pdf文件转换成word&#xff0c;可以轻松地提取和重用其中的文本&#xff0c;节省时间和努力&#xff0c;那么pdf怎么转word呢&#xff1f;可以试试本文推…