uniapp 中 uni-table 的 uni-td 没有点击事件
但是 table 组件使用起来还是比较方便的
所以采用了 CSDN 里的方式
原则上不再原组件里修改代码
1. 新增组件
再目录中新建组件:/component/table-td.vue
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>
<template>
<!-- #ifdef H5 -->
<td @click="getRow" class="uni-table-td" :rowspan="rowspan" :colspan="colspan" :class="{'table--border':border}" :style="{width:width + 'px','text-align':align}">
<slot></slot>
</td>
<!-- #endif -->
<!-- #ifndef H5 -->
<!-- :class="{'table--border':border}" -->
<view @click="getRow" class="uni-table-td" :class="{'table--border':border}" :style="{width:width + 'px','text-align':align}">
<slot></slot>
</view>
<!-- #endif -->
</template>
<script>
/**
* Td 单元格
* @description 表格中的标准单元格组件
* @tutorial https://ext.dcloud.net.cn/plugin?id=3270
* @property {Number} align = [left|center|right] 单元格对齐方式
*/
export default {
name: 'uniTd',
options: {
virtualHost: true
},
props: {
width: {
type: [String, Number],
default: ''
},
align: {
type: String,
default: 'left'
},
rowspan: {
type: [Number,String],
default: 1
},
colspan: {
type: [Number,String],
default: 1
}
},
data() {
return {
border: false
};
},
created() {
this.root = this.getTable()
this.border = this.root.border
},
methods: {
getRow(){
this.$emit("row-click")
},
/**
* 获取父元素实例
*/
getTable() {
let parent = this.$parent;
let parentName = parent.$options.name;
while (parentName !== 'uniTable') {
parent = parent.$parent;
if (!parent) return false;
parentName = parent.$options.name;
}
return parent;
},
}
}
</script>
<style lang="scss">
$border-color:#EBEEF5;
.uni-table-td {
display: table-cell;
padding: 8px 10px;
font-size: 14px;
border-bottom: 1px $border-color solid;
font-weight: 400;
color: #606266;
line-height: 23px;
box-sizing: border-box;
}
.table--border {
border-right: 1px $border-color solid;
}
</style>
2. 再使用的地方引入组件,并声明
<script>
import tableTd from '@/component/table-td.vue'
// ....
export default {
components: {
tableTd
},
// ....
3. 替换原本 uni-td 为 tableTd
// ....
<uni-table border stripe emptyText="暂无更多数据" @cell-click="handleCellClick">
<uni-tr>
<uni-th align="center">A</uni-th>
<uni-th align="center">B</uni-th>
<uni-th align="center">C</uni-th>
</uni-tr>
<uni-tr v-for="(item,index) in applyData" :key="index" @click="getRow">
<tableTd @row-click="showChooseGoods(index)" :data-index="index">{{item.goods_name}}</tableTd>
<tableTd @row-click="showChangeFactory(index)" :data-index="index">{{item.warehouse_name}}</tableTd>
<tableTd>
<u-number-box :value="item.number" :max="item.max" :name="index"
@change="changeGoodsNumber"></u-number-box>
</tableTd>
</uni-tr>
</uni-table>
// ....
添加函数
getRow() {
this.$emit("row-click")
},
基本按照 CSDN 上的操作就可以实现了。
上一篇: thinkphp6自定义模块异常...