当前位置:   article > 正文

【在table里显示下拉框形式】

【在table里显示下拉框形式】

图:在这里插入图片描述
一:主要是看审核方式,prop="status"和保存按钮的scope.row

          <el-table-column prop="status" label="审核方式" align="center">
            <template slot-scope="scope">
              <el-select v-model="scope.row.status"  placeholder="请选择">
                <el-option
                  v-for="item in statusOptions"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value">
                </el-option>
              </el-select>
            </template>
          </el-table-column>

          <el-table-column label="操作" align="center">
            <template slot-scope="scope">
              <el-button size="mini" type="danger" @click="save(scope.row)">保存</el-button>
            </template>
          </el-table-column>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

二:js
data()

     // 状态数据字典
      statusOptions: [{
            "id": "1",
            "value": "1",
            "label": "不审核"
        },
        {
            "id": "2",
            "value": "2",
            "label": "自动审核"
        },
        {
            "id": "3",
            "value": "3",
            "label": "人工审核"
        }]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

methods:保存审核状态


    // 保存审核方式
    save(row, index) {
      const column = {id:row.id,status:row.status}
      updateDataColumn(column).then((response) => {
        if (response.success) {
          this.$message.success('保存成功')
        } else {
          this.$message.error('保存失败')
        }
      })
    },
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/310228
推荐阅读
相关标签
  

闽ICP备14008679号