Commit 2e76f9c9 authored by xhx's avatar xhx

fix:修改进入委托判断

parent d7687cb4
......@@ -181,8 +181,11 @@ export default Vue.extend({
const addr = r.data.result?.data
// 已经投过票,跳过封闭期
if (addr) {
if (addr === val.minerAddr) {
if (addr !== val.minerAddr) {
Toast('该账号已绑定过票池')
} else {
Toast.clear()
this.$router.push({ path: '/details', query: { id: val.id || '1' }})
}
// checkBind(val.id).then(res => {
// if (res.data.data.isSucc) {
......
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