diff --git a/layouts/common.styl b/layouts/common.styl index ec2bfb9..54257b4 100644 --- a/layouts/common.styl +++ b/layouts/common.styl @@ -562,3 +562,6 @@ blockquote .articelContent a color #de8787 + +.toasted-container + z-index 9999999 !important \ No newline at end of file diff --git a/pages/post/_id.vue b/pages/post/_id.vue index b3f759b..13afcd7 100644 --- a/pages/post/_id.vue +++ b/pages/post/_id.vue @@ -160,22 +160,27 @@ | 下一篇 {{ articels.next ? "(" + decodeTitle(articels.next.post_name) + ")" : "" }}   Icon(:icon='["fas", "chevron-right"]') modal.modal-setting(name='setting') - .vue-modal-content + .vue-modal-content(v-loading='form.loading') + p.vue-modal-title + | 评论回复提醒 Form(ref='form', :model='form', label-width='130px') FormItem(label='手机号') - Input(v-model='form.phone') + Input(v-model='form.phone', size='small') FormItem(label='发送提醒到手机') - Switch(v-model='form.sendPhone') + VueSwitch(v-model='form.sendPhone') FormItem(label='邮箱') - Input(v-model='form.phone') + Input(v-model='form.email', size='small') FormItem(label='发送提醒到邮箱') - Switch(v-model='form.sendEmail') + VueSwitch(v-model='form.sendEmail') .vue-modal-buttons + button.vue-modal-button(type='button', @click.stop='hideSettings') + | 关闭 button.vue-modal-button( type='button', - @click.stop='$modal.hide("setting")' + @click.stop='saveSettings', + style='background-color: #409eff;color: #fff;' ) - | 关闭 + | 保存