create-jnrs-vue 1.2.24 → 1.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jnrs-vue",
3
- "version": "1.2.24",
3
+ "version": "1.2.25",
4
4
  "description": "JNRS 信息化管理系统",
5
5
  "author": "talia_tan",
6
6
  "private": true,
@@ -19,9 +19,9 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@element-plus/icons-vue": "^2.3.2",
22
- "@jnrs/shared": "1.1.17",
23
- "@jnrs/vue-core": "1.2.12",
24
- "@jnrs/lingshu-smart": "2.2.5",
22
+ "@jnrs/lingshu-smart": "2.2.6",
23
+ "@jnrs/shared": "1.1.18",
24
+ "@jnrs/vue-core": "1.2.13",
25
25
  "@vueuse/core": "^14.1.0",
26
26
  "element-plus": "^2.13.3",
27
27
  "pinia": "^3.0.4",
@@ -44,7 +44,7 @@
44
44
  "npm-run-all2": "^8.0.4",
45
45
  "prettier": "3.6.2",
46
46
  "sass": "^1.94.2",
47
- "typescript": "~5.9.3",
47
+ "typescript": "~6.0.2",
48
48
  "unplugin-auto-import": "^20.3.0",
49
49
  "unplugin-vue-components": "^29.2.0",
50
50
  "vite": "^7.2.2",
@@ -32,7 +32,7 @@ export const LoginApi = (data: LoginParams): Promise<LoginResult> => {
32
32
  return axiosRequest({
33
33
  url: '/auth/login',
34
34
  method: 'post',
35
- data: objectToFormData(data),
35
+ data,
36
36
  noAuth: true
37
37
  })
38
38
  }
@@ -111,7 +111,7 @@ const submitForm = async () => {
111
111
  <el-input
112
112
  v-model="ruleForm.account"
113
113
  :placeholder="$t('login.formAccount')"
114
- prefix-icon="IUser"
114
+ prefix-icon="User"
115
115
  clearable
116
116
  />
117
117
  </el-form-item>
@@ -20,6 +20,6 @@
20
20
  "@/*": ["src/*"]
21
21
  }
22
22
  },
23
- "include": ["src/**/*", "vite.config.ts", "../../../packages/vue-core/src/composables/useMouseSelection.ts"],
23
+ "include": ["src/**/*", "vite.config.ts"],
24
24
  "exclude": ["node_modules", "dist"]
25
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-jnrs-vue",
3
- "version": "1.2.24",
3
+ "version": "1.2.25",
4
4
  "description": "巨能前端工程化开发,Vue 项目模板脚手架",
5
5
  "keywords": [
6
6
  "vue",
@@ -31,9 +31,12 @@
31
31
  "pnpm": ">=9.0.0"
32
32
  },
33
33
  "dependencies": {
34
+ "fs-extra": "^11.2.0",
34
35
  "minimist": "^1.2.8",
35
- "prompts": "^2.4.2",
36
- "fs-extra": "^11.2.0"
36
+ "prompts": "^2.4.2"
37
+ },
38
+ "devDependencies": {
39
+ "typescript": "~6.0.2"
37
40
  },
38
41
  "scripts": {
39
42
  "release": "node ./scripts/release.mjs"