hookehuyr

fix(PaginationField): 将submitButton的默认is_back值改为false

1 <!-- 1 <!--
2 * @Date: 2025-11-18 16:17:40 2 * @Date: 2025-11-18 16:17:40
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-11-20 17:46:05 4 + * @LastEditTime: 2025-11-20 17:55:05
5 * @FilePath: /data-table/src/components/PaginationField/index.vue 5 * @FilePath: /data-table/src/components/PaginationField/index.vue
6 * @Description: 分页组件 6 * @Description: 分页组件
7 --> 7 -->
...@@ -33,7 +33,7 @@ const props = defineProps({ ...@@ -33,7 +33,7 @@ const props = defineProps({
33 isLast: { type: Boolean, default: false }, 33 isLast: { type: Boolean, default: false },
34 prevLabel: { type: String, default: '上一页' }, 34 prevLabel: { type: String, default: '上一页' },
35 nextLabel: { type: String, default: '下一页' }, 35 nextLabel: { type: String, default: '下一页' },
36 - submitButton: { type: Object, default: { text: '提交', back_title: '上一页', is_back: true } }, 36 + submitButton: { type: Object, default: { text: '提交', back_title: '上一页', is_back: false } },
37 prevDisabled: { type: Boolean, default: false }, 37 prevDisabled: { type: Boolean, default: false },
38 }) 38 })
39 39
......