Skip to content

Commit

Permalink
feat: function details upgrade (#60)
Browse files Browse the repository at this point in the history
* docs: add LICENSE

* change: delete old framework

* feature: init new arco design framework

* feature: adjust the main frame of the project page

* feature: service list filtering and service name modification

* feat: add service publishing function

* feat: add new and modified services

* feat: add service operation form verification

* feat: navigation dynamic selection

* feat: plugin architecture development

* feat: plugin configuration addition, modification and switch function development

* feat: plugin configuration delete function development

* feat: add all supported plugin templates

* feat: dynamic menu function development

* feat: add request loading progress bar

* feat: development build package generation directory

* change: modify the packaged static file directory

* feat: Add route management page

* feat: Optimize new routing functions

* feat: Improve routing management function

* feat: Add ssl management page

* change: Delete useless code

* feat: Added jwt-auth/key-auth/limit-req/limit-conn/limit-count plug-in support

* feat: develop upstream list view

* feat: develop upstream list view

* feat: develop upstream release and delete function

* change: edit list page

* feat: Added mock plug-in support

* feat: delete debug code

* feat: develop upstream add and update

* change: modify the dynamic increase or decrease of service domains

* feat: update mock plugin bug

* feat: develop upstream add and edit function

* feat: develop upstream add and edit function

* upgrade upstream node rules

* feat: update plugin bug

* feat: update router upstream bug

* change: upgrade service to router params

* change: upgrade service to router params

* change: service information transmission when upgrading and adding routes

* change: upgrade service data in routes

* change: upgrade ssl warn

* feat: update mock plugin schema content

* change: upgrade routing method style

* change: adjust plugin style

* change: upgrade plugin list collapse effect

* change: upgrade plugin list collapse effect

* change: optimize plugin list and form validation

* change: upgrade style compatible resolution

* feat: upgrade the verification rules of the route

* docs: update readme

* docs: added change log

* feat: function details upgrade

---------

Co-authored-by: wuxiaochen <[email protected]>
Co-authored-by: blust <[email protected]>
  • Loading branch information
3 people authored Apr 6, 2023
1 parent 5f4ff8d commit 4d4bfec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/schema/ssl.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const sniFormat = { pattern: /^[A-Za-z\d_\-./]+$/, message: '域名仅包含字母、数字、_ - . /' }
const sniFormat = { pattern: /^[A-Za-z\d_\-./*]+$/, message: '域名仅包含字母、数字、_ - . / *' }

export const schemaSsl = {
sni: [sniFormat],
Expand Down
12 changes: 9 additions & 3 deletions src/views/router/operate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -149,19 +149,25 @@ export default {
const getUpstreamNameList = async () => {
let { code, data: dataList, msg } = await $upstreamNameList()
let tmpList = ref([])
tmpList.value.push({
res_id: '',
name: '请选择'
})
if (code != 0) {
message.error(msg)
} else {
let tmpList = ref([])
dataList.forEach(item => {
tmpList.value.push({
res_id: item.res_id,
name: item.name
})
})
data.upstreamList = tmpList
}
data.upstreamList = tmpList
}
// 获取详情
const getInfo = async (serviceResId, resId) => {
Expand Down

0 comments on commit 4d4bfec

Please sign in to comment.