Skip to content

Commit 9b9dd65

Browse files
committed
upgrade version to v0.5.10
1 parent 16449b0 commit 9b9dd65

File tree

6 files changed

+23
-17
lines changed

6 files changed

+23
-17
lines changed

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.5.9"
3+
version = "0.5.10"
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.5.9",
14+
"version": "0.5.10",
1515
"type": "module",
1616
"scripts": {
1717
"dev": "vite",

src/components/naming/SuberscriberListColumns.jsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { useI18n } from 'vue-i18n';
2-
export const createColumns = function (
3-
) {
2+
export const createColumns = function () {
43
const { t } = useI18n();
54

65
const columns = [
@@ -17,8 +16,8 @@ export const createColumns = function (
1716
key: 'address',
1817
render(row) {
1918
return `${row.ip}:${row.port}`;
20-
},
21-
},
19+
}
20+
}
2221
];
2322
return columns;
2423
};

src/pages/ServiceListPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ export default defineComponent({
187187
serviceName: row.name,
188188
namespaceId: namespaceStore.current.value.namespaceId
189189
}
190-
});
191-
};
190+
});
191+
};
192192
const showDetail = (row) => {
193193
let protectThreshold = '0';
194194
if (row.protectThreshold) {

src/pages/SubscriberListPage.vue

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ import { useRoute } from 'vue-router';
7575
7676
export default defineComponent({
7777
components: {
78-
NamespacePopSelect,
78+
NamespacePopSelect
7979
},
8080
setup() {
8181
const { t } = useI18n();
@@ -128,7 +128,7 @@ export default defineComponent({
128128
if (res.status == 200) {
129129
let count = res.data.count;
130130
let pageSize = paginationReactive.pageSize;
131-
console.info(res)
131+
console.info(res);
132132
dataRef.value = res.data.subscribers;
133133
paginationReactive.itemCount = count;
134134
paginationReactive.pageCount = Math.round(
@@ -155,22 +155,29 @@ export default defineComponent({
155155
loading: loadingRef,
156156
param: paramRef,
157157
rowKey(rowData) {
158-
return rowData.groupName + '@@' + rowData.serviceName + '@@' + rowData.ip + ':' + rowData.port;
158+
return (
159+
rowData.groupName +
160+
'@@' +
161+
rowData.serviceName +
162+
'@@' +
163+
rowData.ip +
164+
':' +
165+
rowData.port
166+
);
159167
},
160-
doHandlePageChange,
168+
doHandlePageChange
161169
};
162170
},
163171
164-
computed: {
165-
},
172+
computed: {},
166173
methods: {
167174
queryList() {
168175
this.doHandlePageChange(1);
169176
},
170-
177+
171178
handlePageChange(page) {
172179
this.doHandlePageChange(page);
173-
},
180+
}
174181
},
175182
mounted() {
176183
this.queryList();

src/route/routes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const sideAllMenu = [
182182
{
183183
name: t('menu.subscriber_list'),
184184
path: '/manage/subscriber'
185-
},
185+
}
186186
]
187187
},
188188
{

0 commit comments

Comments
 (0)