|
@@ -561,7 +561,7 @@ export default function () {
|
|
// 登录
|
|
// 登录
|
|
$bus.$on('bidding:goLogin', goLogin)
|
|
$bus.$on('bidding:goLogin', goLogin)
|
|
function goLogin() {
|
|
function goLogin() {
|
|
- that.$showLoginDialog()
|
|
|
|
|
|
+ that.$showLoginDialog(...arguments)
|
|
}
|
|
}
|
|
|
|
|
|
function createClickInfoItem(item) {
|
|
function createClickInfoItem(item) {
|
|
@@ -570,7 +570,7 @@ export default function () {
|
|
}
|
|
}
|
|
return {
|
|
return {
|
|
id: item.id,
|
|
id: item.id,
|
|
- title: item.title || ''
|
|
|
|
|
|
+ title: item.originalTitle || item.title || ''
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -600,7 +600,7 @@ export default function () {
|
|
// 跳转详情页
|
|
// 跳转详情页
|
|
function toDetail(item) {
|
|
function toDetail(item) {
|
|
if (!isLogin.value) {
|
|
if (!isLogin.value) {
|
|
- return goLogin()
|
|
|
|
|
|
+ return goLogin(false, 'reload')
|
|
}
|
|
}
|
|
let aHref = ".html"
|
|
let aHref = ".html"
|
|
if (inputKeywordsState.value.matchKeys && inputKeywordsState.value.matchKeys.length > 0){
|
|
if (inputKeywordsState.value.matchKeys && inputKeywordsState.value.matchKeys.length > 0){
|