Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<div class="bottom">{{ e.createTime }}</div>
|
||||
</template>
|
||||
<template #menu>
|
||||
<div class="menu" @tap.stop="goDetail(e.id)">编辑</div>
|
||||
<div class="menu" @tap.stop="goDetail(e.id,index)">编辑</div>
|
||||
<div class="menu" @tap.stop="handleDelete(e.id, index)">删除</div>
|
||||
</template>
|
||||
</AiCard>
|
||||
@@ -75,6 +75,7 @@ export default {
|
||||
goDetail(id, readonly) {
|
||||
let query = {id}
|
||||
readonly && (query.detail = 1)
|
||||
this.$refs[`aiCard${index}`][0].handleClose()
|
||||
uni.navigateTo({url: `./interviewDetail?${qs.stringify(query)}`})
|
||||
},
|
||||
gotoAdd() {
|
||||
|
||||
@@ -67,7 +67,9 @@ export default {
|
||||
}).then(res => {
|
||||
if (res?.code == 0) {
|
||||
this.$u.toast("提交成功!")
|
||||
this.root.goto({query: {}})
|
||||
setTimeout(() => {
|
||||
uni.navigateBack({})
|
||||
}, 1000)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user