Skip to content

Commit

Permalink
1. 移除配置组件中的console.log
Browse files Browse the repository at this point in the history
2. 更新版本号为v0.3.11
  • Loading branch information
heqingpan committed Apr 19, 2024
1 parent 28ce3c4 commit 5e797e4
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist-wrap/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist-wrap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnacos-web-dist-wrap"
version = "0.3.10"
version = "0.3.11"
edition = "2018"
authors = ["heqingpan <[email protected]>"]
license = "MIT/Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"vue3"
],
"private": true,
"version": "0.3.10",
"version": "0.3.11",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 0 additions & 2 deletions src/pages/ConfigDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ const lang = ref();
const focusValue = ref(0);
const doChangeLang = function (v) {
if (v) {
console.log('doChangeLang', v);
lang.value = langMap[v];
props.model.configType = v;
}
Expand Down Expand Up @@ -188,7 +187,6 @@ const langChange = function (e) {
watch(
() => props.model.configType,
(nv, ov) => {
console.log('watch change configType');
doChangeLang(props.model.configType);
}
);
Expand Down
1 change: 0 additions & 1 deletion src/pages/ConfigListPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ export default defineComponent({
configApi
.getConfigV2(config)
.then((res) => {
console.log(res.data);
if (res.status == 200 && res.data.success) {
modelRef.value = {
mode: mode,
Expand Down
4 changes: 2 additions & 2 deletions src/route/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ export const routes = [
path: '/manage/configs',
name: 'manange configs',
meta: { title: '配置列表' },
component: (() => import('@/pages/ConfigListPage.vue'))
component: () => import('@/pages/ConfigListPage.vue')
},
{
path: '/manage/config/history',
name: 'manange configs history',
meta: { title: '配置历史记录' },
component: (() => import('@/pages/ConfigHistoryListPage.vue'))
component: () => import('@/pages/ConfigHistoryListPage.vue')
},
/*
{
Expand Down

0 comments on commit 5e797e4

Please sign in to comment.