|
|
|
@ -24,7 +24,7 @@
|
|
|
|
|
</i-col>
|
|
|
|
|
</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">
|
|
|
|
|
<img :src="require('../../../static/img/qrCode-init.png')" @click="show(row)"
|
|
|
|
|
class="table-img-qr-code"/>
|
|
|
|
@ -578,6 +578,11 @@
|
|
|
|
|
this.isShowError = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onDblClickRowLister: function (row) {
|
|
|
|
|
|
|
|
|
|
debugger
|
|
|
|
|
this.$router.push({path:'/shop/increase/manager/staff',query:{storeId:row.id}});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|