|
@@ -141,7 +141,8 @@ const handleToJobFairEnterprises = async (val) => {
|
|
if (error?.code === 1100056005) {
|
|
if (error?.code === 1100056005) {
|
|
// 没有设置门票金额则提示无权限参加
|
|
// 没有设置门票金额则提示无权限参加
|
|
if (!val?.admissionPrice || val?.admissionPrice <= 0) {
|
|
if (!val?.admissionPrice || val?.admissionPrice <= 0) {
|
|
- uni.showToast({ title: error.msg, icon: 'none', duration: 2000 })
|
|
|
|
|
|
+ const title = val?.status === '1' ? '您没有参加该招聘会,暂无详情查看' : error.msg
|
|
|
|
+ uni.showToast({ title, icon: 'none', duration: 2000 })
|
|
return
|
|
return
|
|
}
|
|
}
|
|
// 设置门票金额则提示购买门票
|
|
// 设置门票金额则提示购买门票
|