diff --git a/src/components/ChooseList/ChooseMarks/index.vue b/src/components/ChooseList/ChooseMarks/index.vue
index 520d33e..4ce9b4d 100644
--- a/src/components/ChooseList/ChooseMarks/index.vue
+++ b/src/components/ChooseList/ChooseMarks/index.vue
@@ -58,11 +58,11 @@
@@ -108,8 +108,8 @@ const props = defineProps({
const loading = ref(false);
const total = ref(0);
const listQuery = ref({
- pages: 1,
- size: 20
+ pageCurrent: 1,
+ pageSize: 20
});
const keyVal = ref();
@@ -125,7 +125,7 @@ const closed = () => {
emits("update:modelValue", false);
};
const reset = () => {
- listQuery.value = { pages: 1, size: 20 };
+ listQuery.value = { pageCurrent: 1, pageSize: 20 };
getListData();
};
@@ -144,17 +144,17 @@ const onComfirm = () => {
closed();
};
/**
- * size 改变触发
+ * pageSize 改变触发
*/
const handleSizeChange = (currentSize) => {
- listQuery.value.size = currentSize;
+ listQuery.value.pageSize = currentSize;
getListData();
};
/**
* 页码改变触发
*/
const handleCurrentChange = (currentPage) => {
- listQuery.value.pages = currentPage;
+ listQuery.value.pageCurrent = currentPage;
getListData();
};
const getListData = () => {
@@ -184,7 +184,7 @@ function multipleUser() {
}
const handleFilter = () => {
- listQuery.value.pages = 1;
+ listQuery.value.pageCurrent = 1;
getListData();
};
diff --git a/src/components/ExtractionImg/index.vue b/src/components/ExtractionImg/index.vue
deleted file mode 100644
index 0e4da8a..0000000
--- a/src/components/ExtractionImg/index.vue
+++ /dev/null
@@ -1,13 +0,0 @@
-
- 555
-
-
-
-
-
\ No newline at end of file
diff --git a/src/components/ExtractionText/index copy.vue b/src/components/ExtractionText/index copy.vue
new file mode 100644
index 0000000..730d19a
--- /dev/null
+++ b/src/components/ExtractionText/index copy.vue
@@ -0,0 +1,227 @@
+
+
+
+
+ 文件文本提取工具
+ 上传文件提取文本内容(支持 .txt, .pdf, .docx, mp4 , mp3, wav)
+
+
+
+
+
+ 提取结果:
+ 请先上传文件...
+
+ 取消
+ 确认
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/components/ExtractionText/index.vue b/src/components/ExtractionText/index.vue
index 92b8bde..715eff5 100644
--- a/src/components/ExtractionText/index.vue
+++ b/src/components/ExtractionText/index.vue
@@ -1,31 +1,65 @@
-
- 文件文本提取工具
- 上传文件提取文本内容(支持 .txt, .pdf, .docx, mp4 , mp3, wav)
-
-
-
-
-
未选择文件
+
+
+
提取文件类型:
+
+ 文件解析
+ 图片解析
+
+
+
+
+
文件文本提取工具
+
上传文件提取文本内容(支持 .txt, .pdf, .docx, mp4 , mp3, wav)
+
+
+
+
+
+
提取结果:
+
请先上传文件...
+
+
+
+
+
文件文本提取工具
+
+
+
+
+
+
+
上传文件提取文本内容(支持 .png, .jpg )
+
+
+
+ 上传图片
+
+
{{ files.name || '未选择文件' }}
+
+
+
+
![]()
+
![]()
+
+
+
+
+
+
+
提取结果:
+
+
{{ alertText }}
+
+ {{ text }}
+
+
-
-
-
- 提取结果:
- 请先上传文件...
取消
确认
@@ -35,15 +69,35 @@