|
@@ -38,7 +38,7 @@
|
|
|
<div v-else ref="Simulation" style="visibility: hidden;">{{ '你好' }}</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="templatTaskName cursorPo" @click="clickTemplatTaskName(scope.row.id)">{{ scope.row.name }}</div>
|
|
|
+ <div class="templatTaskName cursorPo" @click="clickTemplatTaskName(scope.row)">{{ scope.row.name }}</div>
|
|
|
|
|
|
<div class="templatCreator">
|
|
|
<el-tooltip class="item" effect="dark" content="点击修改" placement="top">
|
|
@@ -467,7 +467,7 @@ export default {
|
|
|
this.$refs.taskSchedule.addSchedule()
|
|
|
},
|
|
|
clickTemplatTaskName(id) { // 任务名称店家跳转
|
|
|
- const bizId_id = EncryptId(`${this.bizId}_${id}`)
|
|
|
+ const bizId_id = EncryptId(`${id.bizId}_${id.id}`)
|
|
|
const { href } = this.$router.resolve({ name: '任务详情', query: { bizId_id: bizId_id }})
|
|
|
window.open(href, '_blank')
|
|
|
},
|