Commit 9833a3ed by crushh

update: dist

parent 7ec1f7df
...@@ -7,7 +7,7 @@ const attractFlowLinkRouter = [ ...@@ -7,7 +7,7 @@ const attractFlowLinkRouter = [
component: _import('salesleads/actCodeManage/attractFlowLink', 'index'), component: _import('salesleads/actCodeManage/attractFlowLink', 'index'),
meta: { meta: {
keepAlive: true, keepAlive: true,
fromPath: ['/attractFlowLinkAdd', '/attractFlowLinkEdit/:id', '/attractFlowLinkInfo/:id'] fromPath: ['/attractFlowLinkAdd', '/attractFlowLinkEdit/:id', '/attractFlowLinkInfo/:id', '/attractFlowLinkInfos/:id']
} }
}, },
{ {
...@@ -35,6 +35,14 @@ const attractFlowLinkRouter = [ ...@@ -35,6 +35,14 @@ const attractFlowLinkRouter = [
component: _import('salesleads/actCodeManage/attractFlowLink', 'info') component: _import('salesleads/actCodeManage/attractFlowLink', 'info')
}, },
{ {
path: '/attractFlowLinkInfos/:id',
name: '详情引流链接',
meta: {
type: 'info'
},
component: _import('salesleads/actCodeManage/attractFlowLink', 'info')
},
{
path: '/attLinkRecord', path: '/attLinkRecord',
name: '查看记录', name: '查看记录',
component: _import('salesleads/actCodeManage/staffActCode', 'actCodeRecord') component: _import('salesleads/actCodeManage/staffActCode', 'actCodeRecord')
......
...@@ -52,9 +52,6 @@ ...@@ -52,9 +52,6 @@
<el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :page-size.sync="form.pageSize" :current-page.sync="form.pageNum" layout="total, sizes, prev, pager, next, jumper" :page-sizes="[20, 40, 60, 80]" :total="total"> </el-pagination> <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :page-size.sync="form.pageSize" :current-page.sync="form.pageNum" layout="total, sizes, prev, pager, next, jumper" :page-sizes="[20, 40, 60, 80]" :total="total"> </el-pagination>
</div> </div>
<links :src="linkUrl" :show.sync="show" :imageName="imageName" /> <links :src="linkUrl" :show.sync="show" :imageName="imageName" />
<!-- </el-tab-pane>
<el-tab-pane label="引流入群" name="second">引流入群</el-tab-pane>
</el-tabs> -->
</div> </div>
</template> </template>
<script> <script>
...@@ -285,7 +282,11 @@ export default { ...@@ -285,7 +282,11 @@ export default {
this.$router.push('/ladingPageList'); this.$router.push('/ladingPageList');
}, },
goDetail(row, type) { goDetail(row, type) {
this.$router.push(`attractFlowLinkInfo/${row.linkId}?type=${type}`); if (type == 'second') {
this.$router.push(`attractFlowLinkInfo/${row.linkId}?type=${type}`);
} else {
this.$router.push(`attractFlowLinkInfos/${row.linkId}?type=${type}`);
}
}, },
goLink(row) { goLink(row) {
this.linkUrl = row.linkUrl; this.linkUrl = row.linkUrl;
......
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