From 94b3ccffebaacf499685642a34e1e2924a142e03 Mon Sep 17 00:00:00 2001 From: chengmingrui Date: Thu, 23 Jan 2025 18:03:32 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=8C=89=E7=85=A7=E9=9C=80=E6=B1=82?= =?UTF-8?q?=E5=88=9D=E6=AD=A5=E6=8E=A5=E5=85=A5=E5=93=81=E9=AB=98=E4=BA=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .npmrc | 33 + .../resource-apply/disk/bingoCloudOS.vue | 194 +++++ src/views/resource-apply/disk/index.vue | 4 +- .../ecs/bingoCloudOS/addDisk/add.vue | 160 ++++ .../ecs/bingoCloudOS/addDisk/index.vue | 273 ++++++ .../ecs/bingoCloudOS/addNics/add.vue | 84 ++ .../ecs/bingoCloudOS/addNics/index.vue | 86 ++ .../ecs/bingoCloudOS/flavor.vue | 110 +++ .../resource-apply/ecs/bingoCloudOS/image.vue | 190 +++++ .../resource-apply/ecs/bingoCloudOS/index.vue | 382 +++++++++ src/views/resource-apply/ecs/index.vue | 4 +- src/views/resource-apply/fip/bingoCloudOS.vue | 140 +++ src/views/resource-apply/fip/index.vue | 4 +- src/views/resource-apply/lb/bingoCloudOS.vue | 806 ++++++++++++++++++ src/views/resource-apply/lb/index.vue | 4 +- src/views/resource-apply/vpc/bingoCloudOS.vue | 154 ++++ src/views/resource-apply/vpc/index.vue | 4 +- 17 files changed, 2627 insertions(+), 5 deletions(-) create mode 100644 .npmrc create mode 100644 src/views/resource-apply/disk/bingoCloudOS.vue create mode 100644 src/views/resource-apply/ecs/bingoCloudOS/addDisk/add.vue create mode 100644 src/views/resource-apply/ecs/bingoCloudOS/addDisk/index.vue create mode 100644 src/views/resource-apply/ecs/bingoCloudOS/addNics/add.vue create mode 100644 src/views/resource-apply/ecs/bingoCloudOS/addNics/index.vue create mode 100644 src/views/resource-apply/ecs/bingoCloudOS/flavor.vue create mode 100644 src/views/resource-apply/ecs/bingoCloudOS/image.vue create mode 100644 src/views/resource-apply/ecs/bingoCloudOS/index.vue create mode 100644 src/views/resource-apply/fip/bingoCloudOS.vue create mode 100644 src/views/resource-apply/lb/bingoCloudOS.vue create mode 100644 src/views/resource-apply/vpc/bingoCloudOS.vue diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..9907a05 --- /dev/null +++ b/.npmrc @@ -0,0 +1,33 @@ +; Force npm to always require authentication when accessing the registry, even for GET requests. +; always-auth = false + +; The location of npm's cache directory. See npm-cache (https://docs.npmjs.com/cli/cache) +; Default: Windows: %AppData%\npm-cache, Posix: ~/.npm +; cache = + +; What level of logs to report. On failure, all logs are written to npm-debug.log in the current working directory. +; Any logs of a higher level than the setting are shown. The default is "warn", which shows warn and error output. +; Default: "warn" +; Values: "silent", "error", "warn", "http", "info", "verbose", "silly" +; loglevel = + +; The config file to read for global config options. +; Default: {prefix}/etc/npmrc +; globalconfig = + +; The location to install global items. If set on the command line, then it forces non-global commands to run in the specified folder. +; Default: see npm-folders (https://docs.npmjs.com/files/folders) +; prefix = + +; The base URL of the npm package registry. +; Default: https://registry.npmjs.org/ +registry = http://58.210.154.140:13011/repository/bocloud-npm/ +auto-install-peers = true +strict-peer-dependencies = false +shamefully-hoist = true +always-auth = true +_auth = Ym9jbG91ZDpjbXBAdjU4Nw== + +; If set to false, then ignore npm-shrinkwrap.json files when installing. +; Default: true +; shrinkwrap = \ No newline at end of file diff --git a/src/views/resource-apply/disk/bingoCloudOS.vue b/src/views/resource-apply/disk/bingoCloudOS.vue new file mode 100644 index 0000000..fb4c393 --- /dev/null +++ b/src/views/resource-apply/disk/bingoCloudOS.vue @@ -0,0 +1,194 @@ +/** +* Created by HaijunZhang on 2019/4/28. +*/ + + + + + diff --git a/src/views/resource-apply/disk/index.vue b/src/views/resource-apply/disk/index.vue index 707d55f..0b15584 100644 --- a/src/views/resource-apply/disk/index.vue +++ b/src/views/resource-apply/disk/index.vue @@ -9,6 +9,7 @@ + @@ -19,6 +20,7 @@ import tencent from './tencent.vue' import tce from './tce.vue' import op from './op.vue' import aws from './aws.vue' +import bingoCloudOS from './bingoCloudOS.vue' export default { props: { itemData: { @@ -28,7 +30,7 @@ export default { type: Boolean } }, - components: { ali, op, huawei, tencent, aws, tce }, + components: { ali, op, huawei, tencent, aws, bingoCloudOS, tce }, data () { return { type: '' diff --git a/src/views/resource-apply/ecs/bingoCloudOS/addDisk/add.vue b/src/views/resource-apply/ecs/bingoCloudOS/addDisk/add.vue new file mode 100644 index 0000000..ad95fd6 --- /dev/null +++ b/src/views/resource-apply/ecs/bingoCloudOS/addDisk/add.vue @@ -0,0 +1,160 @@ + + + + + diff --git a/src/views/resource-apply/ecs/bingoCloudOS/addDisk/index.vue b/src/views/resource-apply/ecs/bingoCloudOS/addDisk/index.vue new file mode 100644 index 0000000..0aa174d --- /dev/null +++ b/src/views/resource-apply/ecs/bingoCloudOS/addDisk/index.vue @@ -0,0 +1,273 @@ + + + + + diff --git a/src/views/resource-apply/ecs/bingoCloudOS/addNics/add.vue b/src/views/resource-apply/ecs/bingoCloudOS/addNics/add.vue new file mode 100644 index 0000000..370d512 --- /dev/null +++ b/src/views/resource-apply/ecs/bingoCloudOS/addNics/add.vue @@ -0,0 +1,84 @@ + + + + + diff --git a/src/views/resource-apply/ecs/bingoCloudOS/addNics/index.vue b/src/views/resource-apply/ecs/bingoCloudOS/addNics/index.vue new file mode 100644 index 0000000..c2031ca --- /dev/null +++ b/src/views/resource-apply/ecs/bingoCloudOS/addNics/index.vue @@ -0,0 +1,86 @@ + + + + + diff --git a/src/views/resource-apply/ecs/bingoCloudOS/flavor.vue b/src/views/resource-apply/ecs/bingoCloudOS/flavor.vue new file mode 100644 index 0000000..96901aa --- /dev/null +++ b/src/views/resource-apply/ecs/bingoCloudOS/flavor.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/src/views/resource-apply/ecs/bingoCloudOS/image.vue b/src/views/resource-apply/ecs/bingoCloudOS/image.vue new file mode 100644 index 0000000..98551b5 --- /dev/null +++ b/src/views/resource-apply/ecs/bingoCloudOS/image.vue @@ -0,0 +1,190 @@ + + + + + diff --git a/src/views/resource-apply/ecs/bingoCloudOS/index.vue b/src/views/resource-apply/ecs/bingoCloudOS/index.vue new file mode 100644 index 0000000..41620b1 --- /dev/null +++ b/src/views/resource-apply/ecs/bingoCloudOS/index.vue @@ -0,0 +1,382 @@ +/** +* Created by HaijunZhang on 2019/4/28. +*/ + + + + + diff --git a/src/views/resource-apply/ecs/index.vue b/src/views/resource-apply/ecs/index.vue index 834edd5..85e1286 100644 --- a/src/views/resource-apply/ecs/index.vue +++ b/src/views/resource-apply/ecs/index.vue @@ -6,6 +6,7 @@ + @@ -21,6 +22,7 @@ import huawei from './huawei/index.vue' import tencent from './tencent/index.vue' import tce from './tce/index.vue' import aws from './aws/index.vue' +import bingoCloudOS from './bingoCloudOS/index.vue' export default { props: { itemData: { @@ -30,7 +32,7 @@ export default { type: Boolean } }, - components: { vc, ali, op, huawei, tencent, aws, tce }, + components: { vc, ali, op, huawei, tencent, aws, bingoCloudOS, tce }, data () { return { type: '' diff --git a/src/views/resource-apply/fip/bingoCloudOS.vue b/src/views/resource-apply/fip/bingoCloudOS.vue new file mode 100644 index 0000000..ee53a89 --- /dev/null +++ b/src/views/resource-apply/fip/bingoCloudOS.vue @@ -0,0 +1,140 @@ +/** +* Created by HaijunZhang on 2019/4/28. +*/ + + + + + diff --git a/src/views/resource-apply/fip/index.vue b/src/views/resource-apply/fip/index.vue index c0d61c2..7cdecb6 100644 --- a/src/views/resource-apply/fip/index.vue +++ b/src/views/resource-apply/fip/index.vue @@ -5,6 +5,7 @@
+ @@ -19,6 +20,7 @@ import huawei from './huawei.vue' import tencent from './tencent.vue' import tce from './tce.vue' import aws from './aws.vue' +import bingoCloudOS from './bingoCloudOS.vue' export default { props: { itemData: { @@ -28,7 +30,7 @@ export default { type: Boolean } }, - components: { ali, op, huawei, tencent, aws, tce }, + components: { ali, op, huawei, tencent, aws, bingoCloudOS, tce }, data () { return { type: '' diff --git a/src/views/resource-apply/lb/bingoCloudOS.vue b/src/views/resource-apply/lb/bingoCloudOS.vue new file mode 100644 index 0000000..3a930cf --- /dev/null +++ b/src/views/resource-apply/lb/bingoCloudOS.vue @@ -0,0 +1,806 @@ +/** +* Created by HaijunZhang on 2019/4/28. +*/ + + + + + diff --git a/src/views/resource-apply/lb/index.vue b/src/views/resource-apply/lb/index.vue index 9eb660a..5e5a5f2 100644 --- a/src/views/resource-apply/lb/index.vue +++ b/src/views/resource-apply/lb/index.vue @@ -5,12 +5,14 @@
+
+ + diff --git a/src/views/resource-apply/vpc/index.vue b/src/views/resource-apply/vpc/index.vue index 3da4564..7629fd2 100644 --- a/src/views/resource-apply/vpc/index.vue +++ b/src/views/resource-apply/vpc/index.vue @@ -5,6 +5,7 @@
+ @@ -19,6 +20,7 @@ import op from './op.vue' import tencent from './tencent.vue' import tce from './tce.vue' import aws from './aws.vue' +import bingoCloudOS from './bingoCloudOS.vue' export default { props: { itemData: { @@ -28,7 +30,7 @@ export default { type: Boolean } }, - components: { ali, op, huawei, tencent, aws, tce }, + components: { ali, op, huawei, tencent, aws, bingoCloudOS, tce }, data () { return { type: ''