先说下需求,
1、el-table的单元格不仅要能点击,而且需要显示后台数据(由于我保存的是数字形式到后台,但是展示到前端时需要将这些数字翻译成对应的中文),下面的是一个简单的实现方法
<el-table-column prop="zhengjuselect" fixed align="center" label="证据" width="180"
style="text-align: center">
<template slot-scope="scope">
<div @click="AddzhengjuInfo(scope.row)" style="cursor: pointer">
<span v-for="item in scope.row.zhengjuselect.split(',') ">
<span v-if="item === '1'">测试一</span>
<span v-else-if="item === '2'">测试二</span>
<span v-else-if="item === '3'">测试三</span>
<span v-else>{{ scope.row.zhengjuselect }}</span>
</span>
</div>
</template>
</el-table-column>
实现的效果图,证据这一栏可以点击
2、点击完单元格出现dialog弹框,然后勾选相应的信息,点击保存就可以啦
<el-dialog title="添加证据信息" :visible.sync="AddzhengjuInfodialogFormVisible" width="66%"
:close-on-click-modal="false"
@close="clearForm">
<div style="margin-top: 20px">
<el-form label-width="100px" ref="zhengjuInfoForm" :model="AddzhengjuInfoForm">
<el-form-item prop="zhengju">
<el-checkbox-group v-model="zhengjuInfoData" size="medium" style="margin-left: 10px" >
<div>
<el-checkbox :label="1">测试1</el-checkbox>
</div>
<div>
<el-checkbox :label="2">测试2</el-checkbox>
</div>
<div>
<el-checkbox :label="3">测试3</el-checkbox>
</div>
</el-checkbox-group>
</el-form-item>
</el-form>
</div>
<div slot="footer" class="dialog-footer">
<el-button @click="AddzhengjuInfodialogFormVisible = false">取 消</el-button>
<el-button type="primary" @click="AddzhengjuInformation ">确 定</el-button>
</div>
</el-dialog>
效果图:
以上的各种方法的代码
data() {
return {
AddzhengjuInfoForm: {},
zhengjuInfoData: [],
}
}
AddzhengjuInfo(row) {
this.AddzhengjuInfoForm = row
this.AddzhengjuInfodialogFormVisible = true
},
AddzhengjuInformation() {
// this.$refs['AddzhengjuInfoForm'].validate((valid) =>{
console.log(this.AddzhengjuInfoForm.id + "id++++++++++++++++++++++++++++++")
// })
this.AddzhengjuInfodialogFormVisible = false
let data = this.zhengjuInfoData.join(",")
console.log(data)
request.get("/WES/savezhengjuSelectInformation", {
params: {
id: this.AddzhengjuInfoForm.id,
zhengjuselect: data
}
}).then(res => {
console.log(res)
})
// console.log(row.id)
},
后台返回的数据主要是这个函数
load() {
request.get("/WES/page", {
params: {
pageNum: this.pageNum,
pageSize: this.pageSize,
zhengju: this.zhengju,
zhengjuselect: this.zhengjuselect,
}
}).then(res => {
this.tableData = res.records
this.total = res.total
this.tableData.forEach((index) => this.disableArr.push({isDisable: false}));
this.tableData.forEach((index) => this.disableArr1.push({isDisable: false}));
})
},
springboot后端的两个接口的代码:
@GetMapping("/page")
public IPage<WesdeafnessEntity> SelectByPage(@RequestParam Integer pageSize,
@RequestParam Integer pageNum,
@RequestParam String chr,
@RequestParam String start) {
IPage<WesdeafnessEntity> page = new Page<>(pageNum, pageSize);
QueryWrapper<WesdeafnessEntity> WesdeafnessEntityQueryWrapper = new QueryWrapper<>();
if (!"".equals(chr)) {
WesdeafnessEntityQueryWrapper.like("chr", chr);
}
if (!"".equals(start))
WesdeafnessEntityQueryWrapper.like("start", start);
WesdeafnessEntityQueryWrapper.orderByDesc("id");
return wesDeafnessService.page(page, WesdeafnessEntityQueryWrapper);
}
@GetMapping("/savezhengjuSelectInformation")
public WesdeafnessEntity savezhengjuSelectInformation(@RequestParam Integer id,
@RequestParam String zhengjuselect){
UpdateWrapper<WesdeafnessEntity> wrapper = new UpdateWrapper<>();
wrapper.set("zhengjuselect",zhengjuselect).eq("id",id);
int result = wesDeafnessMapper.update(null,wrapper);
WesdeafnessEntity entity = wesDeafnessMapper.selectById(id);
// String zhengju = entity.getZhengju();
//根据ID查出这些数据,然后回传给前端,前端在进行相应展示
return entity;
}
最后也顺便说下这个一个单元格显示多行数据是如何实现的,很简单直接看代码
<el-table-column :show-overflow-tooltip='true' prop="genotype,depth,vaf" fixed align="center"
label="genotype,depth,vaf"
width="80">
<template slot-scope="scope">
{{ scope.row.genotype }}<br>{{ scope.row.depth }}<br>{{ scope.row.vaf }}
</template>
</el-table-column>
效果图: