diff --git a/package.json b/package.json
index 2b25281da8e4b9c4b0660073c90337d68ecf7a03..1f2cf581f264f28e50c645c3a83bfc5652e2b00d 100644
--- a/package.json
+++ b/package.json
@@ -8,8 +8,10 @@
},
"dependencies": {
"crypto-js": "^4.0.0",
+ "file-saver": "^2.0.5",
"guess": "^1.0.2",
- "vue": "^3.2.37"
+ "vue": "^3.2.37",
+ "xlsx": "^0.18.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.1",
diff --git a/src/App.vue b/src/App.vue
index 633a5dfe4e547c48bfa93740a290ba5ba370930a..a5ec672d931477d1633ea33c7569b5f1ce773e64 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,20 +1,13 @@
-
-
-
-
-
-
-
+
-
-
-
+
+
+
\ No newline at end of file
diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue
deleted file mode 100644
index 1b8faac1521345513353e96050dd24d94610d432..0000000000000000000000000000000000000000
--- a/src/components/HelloWorld.vue
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
{{ msg }}
-
- You’ve successfully created a project with
- Vite +
- Vue 3.
-
-
-
-
-
diff --git a/src/components/TheWelcome.vue b/src/components/TheWelcome.vue
deleted file mode 100644
index d3d2e7acc8a9deeb26e48169ee3cbc64d2b54f2f..0000000000000000000000000000000000000000
--- a/src/components/TheWelcome.vue
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
-
-
-
- Documentation
-
- Vue’s
- official documentation
- provides you with all information you need to get started.
-
-
-
-
-
-
- Tooling
-
- This project is served and bundled with
- Vite. The recommended IDE
- setup is VSCode +
- Volar. If you need to test
- your components and web pages, check out
- Cypress and
- Cypress Component Testing.
-
-
-
- More instructions are available in README.md.
-
-
-
-
-
-
- Ecosystem
-
- Get official tools and libraries for your project:
- Pinia,
- Vue Router,
- Vue Test Utils, and
- Vue Dev Tools. If you need more
- resources, we suggest paying
- Awesome Vue
- a visit.
-
-
-
-
-
-
- Community
-
- Got stuck? Ask your question on
- Vue Land, our official Discord server, or
- StackOverflow.
- You should also subscribe to
- our mailing list and follow the official
- @vuejs
- twitter account for latest news in the Vue world.
-
-
-
-
-
-
- Support Vue
-
- As an independent project, Vue relies on community backing for its sustainability. You can help
- us by
- becoming a sponsor.
-
-
diff --git a/src/components/WelcomeItem.vue b/src/components/WelcomeItem.vue
deleted file mode 100644
index ba0def33c0e523d8c82426d76d76c39b482b21e0..0000000000000000000000000000000000000000
--- a/src/components/WelcomeItem.vue
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
diff --git a/src/main.js b/src/main.js
index 45c256b73e5c10a4f99845786f5b4f4c2b898d7a..02397b6a6da81d7e2e38eb9a0d3e0183d4e74ec3 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,22 +1,10 @@
import { createApp } from 'vue'
import App from './App.vue'
-import CryptoJS from 'crypto-js';
-let addCryto = (str)=>{
- let key = '736a6677797130313233343536373839'
- key = CryptoJS.enc.Hex.parse(key)
- const encrypted = CryptoJS.AES.encrypt(str,key,{
- mode:CryptoJS.mode.ECB,
- padding:CryptoJS.pad.Pkcs7
- })
- return encrypted.ciphertext.toString()
-}
-
-
-let sql =addCryto(`SELECT id FROM df_03_test_0613_01.a1111 WHERE id = '1'`)
-console.log(sql,'wwww')
+// let sql =addCryto(`SELECT id FROM df_03_test_0613_01.a1111 WHERE id = '1'`)
+// console.log(sql,'wwww')
import './assets/main.css'