|
@@ -42,7 +42,7 @@ export default defineComponent({
|
|
|
});
|
|
|
const onSubmit = async () => {
|
|
|
const isCommentRemind = storage.get('isCommentRemind');
|
|
|
- if (isCommentRemind != 1) {
|
|
|
+ if (isCommentRemind != 1 && state.commentRemind) {
|
|
|
state.removeVisiable1 = true;
|
|
|
return;
|
|
|
}
|
|
@@ -64,6 +64,7 @@ export default defineComponent({
|
|
|
//
|
|
|
}
|
|
|
state.btnLoading = false;
|
|
|
+ state.commentRemind = true;
|
|
|
};
|
|
|
|
|
|
const onSure = () => {
|