vuex 提交后清空很重要!

18号的份

使用vuex 推送信息时 会让之前的消息一起发送变动

使用vue 工具发现 state 的数据被覆盖

使用手动输入框 更新 发现state并没有更新只是视图上的变化

最后发现为 提交active后没有清空数据导致……

之后需要分离信息提示部分 并使后端返回数据规整化

并能使用固定数字代码 进行快速返回

admin 安全部分要完工了~~ 撒花~~

20号的份

使code编码换用于信息的快速返回

当然也可以使用对应信息语句直接返回

vue 的坑

vuev-for一定要定义key不然会出现渲染不正常 数据正常

重要的是并不会提示错误!!

laravel 的坑

使用laravel markdown email时,不能独立定义headerfooter

使用@component('mail::button')时,前方要清除空白。 否则不能正常渲染

要支持headerfooter ,将@component('mail::message') 改为 @component('mail::layout')

下方是修改后的例子,也可以直接复制message.blade.php进行修改

找不到message.blade.php时 运行php artisan vendor:publish --tag=laravel-mail

之后可以在vendor/mail/markdown下找到对应文件。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@component('mail::layout')

@slot('header')
@component('mail::header', ['url' => config('app.url')])
header
@endcomponent
@endslot

# Introduction
The body of your message.

@component('mail::button', ['url' => $url])
button
@endcomponent

Thanks,<br>

@slot('footer')
@component('mail::footer')
© footer
@endcomponent
@endslot
@endcomponent