Skip to content

Commit 5e797e4

Browse files
committed
1. 移除配置组件中的console.log
2. 更新版本号为v0.3.11
1 parent 28ce3c4 commit 5e797e4

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

dist-wrap/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist-wrap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rnacos-web-dist-wrap"
3-
version = "0.3.10"
3+
version = "0.3.11"
44
edition = "2018"
55
authors = ["heqingpan <heqingpan@126.com>"]
66
license = "MIT/Apache-2.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"vue3"
1212
],
1313
"private": true,
14-
"version": "0.3.10",
14+
"version": "0.3.11",
1515
"type": "module",
1616
"scripts": {
1717
"dev": "vite",

src/pages/ConfigDetail.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ const lang = ref();
143143
const focusValue = ref(0);
144144
const doChangeLang = function (v) {
145145
if (v) {
146-
console.log('doChangeLang', v);
147146
lang.value = langMap[v];
148147
props.model.configType = v;
149148
}
@@ -188,7 +187,6 @@ const langChange = function (e) {
188187
watch(
189188
() => props.model.configType,
190189
(nv, ov) => {
191-
console.log('watch change configType');
192190
doChangeLang(props.model.configType);
193191
}
194192
);

src/pages/ConfigListPage.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ export default defineComponent({
202202
configApi
203203
.getConfigV2(config)
204204
.then((res) => {
205-
console.log(res.data);
206205
if (res.status == 200 && res.data.success) {
207206
modelRef.value = {
208207
mode: mode,

src/route/routes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ export const routes = [
5454
path: '/manage/configs',
5555
name: 'manange configs',
5656
meta: { title: '配置列表' },
57-
component: (() => import('@/pages/ConfigListPage.vue'))
57+
component: () => import('@/pages/ConfigListPage.vue')
5858
},
5959
{
6060
path: '/manage/config/history',
6161
name: 'manange configs history',
6262
meta: { title: '配置历史记录' },
63-
component: (() => import('@/pages/ConfigHistoryListPage.vue'))
63+
component: () => import('@/pages/ConfigHistoryListPage.vue')
6464
},
6565
/*
6666
{

0 commit comments

Comments
 (0)