推广管理增加双击跳转动作

master
kevin jiang 6 years ago
parent a908a9f650
commit 5c2017f237

@ -24,7 +24,7 @@
</i-col> </i-col>
</Row> </Row>
<Table :loading="loading" :columns="columns1" :data="data1" class="table-store" size="small"> <Table :loading="loading" :columns="columns1" :data="data1" class="table-store" size="small" @on-row-dblclick="onDblClickRowLister">
<template slot-scope="{row}" slot="qrCodeAction"> <template slot-scope="{row}" slot="qrCodeAction">
<img :src="require('../../../static/img/qrCode-init.png')" @click="show(row)" <img :src="require('../../../static/img/qrCode-init.png')" @click="show(row)"
class="table-img-qr-code"/> class="table-img-qr-code"/>
@ -578,6 +578,11 @@
this.isShowError = true; this.isShowError = true;
} }
} }
},
onDblClickRowLister: function (row) {
debugger
this.$router.push({path:'/shop/increase/manager/staff',query:{storeId:row.id}});
} }
} }
} }

Loading…
Cancel
Save