Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(bugs): some bugs 详细见feishu #219

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/modules/guide/components/Contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Contact: React.FC = memo(() => {
data: 'https://jwc.ccnu.edu.cn/info/1048/9828.htm',
success: () => {
void Taro.showToast({
title: '已复制链接',
title: '已复制链接,请在浏览器中打开',
icon: 'success',
});
},
Expand Down
4 changes: 1 addition & 3 deletions src/modules/login/components/Popper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,7 @@ const Content: React.FC<{ onClose: () => void }> = memo(({ onClose }) => (
</p>

<h3 className="text-lg font-semibold text-gray-700">联系我们</h3>
<p>
如您对本条例或其他相关事宜有疑问,请通过QQ群:799651462与我们联系,或发送邮件至:[email protected]
</p>
<p>如您对本条例或其他相关事宜有疑问,请通过QQ群:764752182与我们联系</p>
</View>
</View>
</>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/shareGrades/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ShareGrades = () => {
});
}
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access
if (r.msg === 'success') {
if (r.msg === 'Success') {
void Taro.showToast({
icon: 'success',
title: '签约成功!',
Expand Down
Loading