Skip to content

Commit ad738b0

Browse files
committed
修复:博客分类标题显示重复问题
1 parent 973b153 commit ad738b0

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

module/Blog/Docs/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- 优化:博客自动发布逻辑优化调整,支持定时发布
44
- 新增:博客分类支持二级分类,博客列表页面支持二级分类筛选
55
- 修复:博客编辑状态下可浏览,标签和博客分类数量计算数量异常
6-
6+
- 修复:博客分类标题显示重复问题
77

88
---
99

module/Blog/View/pc/blog/archive.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

module/Blog/View/pc/blog/list.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

module/Blog/View/pc/blog/listCover.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

vendor/modstart/modstart/resources/asset/src/svue/components/Mixins/lister.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)