File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed
vendor/modstart/modstart/resources/asset/src/svue/components/Mixins Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 33- 优化:博客自动发布逻辑优化调整,支持定时发布
44- 新增:博客分类支持二级分类,博客列表页面支持二级分类筛选
55- 修复:博客编辑状态下可浏览,标签和博客分类数量计算数量异常
6-
6+ - 修复:博客分类标题显示重复问题
77
88---
99
Original file line number Diff line number Diff line change 11@extends ($_viewFrame )
22
3- @section (' pageTitle' ){{ $pageTitle ? $pageTitle . ' | ' . modstart_config ( ' siteName ' ): modstart_config ( ' siteName ' ) } }@endsection
3+ @section (' pageTitle' ){{ $pageTitle } }@endsection
44@section (' pageKeywords' ){{ $pageKeywords } }@endsection
55@section (' pageDescription' ){{ $pageDescription } }@endsection
66
Original file line number Diff line number Diff line change 11@extends ($_viewFrame )
22
3- @section (' pageTitle' ){{ $pageTitle ? $pageTitle . ' | ' . modstart_config ( ' siteName ' ): modstart_config ( ' siteName ' ) } }@endsection
3+ @section (' pageTitle' ){{ $pageTitle } }@endsection
44@section (' pageKeywords' ){{ $pageKeywords } }@endsection
55@section (' pageDescription' ){{ $pageDescription } }@endsection
66
Original file line number Diff line number Diff line change 11@extends ($_viewFrame )
22
3- @section (' pageTitle' ){{ $pageTitle ? $pageTitle . ' | ' . modstart_config ( ' siteName ' ): modstart_config ( ' siteName ' ) } }@endsection
3+ @section (' pageTitle' ){{ $pageTitle } }@endsection
44@section (' pageKeywords' ){{ $pageKeywords } }@endsection
55@section (' pageDescription' ){{ $pageDescription } }@endsection
66
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export const ListerMixin = {
99 listLoading : false ,
1010 listActionName : '' ,
1111 listActionStatus : { } ,
12+ selectRecords : [ ] ,
1213 selectIds : [ ] ,
1314 list : {
1415 page : 1 ,
@@ -136,6 +137,7 @@ export const ListerMixin = {
136137 console . error ( 'should implements doList' )
137138 } ,
138139 onSelectionChange ( rows ) {
140+ this . selectRecords = rows
139141 this . selectIds = rows . map ( o => o . id )
140142 } ,
141143 doSelectionCancel ( ) {
You can’t perform that action at this time.
0 commit comments