Commit 42410852 by huaying

fix: 新增活码

parent f7d99f59
<template>
<div class="m20">
<div>
<el-row>
<div class="leftBox">
<el-input class="w260 mr10" placeholder="请输入门店名称/code" v-model="pageParam.search1" prefix-icon="el-icon-search"></el-input>
......@@ -43,7 +43,7 @@
</el-table-column>
<el-table-column label="操作">
<template slot-scope="{ row }">
<el-button type="text" @change="looks(row)">查看记录</el-button>
<el-button type="text" @click="lookRecords(row.actId)">查看记录</el-button>
</template>
</el-table-column>
</el-table>
......@@ -224,11 +224,15 @@ export default {
staus: 0
}
];
},
lookRecords(actId) {
const that = this;
that.$router.push(`/actCodeRecord?actId=${actId}`);
}
}
};
</script>
<style lang="scss" scoped>
<style lang="less" scoped>
.activeClass {
color: #2f54eb;
}
......@@ -236,12 +240,6 @@ export default {
color: #303133;
}
.m20 {
margin: 20px;
}
.mb16 {
margin-bottom: 16px;
}
.w260 {
width: 260px;
}
......@@ -251,12 +249,7 @@ export default {
.mr10 {
margin-right: 10px;
}
.mr24 {
margin-right: 24px;
}
.mr12 {
margin-right: 12px;
}
.mt18 {
margin-top: 18px;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment