diff --git a/luci-app-adguardhome/Makefile b/luci-app-adguardhome/Makefile index 89b157e2c..db03e8acb 100644 --- a/luci-app-adguardhome/Makefile +++ b/luci-app-adguardhome/Makefile @@ -1,3 +1,5 @@ +# Copyright (C) 2018-2019 Lienol +# # This is free software, licensed under the Apache License, Version 2.0 . # @@ -11,7 +13,6 @@ LUCI_PKGARCH:=all LUCI_DEPENDS:=+ca-certs +curl +wget-ssl +PACKAGE_$(PKG_NAME)_INCLUDE_binary:adguardhome LUCI_DESCRIPTION:=LuCI support for AdGuardHome - define Package/$(PKG_NAME)/config config PACKAGE_$(PKG_NAME)_INCLUDE_binary bool "Include Binary File" @@ -26,7 +27,6 @@ define Package/luci-app-adguardhome/conffiles /etc/AdGuardHome.yaml endef - define Package/luci-app-adguardhome/postinst #!/bin/sh /etc/init.d/AdGuardHome enable >/dev/null 2>&1 diff --git a/luci-app-adguardhome/luasrc/controller/AdGuardHome.lua b/luci-app-adguardhome/luasrc/controller/AdGuardHome.lua index bd751d13f..e9d37a766 100644 --- a/luci-app-adguardhome/luasrc/controller/AdGuardHome.lua +++ b/luci-app-adguardhome/luasrc/controller/AdGuardHome.lua @@ -1,22 +1,22 @@ -module("luci.controller.AdGuardHome", package.seeall) -local fs = require "nixio.fs" -local http = require "luci.http" -local uci = require"luci.model.uci".cursor() +module("luci.controller.AdGuardHome",package.seeall) +local fs=require"nixio.fs" +local http=require"luci.http" +local uci=require"luci.model.uci".cursor() function index() local page = entry({"admin", "services", "AdGuardHome"},alias("admin", "services", "AdGuardHome", "base"),_("AdGuard Home")) -page.order = 11 +page.order = 10 page.dependent = true page.acl_depends = { "luci-app-adguardhome" } - entry({"admin", "services", "AdGuardHome", "base"}, cbi("AdGuardHome/base"), _("Base Setting"), 1).leaf = true - entry({"admin", "services", "AdGuardHome", "log"}, form("AdGuardHome/log"), _("Log"), 2).leaf = true - entry({"admin", "services", "AdGuardHome", "manual"}, cbi("AdGuardHome/manual"), _("Manual Config"), 3).leaf = true - entry({"admin", "services", "AdGuardHome", "status"}, call("act_status")).leaf = true - entry({"admin", "services", "AdGuardHome", "check"}, call("check_update")) - entry({"admin", "services", "AdGuardHome", "doupdate"}, call("do_update")) - entry({"admin", "services", "AdGuardHome", "getlog"}, call("get_log")) - entry({"admin", "services", "AdGuardHome", "dodellog"}, call("do_dellog")) - entry({"admin", "services", "AdGuardHome", "reloadconfig"}, call("reload_config")) - entry({"admin", "services", "AdGuardHome", "gettemplateconfig"}, call("get_template_config")) +entry({"admin","services","AdGuardHome","base"},cbi("AdGuardHome/base"),_("Base Setting"),1).leaf = true +entry({"admin","services","AdGuardHome","log"},form("AdGuardHome/log"),_("Log"),2).leaf = true +entry({"admin","services","AdGuardHome","manual"},cbi("AdGuardHome/manual"),_("Manual Config"),3).leaf = true +entry({"admin","services","AdGuardHome","status"},call("act_status")).leaf=true +entry({"admin", "services", "AdGuardHome", "check"}, call("check_update")) +entry({"admin", "services", "AdGuardHome", "doupdate"}, call("do_update")) +entry({"admin", "services", "AdGuardHome", "getlog"}, call("get_log")) +entry({"admin", "services", "AdGuardHome", "dodellog"}, call("do_dellog")) +entry({"admin", "services", "AdGuardHome", "reloadconfig"}, call("reload_config")) +entry({"admin", "services", "AdGuardHome", "gettemplateconfig"}, call("get_template_config")) end function get_template_config() local b @@ -68,10 +68,10 @@ function do_update() else arg="" end - if arg=="force" then + if fs.access("/var/run/update_core") then + if arg=="force" then luci.sys.exec("kill $(pgrep /usr/share/AdGuardHome/update_core.sh) ; sh /usr/share/AdGuardHome/update_core.sh "..arg.." >/tmp/AdGuardHome_update.log 2>&1 &") - - + end else luci.sys.exec("sh /usr/share/AdGuardHome/update_core.sh "..arg.." >/tmp/AdGuardHome_update.log 2>&1 &") end diff --git a/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/base.lua b/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/base.lua index d1630754c..6896b61ef 100644 --- a/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/base.lua +++ b/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/base.lua @@ -5,7 +5,7 @@ local m,s,o,o1 local fs=require"nixio.fs" local uci=require"luci.model.uci".cursor() local configpath=uci:get("AdGuardHome","AdGuardHome","configpath") or "/etc/AdGuardHome.yaml" -local binpath = uci:get("AdGuardHome", "AdGuardHome", "binpath") or "/usr/bin/AdGuardHome/AdGuardHome" +local binpath=uci:get("AdGuardHome","AdGuardHome","binpath") or "/usr/bin/AdGuardHome" httpport=uci:get("AdGuardHome","AdGuardHome","httpport") or "3000" m = Map("AdGuardHome", "AdGuard Home") m.description = translate("Free and open source, powerful network-wide ads & trackers blocking DNS server.") @@ -24,33 +24,29 @@ o.placeholder=3000 o.default=3000 o.datatype="port" o.optional = false -o.description = translate("") +o.description = translate("") ---- update warning not safe local binmtime=uci:get("AdGuardHome","AdGuardHome","binmtime") or "0" local e="" -if not fs.access(configpath) then e = e .. " " .. translate("no config") end +if not fs.access(configpath) then + e=e.." "..translate("no config") +end if not fs.access(binpath) then e=e.." "..translate("no core") else local version=uci:get("AdGuardHome","AdGuardHome","version") local testtime=fs.stat(binpath,"mtime") if testtime~=tonumber(binmtime) or version==nil then - -- local tmp=luci.sys.exec(binpath.." -c /dev/null --check-config 2>&1| grep -m 1 -E 'v[0-9.]+' -o") - -- version=string.sub(tmp, 1, -2) - version = luci.sys.exec(string.format("echo -n $(%s --version 2>&1 | awk -F 'version ' '{print $2}' | awk -F ',' '{print $1}')", binpath)) - if version == "" then version = "core error" end - uci:set("AdGuardHome", "AdGuardHome", "version", version) - uci:set("AdGuardHome", "AdGuardHome", "binmtime", testtime) - uci:commit("AdGuardHome") + local tmp=luci.sys.exec(binpath.." --version | grep -m 1 -E 'v[0-9.]+' -o ") + version=string.sub(tmp, 1) + if version=="" then version="core error" end + uci:set("AdGuardHome","AdGuardHome","version",version) + uci:set("AdGuardHome","AdGuardHome","binmtime",testtime) + uci:save("AdGuardHome") end e=version..e end - -o = s:option(ListValue, "core_version", translate("Core Version")) -o:value("latest", translate("Latest Version")) -o:value("beta", translate("Beta Version")) -o.default = "latest" -o = s:option(Button, "restart", translate("Upgrade Core")) +o=s:option(Button,"restart",translate("Update")) o.inputtitle=translate("Update core version") o.template = "AdGuardHome/AdGuardHome_check" o.showfastconfig=(not fs.access(configpath)) @@ -69,8 +65,8 @@ o.default = "none" o.optional = true ---- bin path o = s:option(Value, "binpath", translate("Bin Path"), translate("AdGuardHome Bin path if no bin will auto download")) -o.default = "/usr/bin/AdGuardHome/AdGuardHome" -o.datatype = "string" +o.default = "/usr/bin/AdGuardHome" +o.datatype = "string" o.optional = false o.rmempty=false o.validate=function(self, value) @@ -122,8 +118,8 @@ return value end ---- work dir o = s:option(Value, "workdir", translate("Work dir"), translate("AdGuardHome work dir include rules,audit log and database")) -o.default = "/usr/bin/AdGuardHome" -o.datatype = "string" +o.default = "/etc/AdGuardHome" +o.datatype = "string" o.optional = false o.rmempty=false o.validate=function(self, value) @@ -212,7 +208,7 @@ o = s:option(Flag, "waitonboot", translate("On boot when network ok restart")) o.default = 1 o.optional = true ---- backup workdir on shutdown -local workdir = uci:get("AdGuardHome", "AdGuardHome", "workdir") or "/usr/bin/AdGuardHome" +local workdir=uci:get("AdGuardHome","AdGuardHome","workdir") or "/etc/AdGuardHome" o = s:option(MultiValue, "backupfile", translate("Backup workdir files when shutdown")) o1 = s:option(Value, "backupwdpath", translate("Backup workdir path")) local name @@ -238,7 +234,7 @@ o.optional=false o.description=translate("Will be restore when workdir/data is empty") ----backup workdir path -o1.default = "/usr/bin/AdGuardHome" +o1.default = "/etc/AdGuardHome" o1.datatype = "string" o1.optional = false o1.validate=function(self, value) @@ -268,12 +264,18 @@ o.widget = "checkbox" o.default = nil o.optional=true -o = s:option(Value, "update_url", translate("Core Update URL")) -o.default = "https://github.com/AdguardTeam/AdGuardHome/releases/download/${Cloud_Version}/AdGuardHome_linux_${Arch}.tar.gz" -o.placeholder = "https://github.com/AdguardTeam/AdGuardHome/releases/download/${Cloud_Version}/AdGuardHome_linux_${Arch}.tar.gz" -o.rmempty = false +----downloadpath +o = s:option(TextValue, "downloadlinks",translate("Download links for update")) o.optional = false - +o.rows = 4 +o.wrap = "soft" +o.cfgvalue = function(self, section) + return fs.readfile("/usr/share/AdGuardHome/links.txt") +end +o.write = function(self, section, value) + fs.writefile("/usr/share/AdGuardHome/links.txt", value:gsub("\r\n", "\n")) +end +fs.writefile("/var/run/lucilogpos","0") function m.on_commit(map) if (fs.access("/var/run/AdGserverdis")) then io.popen("/etc/init.d/AdGuardHome reload &") @@ -296,7 +298,7 @@ function m.on_commit(map) uci:set("AdGuardHome","AdGuardHome","ucitracktest","2") end end - uci:commit("AdGuardHome") + uci:save("AdGuardHome") end end return m diff --git a/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/log.lua b/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/log.lua index 754311a80..5d18a88db 100644 --- a/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/log.lua +++ b/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/log.lua @@ -1,7 +1,7 @@ -local fs = require "nixio.fs" -local uci = require"luci.model.uci".cursor() -local f, t -f = SimpleForm("logview") +local fs=require"nixio.fs" +local uci=require"luci.model.uci".cursor() +local f,t +f=SimpleForm("logview") f.reset = false f.submit = false t=f:field(TextValue,"conf") diff --git a/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/manual.lua b/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/manual.lua index 180a10c37..ecf072bbc 100644 --- a/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/manual.lua +++ b/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/manual.lua @@ -70,7 +70,7 @@ o.template = "AdGuardHome/yamleditor" if not fs.access(binpath) then o.description=translate("WARNING!!! no bin found apply config will not be test") end ---- log +--- log if (fs.access("/tmp/AdGuardHometmpconfig.yaml")) then local c=fs.readfile("/tmp/AdGuardHometest.log") if (c~="") then @@ -94,4 +94,4 @@ function m.on_commit(map) fs.writefile("/var/run/AdGlucitest","") end end -return m \ No newline at end of file +return m diff --git a/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_check.htm b/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_check.htm index 35887b406..832a1df46 100644 --- a/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_check.htm +++ b/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_check.htm @@ -75,4 +75,4 @@ XHR.poll(3, '<%=url([[admin]], [[services]], [[AdGuardHome]], [[check]])%>', nul <%end%> //]]> -<%+cbi/valuefooter%> \ No newline at end of file +<%+cbi/valuefooter%> diff --git a/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_chpass.htm b/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_chpass.htm index 905c3a8ed..b6ff3ebb3 100644 --- a/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_chpass.htm +++ b/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_chpass.htm @@ -46,4 +46,4 @@ function chpass(btn) %> /> <% if self.password then %><% end %> -<%+cbi/valuefooter%> \ No newline at end of file +<%+cbi/valuefooter%> diff --git a/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_status.htm b/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_status.htm index a1bf86b59..7e924d119 100644 --- a/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_status.htm +++ b/luci-app-adguardhome/luasrc/view/AdGuardHome/AdGuardHome_status.htm @@ -4,15 +4,15 @@ XHR.poll(3, '<%=url([[admin]], [[services]], [[AdGuardHome]], [[status]])%>', nu var tb = document.getElementById('AdGuardHome_status'); if (data && tb) { if (data.running) { - tb.innerHTML = 'AdGuardHome <%:RUNNING%>'; + tb.innerHTML = 'AdGuardHome <%:RUNNING%>'; } else { - tb.innerHTML = 'AdGuardHome <%:NOT RUNNING%>'; + tb.innerHTML = 'AdGuardHome <%:NOT RUNNING%>'; } if (data.redirect) { - tb.innerHTML+='<%:Redirected%>' + tb.innerHTML+='<%:Redirected%>' } else { - tb.innerHTML+='<%:Not redirect%>' + tb.innerHTML+='<%:Not redirect%>' } } } diff --git a/luci-app-adguardhome/luasrc/view/AdGuardHome/log.htm b/luci-app-adguardhome/luasrc/view/AdGuardHome/log.htm index a6d6bc365..11a1f787a 100644 --- a/luci-app-adguardhome/luasrc/view/AdGuardHome/log.htm +++ b/luci-app-adguardhome/luasrc/view/AdGuardHome/log.htm @@ -108,4 +108,4 @@ lv.innerHTML="<%:Please add log path in config to enable log%>" <%end%> //]]> -<%+cbi/valuefooter%> \ No newline at end of file +<%+cbi/valuefooter%> diff --git a/luci-app-adguardhome/po/zh-cn b/luci-app-adguardhome/po/zh-cn new file mode 120000 index 000000000..8d69574dd --- /dev/null +++ b/luci-app-adguardhome/po/zh-cn @@ -0,0 +1 @@ +zh_Hans \ No newline at end of file diff --git a/luci-app-adguardhome/po/zh-cn/AdGuardHome.po b/luci-app-adguardhome/po/zh-cn/AdGuardHome.po deleted file mode 100644 index 9446fe825..000000000 --- a/luci-app-adguardhome/po/zh-cn/AdGuardHome.po +++ /dev/null @@ -1,299 +0,0 @@ -#/cgi-bin/luci/admin/services/AdGuardHome -msgid "Base Setting" -msgstr "基础设置" - -msgid "Log" -msgstr "日志" - -msgid "AdGuardHome's version" -msgstr "AdGuardHome 版本" - -msgid "Needed to click 'save&apply' to generate the configuration file" -msgstr "需要点击“保存并应用”才能生成配置文件" - -msgid "In case of the latest realease is a source code that can not download the binary file" -msgstr "防止最新release只有源码,导致下载不成功" - -msgid "Manual Config" -msgstr "手动设置" - -msgid "Free and open source, powerful network-wide ads & trackers blocking DNS server." -msgstr "全网络广告和跟踪程序拦截DNS服务器,默认账号和密码均为:admin" - -msgid "RUNNING" -msgstr "运行中" - -msgid "NOT RUNNING" -msgstr "未运行" - -msgid "Redirected" -msgstr "已重定向" - -msgid "Not redirect" -msgstr "未重定向" - -msgid "Collecting data..." -msgstr "获取数据中..." - -msgid "Enable" -msgstr "启用" - -msgid "Browser management port" -msgstr "网页管理账号和密码:admin ,端口:" - -msgid "Upgrade Core" -msgstr "更新核心" - -#button change -msgid "Update core version" -msgstr "更新核心版本" - -msgid "Check..." -msgstr "检查中..." - -msgid "Updated" -msgstr "已更新" - -#button hide -msgid "Force update" -msgstr "强制更新核心" - -msgid "Fast config" -msgstr "快速配置" - -msgid "Core Version" -msgstr "核心版本" - -msgid "Latest Version" -msgstr "最新版" - -msgid "Beta Version" -msgstr "测试版" - -msgid "Current core version:" -msgstr "当前核心版本:" -msgid "no config" -msgstr "没有配置文件" - -msgid "no core" -msgstr "没有核心" - -# -msgid "Redirect" -msgstr "重定向" - -#inlist -msgid "none" -msgstr "无" - -msgid "Run as dnsmasq upstream server" -msgstr "作为dnsmasq的上游服务器" - -msgid "Redirect 53 port to AdGuardHome" -msgstr "重定向53端口到AdGuardHome" - -msgid "Use port 53 replace dnsmasq" -msgstr "使用53端口替换dnsmasq" - -# -msgid "AdGuardHome redirect mode" -msgstr "AdGuardHome重定向模式" - -msgid "Bin Path" -msgstr "执行文件路径" - -msgid "AdGuardHome Bin path if no bin will auto download" -msgstr "AdGuardHome 执行文件路径 如果没有执行文件将自动下载" - -msgid "use upx to compress bin after download" -msgstr "下载后使用upx压缩执行文件" - -#inlist -msgid "compress faster" -msgstr "快速压缩" - -msgid "compress better" -msgstr "更好的压缩" - -msgid "compress best(can be slow for big files)" -msgstr "最好的压缩(大文件可能慢)" - -msgid "try all available compression methods & filters [slow]" -msgstr "尝试所有可能的压缩方法和过滤器[慢]" - -msgid "try even more compression variants [very slow]" -msgstr "尝试更多变体压缩手段[很慢]" - -msgid "bin use less space,but may have compatibility issues" -msgstr "减小执行文件空间占用,但是可能压缩后有兼容性问题" -# -msgid "Config Path" -msgstr "配置文件路径" - -msgid "AdGuardHome config path" -msgstr "AdGuardHome 配置文件路径" - -msgid "Work dir" -msgstr "工作目录" - -msgid "AdGuardHome work dir include rules,audit log and database" -msgstr "AdGuardHome 工作目录包含规则,审计日志和数据库" - -msgid "Runtime log file" -msgstr "运行日志路径" - -msgid "AdGuardHome runtime Log file if 'syslog': write to system log;if empty no log" -msgstr "AdGuardHome 运行日志, 如果填 syslog 将写入系统日志; 如果该项为空则不记录运行日志" - -msgid "Verbose log" -msgstr "输出详细日志" - -#hide div -msgid "Add gfwlist" -msgstr "添加 GFW 列表" - -msgid "Add" -msgstr "添加" - -msgid "Added" -msgstr "已添加" - -msgid "Not added" -msgstr "未添加" - -#hide div -msgid "Del gfwlist" -msgstr "删除gfw列表" - -msgid "Del" -msgstr "删除" - -#hide div -msgid "Gfwlist upstream dns server" -msgstr "gfw列表上游服务器" - -msgid "Gfwlist domain upstream dns service" -msgstr "gfw列表域名上游服务器" - -#hide div -msgid "Change browser management password" -msgstr "更改网页登录密码" - -msgid "Culculate" -msgstr "计算" - -##button change -msgid "Load culculate model" -msgstr "载入计算模块" - -msgid "loading..." -msgstr "载入中" - -msgid "Please save/apply" -msgstr "请点击[保存/应用]" - -msgid "is empty" -msgstr "为空" - -msgid "Press load culculate model and culculate finally save/apply" -msgstr "先输入你想要的密码, 点击[载入计算模块], 然后点击[计算], 最后点击下方[保存&应用]" - -# -msgid "Keep files when system upgrade" -msgstr "系统升级时保留文件" - -#checkbox -msgid "core bin" -msgstr "核心执行文件" - -msgid "config file" -msgstr "配置文件" - -msgid "log file" -msgstr "日志文件" - -msgid "querylog.json" -msgstr "审计日志.json" - -# -msgid "On boot when network ok restart" -msgstr "开机后网络准备好时重启" - -msgid "Backup workdir files when shutdown" -msgstr "在关机时备份工作目录文件" - -msgid "Will be restore when workdir/data is empty" -msgstr "在工作目录/data为空的时候恢复" - -msgid "Backup workdir path" -msgstr "工作目录备份路径" - -msgid "Crontab task" -msgstr "计划任务" - -msgid "Auto update core" -msgstr "自动升级核心" - -msgid "Auto tail querylog" -msgstr "自动截短查询日志" - -msgid "Auto tail runtime log" -msgstr "自动截短运行日志" - -msgid "Auto update ipv6 hosts and restart adh" -msgstr "自动更新ipv6主机并重启adh" - -msgid "Auto update gfwlist and restart adh" -msgstr "自动更新gfw列表并重启adh" - -msgid "Please change time and args in crontab" -msgstr "请在计划任务中修改时间和参数" - -msgid "Core Update URL" -msgstr "核心更新地址" - -#/cgi-bin/luci/admin/services/AdGuardHome/log/ -msgid "reverse" -msgstr "逆序" - -msgid "localtime" -msgstr "本地时间" - -msgid "Please add log path in config to enable log" -msgstr "请在设置里填写日志路径以启用日志" - -msgid "dellog" -msgstr "删除日志" - -msgid "download log" -msgstr "下载日志" - -#/cgi-bin/luci//admin/services/AdGuardHome/manual/ -msgid "Use template" -msgstr "使用模板" - -#hide button -msgid "Reload Config" -msgstr "重新载入配置" - -msgid "WARNING!!! no bin found apply config will not be test" -msgstr "警告!!!未找到执行文件,提交配置将不会进行校验" - -#unused -msgid "Change browser management username" -msgstr "改变网页登录用户名" - -msgid "Username" -msgstr "用户名" - -msgid "Check Config" -msgstr "检查配置" - -msgid "unknown" -msgstr "未知" - -msgid "Keep database when system upgrade" -msgstr "系统升级时保留数据" - -msgid "Boot delay until network ok" -msgstr "开机时直到网络准备好再启动" \ No newline at end of file diff --git a/luci-app-adguardhome/po/zh_Hans b/luci-app-adguardhome/po/zh_Hans deleted file mode 120000 index 41451e4a1..000000000 --- a/luci-app-adguardhome/po/zh_Hans +++ /dev/null @@ -1 +0,0 @@ -zh-cn \ No newline at end of file diff --git a/luci-app-adguardhome/po/zh_Hans/adguardhome.po b/luci-app-adguardhome/po/zh_Hans/adguardhome.po new file mode 100644 index 000000000..0ace89bae --- /dev/null +++ b/luci-app-adguardhome/po/zh_Hans/adguardhome.po @@ -0,0 +1,408 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: zh_Hans\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" + +#: /mnt/A/openwrt-latest/package/ctcgfw/luci-app-adguardhome/luasrc/model/cbi/AdGuardHome/base.lua:27 +msgid "" +"/dev/null addrlist="`uci get dhcp.@dnsmasq[0].server 2>/dev/null`" if [ -z "$addrlist" ] ; then - resolvfile="/tmp/resolv.conf.d/resolv.conf.auto" - [ ! -f "$resolvfile" ] && resolvfile="/tmp/resolv.conf.auto" - uci set dhcp.@dnsmasq[0].resolvfile="$resolvfile" 2>/dev/null + uci set dhcp.@dnsmasq[0].resolvfile=/tmp/resolv.conf.d/resolv.conf.auto 2>/dev/null uci delete dhcp.@dnsmasq[0].noresolv 2>/dev/null fi uci commit dhcp @@ -76,9 +74,9 @@ EOF for IP in $IPS do if [ "$tcp_server" == "1" ]; then - iptables -t nat -A PREROUTING -p tcp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 + iptables -t nat -I PREROUTING -p tcp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 fi - iptables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 + iptables -t nat -I PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 done if [ "$ipv6_server" == 0 ]; then @@ -89,9 +87,9 @@ EOF for IP in $IPS do if [ "$tcp_server" == "1" ]; then - ip6tables -t nat -A PREROUTING -p tcp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 + ip6tables -t nat -I PREROUTING -p tcp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 fi - ip6tables -t nat -A PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 + ip6tables -t nat -I PREROUTING -p udp -d $IP --dport 53 -j REDIRECT --to-ports $AdGuardHome_PORT >/dev/null 2>&1 done } @@ -136,7 +134,7 @@ isrunning(){ } _isrunning(){ - config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome/AdGuardHome" + config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome" [ ! -f "$binpath" ] && return 2 pgrep $binpath 2>&1 >/dev/null && return 0 return 1 @@ -188,7 +186,7 @@ rm_port53() config_editor "dns.port" "$dnsmasq_port" "$configpath" uci set dhcp.@dnsmasq[0].port="53" uci commit dhcp - config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome/AdGuardHome" + config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome" killall -9 $binpath /etc/init.d/dnsmasq restart } @@ -210,7 +208,7 @@ use_port53() config_editor "dns.port" "53" "$configpath" uci set dhcp.@dnsmasq[0].port="$AdGuardHome_PORT" uci commit dhcp - /etc/init.d/dnsmasq restart + /etc/init.d/dnsmasq reload } do_redirect() @@ -244,7 +242,6 @@ _do_redirect() config_get "old_port" "$section" "old_port" "0" config_get "old_enabled" "$section" "old_enabled" "0" uci get dhcp.@dnsmasq[0].port >/dev/null 2>&1 || uci set dhcp.@dnsmasq[0].port="53" >/dev/null 2>&1 - uci commit dhcp if [ "$old_enabled" = "1" -a "$old_redirect" == "exchange" ]; then AdGuardHome_PORT=$(uci get dhcp.@dnsmasq[0].port 2>/dev/null) fi @@ -353,7 +350,7 @@ boot_service() { config_load "${CONFIGURATION}" config_get waitonboot $CONFIGURATION waitonboot "0" config_get_bool enabled $CONFIGURATION enabled 0 - config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome/AdGuardHome" + config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome" [ -f "$binpath" ] && start_service if [ "$enabled" == "1" ] && [ "$waitonboot" == "1" ]; then procd_open_instance "waitnet" @@ -374,15 +371,15 @@ testbackup(){ restore() { - config_get workdir $CONFIGURATION workdir "/usr/bin/AdGuardHome" - config_get backupwdpath $CONFIGURATION backupwdpath "/usr/bin/AdGuardHome" + config_get workdir $CONFIGURATION workdir "/etc/AdGuardHome" + config_get backupwdpath $CONFIGURATION backupwdpath "/etc/AdGuardHome" cp -u -r -f $backupwdpath/data $workdir } backup() { - config_get backupwdpath $CONFIGURATION backupwdpath "/usr/bin/AdGuardHome" + config_get backupwdpath $CONFIGURATION backupwdpath "/etc/AdGuardHome" mkdir -p $backupwdpath/data - config_get workdir $CONFIGURATION workdir "/usr/bin/AdGuardHome" + config_get workdir $CONFIGURATION workdir "/etc/AdGuardHome" config_get backupfile $CONFIGURATION backupfile "" for one in $backupfile; do @@ -427,7 +424,7 @@ start_service() { return fi #what need to do before reload - config_get workdir $CONFIGURATION workdir "/usr/bin/AdGuardHome" + config_get workdir $CONFIGURATION workdir "/etc/AdGuardHome" config_get backupfile $CONFIGURATION backupfile "" mkdir -p $workdir/data @@ -452,7 +449,7 @@ start_service() { fi fi local ADDITIONAL_ARGS="" - config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome/AdGuardHome" + config_get binpath $CONFIGURATION binpath "/usr/bin/AdGuardHome" mkdir -p ${binpath%/*} ADDITIONAL_ARGS="$ADDITIONAL_ARGS -c $configpath" @@ -577,8 +574,8 @@ do_crontab(){ [ "$enabled" == "0" ] || [ "${crontab//autoupdate/}" == "$crontab" ] && cronenable=0 || cronenable=1 crontab_editor - config_get workdir $CONFIGURATION workdir "/usr/bin/AdGuardHome" - config_get lastworkdir $CONFIGURATION lastworkdir "/usr/bin/AdGuardHome" + config_get workdir $CONFIGURATION workdir "/etc/AdGuardHome" + config_get lastworkdir $CONFIGURATION lastworkdir "/etc/AdGuardHome" findstr="/usr/share/AdGuardHome/tailto.sh [0-9]* \$(uci get AdGuardHome.AdGuardHome.workdir)/data/querylog.json" #[ -n "$lastworkdir" ] && findstr="/usr/share/AdGuardHome/tailto.sh [0-9]* $lastworkdir/data/querylog.json" && [ "$lastworkdir" != "$workdir" ] && replace="${lastworkdir//\//\\/}/${workdir//\//\\/}" default="0 * * * * /usr/share/AdGuardHome/tailto.sh 2000 \$(uci get AdGuardHome.AdGuardHome.workdir)/data/querylog.json" diff --git a/luci-app-adguardhome/root/etc/uci-defaults/40_luci-AdGuardHome b/luci-app-adguardhome/root/etc/uci-defaults/40_luci-AdGuardHome old mode 100755 new mode 100644 index 2d467df98..37e192cdd --- a/luci-app-adguardhome/root/etc/uci-defaults/40_luci-AdGuardHome +++ b/luci-app-adguardhome/root/etc/uci-defaults/40_luci-AdGuardHome @@ -6,7 +6,10 @@ uci -q batch <<-EOF >/dev/null 2>&1 set ucitrack.@AdGuardHome[-1].init=AdGuardHome commit ucitrack delete AdGuardHome.AdGuardHome.ucitracktest + /etc/init.d/AdGuardHome restart EOF rm -f /tmp/luci-indexcache + +chmod +x /etc/init.d/AdGuardHome /usr/share/AdGuardHome/* exit 0 diff --git a/luci-app-adguardhome/root/usr/share/AdGuardHome/AdGuardHome_template.yaml b/luci-app-adguardhome/root/usr/share/AdGuardHome/AdGuardHome_template.yaml old mode 100755 new mode 100644 index 61b5e67e2..612a57706 --- a/luci-app-adguardhome/root/usr/share/AdGuardHome/AdGuardHome_template.yaml +++ b/luci-app-adguardhome/root/usr/share/AdGuardHome/AdGuardHome_template.yaml @@ -11,7 +11,8 @@ language: zh-cn debug_pprof: false web_session_ttl: 720 dns: - bind_host: 0.0.0.0 + bind_hosts: + - 0.0.0.0 port: 1745 statistics_interval: 30 querylog_enabled: true @@ -98,14 +99,7 @@ filters: name: 'CHN: anti-AD' id: 1628750871 whitelist_filters: [] -user_rules: -- '@@||taobao.com^$important' -- '@@||jd.com^important' -- '@@||flyme.cn^$important' -- '@@||meizu.com^$important' -- '@@||wl.jd.com^$important' -- '@@||flydigi.com^' -- '@@||pv.sohu.com^$important' +user_rules: [] dhcp: enabled: false interface_name: "" @@ -130,4 +124,8 @@ log_max_size: 100 log_max_age: 3 log_file: "" verbose: false -schema_version: 7 +os: + group: "" + user: "" + rlimit_nofile: 0 +schema_version: 12 diff --git a/luci-app-adguardhome/root/usr/share/AdGuardHome/firewall.start b/luci-app-adguardhome/root/usr/share/AdGuardHome/firewall.start old mode 100755 new mode 100644 diff --git a/luci-app-adguardhome/root/usr/share/AdGuardHome/links.txt b/luci-app-adguardhome/root/usr/share/AdGuardHome/links.txt old mode 100755 new mode 100644 index 75c3e2eb3..e4f1c8fa7 --- a/luci-app-adguardhome/root/usr/share/AdGuardHome/links.txt +++ b/luci-app-adguardhome/root/usr/share/AdGuardHome/links.txt @@ -1,3 +1,3 @@ +https://static.adguard.com/adguardhome/beta/AdGuardHome_linux_${Arch}.tar.gz https://github.com/AdguardTeam/AdGuardHome/releases/download/${latest_ver}/AdGuardHome_linux_${Arch}.tar.gz https://static.adguard.com/adguardhome/release/AdGuardHome_linux_${Arch}.tar.gz -https://static.adguard.com/adguardhome/beta/AdGuardHome_linux_${Arch}.tar.gz diff --git a/luci-app-adguardhome/root/usr/share/AdGuardHome/update_core.sh b/luci-app-adguardhome/root/usr/share/AdGuardHome/update_core.sh index d00bd5217..74ba7268d 100755 --- a/luci-app-adguardhome/root/usr/share/AdGuardHome/update_core.sh +++ b/luci-app-adguardhome/root/usr/share/AdGuardHome/update_core.sh @@ -1,218 +1,236 @@ -#!/bin/sh +#!/bin/bash PATH="/usr/sbin:/usr/bin:/sbin:/bin" -update_mode=$1 binpath=$(uci get AdGuardHome.AdGuardHome.binpath) -if [[ -z ${binpath} ]]; then - uci set AdGuardHome.AdGuardHome.binpath="/tmp/AdGuardHome/AdGuardHome" - binpath="/tmp/AdGuardHome/AdGuardHome" +if [ -z "$binpath" ]; then +uci set AdGuardHome.AdGuardHome.binpath="/tmp/AdGuardHome/AdGuardHome" +binpath="/tmp/AdGuardHome/AdGuardHome" fi -[[ ! -d ${binpath%/*} ]] && mkdir -p ${binpath%/*} +mkdir -p ${binpath%/*} upxflag=$(uci get AdGuardHome.AdGuardHome.upxflag 2>/dev/null) -[[ -z ${upxflag} ]] && upxflag=off -enabled=$(uci get AdGuardHome.AdGuardHome.enabled 2>/dev/null) -core_version=$(uci get AdGuardHome.AdGuardHome.core_version 2>/dev/null) -update_url=$(uci get AdGuardHome.AdGuardHome.update_url 2>/dev/null) - -case "${core_version}" in -beta) - core_api_url=https://api.github.com/repos/AdguardTeam/AdGuardHome/releases -;; -*) - core_api_url=https://api.github.com/repos/AdguardTeam/AdGuardHome/releases/latest -;; -esac - -Check_Task(){ - running_tasks="$(ps -efww | grep -v grep | grep "AdGuardHome" | grep "update_core" | awk '{print $1}' | wc -l)" - case $1 in - force) - echo -e "执行: 强制更新核心" - echo -e "清除 ${running_tasks} 个进程 ..." - ps -efww | grep -v grep | grep -v $$ | grep "AdGuardHome" | grep "update_core" | awk '{print $1}' | xargs kill -9 2> /dev/null - ;; - *) - [[ ${running_tasks} -gt 2 ]] && echo -e "已经有 ${running_tasks} 个任务正在运行, 请等待其执行结束或将其强行停止!" && EXIT 2 - ;; - esac +check_if_already_running(){ + running_tasks="$(ps |grep "AdGuardHome" |grep "update_core" |grep -v "grep" |awk '{print $1}' |wc -l)" + [ "${running_tasks}" -gt "2" ] && echo -e "\nA task is already running." && EXIT 2 } -Check_Downloader(){ - which curl > /dev/null 2>&1 && PKG="curl" && return - echo -e "\n未安装 curl" - which wget-ssl > /dev/null 2>&1 && PKG="wget-ssl" && return - echo "未安装 curl 和 wget, 无法检测更新!" && EXIT 1 +check_wgetcurl(){ + which curl && downloader="curl -L -k --retry 2 --connect-timeout 20 -o" && return + which wget-ssl && downloader="wget-ssl --no-check-certificate -t 2 -T 20 -O" && return + [ -z "$1" ] && opkg update || (echo error opkg && EXIT 1) + [ -z "$1" ] && (opkg remove wget wget-nossl --force-depends ; opkg install wget ; check_wgetcurl 1 ;return) + [ "$1" == "1" ] && (opkg install curl ; check_wgetcurl 2 ; return) + echo error curl and wget && EXIT 1 } -Check_Updates(){ - Check_Downloader - case "${PKG}" in - curl) - Downloader="curl -L -k -o" - _Downloader="curl -s" - ;; - wget-ssl) - Downloader="wget-ssl --no-check-certificate -T 5 -O" - _Downloader="wget-ssl -q -O -" - ;; - esac - echo "[${PKG}] 开始检查更新, 请耐心等待 ..." - Cloud_Version="$(${_Downloader} ${core_api_url} 2>/dev/null | grep 'tag_name' | egrep -o "v[0-9].+[0-9.]" | awk 'NR==1')" - [[ -z ${Cloud_Version} ]] && echo -e "\n检查更新失败, 请检查网络或稍后重试!" && EXIT 1 - if [[ -f ${binpath} ]]; then - Current_Version="$(${binpath} --version 2>/dev/null | egrep -o "v[0-9].+[0-9]" | sed -r 's/(.*), c(.*)/\1/')" - else - Current_Version="未知" +check_latest_version(){ + check_wgetcurl + latest_ver="$($downloader - https://api.github.com/repos/AdguardTeam/AdGuardHome/releases/latest 2>/dev/null|grep -E 'tag_name' |grep -E 'v[0-9.]+' -o 2>/dev/null)" + if [ -z "${latest_ver}" ]; then + echo -e "\nFailed to check latest version, please try again later." && EXIT 1 fi - [[ -z ${Current_Version} ]] && Current_Version="未知" - echo -e "\n执行文件路径: ${binpath%/*}\n\n正在检查更新, 请耐心等待 ..." - echo -e "\n当前 AdGuardHome 版本: ${Current_Version}\n云端 AdGuardHome 版本: ${Cloud_Version}" - if [[ ! "${Cloud_Version}" == "${Current_Version}" || "$1" == force ]]; then - Update_Core + now_ver="$($binpath -c /dev/null --check-config 2>&1| grep -m 1 -E 'v[0-9.]+' -o)" + if [ "${latest_ver}"x != "${now_ver}"x ] || [ "$1" == "force" ]; then + echo -e "Local version: ${now_ver}., cloud version: ${latest_ver}." + doupdate_core else - echo -e "\n已是最新版本, 无需更新!" + echo -e "\nLocal version: ${now_ver}, cloud version: ${latest_ver}." + echo -e "You're already using the latest version." + if [ ! -z "$upxflag" ]; then + filesize=$(ls -l $binpath | awk '{ print $5 }') + if [ $filesize -gt 8000000 ]; then + echo -e "start upx may take a long time" + doupx + mkdir -p "/tmp/AdGuardHomeupdate/AdGuardHome" >/dev/null 2>&1 + rm -fr /tmp/AdGuardHomeupdate/AdGuardHome/${binpath##*/} + /tmp/upx-${upx_latest_ver}-${Arch}_linux/upx $upxflag $binpath -o /tmp/AdGuardHomeupdate/AdGuardHome/${binpath##*/} + rm -rf /tmp/upx-${upx_latest_ver}-${Arch}_linux + /etc/init.d/AdGuardHome stop nobackup + rm $binpath + mv -f /tmp/AdGuardHomeupdate/AdGuardHome/${binpath##*/} $binpath + /etc/init.d/AdGuardHome start + echo -e "finished" + fi + fi EXIT 0 fi +} + +doupx(){ + Archt="$(opkg info kernel | grep Architecture | awk -F "[ _]" '{print($2)}')" + case $Archt in + "i386") + Arch="i386" + ;; + "i686") + Arch="i386" + echo -e "i686 use $Arch may have bug" + ;; + "x86") + Arch="amd64" + ;; + "mipsel") + Arch="mipsel" + ;; + "mips64el") + Arch="mips64el" + Arch="mipsel" + echo -e "mips64el use $Arch may have bug" + ;; + "mips") + Arch="mips" + ;; + "mips64") + Arch="mips64" + Arch="mips" + echo -e "mips64 use $Arch may have bug" + ;; + "arm") + Arch="arm" + ;; + "armeb") + Arch="armeb" + ;; + "aarch64") + Arch="arm64" + ;; + "powerpc") + Arch="powerpc" + ;; + "powerpc64") + Arch="powerpc64" + ;; + *) + echo -e "error not support $Archt if you can use offical release please issue a bug" + EXIT 1 + ;; + esac + upx_latest_ver="$($downloader - https://api.github.com/repos/upx/upx/releases/latest 2>/dev/null|grep -E 'tag_name' |grep -E '[0-9.]+' -o 2>/dev/null)" + $downloader /tmp/upx-${upx_latest_ver}-${Arch}_linux.tar.xz "https://github.com/upx/upx/releases/download/v${upx_latest_ver}/upx-${upx_latest_ver}-${Arch}_linux.tar.xz" 2>&1 + #tar xvJf + which xz || (opkg list | grep ^xz || opkg update && opkg install xz) || (echo "xz download fail" && EXIT 1) + mkdir -p /tmp/upx-${upx_latest_ver}-${Arch}_linux + xz -d -c /tmp/upx-${upx_latest_ver}-${Arch}_linux.tar.xz| tar -x -C "/tmp" >/dev/null 2>&1 + if [ ! -e "/tmp/upx-${upx_latest_ver}-${Arch}_linux/upx" ]; then + echo -e "Failed to download upx." + EXIT 1 + fi + rm /tmp/upx-${upx_latest_ver}-${Arch}_linux.tar.xz +} + +doupdate_core(){ + echo -e "Updating core..." + mkdir -p "/tmp/AdGuardHomeupdate" + rm -rf /tmp/AdGuardHomeupdate/* >/dev/null 2>&1 + Archt="$(opkg info kernel | grep Architecture | awk -F "[ _]" '{print($2)}')" + case $Archt in + "i386") + Arch="386" + ;; + "i686") + Arch="386" + ;; + "x86") + Arch="amd64" + ;; + "mipsel") + Arch="mipsle" + ;; + "mips64el") + Arch="mips64le" + Arch="mipsle" + echo -e "mips64el use $Arch may have bug" + ;; + "mips") + Arch="mips" + ;; + "mips64") + Arch="mips64" + Arch="mips" + echo -e "mips64 use $Arch may have bug" + ;; + "arm") + Arch="arm" + ;; + "aarch64") + Arch="arm64" + ;; + "powerpc") + Arch="ppc" + echo -e "error not support $Archt" + EXIT 1 + ;; + "powerpc64") + Arch="ppc64" + echo -e "error not support $Archt" + EXIT 1 + ;; + *) + echo -e "error not support $Archt if you can use offical release please issue a bug" + EXIT 1 + ;; + esac + echo -e "start download" + grep -v "^#" /usr/share/AdGuardHome/links.txt >/tmp/run/AdHlinks.txt + while read link + do + eval link="$link" + $downloader /tmp/AdGuardHomeupdate/${link##*/} "$link" 2>&1 + if [ "$?" != "0" ]; then + echo "download failed try another download" + rm -f /tmp/AdGuardHomeupdate/${link##*/} + else + local success="1" + break + fi + done < "/tmp/run/AdHlinks.txt" + rm /tmp/run/AdHlinks.txt + [ -z "$success" ] && echo "no download success" && EXIT 1 + if [ "${link##*.}" == "gz" ]; then + tar -zxf "/tmp/AdGuardHomeupdate/${link##*/}" -C "/tmp/AdGuardHomeupdate/" + if [ ! -e "/tmp/AdGuardHomeupdate/AdGuardHome" ]; then + echo -e "Failed to download core." + rm -rf "/tmp/AdGuardHomeupdate" >/dev/null 2>&1 + EXIT 1 + fi + downloadbin="/tmp/AdGuardHomeupdate/AdGuardHome/AdGuardHome" + else + downloadbin="/tmp/AdGuardHomeupdate/${link##*/}" + fi + chmod 755 $downloadbin + echo -e "download success start copy" + if [ -n "$upxflag" ]; then + echo -e "start upx may take a long time" + doupx + /tmp/upx-${upx_latest_ver}-${Arch}_linux/upx $upxflag $downloadbin + rm -rf /tmp/upx-${upx_latest_ver}-${Arch}_linux + fi + echo -e "start copy" + /etc/init.d/AdGuardHome stop nobackup + rm "$binpath" + mv -f "$downloadbin" "$binpath" + if [ "$?" == "1" ]; then + echo "mv failed maybe not enough space please use upx or change bin to /tmp/AdGuardHome" + EXIT 1 + fi + /etc/init.d/AdGuardHome start + rm -rf "/tmp/AdGuardHomeupdate" >/dev/null 2>&1 + echo -e "Succeeded in updating core." + echo -e "Local version: ${latest_ver}, cloud version: ${latest_ver}.\n" EXIT 0 } -UPX_Compress(){ - GET_Arch - upx_name="upx-${upx_latest_ver}-${Arch_upx}_linux.tar.xz" - echo -e "开始下载 ${upx_name} ...\n" - $Downloader /tmp/upx-${upx_latest_ver}-${Arch_upx}_linux.tar.xz "https://github.com/upx/upx/releases/download/v${upx_latest_ver}/${upx_name}" - if [[ ! -e /tmp/upx-${upx_latest_ver}-${Arch_upx}_linux.tar.xz ]]; then - echo -e "\n${upx_name} 下载失败!\n" - EXIT 1 - else - echo -e "\n${upx_name} 下载成功!\n" - fi - which xz > /dev/null 2>&1 || (opkg list | grep ^xz || opkg update > /dev/null 2>&1 && opkg install xz --force-depends) || (echo "软件包 xz 安装失败!" && EXIT 1) - mkdir -p /tmp/upx-${upx_latest_ver}-${Arch_upx}_linux - echo -e "正在解压 ${upx_name} ...\n" - xz -d -c /tmp/upx-${upx_latest_ver}-${Arch_upx}_linux.tar.xz | tar -x -C "/tmp" - [[ ! -f /tmp/upx-${upx_latest_ver}-${Arch_upx}_linux/upx ]] && echo -e "\n${upx_name} 解压失败!" && EXIT 1 -} - -Update_Core(){ - rm -r /tmp/AdGuardHome_Update > /dev/null 2>&1 - mkdir -p "/tmp/AdGuardHome_Update" - GET_Arch - eval link="${update_url}" - echo -e "下载链接:${link}" - echo -e "文件名称:${link##*/}" - echo -e "\n开始下载 AdGuardHome 核心文件 ...\n" - $Downloader /tmp/AdGuardHome_Update/${link##*/} ${link} - if [[ $? != 0 ]];then - echo -e "\nAdGuardHome 核心下载失败 ..." - rm -r /tmp/AdGuardHome_Update - EXIT 1 - fi - if [[ ${link##*.} == gz ]]; then - echo -e "\n正在解压 AdGuardHome ..." - tar -zxf "/tmp/AdGuardHome_Update/${link##*/}" -C "/tmp/AdGuardHome_Update/" - if [[ ! -e /tmp/AdGuardHome_Update/AdGuardHome ]] - then - echo "AdGuardHome 核心解压失败!" - rm -rf "/tmp/AdGuardHome_Update" > /dev/null 2>&1 - EXIT 1 - fi - downloadbin="/tmp/AdGuardHome_Update/AdGuardHome/AdGuardHome" - else - downloadbin="/tmp/AdGuardHome_Update/${link##*/}" - fi - chmod +x ${downloadbin} - echo -e "\nAdGuardHome 核心体积: $(awk 'BEGIN{printf "%.2fMB\n",'$((`ls -l $downloadbin | awk '{print $5}'`))'/1000000}')" - if [[ ${upxflag} != off ]]; then - UPX_Compress - echo -e "使用 UPX 压缩可能会花很长时间, 期间请耐心等待!\n正在压缩 $downloadbin ..." - /tmp/upx-${upx_latest_ver}-${Arch_upx}_linux/upx $upxflag $downloadbin > /dev/null 2>&1 - echo -e "\n压缩后的核心体积: $(awk 'BEGIN{printf "%.2fMB\n",'$((`ls -l $downloadbin | awk '{print $5}'`))'/1000000}')" - else - echo "未启用 UPX 压缩, 跳过操作..." - fi - /etc/init.d/AdGuardHome stop > /dev/null 2>&1 - echo -e "\n移动 AdGuardHome 核心文件到 ${binpath%/*} ..." - mv -f ${downloadbin} ${binpath} > /dev/null 2>&1 - if [[ ! -s ${binpath} && $? != 0 ]]; then - echo -e "AdGuardHome 核心移动失败!\n可能是设备空间不足导致, 请尝试开启 UPX 压缩, 或更改 [执行文件路径] 为 /tmp/AdGuardHome" - EXIT 1 - fi - rm -f /tmp/upx*.tar.xz - rm -rf /tmp/upx* - rm -rf /tmp/AdGuardHome_Update - chmod +x ${binpath} - if [[ ${enabled} == 1 ]]; then - echo -e "\n正在重启 AdGuardHome 服务..." - /etc/init.d/AdGuardHome restart - fi - echo -e "\nAdGuardHome 核心更新成功!" -} - -GET_Arch() { - Archt="$(opkg info kernel | grep Architecture | awk -F "[ _]" '{print($2)}')" - case "${Archt}" in - i386) - Arch=i386 - ;; - i686) - Arch=i386 - ;; - x86) - Arch=amd64 - ;; - mipsel) - Arch=mipsle_softfloat - ;; - mips) - Arch=mips_softfloat - ;; - mips64el) - Arch=mips64le_softfloat - ;; - mips64) - Arch=mips64_softfloat - ;; - arm) - Arch=arm - ;; - armeb) - Arch=armeb - ;; - aarch64) - Arch=arm64 - ;; - *) - echo -e "\nAdGuardHome 暂不支持当前的设备架构: [${Archt}]!" - EXIT 1 - esac - case "${Archt}" in - mipsel) - Arch_upx="mipsel" - upx_latest_ver="3.95" - ;; - *) - Arch_upx="${Arch}" - upx_latest_ver="$(${_Downloader} https://api.github.com/repos/upx/upx/releases/latest 2>/dev/null | egrep 'tag_name' | egrep '[0-9.]+' -o 2>/dev/null)" - - esac - echo -e "\n当前设备架构: ${Arch}\n" -} - EXIT(){ - rm -rf /var/run/update_core $LOCKU 2>/dev/null - [[ $1 != 0 ]] && touch /var/run/update_core_error + rm /var/run/update_core 2>/dev/null + [ "$1" != "0" ] && touch /var/run/update_core_error exit $1 } main(){ - Check_Task ${update_mode} - Check_Updates ${update_mode} + check_if_already_running + check_latest_version $1 } - -trap "EXIT 1" SIGTERM SIGINT -touch /var/run/update_core -rm - rf /var/run/update_core_error 2>/dev/null - -main + trap "EXIT 1" SIGTERM SIGINT + touch /var/run/update_core + rm /var/run/update_core_error 2>/dev/null + main $1 diff --git a/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json b/luci-app-adguardhome/root/usr/share/rpcd/acl.d/luci-app-adguardhome.json old mode 100755 new mode 100644 diff --git a/luci-app-quickstart/Makefile b/luci-app-quickstart/Makefile index 54826c0e1..ec7d9fa19 100644 --- a/luci-app-quickstart/Makefile +++ b/luci-app-quickstart/Makefile @@ -9,7 +9,7 @@ LUCI_TITLE:=LuCI support for quickstart LUCI_DEPENDS:=+quickstart +luci-app-store LUCI_PKGARCH:=all -PKG_VERSION:=0.7.15 +PKG_VERSION:=0.7.20 # PKG_RELEASE MUST be empty for luci.mk PKG_RELEASE:= diff --git a/luci-app-quickstart/htdocs/luci-static/quickstart/index.js b/luci-app-quickstart/htdocs/luci-static/quickstart/index.js index d6eb4f8f7..5fd2fe971 100644 --- a/luci-app-quickstart/htdocs/luci-static/quickstart/index.js +++ b/luci-app-quickstart/htdocs/luci-static/quickstart/index.js @@ -1,3 +1,3 @@ -var xa=Object.defineProperty,ka=Object.defineProperties;var wa=Object.getOwnPropertyDescriptors;var Ge=Object.getOwnPropertySymbols;var ya=Object.prototype.hasOwnProperty,Fa=Object.prototype.propertyIsEnumerable;var ke=(e,a,o)=>a in e?xa(e,a,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[a]=o,J=(e,a)=>{for(var o in a||(a={}))ya.call(a,o)&&ke(e,o,a[o]);if(Ge)for(var o of Ge(a))Fa.call(a,o)&&ke(e,o,a[o]);return e},at=(e,a)=>ka(e,wa(a));var Ea=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports);var Zt=(e,a,o)=>(ke(e,typeof a!="symbol"?a+"":a,o),o);var T=(e,a,o)=>new Promise((n,s)=>{var c=d=>{try{p(o.next(d))}catch(l){s(l)}},f=d=>{try{p(o.throw(d))}catch(l){s(l)}},p=d=>d.done?n(d.value):Promise.resolve(d.value).then(c,f);p((o=o.apply(e,a)).next())});import{d as Qt,a as P,c as R,u as k,o as i,b as r,e as t,t as h,n as Tt,f as E,r as X,g as D,h as ot,i as Dt,w as z,v as It,j as Ca,k as M,l as V,m as y,p as $a,q as Ft,s as Q,F as L,x as j,y as W,z as O,A as N,B as Lt,C as Da,D as Gt,E as Ba,G as Ya,H as Aa,I as Sa,J as za,K as Pa,L as Ta,M as nt,T as kt,N as tt,O as Ia,P as it,Q as wt,R as U,S as ft,U as te,V as Fe,W as La,X as Ma,Y as ue,Z as Oa,_ as Na,$ as qa,a0 as Va}from"./vendor.js?v=c0f4c287";var tF=Ea(Kt=>{const Ga=function(){const a=document.createElement("link").relList;if(a&&a.supports&&a.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))n(s);new MutationObserver(s=>{for(const c of s)if(c.type==="childList")for(const f of c.addedNodes)f.tagName==="LINK"&&f.rel==="modulepreload"&&n(f)}).observe(document,{childList:!0,subtree:!0});function o(s){const c={};return s.integrity&&(c.integrity=s.integrity),s.referrerpolicy&&(c.referrerPolicy=s.referrerpolicy),s.crossorigin==="use-credentials"?c.credentials="include":s.crossorigin==="anonymous"?c.credentials="omit":c.credentials="same-origin",c}function n(s){if(s.ep)return;s.ep=!0;const c=o(s);fetch(s.href,c)}};Ga();const ja=(e,a)=>T(Kt,null,function*(){return new Promise((o,n)=>T(Kt,null,function*(){try{const s=yield fetch(e,a);if(Math.floor(s.status/100)!=2)throw s.status+" "+s.statusText;const c=J({},s);c.data=yield s.json(),o(c)}catch(s){const c=s;n("\u7F51\u7EDC\u5F02\u5E38\uFF1A"+((c==null?void 0:c.message)||s))}}))});class Ee{constructor(a){Zt(this,"config",{baseURL:"",headers:{}});Zt(this,"useRequest",a=>a);Zt(this,"useResponse",a=>a);Zt(this,"useError",a=>a);a.baseURL&&(this.config.baseURL=a.baseURL),a.headers&&(this.config.headers=a.headers)}static create(a){return new Ee(a)}Do(a,o){return T(this,null,function*(){return new Promise((n,s)=>T(this,null,function*(){try{const c=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${c.baseURL||""}${a}`,o.headers==null&&(o.headers={}),c.headers&&(o.headers=J({},c.headers));const p=yield fetch(a,o),d=J({},p);d.data=yield p.json(),n(this.useResponse(d))}catch(c){this.useError(c),s(c)}}))})}TEXT(a,o){return T(this,null,function*(){return new Promise((n,s)=>T(this,null,function*(){try{const c=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${c.baseURL||""}${a}`,o.headers==null&&(o.headers={}),c.headers&&(o.headers=J({},c.headers));const p=yield fetch(a,o),d=J({},p);d.data=yield p.text(),n(d)}catch(c){this.useError(c),s(c)}}))})}interceptors(){const a=this;return{requset:{use(o){a.useRequest=o}},response:{use(o,n){a.useResponse=o,n&&(a.useError=n)}}}}}const Xe=Ee.create({});Xe.interceptors().requset.use(e=>e);Xe.interceptors().response.use(e=>(e.data&&e.data.success==null&&e.data.success==0,e));const Ra="/cgi-bin/luci/istore";let je=!1;const I=(e,a)=>(e.indexOf("//")==-1&&(e=`${Ra}${e}`),ja(e,a).then(o=>(o!=null&&o.data&&o.data.success==-1001&&o.data.error=="Forbidden"&&(je||(je=!0,alert("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55"),location.reload())),o))),Ua={Statistics:{GET(){return I("/u/network/statistics/",{method:"GET"})}},Status:{GET(){return I("/u/network/status/",{method:"GET"})}},Device:{List:{GET(){return I("/network/device/list/",{method:"GET"})}}},Homebox:{Enable:{POST(){return I("/network/homebox/enable/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},CheckPublickNet:{POST(e){return I("/network/checkPublicNet/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetInterfaceConfig:{GET(){return I("/network/interface/config/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}},POSTInterfaceConfig:{POST(e){return I("/network/interface/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},PortList:{GET(){return I("/network/port/list/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Wa={Version:{GET(){return I("/u/system/version/",{method:"GET"})}},CheckUpdate:{GET(){return I("/system/check-update/",{method:"GET"})}},Reboot:{POST(e){return I("/system/reboot/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Status:{GET(){return I("/system/status/",{method:"GET"})}}},Ha={Disk:{Status:{GET(){return I("/nas/disk/status/",{method:"GET"})}},Erase:{POST(e){return I("/nas/disk/erase",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Init:{POST:e=>I("/nas/disk/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},InitRest:{POST:e=>I("/nas/disk/initrest/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},Partition:{Format:{POST:e=>I("/nas/disk/partition/format",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},Mount:{POST:e=>I("/nas/disk/partition/mount",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Service:{Status:{GET(){return I("/u/nas/service/status/",{method:"GET"})}}},Samba:{Create:{POST(e){return I("/nas/samba/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Webdav:{Create:{POST(e){return I("/nas/webdav/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Status:{GET(){return I("/nas/webdav/status/",{method:"GET"})}}},Linkease:{Enable:{POST(){return I("/u/nas/linkease/enable",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Sandbox:{POST(e){return I("/nas/sandbox/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetSandbox:{GET(){return I("/nas/sandbox/",{method:"GET"})}},SandboxDisks:{GET(){return I("/nas/sandbox/disks/",{method:"GET"})}},SandboxCommit:{POST(){return I("/u/nas/sandbox/commit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify({})})}},SandboxReset:{POST(){return I("/nas/sandbox/reset/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}},SandboxExit:{POST(){return I("/nas/sandbox/exit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Za={Check:{POST(e){return I("/app/check/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Install:{POST(e){return I("/app/install/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Ja={Pppoe:{GET(){return I("/guide/pppoe/",{method:"GET"})},POST(e){return I("/guide/pppoe/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DnsConfig:{GET(){return I("/guide/dns-config/",{method:"GET"})},POST(e){return I("/guide/dns-config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DhcpClient:{POST(e){return I("/guide/dhcp-client/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},ClientModel:{GET(){return I("/guide/client-mode/",{method:"GET"})},POST(e){return I("/guide/client-mode/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GatewayRouter:{POST(e){return I("/guide/gateway-router/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DockerStatus:{GET(){return I("/guide/docker/status/",{method:"GET"})}},DockerPartitionList:{GET(){return I("/guide/docker/partition/list/",{method:"GET"})}},DockerTransfer:{POST(e){return I("/guide/docker/transfer/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DockerSwitch:{POST(e){return I("/guide/docker/switch/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DownloadService:{Status:{GET(){return I("/guide/download-service/status/",{method:"GET"})}}},DownloadPartition:{List:{GET(){return I("/guide/download/partition/list/",{method:"GET"})}}},Aria2Init:{POST(e){return I("/guide/aria2/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},qbitorrentInit:{POST(e){return I("/guide/qbittorrent/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},transmissionInit:{POST(e){return I("/guide/transmission/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetLan:{GET(){return I("/guide/lan/",{method:"GET"})}},LanIp:{POST(e){return I("/guide/lan/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},SoftSource:{POST(e){return I("/guide/soft-source/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetSoftSource:{GET(){return I("/guide/soft-source/",{method:"GET"})}},SoftSourceList:{GET(){return I("/guide/soft-source/list/",{method:"GET"})}},PostDdns:{POST(e){return I("/u/guide/ddns/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetDdns:{GET(){return I("/u/guide/ddns/",{method:"GET"})}},Ddnsto:{POST(e){return I("/guide/ddnsto/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DdntoConfig:{GET(){return I("/guide/ddnsto/config/",{method:"GET"})}},DdnstoAddress:{POST(e){return I("/guide/ddnsto/address/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Xa={Create:{POST(e){return I("/raid/create/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Delete:{POST(e){return I("/raid/delete/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Add:{POST(e){return I("/raid/add/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Remove:{POST(e){return I("/raid/remove/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Recover:{POST(e){return I("/raid/recover/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Detail:{POST(e){return I("/raid/detail/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},List:{GET(){return I("/raid/list/",{method:"GET"})}},CreateList:{GET(){return I("/raid/create/list/",{method:"GET"})}},Autofix:{GET(){return I("/raid/autofix/",{method:"GET"})}}},Ka={Log:{GET(){return I("/smart/log/",{method:"GET"})}},List:{GET(){return I("/u/smart/list/",{method:"GET"})}},Config:{GET(){return I("/smart/config/",{method:"GET"})},POST(e){return I("/smart/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Test:{POST(e){return I("/u/smart/test/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},Result:{POST(e){return I("/smart/test/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Attribute:{Result:{POST(e){return I("/smart/attribute/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Extend:{Result:{POST(e){return I("/smart/extend/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}}};var Qa=Object.freeze(Object.defineProperty({__proto__:null,Network:Ua,System:Wa,Nas:Ha,App:Za,Guide:Ja,Raid:Xa,Smart:Ka},Symbol.toStringTag,{value:"Module"})),S=J({},Qa);const Ke=Qt("app",{state:()=>({portitemStyle:{show:!1,left:0,top:0,portitem:{name:"",macAddress:"",linkSpeed:"",linkState:"",rx_packets:"",tx_packets:"",interfaceNames:[],master:"",duplex:""}}})});Qt("guide",{});const Qe=Qt("nas",{state:()=>({webdav:{}})}),le=Qt("network",{state:()=>({status:{},statistics:{},deviceList:{}}),getters:{},actions:{updateNetworkStatus(e){this.status=e},requestNetworkStatistics(){return T(this,null,function*(){try{const e=yield S.Network.Statistics.GET();e!=null&&e.data&&e.data.result&&(this.statistics=e.data.result)}catch(e){console.log(e)}})},requestDeviceList(){S.Network.Device.List.GET().then(e=>{if(e!=null&&e.data){const{result:a}=e==null?void 0:e.data;a&&(this.deviceList=a)}})},incrTime(){this.status.uptimeStamp&&this.status.uptimeStamp++}}}),Ce=Qt("system",{state:()=>({version:{},checkUpdate:null,systemStatus:{}}),getters:{},actions:{incrTime(){var e;(e=this.systemStatus)!=null&&e.uptime&&this.systemStatus.uptime++},requestVersion(){S.System.Version.GET().then(e=>{var a;(a=e==null?void 0:e.data)!=null&&a.result&&(this.version=e.data.result)})},requestCheckUpdate(){S.System.CheckUpdate.GET().then(e=>{var a;(a=e==null?void 0:e.data)!=null&&a.result&&(this.checkUpdate=e.data.result)})},updateSystemStatus(e){this.systemStatus=e}}});let Re=!1;const to=()=>{if(Re)return;Re=!0;let e=!0,a=!0;const o=le(),n=Ce(),s=function(){return S.System.Status.GET().then(f=>{f!=null&&f.data.result&&n.updateSystemStatus(f.data.result)}).finally(()=>{setTimeout(s,5e3),e&&(setInterval(()=>{n.incrTime()},1e3),e=!1)})},c=function(){return S.Network.Status.GET().then(f=>{if(f!=null&&f.data){const{result:p}=f==null?void 0:f.data;p&&o.updateNetworkStatus(p)}}).finally(()=>{setTimeout(c,5e3),a&&(setInterval(()=>{o.incrTime()},1e3),a=!1)})};c(),o.requestDeviceList(),setTimeout(()=>{n.requestCheckUpdate(),n.requestVersion(),s()},1100)};var Y=(e,a)=>{const o=e.__vccOpts||e;for(const[n,s]of a)o[n]=s;return o};const eo=P({setup(e){const a=Ke(),o=R(()=>a.portitemStyle.portitem),n=R(()=>a.portitemStyle.show),s=R(()=>({bottom:`calc(100% - ${a.portitemStyle.top}px)`,left:`${a.portitemStyle.left}px`})),c=d=>{switch(d){case"full":return"\u5168\u53CC\u5DE5";case"half":return"\u534A\u53CC\u5DE5"}},f=d=>{a.portitemStyle.show=!0},p=d=>{a.portitemStyle.show=!1};return(d,l)=>k(n)?(i(),r("div",{key:0,class:"disk-item-tooltip",style:Tt(k(s)),onMouseenter:f,onMouseleave:p},[t("div",null,h(c(k(o).duplex)),1),t("div",null,"\u540D\u79F0\uFF1A"+h(k(o).name||"--"),1),t("div",null,"MAC\uFF1A"+h(k(o).macAddress||"--"),1),t("div",null,"\u63A5\u6536\uFF1A"+h(k(o).rx_packets||"--"),1),t("div",null,"\u53D1\u9001\uFF1A"+h(k(o).tx_packets||"--"),1)],36)):E("",!0)}});var ao=Y(eo,[["__scopeId","data-v-57f1326f"]]);const oo={id:"main"},no=P({setup(e){return(a,o)=>{const n=X("router-view");return i(),r("div",oo,[D(n),D(ao)])}}});var io=Y(no,[["__scopeId","data-v-9bc295c2"]]);const ro={},so={t:"1640593669834",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"54870",width:"128",height:"128"},uo=t("path",{d:"M148.7872 57.4464h177.152c64.9216 0 118.0672 53.1456 118.0672 118.0672v295.2192H148.7872C83.8656 470.7328 30.72 417.5872 30.72 352.5632v-177.152C30.72 110.592 83.8656 57.4464 148.7872 57.4464z m0 531.3536h295.2192v295.2192c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152C83.8656 1001.984 30.72 948.9408 30.72 883.9168v-177.152C30.72 641.9456 83.8656 588.8 148.7872 588.8z m0 0M768.7168 559.2064L562.0736 346.7264c-23.6544-17.7152-35.4304-53.1456-35.4304-82.6368s11.776-59.0848 35.4304-82.6368L686.08 57.4464C733.2864 10.24 810.0864 10.24 851.3536 57.4464l124.0064 124.0064c23.6544 23.6544 35.4304 53.1456 35.4304 82.6368s-11.776 59.0848-35.4304 82.6368L768.7168 559.2064z m0-478.208c-17.7152 0-29.4912 5.9392-41.3696 17.7152l-123.904 124.0064c-11.776 11.776-17.7152 23.6544-17.7152 41.3696s5.9392 29.4912 17.7152 41.3696l165.2736 165.2736 165.2736-165.2736c11.776-11.776 17.7152-23.6544 17.7152-41.3696s-5.9392-29.4912-17.7152-41.3696L809.984 98.7136c-11.776-11.776-23.552-17.7152-41.2672-17.7152z m0 0","p-id":"54871"},null,-1),lo=t("path",{d:"M562.0736 588.8h295.2192c64.9216 0 118.0672 53.1456 118.0672 118.0672v177.152c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152c-64.9216 0-118.0672-53.1456-118.0672-118.0672V588.8z m0 0","p-id":"54872"},null,-1),co=[uo,lo];function po(e,a){return i(),r("svg",so,co)}var fo=Y(ro,[["render",po]]);const mo={},bo={t:"1640598743438",class:"icon",viewBox:"0 0 1036 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"65341",width:"128",height:"128"},vo=t("path",{d:"M984.177778 432.355556l-45.511111 0c-22.755556 0-45.511111-17.066667-51.2-39.822222l-28.444444-68.266667C847.644444 312.888889 853.333333 284.444444 870.4 267.377778l34.133333-34.133333c17.066667-17.066667 17.066667-39.822222 0-56.888889l-56.888889-56.888889c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-34.133333 34.133333C739.555556 170.666667 711.111111 176.355556 694.044444 164.977778L625.777778 136.533333c-22.755556-5.688889-39.822222-28.444444-39.822222-51.2L585.955556 39.822222c0-22.755556-17.066667-39.822222-39.822222-39.822222L472.177778 0C449.422222 0 432.355556 17.066667 432.355556 39.822222l0 45.511111c0 22.755556-17.066667 45.511111-39.822222 51.2L329.955556 164.977778C312.888889 176.355556 284.444444 170.666667 267.377778 153.6L233.244444 119.466667c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-56.888889 56.888889c-17.066667 17.066667-17.066667 39.822222 0 56.888889l34.133333 34.133333C170.666667 284.444444 176.355556 312.888889 164.977778 329.955556L136.533333 398.222222C130.844444 415.288889 108.088889 432.355556 85.333333 432.355556l-45.511111 0C17.066667 432.355556 0 449.422222 0 472.177778l0 79.644444c0 22.755556 17.066667 39.822222 39.822222 39.822222l45.511111 0c22.755556 0 45.511111 17.066667 51.2 39.822222l28.444444 68.266667C176.355556 711.111111 170.666667 739.555556 153.6 756.622222l-34.133333 34.133333c-17.066667 17.066667-17.066667 39.822222 0 56.888889l56.888889 56.888889c17.066667 17.066667 39.822222 17.066667 56.888889 0l34.133333-34.133333C284.444444 853.333333 312.888889 847.644444 329.955556 859.022222L398.222222 887.466667c22.755556 5.688889 39.822222 28.444444 39.822222 51.2l0 45.511111c0 22.755556 17.066667 39.822222 39.822222 39.822222l79.644444 0c22.755556 0 39.822222-17.066667 39.822222-39.822222l0-45.511111c0-22.755556 17.066667-45.511111 39.822222-51.2l68.266667-28.444444c17.066667-11.377778 45.511111-5.688889 62.577778 11.377778l34.133333 34.133333c17.066667 17.066667 39.822222 17.066667 56.888889 0l56.888889-56.888889c17.066667-17.066667 17.066667-39.822222 0-56.888889l-34.133333-34.133333c-17.066667-17.066667-17.066667-45.511111-11.377778-62.577778l28.444444-68.266667c5.688889-22.755556 28.444444-39.822222 51.2-39.822222l45.511111 0c22.755556 0 39.822222-17.066667 39.822222-39.822222L1035.377778 472.177778C1024 449.422222 1006.933333 432.355556 984.177778 432.355556L984.177778 432.355556zM711.111111 512c0 108.088889-91.022222 199.111111-199.111111 199.111111-108.088889 0-199.111111-85.333333-199.111111-199.111111 0-108.088889 85.333333-199.111111 199.111111-199.111111C620.088889 312.888889 711.111111 403.911111 711.111111 512L711.111111 512zM711.111111 512","p-id":"65342"},null,-1),go=[vo];function _o(e,a){return i(),r("svg",bo,go)}var ho=Y(mo,[["render",_o]]);const xo={},ko={t:"1640599890701",class:"icon",viewBox:"0 0 1565 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"76947",width:"128",height:"128"},wo=t("path",{d:"M1206.477959 299.331595c-27.357038 0-53.867311 3.354494-79.465683 9.151581C1078.518669 130.792698 916.428217 0 723.365689 0 492.068443 0 304.575027 187.493416 304.575027 418.790662c0 16.055976 1.074741 31.786273 2.865975 47.386299-9.184149-0.911901-18.400865-1.40042-27.812989-1.40042C125.191018 464.743973 0 589.934991 0 744.371987c0 154.469563 125.191018 279.628013 279.595446 279.628013 59.990077 0 221.233764 0 394.527575 0l0-302.295274L496.986197 721.704726l285.457668-339.031868 285.457668 339.031868-177.136823 0 0 302.295274c139.748871 0 262.204185 0 315.71325 0 197.947713 0 358.40977-168.34349 358.40977-366.291203S1404.425673 299.331595 1206.477959 299.331595z","p-id":"76948"},null,-1),yo=[wo];function Fo(e,a){return i(),r("svg",ko,yo)}var Eo=Y(xo,[["render",Fo]]);const Co={},$o={t:"1640599792937",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"68605",width:"128",height:"128"},Do=t("path",{d:"M512 825.6c-211.2 0-377.6-57.6-377.6-128l0 0L134.4 896l0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0 0-204.8 0 0C889.6 768 723.2 825.6 512 825.6L512 825.6z","p-id":"68606"},null,-1),Bo=t("path",{d:"M512 544c-211.2 0-377.6-57.6-377.6-128l0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 416l0 0C889.6 486.4 723.2 544 512 544L512 544z","p-id":"68607"},null,-1),Yo=t("path",{d:"M889.6 128 889.6 128c0-70.4-166.4-128-377.6-128C300.8 0 134.4 57.6 134.4 128l0 0 0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 128 889.6 128 889.6 128zM512 217.6c-153.6 0-281.6-44.8-281.6-96 0-51.2 128-96 281.6-96 153.6 0 281.6 44.8 281.6 96C793.6 179.2 665.6 217.6 512 217.6L512 217.6z","p-id":"68608"},null,-1),Ao=[Do,Bo,Yo];function So(e,a){return i(),r("svg",$o,Ao)}var zo=Y(Co,[["render",So]]);const Po={},To={t:"1640575557247",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4211",width:"128",height:"128"},Io=t("path",{d:"M560 800l-10.464-416h-75.072L464 800h96z m-14.144-493.984c9.44-9.312 14.144-20.672 14.144-34.016 0-13.6-4.704-24.992-14.144-34.208A46.784 46.784 0 0 0 512 224c-13.12 0-24.448 4.608-33.856 13.792A45.856 45.856 0 0 0 464 272c0 13.344 4.704 24.704 14.144 34.016 9.408 9.312 20.704 13.984 33.856 13.984 13.12 0 24.448-4.672 33.856-13.984zM512 32C246.912 32 32 246.912 32 512c0 265.088 214.912 480 480 480 265.088 0 480-214.912 480-480 0-265.088-214.912-480-480-480z m0 64c229.76 0 416 186.24 416 416s-186.24 416-416 416S96 741.76 96 512 282.24 96 512 96z","p-id":"4212"},null,-1),Lo=[Io];function Mo(e,a){return i(),r("svg",To,Lo)}var Oo=Y(Po,[["render",Mo]]);const No={},qo={t:"1640681742480",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"80687",width:"128",height:"128"},Vo=t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"80688"},null,-1),Go=t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"80689"},null,-1),jo=t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"80690"},null,-1),Ro=t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"80691"},null,-1),Uo=t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"80692"},null,-1),Wo=t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"80693"},null,-1),Ho=t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"80694"},null,-1),Zo=t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"80695"},null,-1),Jo=t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"80696"},null,-1),Xo=t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"80697"},null,-1),Ko=t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80698"},null,-1),Qo=t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80699"},null,-1),tn=t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80700"},null,-1),en=t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80701"},null,-1),an=t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80702"},null,-1),on=t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"80703"},null,-1),nn=t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"80704"},null,-1),rn=t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"80705"},null,-1),sn=t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"80706"},null,-1),dn=[Vo,Go,jo,Ro,Uo,Wo,Ho,Zo,Jo,Xo,Ko,Qo,tn,en,an,on,nn,rn,sn];function un(e,a){return i(),r("svg",qo,dn)}var ln=Y(No,[["render",un]]);const cn={},pn={t:"1640775712185",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2996",width:"128",height:"128"},fn=t("path",{d:"M894.185422 128.023792 129.814578 445.743994 445.99982 577.744353 571.860343 893.929596Z","p-id":"2997"},null,-1),mn=[fn];function bn(e,a){return i(),r("svg",pn,mn)}var vn=Y(cn,[["render",bn]]);const gn={class:"progress"},_n=P({props:{value:{type:Number,required:!0},text:{type:String}},setup(e){const a=e,o=R(()=>a.value>=80?"#e45e5e":a.value>=70?"#ff9800":a.value>=60?"#297ff3":a.value>0?"#53c31b":"");return(n,s)=>(i(),r("div",gn,[t("div",{class:ot(["progress-value",`${e.value>50}`]),style:Tt({width:`${e.value}%`,backgroundColor:k(o)})},[t("span",null,h(e.text),1)],6),Dt(n.$slots,"default",{},void 0,!0)]))}});var ta=Y(_n,[["__scopeId","data-v-733828e1"]]);const hn={},xn={t:"1649907260906",viewBox:"-8 248 1042 530",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink"},kn=t("path",{d:"M764.904497 251.418146 259.086289 251.418146c-143.076626 0-259.065314 115.989711-259.065314 259.065314 0 143.077649 115.988688 259.063267 259.065314 259.063267l505.818207 0c143.074579 0 259.063267-115.985618 259.063267-259.063267C1023.967764 367.407857 907.980099 251.418146 764.904497 251.418146zM764.904497 747.164974c-130.507356 0-236.682537-106.175181-236.682537-236.682537S634.397141 273.798876 764.904497 273.798876s236.683561 106.176205 236.683561 236.683561S895.411853 747.164974 764.904497 747.164974z","p-id":"2794",fill:"#52C41A"},null,-1),wn=[kn];function yn(e,a){return i(),r("svg",xn,wn)}var Fn=Y(hn,[["render",yn]]);const En={},Cn={t:"1649907515643",viewBox:"-8 248 1042 530",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2971","xmlns:xlink":"http://www.w3.org/1999/xlink"},$n=t("path",{d:"M764.867148 249.793136 259.0735 249.793136c-143.070486 0-259.052011 115.984594-259.052011 259.052011 0 143.07151 115.982548 259.050987 259.052011 259.050987l505.793648 0c143.067416 0 259.050987-115.979478 259.050987-259.050987C1023.917112 365.778754 907.933541 249.793136 764.867148 249.793136zM259.0735 745.516428c-130.501216 0-236.671281-106.172111-236.671281-236.671281 0-130.501216 106.170065-236.671281 236.671281-236.671281S495.744781 378.344954 495.744781 508.84617C495.744781 639.34534 389.574716 745.516428 259.0735 745.516428z","p-id":"2972",fill:"#999"},null,-1),Dn=[$n];function Bn(e,a){return i(),r("svg",Cn,Dn)}var Yn=Y(En,[["render",Bn]]);const An={class:"checkbox_switch_on"},Sn={class:"checkbox_switch_off"},zn=P({props:{modelValue:{type:Boolean,required:!0},height:{type:String,default:"100%"}},emits:["update:modelValue"],setup(e,{emit:a}){const o=e,n=R({get:()=>o.modelValue.valueOf(),set:s=>a("update:modelValue",s)});return(s,c)=>(i(),r("label",{class:"checkbox_switch",style:Tt({height:e.height})},[z(t("input",{type:"checkbox","onUpdate:modelValue":c[0]||(c[0]=f=>Ca(n)?n.value=f:null)},null,512),[[It,k(n)]]),t("span",An,[D(Fn)]),t("span",Sn,[D(Yn)]),Dt(s.$slots,"default",{},void 0,!0)],4))}});var ea=Y(zn,[["__scopeId","data-v-20f08566"]]);const Pn={},Tn={t:"1641369474206",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7685",width:"128",height:"128"},In=t("path",{d:"M757.76 637.44l-218.88 245.76c-14.72 16.64-40.32 16.64-54.4 0L265.6 637.44C244.48 613.76 261.12 576 293.12 576l437.76 0C762.24 576 779.52 613.76 757.76 637.44z","p-id":"7686"},null,-1),Ln=[In];function Mn(e,a){return i(),r("svg",Tn,Ln)}var On=Y(Pn,[["render",Mn]]);const Nn={},qn={t:"1641369492518",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7831",width:"128",height:"128"},Vn=t("path",{d:"M758.4 385.92 539.52 140.16c-14.72-16.64-40.32-16.64-54.4 0L266.24 385.92C244.48 409.6 261.76 448 293.12 448l437.76 0C762.88 448 779.52 409.6 758.4 385.92z","p-id":"7832"},null,-1),Gn=[Vn];function jn(e,a){return i(),r("svg",qn,Gn)}var Rn=Y(Nn,[["render",jn]]);const Un={};function Wn(e,a){return i(),r("article",null,[Dt(e.$slots,"default",{},void 0,!0)])}var Hn=Y(Un,[["render",Wn],["__scopeId","data-v-bd286d4e"]]);const Zn={class:"cover"},Jn={class:"thumbnail"},Xn=P({emits:["click"],setup(e,{emit:a}){const o=()=>{a("click")};return(n,s)=>(i(),M(Hn,null,{default:V(()=>[t("a",{onClick:o},[t("div",Zn,[t("div",Jn,[Dt(n.$slots,"default",{},void 0,!0)])])])]),_:3}))}});var Kn=Y(Xn,[["__scopeId","data-v-123deb20"]]);const Qn=e=>(O("data-v-169d5b59"),e=e(),N(),e),ti={class:"select-editable"},ei={selected:"",value:""},ai=["value"],oi=Qn(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),ni=["placeholder"],ii=P({props:{modelValue:{type:String,required:!0},title:{type:String,default:""},options:{type:Array,default:[]}},emits:["update:modelValue"],setup(e,{emit:a}){const o=e,n=y(""),s=y(""),c=R({get:()=>o.modelValue.valueOf(),set:l=>a("update:modelValue",l)}),f=l=>{l===n.value||n.value==="useInput"&&l===s.value||(l===""||o.options.some(u=>u.key===l)?n.value=l:(s.value=l,n.value="useInput"))};$a(()=>o.modelValue,l=>{f(l)}),Ft(()=>{const l=c.value;f(l)});const p=l=>{n.value==="useInput"?c.value=s.value:c.value=n.value},d=l=>{c.value=s.value};return(l,u)=>(i(),r("label",null,[t("div",ti,[z(t("select",{"onUpdate:modelValue":u[0]||(u[0]=m=>n.value=m),autocomplete:"off",onChange:p},[t("option",ei,"\u8BF7\u9009\u62E9"+h(e.title),1),(i(!0),r(L,null,j(e.options,(m,b)=>(i(),r("option",{value:m.key,key:b},h(m.value||m.key),9,ai))),128)),oi],544),[[Q,n.value,void 0,{trim:!0}]]),n.value=="useInput"?z((i(),r("input",{key:0,type:"text","onUpdate:modelValue":u[1]||(u[1]=m=>s.value=m),required:"",placeholder:"\u8BF7\u8F93\u5165"+e.title,onChange:d},null,40,ni)),[[W,s.value,void 0,{trim:!0}]]):E("",!0)])]))}});var Pt=Y(ii,[["__scopeId","data-v-169d5b59"]]);const ri={t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},si=P({props:{size:{type:[Number,String],default:50},color:{type:String,default:"#fff"}},setup(e){const a=o=>{if(o==null)return;if(typeof o=="number")return o+"px";const n=o.toString();return parseInt(n)+""==n?n+"px":n};return(o,n)=>(i(),r("div",{class:"quick-loading",style:Tt({width:a(e.size),height:a(e.size)})},[(i(),r("svg",ri,[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454",style:Tt({fill:e.color})},null,4)]))],4))}});var di=Y(si,[["__scopeId","data-v-0ec4e762"]]);const ui={},li={t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},ci=t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""},null,-1),pi=[ci];function fi(e,a){return i(),r("svg",li,pi)}var mi=Y(ui,[["render",fi]]);const bi={},vi={width:"128",height:"128",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},gi=Lt('',1),_i=[gi];function hi(e,a){return i(),r("svg",vi,_i)}var xi=Y(bi,[["render",hi]]);const ki=e=>(O("data-v-7fc1a08c"),e=e(),N(),e),wi=["href"],yi=ki(()=>t("svg",{t:"1684144670421",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4343"},[t("path",{d:"M512 74.666667c241.066667 0 437.333333 196.266667 437.333333 437.333333S753.066667 949.333333 512 949.333333 74.666667 753.066667 74.666667 512 270.933333 74.666667 512 74.666667zM512 704c-23.466667 0-42.666667 19.2-42.666667 42.666667s19.2 42.666667 42.666667 42.666666 42.666667-19.2 42.666667-42.666666-19.2-42.666667-42.666667-42.666667z m0-458.666667c-76.8 0-138.666667 61.866667-138.666667 138.666667 0 17.066667 14.933333 32 32 32s32-14.933333 32-32c0-40.533333 34.133333-74.666667 74.666667-74.666667s74.666667 34.133333 74.666667 74.666667c0 2.133333 0 6.4-2.133334 10.666667-6.4 14.933333-19.2 32-40.533333 51.2-10.666667 10.666667-21.333333 19.2-34.133333 27.733333-2.133333 2.133333-6.4 4.266667-8.533334 6.4l-6.4 4.266667c-8.533333 6.4-14.933333 17.066667-14.933333 27.733333v108.8c2.133333 17.066667 14.933333 29.866667 32 29.866667h2.133333c17.066667-2.133333 29.866667-14.933333 29.866667-32v-89.6l12.8-10.666667c10.666667-8.533333 19.2-17.066667 29.866667-25.6 27.733333-25.6 46.933333-49.066667 57.6-74.666667 4.266667-10.666667 6.4-23.466667 6.4-34.133333 0-76.8-61.866667-138.666667-138.666667-138.666667z",fill:"#666666","p-id":"4344"})],-1)),Fi=[yi],Ei=P({props:{type:null},setup(e){const a=e,o=R(()=>{switch(a.type){case"disk":return"https://www.linkease.com/rd/8myYAEVA/";case"store":return"https://www.linkease.com/rd/1F58VUTT/";case"docker":return"https://www.linkease.com/rd/2Q28MDtf/";case"download":return"https://www.linkease.com/rd/1tJo1KX-/";case"ddns":return"https://www.linkease.com/rd/3yFiX5-X/";case"network-interface":return"https://www.linkease.com/rd/3ca51a3G/"}});return(n,s)=>(i(),r("a",{href:k(o),target:"_blank",title:"\u8DF3\u8F6C\u6559\u7A0B"},Fi,8,wi))}});var Ci=Y(Ei,[["__scopeId","data-v-7fc1a08c"]]),aa={install:e=>{e.component("icon-loading",di),e.component("icon-success",mi),e.component("icon-error",xi),e.component("GlHelp",Ci)}};const $i=e=>{},Di=()=>new Date().getTime(),Bi=e=>{if(e<1e3)return`${e} B`;let o=1e3,n=0;for(let f=e/1e3;f>=1e3;f/=1e3)o*=1e3,n++;let s=[" KB"," MB"," GB"," TB"," PB"," EB"];return(e/100/(o/100)).toFixed(1)+s[n]},Yi=e=>{if(e==null)return 0;if(e<1e4)return e;let o=parseInt(`${e/1e4}`),n=e%1e4;return`${o}\u4E07${n}`},Ai=e=>{if(e)try{var a=new Date(e),o=a.getHours(),n=a.getMinutes(),s=a.getSeconds();return o<10&&(o=`0${o}`),n<10&&(n=`0${n}`),s<10&&(s=`0${s}`),`${o}:${n}:${s}`}catch(c){}return""},Si=e=>{if(e){let a=Math.floor(e/86400),o=Math.floor(e/3600)%24,n=Math.floor(e/60)%60,s=e%60;return a+"\u5929"+o+"\u5C0F\u65F6"+(n<10?"0"+n:n)+"\u5206"+(s<10?"0"+s:s)+"\u79D2"}},zi=e=>/^\d+\.\d+\.\d+\.\d+$/.test(e),Pi=e=>e.length<3?"\u7528\u6237\u540D\u592A\u77ED":e.toLowerCase()!=e?"\u7528\u6237\u540D\u53EA\u80FD\u4E3A\u5C0F\u5199":new RegExp("^\\d").exec(e)?"\u7528\u6237\u540D\u4E0D\u80FD\u4EE5\u6570\u5B57\u5F00\u5934":new RegExp("^_").exec(e)?"\u7528\u6237\u540D\u4E0D\u80FD\u4EE5_\u5F00\u5934":new RegExp("^[a-z0-9_]+$").exec(e)?!0:"\u975E\u6CD5\u7684\u7528\u6237\u540D",Ti=(e,a)=>{let o=!0,n=null;const s=()=>{n=null,o&&e().finally(()=>{o&&(n=setTimeout(s,a))})};return n=setTimeout(s,0),()=>{o=!1,n!=null&&clearTimeout(n)}};var Ii=Object.freeze(Object.defineProperty({__proto__:null,formatDate:$i,UnixDate:Di,byteToSize:Bi,numberToSum:Yi,dateForm:Ai,stampForm:Si,checkIsIP:zi,checkSmabaUserName:Pi,easyInterval:Ti},Symbol.toStringTag,{value:"Module"})),yt=J({},Ii);const Li={class:"flow"},Mi={class:"flow-data"},Oi={key:0},Ni={key:1},qi=P({setup(e){Da([Ba,Ya,Aa,Sa,za,Pa]);const a=y(),o=g=>{var _;const v=(_=a.value)==null?void 0:_[g];return!v||v.startTime==0?"":d(v.startTime*1e3)+"-"+d(v.endTime*1e3)},n=R(()=>{var v;let g=[];return(v=a.value)==null||v.forEach(_=>{g.push({value:_.uploadSpeed})}),g}),s=R(()=>{var v;let g=[];return(v=a.value)==null||v.forEach(_=>{g.push({value:_.downloadSpeed})}),g}),c=R(()=>{var v;let g="";if(a.value){let _=((v=a.value)==null?void 0:v.length)||0;if(_>0){let w=a.value[_-1];g=l(w.uploadSpeed)+"/s"}}return g}),f=R(()=>{var v;let g="";if(a.value){let _=((v=a.value)==null?void 0:v.length)||0;if(_>0){let w=a.value[_-1];g=l(w.downloadSpeed)+"/s"}}return g});R(()=>{var v;let g=[];return(v=a.value)==null||v.forEach(_=>{g.push({value:_.downloadSpeed+_.uploadSpeed})}),g});const p=()=>T(this,null,function*(){var g;try{const v=yield S.Network.Statistics.GET();if(v.data&&(g=v.data.result)!=null&&g.items){const _=v.data.result.slots||10;if(v.data.result.items.length<_){let w=v.data.result.items;for(;w.length<_;)w=[{downloadSpeed:0,endTime:0,startTime:0,uploadSpeed:0}].concat(w);a.value=w}else v.data.result.items.length>_?a.value=v.data.result.items.slice(_-v.data.result.items.length):a.value=v.data.result.items}}catch(v){console.log(v)}}),d=yt.dateForm,l=yt.byteToSize,u=y();let m=null;const b=g=>(m=Ta(g,"dark"),m.setOption({animation:!1,backgroundColor:"transparent",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:v=>{if(Array.isArray(v)){let _="";v.length>0&&(_=o(v[0].axisValue));for(let w=0;w${v[w].seriesName}: ${l(v[w].value)}/s`;return _.toString()}else{const _=v;return`${o(_.axisValue)}
${_.seriesName}: ${l(_.value)}/s`}}},xAxis:{type:"category",boundaryGap:!1,splitLine:{lineStyle:{color:["#999"]},show:!1},name:"",show:!1,nameGap:0,nameTextStyle:{height:0,lineHeight:0,padding:0}},title:{text:"\u6D41\u91CF\u7EDF\u8BA1",textStyle:{fontSize:12,color:"rgba(0, 0, 0, 0.6)"},top:"10px",left:"10px"},yAxis:{type:"value",name:"",minInterval:1e4,interval:1e3,axisLabel:{formatter:function(v,_){return`${l(v)}/s`},color:"#fff",show:!1},nameTextStyle:{color:"#fff"},splitLine:{lineStyle:{color:["#999"]},show:!1}},series:[{name:"\u4E0B\u8F7D",data:s.value,type:"line",smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(32, 199, 247, 1)"},{offset:1,color:"rgba(32, 199, 247, 0.1)"}],global:!1}}},{name:"\u4E0A\u4F20",data:n.value,type:"line",smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(85, 58, 254, 1)"},{offset:1,color:"rgba(85, 58, 254, 0.1)"}],global:!1}}}],legend:{padding:0,align:"right",top:"10px",selected:{\u4E0A\u4F20:!0,\u4E0B\u8F7D:!0},textStyle:{color:"rgba(0, 0, 0, 0.6)"},itemStyle:{color:"#5e72e4"},lineStyle:{color:"#333"}},grid:{left:"2%",right:"2%",bottom:"0%",top:"10%",containLabel:!0}}),m);return Ft(()=>{setTimeout(()=>T(this,null,function*(){if(u.value){yield p();const g=b(u.value),v=u.value;g.resize({width:v.clientWidth,height:v.clientHeight}),window.addEventListener("resize",()=>{g.resize({width:v.clientWidth,height:v.clientHeight})});const _=()=>T(this,null,function*(){m!=null&&(yield p(),m!=null&&(g.setOption({series:[{name:"\u4E0B\u8F7D",data:s.value,type:"line",areaStyle:{},smooth:!0},{name:"\u4E0A\u4F20",data:n.value,type:"line",areaStyle:{},smooth:!0}]}),setTimeout(_,5e3)))});setTimeout(_,5e3)}}),900)}),Gt(()=>{m!=null&&(m.dispose(),m=null)}),(g,v)=>(i(),r("div",Li,[t("div",{ref_key:"el",ref:u,class:"echart"},null,512),t("div",Mi,[k(c)?(i(),r("span",Oi,"\u4E0A\u4F20: "+h(k(c)),1)):E("",!0),k(f)?(i(),r("span",Ni,"\u4E0B\u8F7D: "+h(k(f)),1)):E("",!0)])]))}});var Vi=Y(qi,[["__scopeId","data-v-e8f7c118"]]);const Gi={},ji={t:"1649668202191",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2338","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"28px",height:"28px"},Ri=t("path",{d:"M288 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2339",fill:"#666"},null,-1),Ui=t("path",{d:"M512 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2340",fill:"#666"},null,-1),Wi=t("path",{d:"M736 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2341",fill:"#666"},null,-1),Hi=[Ri,Ui,Wi];function Zi(e,a){return i(),r("svg",ji,Hi)}var $t=Y(Gi,[["render",Zi]]);let se=0;const Ji={props:{type:String,message:String|Function,Close:Function,countdown:Number},data(){return{show:!1,remain:0}},mounted(){if(window.setTimeout(()=>{this.show=!0},0),this.countdown){this.remain=this.countdown;const e=()=>{this.show&&this.remain>0&&(this.remain=this.remain-1,se=window.setTimeout(e,1e3))};se=window.setTimeout(e,1e3)}},computed:{Message(){return this.message+(this.countdown?" "+this.remain+"s":"")}},methods:{Stop(){this.type!="loading"&&(this.show=!1,se!=0&&clearTimeout(se),this.Close())}}},ce=e=>(O("data-v-6935a479"),e=e(),N(),e),Xi={key:0,class:"loading icon"},Ki=ce(()=>t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454"})],-1)),Qi=[Ki],tr={key:1,class:"success icon"},er=ce(()=>t("svg",{t:"1632451272305",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M1001.305115 275.874141 431.461709 845.718571c-28.221762 28.221762-73.977875 28.221762-102.20066 0L22.661116 539.116591c-28.222785-28.221762-28.222785-73.979922 0-102.20066 28.221762-28.221762 73.977875-28.221762 102.20066 0l255.500115 255.502162 518.743588-518.743588c28.221762-28.221762 73.977875-28.221762 102.199637 0C1029.5279 201.89422 1029.5279 247.65238 1001.305115 275.874141z","p-id":"2205"})],-1)),ar=[er],or={key:2,class:"error icon"},nr=ce(()=>t("svg",{t:"1632451325789",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M823.04 840.32 524.16 540.16l296.32-294.4c12.8-12.8 12.8-33.28 0-45.44-12.8-12.8-33.28-12.8-46.08 0L478.08 494.08 184.96 200.32c-12.8-12.8-33.28-12.8-45.44 0s-12.8 33.28 0 45.44l292.48 293.76-302.72 300.8c-12.8 12.8-12.8 33.28 0 45.44 12.8 12.8 33.28 12.8 46.08 0l302.72-300.16 299.52 300.16c12.8 12.8 33.28 12.8 45.44 0C835.2 873.6 835.2 853.12 823.04 840.32z","p-id":"2205"})],-1)),ir=[nr],rr={key:3,class:"warning icon"},sr=ce(()=>t("svg",{t:"1632451401172",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1638",width:"128",height:"128"},[t("path",{d:"M512 1021.45211835a60.32985613 60.32985613 0 1 1 60.32985613-60.32985611 60.32985613 60.32985613 0 0 1-60.32985613 60.32985611z m86.85823451-924.97400238L572.32985613 719.80283775a60.32985613 60.32985613 0 0 1-120.65971226 0l-26.52837838-623.32472178c-0.16758294-2.22885301-0.28489098-4.49122263-0.284891-6.78710881a87.14312551 87.14312551 0 0 1 174.28625102 0c0 2.2958862-0.11730806 4.5582558-0.284891 6.78710881z","p-id":"1639"})],-1)),dr=[sr];function ur(e,a,o,n,s,c){return i(),M(kt,{name:"el-fade-in-linear"},{default:V(()=>[s.show?(i(),r("div",{key:0,class:"toast",onClick:a[1]||(a[1]=f=>c.Stop())},[o.type=="loading"?(i(),r("div",Xi,Qi)):o.type=="success"?(i(),r("div",tr,ar)):o.type=="error"?(i(),r("div",or,ir)):o.type=="warning"?(i(),r("div",rr,dr)):E("",!0),t("div",{class:"message",onClick:a[0]||(a[0]=nt(()=>{},["stop"]))},h(c.Message),1)])):E("",!0)]),_:1})}var lr=Y(Ji,[["render",ur],["__scopeId","data-v-6935a479"]]);const Xt=new Map,jt=e=>{const a=tt(lr,at(J({},e),{Close:()=>{n()}})),o=document.createElement("div");document.body.append(o),a.mount(o);const n=()=>{o.remove(),Xt.get(a._uid)&&Xt.delete(a._uid)};return e.type=="loading"&&Xt.set(a._uid,{Close:n}),(e==null?void 0:e.duration)==0||((e==null?void 0:e.duration)>0?setTimeout(()=>{n()},e==null?void 0:e.duration):setTimeout(()=>{n()},3e3)),{Close:n}},F=e=>jt(e);F.Loading=(e,a)=>jt({type:"loading",message:e||"\u52A0\u8F7D\u4E2D...",duration:0,countdown:a||0});F.Success=e=>jt({type:"success",message:e});F.Error=e=>jt({type:"error",message:e,duration:0});F.Warning=e=>jt({type:"warning",message:e});F.Message=e=>jt({message:e});F.Clear=()=>{Xt.forEach((e,a)=>{e.Close(),Xt.delete(a)})};const ct={installApp:(e,a)=>new Promise((o,n)=>{let s=0;S.App.Install.POST({name:e}).then(()=>{const c=setTimeout(()=>{s==0&&(s=1,o(!1))},(a||60)*1e3),f=()=>{s==0&&S.App.Check.POST({name:e}).then(p=>{if(s==0&&p!=null&&p.data){const{result:d}=p.data;if((d==null?void 0:d.status)=="installed"){clearTimeout(c),s=1,o(!0);return}}}).catch(p=>{}).finally(()=>{s==0&&setTimeout(f,3e3)})};setTimeout(f,3e3)}).catch(c=>{s==0&&(s=1,n("\u5B89\u88C5\u5931\u8D25\uFF0C"+c))})}),checkAndInstallApp:(e,a,o)=>T(Kt,null,function*(){let n=F.Loading("\u68C0\u67E5\u4E2D...");try{const s=yield S.App.Check.POST({name:e});if(n.Close(),s!=null&&s.data){const{result:c,error:f}=s.data;if(f)F.Warning(f);else if(c){if(c.status=="installed")return!0;if(confirm(`\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 ${a} \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F`)){n=F.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const p=yield ct.installApp(o||e);if(n.Close(),p)return!0;F.Error("\u5B89\u88C5\u5931\u8D25\u6216\u8D85\u65F6\uFF0C\u8BF7\u68C0\u67E5\u8F6F\u4EF6\u6E90\u6216\u7A0D\u5019\u91CD\u8BD5")}}else F.Warning("\u68C0\u67E5\u63D2\u4EF6\u72B6\u6001\u5931\u8D25")}return!1}catch(s){return n.Close(),F.Warning(s),!1}}),installAndGo:(e,a,o,n)=>T(Kt,null,function*(){(yield ct.checkAndInstallApp(e,a,n))&&(location.href=o)})},cr={},pr={t:"1640746738262",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1216",width:"128",height:"128"},fr=t("path",{d:"M511.232 438.8352L112.9984 40.6016A51.2 51.2 0 0 0 40.6016 112.9984L438.784 511.232 40.6016 909.4656a51.2 51.2 0 1 0 72.3968 72.448l398.2336-398.2848 398.2336 398.2848a51.2 51.2 0 1 0 72.448-72.448l-398.2848-398.2336 398.2848-398.2336A51.2 51.2 0 0 0 909.4656 40.6016L511.232 438.784z","p-id":"1217"},null,-1),mr=[fr];function br(e,a){return i(),r("svg",pr,mr)}var vr=Y(cr,[["render",br]]);const gr=e=>(O("data-v-428d873e"),e=e(),N(),e),_r={id:"actioner"},hr={key:0,class:"action-container"},xr={class:"action-container_header"},kr=gr(()=>t("div",null,null,-1)),wr={class:"title"},yr={class:"action-container_body"},Fr=P({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){const a=e,o=y(!1);Ft(()=>{o.value=!0,document.body.setAttribute("lock-scroll","true")}),Gt(()=>{document.body.removeAttribute("lock-scroll")});const n=()=>{a.Close&&(o.value=!1,setTimeout(()=>{a.Close&&a.Close()},300))};return(s,c)=>(i(),r("div",_r,[t("div",{class:"bg",onClick:n}),e.type!=null?Dt(s.$slots,"default",{key:0},void 0,!0):(i(),r(L,{key:1},[o.value?(i(),r("div",hr,[t("div",xr,[kr,t("div",wr,h(e.title),1),t("button",{class:"close",title:"\u5173\u95ED",onClick:n},[D(vr)])]),t("div",yr,[Dt(s.$slots,"default",{},void 0,!0)])])):E("",!0)],64))]))}});var Er=Y(Fr,[["__scopeId","data-v-428d873e"]]);const et=P({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){return(a,o)=>(i(),M(Er,{Close:e.Close,type:e.type,title:e.title},{default:V(()=>[Dt(a.$slots,"default")]),_:3},8,["Close","type","title"]))}}),Mt=e=>(O("data-v-2a4078c6"),e=e(),N(),e),Cr=["onSubmit"],$r=Mt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),Dr={class:"actioner-dns_body"},Br={class:"label-item"},Yr=Mt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u9009\u9879")],-1)),Ar={class:"label-item_value"},Sr=["disabled"],zr=Mt(()=>t("option",{value:"manual"},"\u81EA\u5B9A\u4E49DNS",-1)),Pr={class:"label-item"},Tr=Mt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u670D\u52A1\u5668\u5730\u5740")],-1)),Ir={class:"label-item_value"},Lr=["onUpdate:modelValue"],Mr=Mt(()=>t("div",{class:"label-item_key"},"\u5907\u7528DNS\u670D\u52A1\u5668\u5730\u5740",-1)),Or={class:"label-item_value"},Nr=["onUpdate:modelValue"],qr={key:1,class:"label-message"},Vr={class:"actioner-dns_footer"},Gr=["disabled"],jr={key:1,class:"actioner-dns"},Rr=Mt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),Ur=Mt(()=>t("div",{class:"actioner-dns_body"},[t("div",{class:"config-message"},"DNS\u914D\u7F6E\u5DF2\u4FDD\u5B58")],-1)),Wr=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=le(),s=n.status,c=R(()=>n.status.proto!="static"),f=()=>{let g=s.dnsList||[];for(g=g.filter(v=>v);g.length<2;)g.push("");return g},p=y({interfaceName:s.defaultInterface||"",dnsProto:s.dnsProto||"manual",manualDnsIp:f()}),d=y(""),l=y(!1),u=()=>T(this,null,function*(){d.value="";let g={};switch(p.value.dnsProto){case"auto":break;case"manual":if(g.manualDnsIp=[],!p.value.manualDnsIp[0]){F.Error("\u81F3\u5C11\u9700\u8981\u586B\u5199\u4E00\u4E2ADNS");return}g.manualDnsIp=p.value.manualDnsIp.filter(_=>_);break}g.dnsProto=p.value.dnsProto,g.interfaceName=p.value.interfaceName;const v=F.Loading("\u914D\u7F6E\u4E2D...");try{const _=yield S.Guide.DnsConfig.POST(g);if(_!=null&&_.data){const{success:w,error:x}=_==null?void 0:_.data;x&&(d.value=x),(w==null||w==0)&&(F.Success("\u914D\u7F6E\u6210\u529F"),o.value=1)}}catch(_){d.value=_}v.Close()}),m=g=>{g.preventDefault(),a.Close&&a.Close()},b=g=>{location.reload()};return(g,v)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(u,["prevent"])},[$r,t("div",Dr,[t("div",Br,[Yr,t("div",Ar,[z(t("select",{"onUpdate:modelValue":v[0]||(v[0]=_=>p.value.dnsProto=_)},[t("option",{value:"auto",disabled:!k(c)},"\u81EA\u52A8\u83B7\u53D6DNS",8,Sr),zr],512),[[Q,p.value.dnsProto]])])]),p.value.dnsProto=="manual"?(i(!0),r(L,{key:0},j(p.value.manualDnsIp,(_,w)=>(i(),r("div",Pr,[w==0?(i(),r(L,{key:0},[Tr,t("div",Ir,[z(t("input",{type:"text",placeholder:"\u8BF7\u8F93\u5165DNS\u5730\u5740",required:"","onUpdate:modelValue":x=>p.value.manualDnsIp[w]=x},null,8,Lr),[[W,p.value.manualDnsIp[w],void 0,{trim:!0}]])])],64)):(i(),r(L,{key:1},[Mr,t("div",Or,[z(t("input",{type:"text",placeholder:"\u5907\u7528DNS\u5730\u5740","onUpdate:modelValue":x=>p.value.manualDnsIp[w]=x},null,8,Nr),[[W,p.value.manualDnsIp[w],void 0,{trim:!0}]])])],64))]))),256)):E("",!0),d.value?(i(),r("div",qr,h(d.value),1)):E("",!0)]),t("div",Vr,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:l.value},"\u786E\u8BA4",8,Gr),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:m},"\u53D6\u6D88")])],40,Cr)):o.value==1?(i(),r("div",jr,[Rr,Ur,t("div",{class:"actioner-dns_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:b},"\u5B8C\u6210")])])):E("",!0)]),_:1},8,["Close"]))}});var Hr=Y(Wr,[["__scopeId","data-v-2a4078c6"]]);const oa=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Hr,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},pe=e=>(O("data-v-0ae97e7e"),e=e(),N(),e),Zr={class:"action"},Jr={class:"action-body"},Xr=pe(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),Kr=pe(()=>t("h2",{class:"title"},"\u670D\u52A1\u5DF2\u542F\u52A8",-1)),Qr={class:"info"},ts=pe(()=>t("span",null,"\u524D\u5F80",-1)),es=["href"],as=pe(()=>t("span",null,"\u8FDB\u884C\u6D4B\u901F",-1)),os=P({props:{port:Number,Close:Function},setup(e){const a=e,o=R(()=>`http://${location.hostname}:${a.port}`),n=()=>{a.Close&&(a.Close(),location.reload())};return(s,c)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("div",Zr,[t("div",Jr,[Xr,Kr,t("div",Qr,[ts,t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,es),as]),t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:n},"\u5173\u95ED")])])])]),_:1})]),_:1}))}});var ns=Y(os,[["__scopeId","data-v-0ae97e7e"]]),is=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(ns,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const $e=e=>(O("data-v-39248365"),e=e(),N(),e),rs=$e(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","xmlns:v":"https://vecta.io/nano",width:"48",height:"38",viewBox:"0 0 12.7 10.05"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(0 -286.95)"},[t("rect",{x:".21",y:"287.25",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0834 280.6)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#999",filter:"url(#A)",stroke:"#999","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0999 280.7)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.24",y:"294.55",width:"1.6",height:"1.38",ry:".11",fill:"#ccc",stroke:"#ccc","stroke-width":".22","paint-order":"normal"})])])],-1)),ss={class:"app-container_status-label_text"},ds=$e(()=>t("div",{class:"text_status"},"\u5DF2\u65AD\u5F00",-1)),us={class:"text_info"},ls=$e(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"48",height:"38",viewBox:"0 0 12.7 10.05","xmlns:v":"https://vecta.io/nano"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(-.03 -287.07)"},[t("rect",{x:".24",y:"287.36",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0532 280.72)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#4d4d4d",filter:"url(#A)",stroke:"#4d4d4d","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0697 280.81)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.27",y:"294.67",width:"1.6",height:"1.38",ry:".11",fill:"#55d400",stroke:"#55d400","stroke-width":".22","paint-order":"normal"})])])],-1)),cs={class:"app-container_status-label_text"},ps={class:"text_info"},fs=P({props:{item:{type:Object,required:!0},transform:{type:Number,default:0}},setup(e){const a=e,o=Ke(),n=y(null),s=f=>{const p=f.target,{left:d,top:l}=p.getBoundingClientRect();o.portitemStyle.show=!0,o.portitemStyle.left=d,o.portitemStyle.top=l,o.portitemStyle.portitem=a.item},c=f=>{o.portitemStyle.show=!1};return(f,p)=>(i(),r("div",{class:"app-container_status-label_bg",style:Tt(`transform: translateX(${e.transform}px);`),ref_key:"el",ref:n,onMouseenter:s,onMouseleave:c},[e.item.linkState=="DOWN"?(i(),r(L,{key:0},[rs,t("div",ss,[ds,t("div",us,h(e.item.name)+" "+h(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64)):(i(),r(L,{key:1},[ls,t("div",cs,[t("div",null,h(e.item.linkSpeed),1),t("div",ps,h(e.item.name)+" "+h(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64))],36))}});var na=Y(fs,[["__scopeId","data-v-39248365"]]);const ia=e=>(O("data-v-3470ca08"),e=e(),N(),e),ms=ia(()=>t("span",null,h("<"),-1)),bs=[ms],vs=ia(()=>t("span",null,h(">"),-1)),gs=[vs],_s=P({props:{portList:{type:Array,required:!0}},setup(e){const a=y(),o=y(0),n=y(0),s=y(0),c=y(!1),f=()=>{if(s.value>=0){s.value=0;return}s.value+=100},p=()=>{if(s.value<=0-o.value+n.value){s.value=0-o.value+n.value;return}s.value-=100};return Ft(()=>{Ia(()=>{a.value&&(o.value=a.value.scrollWidth,n.value=a.value.clientWidth,c.value=o.value>n.value)})}),(d,l)=>(i(),r("div",{class:"app-interfaces",ref_key:"el",ref:a},[c.value?(i(),r(L,{key:0},[t("a",{class:"btn-f",onClick:f},bs),t("a",{class:"btn-r",onClick:p},gs)],64)):E("",!0),(i(!0),r(L,null,j(e.portList,(u,m)=>(i(),M(na,{item:u,transform:s.value},null,8,["item","transform"]))),256))],512))}});var hs=Y(_s,[["__scopeId","data-v-3470ca08"]]);const xs={},ks={width:"82px",height:"82px",viewBox:"0 0 82 82",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},ws=Lt('icon_finished',2),ys=[ws];function Fs(e,a){return i(),r("svg",ks,ys)}var De=Y(xs,[["render",Fs]]);const Rt=e=>(O("data-v-1e29113c"),e=e(),N(),e),Es=["onSubmit"],Cs=Rt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),$s={class:"actioner-dns_body"},Ds={class:"label-item"},Bs=Rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5F53\u524D\u8F6F\u4EF6\u6E90")],-1)),Ys={class:"label-item_value"},As={class:"item_info"},Ss={class:"label-item"},zs=Rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5207\u6362\u8F6F\u4EF6\u6E90")],-1)),Ps={class:"label-item_value"},Ts=Rt(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u8F6F\u4EF6\u6E90",-1)),Is=["value"],Ls={class:"actioner-dns_footer"},Ms=["disabled"],Os={key:1,class:"actioner-dns"},Ns=Rt(()=>t("div",{class:"actioner-dns_header"},[t("span",{class:"softsource_tit"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),qs={class:"actioner-dns_body"},Vs={class:"finished"},Gs=Rt(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),js=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y(""),s=y(),c=y();(()=>{S.Guide.SoftSourceList.GET().then(u=>{var m,b;if((m=u==null?void 0:u.data)!=null&&m.result){const g=(b=u==null?void 0:u.data)==null?void 0:b.result;c.value=g}}).then(()=>S.Guide.GetSoftSource.GET()).then(u=>{var m,b;if((m=u==null?void 0:u.data)!=null&&m.result){const g=u.data.result;s.value=g.softSource,(b=c.value)!=null&&b.softSourceList.find(v=>v.identity==g.softSource.identity)&&(n.value=g.softSource.identity)}})})();const p=u=>{u.preventDefault(),a.Close&&a.Close()},d=u=>{const m=F.Loading("\u6B63\u5728\u5207\u6362\u4E2D...");S.Guide.SoftSource.POST({softSourceIdentity:n.value}).then(b=>{if(b!=null&&b.data){if((b.data.success||0)==0){o.value=1;return}else if(b.data.error)throw b.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(b=>{F.Error(b)}).finally(()=>m.Close())},l=u=>{u.preventDefault(),location.reload()};return(u,m)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>{var b,g;return[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(d,["prevent"])},[Cs,t("div",$s,[t("div",Ds,[Bs,t("div",Ys,[t("p",As,h((b=s.value)==null?void 0:b.name),1)])]),t("div",Ss,[zs,t("div",Ps,[z(t("select",{name:"",id:"","onUpdate:modelValue":m[0]||(m[0]=v=>n.value=v)},[Ts,(i(!0),r(L,null,j((g=c.value)==null?void 0:g.softSourceList,(v,_)=>(i(),r("option",{value:v.identity,key:_},h(v.name),9,Is))),128))],512),[[Q,n.value,void 0,{trim:!0}]])])])]),t("div",Ls,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:n.value==""},"\u786E\u8BA4",8,Ms),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:p},"\u53D6\u6D88")])],40,Es)):E("",!0),o.value==1?(i(),r("form",Os,[Ns,t("div",qs,[t("div",Vs,[D(De)]),Gs,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply softsource_successed",onClick:l},"\u786E\u5B9A")])])])):E("",!0)]}),_:1},8,["Close"]))}});var Rs=Y(js,[["__scopeId","data-v-1e29113c"]]);const ra=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Rs,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},ut=e=>(O("data-v-fd7a24a6"),e=e(),N(),e),Us={class:"app-container_status-label"},Ws={class:"app-container_status-label_item",style:{"padding-right":"10px"}},Hs={class:"app-container_status-container",style:{height:"100%"}},Zs={key:0,class:"app-container_status-container_body"},Js=ut(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("title",null,"icon_internet connected"),t("g",{id:"icon_internet-connected",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng","fill-rule":"nonzero"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.0779329313",fill:"#553AFE"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#553AFE"}),t("path",{d:"M8,15 L13.2546984,20.2546984 C13.6452227,20.6452227 14.2783876,20.6452227 14.6689119,20.2546984 C14.6813066,20.2423037 14.6933732,20.2295853 14.7050993,20.2165563 L23,11 L23,11",id:"Path-3",stroke:"#FFFFFF","stroke-width":"2","stroke-linecap":"round"})])])])],-1)),Xs={class:"app-container_status-info"},Ks=ut(()=>t("span",{class:"container_success"},"\u5DF2\u8054\u7F51",-1)),Qs={class:"container_time"},td={key:1,class:"app-container_status-container_body"},ed=ut(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#FAAD14","fill-rule":"nonzero"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#FAAD14","fill-rule":"nonzero"}),t("path",{d:"M15,6 C15.8284271,6 16.5,6.67157288 16.5,7.5 L16.5,18.5 C16.5,19.3284271 15.8284271,20 15,20 C14.1715729,20 13.5,19.3284271 13.5,18.5 L13.5,7.5 C13.5,6.67157288 14.1715729,6 15,6 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"}),t("path",{d:"M15,25 C14.171875,25 13.5,24.328125 13.5,23.5 C13.5,22.671875 14.171875,22 15,22 C15.828125,22 16.5,22.671875 16.5,23.5 C16.5,24.328125 15.828125,25 15,25 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"})])])])],-1)),ad={class:"app-container_status-info"},od=ut(()=>t("span",{class:"container_failure"},"DNS\u9519\u8BEF",-1)),nd={class:"container_time"},id={key:2,class:"app-container_status-container_body"},rd=ut(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#FAAD14","fill-rule":"nonzero"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#FAAD14","fill-rule":"nonzero"}),t("path",{d:"M15,6 C15.8284271,6 16.5,6.67157288 16.5,7.5 L16.5,18.5 C16.5,19.3284271 15.8284271,20 15,20 C14.1715729,20 13.5,19.3284271 13.5,18.5 L13.5,7.5 C13.5,6.67157288 14.1715729,6 15,6 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"}),t("path",{d:"M15,25 C14.171875,25 13.5,24.328125 13.5,23.5 C13.5,22.671875 14.171875,22 15,22 C15.828125,22 16.5,22.671875 16.5,23.5 C16.5,24.328125 15.828125,25 15,25 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"})])])])],-1)),sd={class:"app-container_status-info"},dd=ut(()=>t("span",{class:"container_failure"},"\u8F6F\u4EF6\u6E90\u9519\u8BEF",-1)),ud={class:"container_time"},ld={key:3,class:"app-container_status-container_body"},cd=ut(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#FAAD14","fill-rule":"nonzero"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#FAAD14","fill-rule":"nonzero"}),t("path",{d:"M15,6 C15.8284271,6 16.5,6.67157288 16.5,7.5 L16.5,18.5 C16.5,19.3284271 15.8284271,20 15,20 C14.1715729,20 13.5,19.3284271 13.5,18.5 L13.5,7.5 C13.5,6.67157288 14.1715729,6 15,6 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"}),t("path",{d:"M15,25 C14.171875,25 13.5,24.328125 13.5,23.5 C13.5,22.671875 14.171875,22 15,22 C15.828125,22 16.5,22.671875 16.5,23.5 C16.5,24.328125 15.828125,25 15,25 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"})])])])],-1)),pd={class:"app-container_status-info"},fd=ut(()=>t("span",{class:"container_failure"},"\u672A\u8054\u7F51",-1)),md={class:"container_time"},bd={key:4,class:"app-container_status-container_body"},vd=ut(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-launching",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng","fill-rule":"nonzero"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#3ED4AB"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#3ED4AB"}),t("path",{d:"M11.5738525,15.0233901 C11.5738525,14.8431935 11.5023882,14.6703653 11.3750746,14.5429471 C11.2477609,14.4155288 11.0750745,14.3439644 10.8950258,14.3440059 L7.67882684,14.3440059 C7.49875102,14.3439644 7.326041,14.4155503 7.19872281,14.5430024 C7.07140462,14.6704545 6.99991721,14.8433228 7.00000007,15.0235465 C7.00000007,15.2037431 7.0714644,15.3765713 7.19877809,15.5039895 C7.32609178,15.6314078 7.4987781,15.7029722 7.67882684,15.7029307 L10.8950258,15.7029307 C11.0750745,15.7029722 11.2477609,15.6314078 11.3750746,15.5039895 C11.5023882,15.3765713 11.5738525,15.2037431 11.5738525,15.0235465 L11.5738525,15.0233901 Z M22.3211553,14.3440059 L19.1049564,14.3440059 C18.9248806,14.3439644 18.7521705,14.4155503 18.6248524,14.5430024 C18.4975342,14.6704545 18.4260468,14.8433228 18.4261296,15.0235465 C18.4261296,15.2037431 18.4975939,15.3765713 18.6249076,15.5039895 C18.7522213,15.6314078 18.9249076,15.7029722 19.1049564,15.7029307 L22.3211553,15.7029307 C22.5012041,15.7029722 22.6738904,15.6314078 22.8012041,15.5039895 C22.9285178,15.3765713 22.9999911,15.2037431 22.9999911,15.0235465 C23.0019042,14.6481319 22.6962619,14.3440059 22.3211553,14.3440059 Z M15.0075079,18.6494887 C14.8274565,18.6494887 14.6547678,18.7210138 14.5274536,18.8484354 C14.4001395,18.9758571 14.3286356,19.1486892 14.3286812,19.3288885 L14.3286812,22.3206158 C14.3286398,22.5008124 14.4001455,22.6736405 14.5274592,22.8010588 C14.6547729,22.928477 14.8274592,23 15.0075079,23 C15.1875567,23 15.360243,22.928477 15.4875567,22.8010588 C15.6148704,22.6736405 15.6863761,22.5008124 15.6863348,22.3206158 L15.6863348,19.3308123 C15.6866114,18.9551699 15.3828413,18.6502825 15.0075079,18.6494887 Z M15.0075079,7 C14.8274592,7 14.6547729,7.07152297 14.5274592,7.19894122 C14.4001455,7.32635946 14.3286398,7.49918761 14.3286812,7.67938422 L14.3286812,10.8982245 C14.3286398,11.0784212 14.4001455,11.2512493 14.5274592,11.3786675 C14.6547729,11.5060858 14.8274592,11.5776088 15.0075079,11.5776088 C15.1875567,11.5776088 15.360243,11.5060858 15.4875567,11.3786675 C15.6148704,11.2512493 15.6863761,11.0784212 15.6863346,10.8982245 L15.6863346,7.67938422 C15.6863761,7.49918761 15.6148704,7.32635946 15.4875567,7.19894122 C15.360243,7.07152297 15.1875567,7 15.0075079,7 Z M11.6020132,17.4145291 L9.32916742,19.6892415 C9.06467707,19.9548666 9.06467707,20.3845576 9.32916742,20.6501827 C9.45618492,20.7780764 9.62906847,20.8497648 9.80924376,20.8492554 C9.98367775,20.8492554 10.1560177,20.783579 10.2893201,20.6501827 L12.5637599,18.3738593 C12.8282503,18.1082342 12.8282503,17.6785432 12.5637599,17.4129181 C12.2975184,17.147886 11.8671244,17.1486768 11.601857,17.4146855 L11.6020132,17.4145291 Z M17.8766048,12.7750942 C18.0510388,12.7750942 18.2236912,12.7094361 18.3566811,12.5760242 L20.6314491,10.29956 C20.8959395,10.0339349 20.8959395,9.6042439 20.6314491,9.3386188 C20.366042,9.07391123 19.9367036,9.07391123 19.6712965,9.3386188 L17.3966847,11.6133312 C17.1321944,11.8789563 17.1321944,12.3086474 17.3966847,12.5742725 C17.5235351,12.7026276 17.6963754,12.7749288 17.8767611,12.7750942 L17.8766048,12.7750942 Z M18.5349595,17.572293 C18.2695524,17.3075854 17.8402139,17.3075854 17.5748068,17.572293 C17.3103165,17.8379181 17.3103165,18.2676091 17.5748068,18.5332342 L19.6882679,20.6501827 C19.8152854,20.7780764 19.988169,20.8497648 20.1683442,20.8492554 C20.342747,20.8492554 20.5152744,20.783579 20.6484206,20.6501827 C20.9129109,20.3845576 20.9129109,19.9548666 20.6484206,19.6892415 L18.5349595,17.5722773 L18.5349595,17.572293 Z M10.2891638,9.35734026 C10.0237567,9.09263269 9.59441827,9.09263269 9.32901114,9.35734026 C9.06452079,9.62296536 9.06452079,10.0526564 9.32901114,10.3182815 L11.6037635,12.594902 C11.7308042,12.7227441 11.9036849,12.7943806 12.0838399,12.7938344 C12.2582738,12.7938344 12.43077,12.7281576 12.5639162,12.594902 C12.8284065,12.3292769 12.8284065,11.8995859 12.5639162,11.6339608 L10.2891638,9.3573559 L10.2891638,9.35734026 Z",id:"Shape",fill:"#FFFFFF"})])])])],-1)),gd=ut(()=>t("div",{class:"app-container_status-info"},[t("span",{class:"container_failure"},"\u68C0\u6D4B\u4E2D...")],-1)),_d=[vd,gd],hd={class:"app-container_status-label_item",style:{"padding-left":"10px"}},xd={class:"app-container_status-container",style:{height:"100%"}},kd={class:"more_icon",title:"\u67E5\u770B\u8BBE\u5907\u4FE1\u606F"},wd={class:"DeviceBlock"},yd=ut(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/status/routes"},"\u8BBE\u5907\u8DEF\u7531")],-1)),Fd={class:"app-container_status-container_body"},Ed=ut(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("title",null,"icon_device number"),t("g",{id:"icon_device-number",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng","fill-rule":"nonzero"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.0804503114",fill:"#03C5FC"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#03C5FC"}),t("g",{id:"kehuduanIP",transform:"translate(5.000000, 7.000000)",fill:"#FFFFFF"},[t("path",{d:"M8.3164557,11.2822134 L2.39240506,11.2822134 C2.25316456,11.2822134 2.13924051,11.1683794 2.13924051,11.029249 L2.13924051,1.39130435 C2.13924051,1.25217391 2.25316456,1.13833992 2.39240506,1.13833992 L16.6075949,1.13833992 C16.7468354,1.13833992 16.8607595,1.25217391 16.8607595,1.39130435 L16.8607595,3.51620553 C17.2658228,3.5541502 17.6582278,3.69328063 18,3.9083004 L18,1.39130435 C18,0.619762846 17.3797468,0 16.6075949,0 L2.39240506,0 C1.62025316,0 1,0.619762846 1,1.39130435 L1,11.029249 C1,11.8007905 1.62025316,12.4205534 2.39240506,12.4205534 L7.15189873,12.4205534 L7.15189873,14.2798419 L6.40506329,14.2798419 C5.93670886,14.2798419 5.5443038,14.6592885 5.5443038,15.1399209 C5.5443038,15.6079051 5.92405063,16 6.40506329,16 L8.79746835,16 C8.48101266,15.5699605 8.3164557,15.0513834 8.3164557,14.5201581 L8.3164557,11.2822134 Z",id:"Path"}),t("path",{d:"M12.4062969,15.2371365 L12.4062969,14.0436242 L10.0074963,14.0436242 L10.0074963,6.39038031 C10.0074963,6.23042506 10.1394303,6.10738255 10.2833583,6.10738255 L15.6446777,6.10738255 C15.8005997,6.10738255 15.9205397,6.24272931 15.9205397,6.39038031 L15.9205397,8.77740492 L16.3283358,8.77740492 C16.5682159,8.77740492 16.7961019,8.85123043 17,8.97427293 L17,6.39038031 C17,5.62751678 16.3883058,5 15.6446777,5 L10.3313343,5 C9.58770615,5.0246085 9,5.63982103 9,6.39038031 L9,14.6465324 C9.02398801,15.3847875 9.61169415,15.9753915 10.3313343,16 L12.6581709,16 C12.5022489,15.7785235 12.4182909,15.50783 12.4062969,15.2371365 C12.4062969,15.2248322 12.4062969,15.2371365 12.4062969,15.2371365 L12.4062969,15.2371365 Z",id:"Path"}),t("path",{d:"M17.1515152,10 L13.8484848,10 C13.3787879,10 13,10.2857143 13,10.64 L13,15.36 C13,15.7142857 13.3787879,16 13.8484848,16 L17.1515152,16 C17.6212121,16 18,15.7142857 18,15.36 L18,10.64 C18,10.2857143 17.6212121,10 17.1515152,10 Z M14.0151515,10.7657143 L16.9848485,10.7657143 L16.9848485,14.8457143 L14.0151515,14.8457143 L14.0151515,10.7657143 L14.0151515,10.7657143 Z M15.4545455,15.6914286 C15.2575758,15.6914286 15.1060606,15.5657143 15.1060606,15.4285714 C15.1060606,15.28 15.2727273,15.1657143 15.469697,15.1657143 C15.6666667,15.1657143 15.8181818,15.2914286 15.8181818,15.44 C15.8181818,15.5085714 15.7727273,15.5885714 15.6969697,15.6342857 C15.6363636,15.68 15.5454545,15.7028571 15.4545455,15.6914286 C15.4545455,15.7028571 15.4545455,15.6914286 15.4545455,15.6914286 L15.4545455,15.6914286 Z",id:"Shape"})])])])])],-1)),Cd={class:"app-container_status-info"},$d={class:"container_content"},Dd=ut(()=>t("span",{class:"devise"},"\u5DF2\u8FDE\u63A5\u8BBE\u5907",-1)),Bd=ut(()=>t("em",null,null,-1)),Yd={class:"app-container_status-container"},Ad={class:"more_icon",title:"\u6D4B\u901F"},Sd={class:"DeviceBlock"},zd={class:"app-container_title"},Pd={class:"app-container_status-label_block"},Td={class:"app-container_status-label_block"},Id={class:"app-container_title"},Ld={class:"app-container_status-label_block"},Md=ut(()=>t("em",null,null,-1)),Od={class:"app-container_status-container"},Nd={class:"app-container_title"},qd=ut(()=>t("span",null,"\u7F51\u7EDC\u63A5\u53E3\u72B6\u6001",-1)),Vd={class:"more_icon",title:"\u67E5\u770B\u7F51\u7EDC\u63A5\u53E3\u4FE1\u606F"},Gd={class:"DeviceBlock"},jd=U("\u7F51\u53E3\u914D\u7F6E"),Rd={class:"app-container_body"},Ud=P({props:{homebox:{type:Object}},setup(e){const a=()=>{oa()},o=()=>{ra()},n=le(),s=R(()=>n.status),c=R(()=>n.deviceList),f=y(!1),p=y(!1),d=y(!1),l=it({portList:[],load:!1}),u=$=>{switch($){case"pppoe":return"\u62E8\u53F7\u4E0A\u7F51";case"static":return"\u9759\u6001\u7F51\u7EDC";case"dhcp":return"DHCP"}return $&&$.toUpperCase()},m=$=>{switch($){case"manual":return"\u624B\u52A8\u914D\u7F6E";case"auto":return"\u81EA\u52A8\u83B7\u53D6";default:return""}},b=()=>{S.Network.PortList.GET().then($=>{if($!=null&&$.data){const{result:q}=$==null?void 0:$.data;q&&(l.portList=q.ports||[])}}).finally(()=>{l.load=!0,g()})},g=()=>{setTimeout(()=>{b()},1e4)};b();const v=yt.stampForm,_=()=>{f.value=!f.value},w=()=>{p.value=!p.value},x=()=>{d.value=!d.value},C=()=>{_(),ct.installAndGo("app-meta-nlbwmon","\u5E26\u5BBD\u76D1\u63A7","/cgi-bin/luci/admin/services/nlbw")},A=()=>T(this,null,function*(){var $,q,H;if(w(),yield ct.checkAndInstallApp("app-meta-homebox","Homebox"))try{const G=yield S.Network.Homebox.Enable.POST();(q=($=G==null?void 0:G.data)==null?void 0:$.result)!=null&&q.port?is({port:G.data.result.port,setup:0}):((H=G==null?void 0:G.data)==null?void 0:H.success)==0?location.href="/cgi-bin/luci/admin/services/homebox":F.Warning("\u542F\u52A8\u5931\u8D25")}catch(G){F.Warning("\u542F\u52A8\u5931\u8D25")}}),B=()=>{w(),ct.installAndGo("app-meta-systools","SysTools","/cgi-bin/luci/admin/system/systools/pages")};return($,q)=>{var G,Z;const H=X("router-link");return i(),r(L,null,[t("div",Us,[t("div",Ws,[t("div",Hs,[k(s)!=null?(i(),r(L,{key:0},[k(s).networkInfo=="netSuccess"?(i(),r("div",Zs,[Js,t("div",Xs,[Ks,t("span",Qs,h(k(v)(k(s).uptimeStamp)),1)])])):k(s).networkInfo=="dnsFailed"?(i(),r("div",td,[ed,t("div",ad,[od,t("span",nd,h(k(v)(k(s).uptimeStamp)),1),t("div",{onClick:a,class:"container_configure"},"DNS\u914D\u7F6E")])])):k(s).networkInfo=="softSourceFailed"?(i(),r("div",id,[rd,t("div",sd,[dd,t("span",ud,h(k(v)(k(s).uptimeStamp)),1),t("div",{onClick:o,class:"container_configure"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")])])):k(s).networkInfo=="netFailed"?(i(),r("div",ld,[cd,t("div",pd,[fd,t("span",md,h(k(v)(k(s).uptimeStamp)),1)])])):(i(),r("div",bd,_d))],64)):E("",!0)])]),t("div",hd,[t("div",xd,[t("span",kd,[D($t,{onClick:_})]),z(t("div",wd,[t("div",{class:"menu_background",onClick:_}),t("ul",null,[yd,t("li",null,[t("a",{onClick:C},"\u5E26\u5BBD\u76D1\u63A7")])])],512),[[wt,f.value]]),t("div",Fd,[Ed,t("div",Cd,[t("span",$d,h(((Z=(G=k(c))==null?void 0:G.devices)==null?void 0:Z.length)||0),1),Dd])])])])]),Bd,t("div",Yd,[t("span",Ad,[D($t,{onClick:w})]),z(t("div",Sd,[t("div",{class:"menu_background",onClick:w}),t("ul",null,[t("li",null,[t("a",{onClick:A},"\u5185\u7F51\u6D4B\u901F")]),t("li",null,[t("a",{onClick:B},"\u5916\u7F51\u6D4B\u901F")])])],512),[[wt,p.value]]),t("div",zd,[t("span",null,"IP\u5730\u5740\uFF08"+h(k(s).defaultInterface)+"\uFF09",1)]),t("div",Pd,[t("span",null," IPv4\uFF1A "+h(k(s).ipv4addr)+" \uFF08"+h(u(k(s).proto||""))+"\uFF09 ",1)]),t("div",Td,[t("span",null,"IPv6\uFF1A"+h(k(s).ipv6addr),1)]),t("div",Id,[t("span",null,"DNS\uFF08"+h(m(k(s).dnsProto))+"\uFF09",1)]),(i(!0),r(L,null,j(k(s).dnsList,ht=>(i(),r("div",Ld,[t("span",null,h(ht),1)]))),256))]),Md,t("div",Od,[t("div",Nd,[qd,t("span",Vd,[D($t,{onClick:x})]),z(t("div",Gd,[t("div",{class:"menu_background",onClick:x}),t("ul",null,[t("li",null,[D(H,{to:"/interfaceconfig"},{default:V(()=>[jd]),_:1})])])],512),[[wt,d.value]])]),t("div",Rd,[k(l).load?(i(),M(hs,{key:0,portList:k(l).portList},null,8,["portList"])):E("",!0)])])],64)}}});var Wd=Y(Ud,[["__scopeId","data-v-fd7a24a6"]]);const Hd={class:"network-container"},Zd={class:"network-container_flow"},Jd={class:"network-container_flow-container"},Xd={class:"network-container_status"},Kd=P({setup(e){return(a,o)=>(i(),r("div",Hd,[t("div",Zd,[t("div",Jd,[D(Vi)])]),t("div",Xd,[D(Wd)])]))}});var Qd=Y(Kd,[["__scopeId","data-v-6cd42792"]]);const t0={},e0={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},a0=t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),o0=[a0];function n0(e,a){return i(),r("svg",e0,o0)}var gt=Y(t0,[["render",n0]]);const i0={},r0={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},s0=Lt('\u5206\u533A\u4FE1\u606F',2),d0=[s0];function u0(e,a){return i(),r("svg",r0,d0)}var Ue=Y(i0,[["render",u0]]);const l0={},c0={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},p0=Lt('\u5168\u76D8\u683C\u5F0F\u5316',2),f0=[p0];function m0(e,a){return i(),r("svg",c0,f0)}var b0=Y(l0,[["render",m0]]);const Bt=e=>(O("data-v-3a0bca4c"),e=e(),N(),e),v0=["onSubmit"],g0=Bt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u786C\u76D8\u914D\u7F6E")],-1)),_0={class:"action-body"},h0={class:"disk-info"},x0=Bt(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),k0={key:0,class:"disk-info_mount-name"},w0={key:1,class:"disk-info_mount-name"},y0={key:0,class:"label-item"},F0=Bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),E0={class:"label-item_path"},C0={class:"label-item"},$0=Bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u683C\u5F0F\u5316\u9009\u9879")],-1)),D0={class:"label-item_value"},B0=["disabled"],Y0={key:0,value:""},A0=Bt(()=>t("option",{value:"format"},"\u683C\u5F0F\u5316",-1)),S0={key:1,value:"default"},z0={class:"label-item_value"},P0={key:0,class:"msg"},T0={key:1,class:"msg"},I0={class:"action-footer"},L0=Bt(()=>t("div",{class:"auto"},null,-1)),M0=["disabled"],O0=["disabled"],N0={key:1,class:"action result"},q0={class:"action-body"},V0=Bt(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),G0=Bt(()=>t("div",{class:"action-body_msg"},"\u683C\u5F0F\u5316\u6210\u529F",-1)),j0={key:0,class:"action-body_info"},R0={key:1,class:"action-body_info"},U0=U(" \u5DF2\u7ECF\u6210\u529F\u521D\u59CB\u5316\u5206\u533A "),W0={class:"btns"},H0=P({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){const a=e,o=()=>{a.Close&&a.Close()},n=x=>{x.preventDefault(),a.Cancel&&a.Cancel(),o()},s=x=>{a.Next&&a.Next(x),o()},c=y(!1),f=y(0),p=x=>{f.value=x},d=y(a.action=="nas"?"":"format"),l=y(),u=y(),m=()=>{switch(d.value){case"format":g();return;case"default":b();return;default:F.Warning("\u8BF7\u9009\u62E9\u9009\u7EBF");return}},b=()=>{let x="";const C=a.mount;if(C!=null&&C.mountPoint!=null&&(x=C.mountPoint),x!=""){s(x);return}F.Warning("\u65E0\u6CD5\u8BC6\u522B\u8DEF\u5F84")},g=()=>{const x=a.disk,C=a.mount;if(C){const A=C.mountPoint||C.path;if(!confirm(`\u8B66\u544A\uFF1A\u683C\u5F0F\u5316\u4F1A\u6E05\u7A7A ${A} \u5206\u533A\u6570\u636E\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C`)||!confirm(`\u662F\u5426\u786E\u5B9A\u683C\u5F0F\u5316 ${A}?`))return;_(C);return}if(x){if(!confirm(`\u8B66\u544A\uFF1A\u8BE5\u64CD\u4F5C\u5C06\u521D\u59CB\u5316 ${x.venderModel} \u786C\u76D8\u5E76\u521B\u5EFA\u5206\u533A\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C`)||!confirm("\u662F\u5426\u786E\u5B9A\u521D\u59CB\u5316?"))return;v(x);return}F.Warning("\u65E0\u6CD5\u8BC6\u522B\u6570\u636E")},v=x=>T(this,null,function*(){if(x.name==null||x.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u540D\u79F0");return}if(x.path==null||x.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u8DEF\u5F84");return}c.value=!0;const C=F.Loading("\u521D\u59CB\u5316\u4E2D...");try{const A=yield S.Nas.Disk.Init.POST({name:x.name,path:x.path});if(A!=null&&A.data){const{result:B,error:$}=A==null?void 0:A.data;$&&F.Warning($),B&&(B.errorInfo?F.Warning(B.errorInfo):(F.Success("\u521D\u59CB\u5316\u6210\u529F"),B.childrens&&B.childrens.length>0&&(u.value=B.childrens[0]),l.value=B,p(1)))}}catch(A){F.Error(A)}C.Close(),c.value=!1}),_=x=>T(this,null,function*(){if(x.path==null||x.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}c.value=!0;const C=F.Loading("\u683C\u5F0F\u5316\u4E2D...");try{const A=yield S.Nas.Disk.Partition.Format.POST({path:x.path,uuid:x.uuid,mountPoint:x.mountPoint});if(A!=null&&A.data){const{result:B,error:$}=A==null?void 0:A.data;$&&F.Warning($),B&&(F.Success("\u683C\u5F0F\u5316\u6210\u529F"),u.value=B,p(1))}}catch(A){F.Error(A)}C.Close(),c.value=!1}),w=()=>{if(u.value&&u.value.mountPoint){s(u.value.mountPoint);return}F.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")};return(x,C)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>{var A;return[f.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:nt(m,["prevent"])},[g0,t("div",_0,[t("div",h0,[x0,e.mount?(i(),r("div",k0,[t("span",null,"\u3010"+h(e.mount.total)+"\u3011",1),t("span",null,h(e.mount.mountPoint||e.mount.path),1)])):e.disk?(i(),r("div",w0,[t("span",null,"\u3010"+h(e.disk.size)+"\u3011",1),t("span",null,h(e.disk.venderModel),1)])):E("",!0)]),e.mount?(i(),r("div",y0,[F0,t("div",E0,h(e.mount.mountPoint||e.mount.path)+"\uFF08"+h(e.mount.total)+"\uFF09",1)])):E("",!0),t("div",C0,[$0,t("div",D0,[z(t("select",{"onUpdate:modelValue":C[0]||(C[0]=B=>d.value=B),required:"",disabled:e.action=="disk"},[e.mount!=null?(i(),r("option",Y0,"\u8BF7\u9009\u62E9\u9009\u9879")):E("",!0),A0,e.mount!=null?(i(),r("option",S0,"\u4E0D\u683C\u5F0F\u5316,\u4F7F\u7528\u539F\u6587\u4EF6\u7CFB\u7EDF")):E("",!0)],8,B0),[[Q,d.value]])]),t("div",z0,[d.value=="format"?(i(),r("p",P0,"\u683C\u5F0F\u5316\u4E3AEXT4\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u4F20\u8F93\u901F\u5EA6\u66F4\u5FEB")):d.value=="default"?(i(),r("p",T0)):E("",!0)])])]),t("div",I0,[L0,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:c.value},"\u8FD4\u56DE",8,M0),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:c.value},"\u4E0B\u4E00\u6B65",8,O0)])],40,v0)):f.value==1?(i(),r("div",N0,[t("div",q0,[V0,G0,l.value?(i(),r("div",j0,[U(" \u5DF2\u7ECF\u6210\u529F\u683C\u5F0F\u5316\u78C1\u76D8 "+h(l.value.venderModel)+" \u5E76\u6302\u8F7D\u5230 ",1),t("a",null,h((A=u.value)==null?void 0:A.mountPoint),1)])):E("",!0),u.value?(i(),r("div",R0,[U0,t("a",null,h(u.value.mountPoint),1)])):E("",!0),t("div",W0,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:w},h(e.action=="nas"?"\u4E0B\u4E00\u6B65":"\u5B8C\u6210"),1)])])])):E("",!0)]}),_:1})]),_:1}))}});var Z0=Y(H0,[["__scopeId","data-v-3a0bca4c"]]),Be=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Z0,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Ot=e=>(O("data-v-57d4812a"),e=e(),N(),e),J0=["onSubmit"],X0=Ot(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"})],-1)),K0={class:"action-body"},Q0={class:"disk-info"},tu=Ot(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),eu={key:0,class:"disk-info_mount-name"},au={key:1,class:"disk-info_mount-name"},ou={key:0,class:"label-item"},nu=Ot(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),iu={class:"label-item_path"},ru={class:"label-item"},su=Ot(()=>t("div",{class:"label-item_key"},[t("span",null,"\u6302\u8F7D\u70B9")],-1)),du={class:"label-item_value"},uu={class:"action-footer"},lu=Ot(()=>t("div",{class:"auto"},null,-1)),cu=["disabled"],pu=["disabled"],fu={key:1,class:"action result"},mu={class:"action-body"},bu=Ot(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),vu=Ot(()=>t("div",{class:"action-body_msg"},"\u6302\u8F7D\u6210\u529F",-1)),gu={key:0,class:"action-body_info"},_u={class:"btns"},hu=P({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){var g;const a=e,o=()=>{a.Close&&a.Close()},n=v=>{v.preventDefault(),a.Cancel&&a.Cancel(),o()},s=v=>{a.Next&&a.Next(v),o()},c=y(!1),f=y(0),p=y("/mnt/data_"+((g=a==null?void 0:a.mount)==null?void 0:g.name)),d=v=>{f.value=v};y(a.mount?"":"format"),y();const l=y(),u=()=>T(this,null,function*(){const v=a.mount;if(v==null){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A");return}if(v.path==null||v.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}if(v.uuid==null||v.uuid==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533AID");return}c.value=!0;const _=F.Loading("\u6302\u8F7D\u4E2D...");try{const w=yield S.Nas.Disk.Partition.Mount.POST({path:v.path,uuid:v.uuid,mountPoint:p.value});if(w!=null&&w.data){const{result:x,error:C}=w==null?void 0:w.data;C&&F.Warning(C),x&&(F.Success("\u6302\u8F7D\u6210\u529F"),l.value=x,d(1))}}catch(w){F.Error(w)}_.Close(),c.value=!1}),m=()=>{if(l.value&&l.value.mountPoint){s(l.value.mountPoint);return}F.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")},b=()=>{};return(v,_)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>{var w,x;return[f.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:nt(b,["prevent"])},[X0,t("div",K0,[t("div",Q0,[tu,e.mount?(i(),r("div",eu,[t("span",null,"\u3010"+h(e.mount.total)+"\u3011",1),t("span",null,h(e.mount.mountPoint),1)])):e.disk?(i(),r("div",au,[t("span",null,"\u3010"+h(e.disk.size)+"\u3011",1),t("span",null,h(e.disk.venderModel),1)])):E("",!0)]),e.mount?(i(),r("div",ou,[nu,t("div",iu,h(e.mount.path)+"\uFF08"+h(e.mount.total)+"\uFF0C"+h((x=(w=e.mount)==null?void 0:w.filesystem)==null?void 0:x.toUpperCase())+"\uFF09",1)])):E("",!0),t("div",ru,[su,t("div",du,[z(t("input",{type:"text","onUpdate:modelValue":_[0]||(_[0]=C=>p.value=C)},null,512),[[W,p.value,void 0,{trim:!0}]])])])]),t("div",uu,[lu,t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:c.value,onClick:u},"\u786E\u5B9A",8,cu),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:c.value},"\u8FD4\u56DE",8,pu)])],40,J0)):f.value==1?(i(),r("div",fu,[t("div",mu,[bu,vu,l.value?(i(),r("div",gu,[U(" \u5DF2\u6210\u529F\u5C06\u5206\u533A "+h(l.value.path)+" \u6302\u8F7D\u5230 ",1),t("a",null,h(l.value.mountPoint),1)])):E("",!0),t("div",_u,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:m},h(e.action=="nas"?"\u5B8C\u6210":"\u4E0B\u4E00\u6B65"),1)])])])):E("",!0)]}),_:1})]),_:1}))}});var xu=Y(hu,[["__scopeId","data-v-57d4812a"]]),sa=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(xu,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const da=e=>(O("data-v-31be4af0"),e=e(),N(),e),ku={class:"disk-content"},wu={class:"disk-item"},yu={class:"disk-item_name"},Fu={key:0},Eu={key:1},Cu={key:2},$u={class:"disk_value"},Du={key:0,class:"disk-item_value"},Bu={class:"value-data"},Yu={key:1,class:"disk-item_value"},Au={key:0,class:"disk-item"},Su={class:"disk-item_name"},zu=["href"],Pu={class:"disk_status"},Tu={class:"disk_status_item"},Iu={key:0,class:"tooltip-trigger disk_tip"},Lu=da(()=>t("div",{class:"tooltip-text tooltip-top"},[t("div",{class:"disk_dir_tip"},"\u5F53\u524D\u78C1\u76D8\u4E3A\u53EA\u8BFB\u72B6\u6001\uFF0C\u53EF\u80FD\u5BFC\u81F4\u65E0\u6CD5\u5199\u5165\u6570\u636E")],-1)),Mu={class:"disk_status_item"},Ou={key:0,class:"tooltip-trigger disk_tip"},Nu=da(()=>t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"disk_dir_tip"},"\u5F53\u524D\u78C1\u76D8\u786C\u76D8\u683C\u5F0F\u4E3ANTFS\uFF0C\u53EF\u80FD\u5BFC\u81F4\u786C\u76D8\u51FA\u73B0\u517C\u5BB9\u6027\u95EE\u9898\uFF0C\u5EFA\u8BAE\u683C\u5F0F\u5316\u6210EXT4\u6587\u4EF6\u7CFB\u7EDF")],-1)),qu=P({props:{part:{type:Object,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=R(()=>a.part.filesystem=="No FileSystem"),n=R(()=>o.value||!a.part.isSystemRoot&&a.part.mountPoint&&(a.part.isReadOnly||a.part.filesystem=="ntfs")),s=function(){Be({action:"disk",disk:a.disk,mount:a.part,Cancel:()=>{},Next:l=>{location.reload()}})},c=()=>{sa({action:"nas",disk:a.disk,mount:a.part,Cancel:()=>{},Next:()=>{location.reload()}})},f=()=>T(this,null,function*(){const l=F.Loading("\u5904\u7406\u4E2D...");try{const u=yield S.Nas.Disk.InitRest.POST({name:a.disk.name,path:a.disk.path});if(u!=null&&u.data){const{result:m,error:b}=u==null?void 0:u.data;b&&F.Warning(b),m&&(F.Success("\u6302\u8F7D\u6210\u529F"),location.reload())}}catch(u){F.Error(u)}l.Close()}),p=R(()=>a.part.filesystem=="Free Space"),d=R(()=>{const l=a.part.mountPoint?a.part.mountPoint:"";return l.indexOf("/mnt/")==0?"/cgi-bin/luci/admin/services/linkease/file/?path=/"+l.substring(5):"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+l});return(l,u)=>{var b;const m=X("progress-item");return i(),r("div",ku,[t("li",wu,[t("div",yu,[k(p)?(i(),r("span",Fu,"\u672A\u5206\u533A")):(i(),r("span",Eu,h(e.part.name)+h(e.part.mountPoint?"":k(o)?"\uFF08\u672A\u683C\u5F0F\u5316\uFF09":"\uFF08\u672A\u6302\u8F7D\uFF09"),1)),e.part.isSystemRoot?(i(),r("span",Cu,"\uFF08\u7CFB\u7EDF\u5206\u533A\uFF09")):E("",!0)]),t("div",$u,[e.part.mountPoint||k(p)?(i(),r("div",Du,[t("div",Bu,[D(m,{value:k(p)||!e.part.usage?0:e.part.usage,text:k(p)?"\u672A\u5206\u533A\uFF08"+e.part.total+"\uFF09":e.part.used+"/"+e.part.total,style:{backgroundColor:"#767676"}},null,8,["value","text"])])])):k(o)?E("",!0):(i(),r("div",Yu,[t("div",{class:"value-data buttondiv",onClick:c},"\u624B\u52A8\u6302\u8F7D")])),k(p)?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:f},"\u5206\u533A\u5E76\u683C\u5F0F\u5316")):k(n)?(i(),r("button",{key:3,class:"cbi-button cbi-button-apply",onClick:s},"\u683C\u5F0F\u5316\u5206\u533A")):E("",!0)])]),e.part.mountPoint?(i(),r("li",Au,[t("span",Su,[t("a",{href:k(d),target:"_blank"},h(e.part.mountPoint),9,zu)]),t("div",Pu,[t("div",Tu,[t("div",null,"\u78C1\u76D8\u8BFB\u5199\u72B6\u6001\uFF1A"+h(e.part.isReadOnly?"\u53EA\u8BFB":"\u8BFB\u5199"),1),!e.part.isSystemRoot&&e.part.isReadOnly?(i(),r("div",Iu,[D(gt),Lu])):E("",!0)]),t("div",Mu,[t("div",null,"\u78C1\u76D8\u683C\u5F0F\uFF1A"+h((b=e.part.filesystem)==null?void 0:b.toUpperCase()),1),e.part.filesystem=="ntfs"?(i(),r("div",Ou,[D(gt),Nu])):E("",!0)])])])):E("",!0)])}}});var Vu=Y(qu,[["__scopeId","data-v-31be4af0"]]);const ua=e=>(O("data-v-5fa713aa"),e=e(),N(),e),Gu={key:0,class:"action"},ju={class:"title"},Ru=ua(()=>t("div",{class:"app-container_info"},[t("span",null,"\u5206\u533A / \u6302\u8F7D\u70B9"),t("span",null,"\u5BB9\u91CF")],-1)),Uu={class:"app-container_body"},Wu=ua(()=>t("div",{class:"auto"},null,-1)),Hu=P({props:{disk:{type:Object,required:!0},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){const a=e,o=y(0),n=()=>{a.Close&&a.Close()},s=c=>{c.preventDefault(),a.Cancel&&a.Cancel(),n()};return(c,f)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[o.value==0?(i(),r("div",Gu,[t("h2",ju,"\u5206\u533A\u4FE1\u606F - "+h((e.disk.name||"?")+(e.disk.isSystemRoot?"\uFF08\u7CFB\u7EDF\u76D8\uFF09":"")),1),t("ul",null,[t("li",null,[Ru,t("div",Uu,[(i(!0),r(L,null,j(e.disk.childrens,(p,d)=>(i(),M(Vu,{key:d,part:p,disk:e.disk},null,8,["part","disk"]))),128))])])]),t("div",{class:"action-footer"},[Wu,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button"},"\u8FD4\u56DE")])])):E("",!0)]),_:1})]),_:1},8,["Close"]))}});var Zu=Y(Hu,[["__scopeId","data-v-5fa713aa"]]),Ju=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Zu,at(J({},e),{Close:()=>{n()}}));o.component("progress-item",ta),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const fe=e=>(O("data-v-eb0dbbd8"),e=e(),N(),e),Xu={key:0,class:"disk-item error"},Ku=["title"],Qu={class:"disk-item_value"},tl={class:"value-data"},el={class:"error"},al={key:1,class:"disk-item"},ol=["title"],nl={key:0,class:"disk_value"},il=fe(()=>t("div",{class:"value-data"},[t("a",{href:"/cgi-bin/luci/admin/nas/smart"},[t("span",{class:"error"}," S.M.A.R.T\u5F02\u5E38")])],-1)),rl=[il],sl={key:1,class:"disk_value"},dl={class:"disk-item_value"},ul={class:"value-data"},ll=fe(()=>t("div",{class:"disk-item-tooltip"},[t("span",null,"\u4EC5\u7EDF\u8BA1\u5DF2\u6302\u8F7D\u5206\u533A")],-1)),cl={class:"disk_icon"},pl={key:0,class:"tooltip-trigger"},fl={class:"disk_tip"},ml=fe(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"disk_dir_tip"},"\u60A8\u7684\u7CFB\u7EDF\u7A7A\u95F4\u5DF2\u4E0D\u8DB3\uFF0C\u68C0\u6D4B\u5230\u60A8\u7684Docker\u6839\u76EE\u5F55\u4F4D\u4E8E\u7CFB\u7EDF\u6839\u76EE\u5F55\u4E0A\uFF0C\u53EF\u80FD\u4F1A\u5F71\u54CD\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u5EFA\u8BAE\u4F7F\u7528Docker\u8FC1\u79FB\u5411\u5BFC\u5C06Docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\u4E0A\u3002")])],-1)),bl={key:1,class:"tooltip-trigger"},vl={class:"disk_tip"},gl=fe(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"disk_dir_tip"},"\u5206\u533A\u5B58\u5728\u5F02\u5E38\uFF0C\u70B9\u51FB\u5206\u533A\u5217\u8868\u67E5\u770B\u9519\u8BEF")])],-1)),_l={key:2,class:"disk-item load"},hl=["title"],xl={class:"disk_value"},kl={class:"disk-item_value"},wl={class:"value-data"},yl={key:3,class:"disk-item load"},Fl=["title"],El={class:"disk_value"},Cl={key:0,class:"disk-item_value"},$l={class:"value-data"},Dl={key:1,class:"disk-item_value"},Bl={class:"value-data"},Yl={class:"disk_icon"},Al=P({props:{disk:{type:Object,required:!0},smartWarning:{type:Boolean}},setup(e){const a=e,o=R(()=>a.disk.errorInfo?"error":a.disk.childrens==null||a.disk.childrens.length==0||a.disk.childrens.length==1&&a.disk.childrens[0].filesystem=="No FileSystem"?"load":a.disk.childrens.filter(p=>p.mountPoint).length==0?"unmounted":"success"),n=R(()=>{const p=a.disk;let d=p.name;return p.size&&(d+=`\u3010${p.size}\u3011`),p.venderModel&&(d+=`(${p.venderModel})`),d}),s=()=>{Be({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},c=()=>{Ju({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},f=()=>{const p=a.disk,d=p.childrens||[];sa({action:"nas",disk:p,mount:d[0],Cancel:()=>{},Next:()=>{location.reload()}})};return(p,d)=>{var u,m,b,g,v;const l=X("progress-item");return k(o)=="error"?(i(),r("li",Xu,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,Ku),t("div",Qu,[t("div",tl,[t("span",el,h(e.disk.errorInfo),1)])])])):k(o)=="success"?(i(),r("li",al,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,ol),e.disk.smartWarning&&e.smartWarning?(i(),r("div",nl,rl)):(i(),r("div",sl,[t("div",dl,[t("div",ul,[D(l,{value:e.disk.usage||0,text:`${e.disk.used}/${e.disk.total}`,style:{backgroundColor:"#767676"}},null,8,["value","text"])]),ll]),t("div",cl,[e.disk.isDockerRoot&&e.disk.isSystemRoot&&e.disk.usage&&e.disk.usage>=90?(i(),r("span",pl,[t("span",fl,[D(gt)]),ml])):E("",!0),!e.disk.isSystemRoot&&(((u=e.disk.childrens)==null?void 0:u.filter(_=>_.isReadOnly||_.filesystem=="ntfs").length)||0)>0?(i(),r("span",bl,[t("span",vl,[D(gt)]),gl])):E("",!0),!e.disk.isSystemRoot&&(((m=e.disk.childrens)==null?void 0:m.filter(_=>_.isReadOnly||_.filesystem=="ntfs").length)||0)>0?(i(),r("span",{key:2,class:"disk_infoicon",onClick:d[0]||(d[0]=_=>s())},[D(b0)])):E("",!0),t("span",{class:"disk_infoicon",onClick:d[1]||(d[1]=_=>c())},[D(Ue)])])]))])):k(o)=="load"?(i(),r("li",_l,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,hl),t("div",xl,[t("div",kl,[t("div",wl,[t("button",{onClick:d[2]||(d[2]=_=>s())},"\u683C\u5F0F\u5316\u5E76\u6302\u8F7D")])])])])):k(o)=="unmounted"?(i(),r("li",yl,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,Fl),t("div",El,[((b=e.disk.childrens)==null?void 0:b.length)==1?(i(),r("div",Cl,[t("div",$l,[t("button",{onClick:d[3]||(d[3]=_=>f())},"\u624B\u52A8\u6302\u8F7D")])])):E("",!0),(((g=e.disk.childrens)==null?void 0:g.length)||0)>1?(i(),r("div",Dl,[t("div",Bl,[t("button",{onClick:d[4]||(d[4]=_=>c())},"\u624B\u52A8\u6302\u8F7D")])])):E("",!0),t("div",Yl,[(((v=e.disk.childrens)==null?void 0:v.length)||0)>1?(i(),r("span",{key:0,class:"disk_infoicon",onClick:d[5]||(d[5]=_=>c())},[D(Ue)])):E("",!0)])])])):E("",!0)}}});var we=Y(Al,[["__scopeId","data-v-eb0dbbd8"]]);const ee=e=>(O("data-v-40555016"),e=e(),N(),e),Sl={class:"app-container"},zl={class:"app-container_title"},Pl={class:"disk_info"},Tl=U(" \u78C1\u76D8\u4FE1\u606F "),Il={class:"app-container_tool"},Ll={class:"more_icon",title:"\u67E5\u770B\u78C1\u76D8\u7BA1\u7406\u4FE1\u606F"},Ml={class:"DeviceBlock"},Ol=ee(()=>t("ul",null,[t("li",null,[t("a",{href:"/cgi-bin/luci/admin/nas/raid"},"RAID\u7BA1\u7406")]),t("li",null,[t("a",{href:"/cgi-bin/luci/admin/nas/smart"},"S.M.A.R.T.")]),t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/diskman"},"\u78C1\u76D8\u7BA1\u7406")]),t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/mounts"},"\u6302\u8F7D\u70B9")])],-1)),Nl={key:0},ql={class:"disk_loading_icon"},Vl=ee(()=>t("span",{class:"disk_loading_info"},"\u6B63\u5728\u83B7\u53D6\u78C1\u76D8\u4FE1\u606F...",-1)),Gl={key:1},jl=ee(()=>t("div",{class:"app-container_info"},[t("span",null,"\u7CFB\u7EDF\u6839\u76EE\u5F55")],-1)),Rl={class:"app-container_body"},Ul={key:2},Wl=ee(()=>t("div",{class:"app-container_info"},[t("span",null,"\u5DF2\u6302\u8F7D\u78C1\u76D8")],-1)),Hl={class:"app-container_body"},Zl={key:3},Jl=ee(()=>t("div",{class:"app-container_info"},[t("span",null,"RAID\u8BBE\u5907")],-1)),Xl={class:"app-container_body"},Kl=P({setup(e){const a=y(!1),o=it({disks:null,raidList:null}),n=()=>{S.Nas.Disk.Status.GET().then(p=>{var d;if((d=p==null?void 0:p.data)!=null&&d.result){const l=p.data.result;o.disks=l.disks||[]}})};(()=>T(this,null,function*(){try{const p=yield S.Raid.List.GET();if(p!=null&&p.data){const{success:d,error:l,result:u}=p.data;if(u&&(o.raidList=u.disks||[]),l)throw l}}catch(p){console.log(p)}}))(),n();const c=()=>{a.value=!a.value},f=()=>{ct.installAndGo("luci-app-linkease","\u6613\u6709\u4E91","/cgi-bin/luci/admin/services/linkease/file/","app-meta-linkease")};return(p,d)=>{var m,b;const l=X("GlHelp"),u=X("icon-loading");return i(),r("div",Sl,[t("ul",null,[t("li",null,[t("div",zl,[t("span",Pl,[Tl,D(l,{type:"disk"})]),t("div",Il,[t("div",{class:"app-container_configure",onClick:f}," \u6587\u4EF6\u7BA1\u7406 "),t("span",Ll,[D($t,{onClick:c})])]),z(t("div",Ml,[t("div",{class:"menu_background",onClick:c}),Ol],512),[[wt,a.value]])])]),!k(o).disks&&!k(o).raidList?(i(),r("li",Nl,[t("div",ql,[D(u,{size:38,color:"currentColor"}),Vl])])):E("",!0),k(o).disks?(i(),r("li",Gl,[jl,t("div",Rl,[(i(!0),r(L,null,j((m=k(o).disks)==null?void 0:m.filter(g=>g.isSystemRoot),(g,v)=>(i(),M(we,{key:v,disk:g},null,8,["disk"]))),128))])])):E("",!0),k(o).disks?(i(),r("li",Ul,[Wl,t("div",Hl,[(i(!0),r(L,null,j((b=k(o).disks)==null?void 0:b.filter(g=>!g.isSystemRoot),(g,v)=>(i(),M(we,{key:v,disk:g,smartWarning:!0},null,8,["disk"]))),128))])])):E("",!0),k(o).raidList&&k(o).raidList.length>0?(i(),r("li",Zl,[Jl,t("div",Xl,[(i(!0),r(L,null,j(k(o).raidList,(g,v)=>(i(),M(we,{key:v,disk:g},null,8,["disk"]))),128))])])):E("",!0)])])}}});var Ql=Y(Kl,[["__scopeId","data-v-40555016"]]);const la=e=>(O("data-v-13ca629c"),e=e(),N(),e),t1={class:"app-container_samba"},e1={key:0,class:"sambas-item"},a1=la(()=>t("div",{class:"sambas-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),o1={class:"sambas-item_value"},n1=la(()=>t("li",{class:"sambas-item"},[t("div",{class:"sambas-item_name tit"},[t("span",null,"\u5730\u5740")]),t("div",{class:"sambas-item_value tit"},[t("span",null,"\u76EE\u5F55")])],-1)),i1={class:"samba-item"},r1={class:"samba-item_name"},s1=["title"],d1=["href"],u1=P({props:{sambas:{type:Array}},setup(e){const a=window.location.hostname;return(o,n)=>{var s;return i(),r("ul",t1,[e.sambas?(i(),r("li",e1,[a1,t("div",o1,[t("span",null,h((s=e.sambas)!=null&&s.length?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])])):E("",!0),n1,(i(!0),r(L,null,j(e.sambas,c=>(i(),r("li",i1,[t("div",r1,[t("span",null,"smb://"+h(k(a))+"/"+h(c.shareName),1)]),t("div",{class:"samba-item_value",title:c.path},[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+c.path},h(c.path),9,d1)],8,s1)]))),256))])}}});var l1=Y(u1,[["__scopeId","data-v-13ca629c"]]);const me=e=>(O("data-v-b4608492"),e=e(),N(),e),c1={class:"webdav-item"},p1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),f1={class:"webdav-item_value"},m1={key:0,class:"webdav-item"},b1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u6302\u8F7D\u8DEF\u5F84:")],-1)),v1={class:"webdav-item_value"},g1=["href"],_1={key:1,class:"webdav-item"},h1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u670D\u52A1\u8DEF\u5F84:")],-1)),x1={class:"webdav-item_value"},k1=["href"],w1={key:2,class:"webdav-item"},y1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u8D26\u53F7:")],-1)),F1={class:"webdav-item_value"},E1=P({props:{webdav:{type:Object}},setup(e){const a=e,o=R(()=>{var n;return`http://${location.hostname}:${(n=a.webdav)==null?void 0:n.port}`});return(n,s)=>{var c,f,p,d,l,u,m;return i(),r(L,null,[t("li",c1,[p1,t("div",f1,[t("span",null,h((c=e.webdav)!=null&&c.path?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])]),(f=e.webdav)!=null&&f.path?(i(),r("li",m1,[b1,t("div",v1,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=e.webdav)==null?void 0:p.path)},h((d=e.webdav)==null?void 0:d.path),9,g1)])])):E("",!0),(l=e.webdav)!=null&&l.port?(i(),r("li",_1,[h1,t("div",x1,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,k1)])])):E("",!0),(u=e.webdav)!=null&&u.username?(i(),r("li",w1,[y1,t("div",F1,[t("span",null,h((m=e.webdav)==null?void 0:m.username),1)])])):E("",!0)],64)}}});var C1=Y(E1,[["__scopeId","data-v-b4608492"]]);const Ye=e=>(O("data-v-4a3b6e0a"),e=e(),N(),e),$1={class:"disk-item"},D1=Ye(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563338465",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2216",width:"128",height:"128"},[t("path",{d:"M998.4 711.68l-119.467-512c-6.826-42.667-42.666-75.093-87.04-76.8H232.107c-44.374 1.707-80.214 35.84-87.04 78.507L25.6 711.68c-5.12 13.653-6.827 29.013-6.827 42.667 0 76.8 63.147 139.946 141.654 139.946H865.28c78.507 0 141.653-63.146 141.653-139.946 0-13.654-3.413-29.014-8.533-42.667zM394.24 366.933c1.707-51.2 56.32-92.16 124.587-92.16S640 315.733 640 365.227c44.373-1.707 81.92 23.893 83.627 58.026s-34.134 63.147-78.507 64.854h-6.827l-245.76 1.706c-44.373 0-80.213-27.306-80.213-59.733 0-35.84 37.547-63.147 81.92-63.147z m471.04 459.094H160.427c-39.254 0-69.974-30.72-69.974-69.974s32.427-69.973 69.974-69.973H865.28c39.253 0 69.973 30.72 69.973 69.973 1.707 37.547-30.72 69.974-69.973 69.974z m-35.84-92.16c-11.947 0-22.187 8.533-23.893 20.48 0 11.946 8.533 22.186 20.48 23.893h3.413c11.947 0 22.187-10.24 22.187-22.187 0-13.653-8.534-22.186-22.187-22.186z m-46.08 22.186c0-25.6 20.48-46.08 46.08-46.08s46.08 20.48 46.08 46.08-20.48 46.08-46.08 46.08-46.08-20.48-46.08-46.08z","p-id":"2217"})])],-1)),B1={class:"disk-item_f"},Y1={class:"disk-item_venderModel"},A1={class:"disk-item_used"},S1=Ye(()=>t("div",{class:"auto"},null,-1)),z1={class:"disk-item-r"},P1={class:"disk-children"},T1=["onClick"],I1=Ye(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563581459",class:"icon",viewBox:"0 0 1228 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7132",width:"128",height:"128"},[t("path",{d:"M525.2096 145.3568c1.9968-45.568-35.6864-99.1232-57.4976-99.1232H57.4976C15.872 79.9232 17.8176 145.408 17.8176 145.408h507.392z",fill:"#ECC049","p-id":"7133"}),t("path",{d:"M21.8112 143.36L19.8144 825.1392c0 75.3152 75.3152 152.576 150.6304 152.576h887.9104c75.264 0 150.6304-75.264 150.6304-152.576V297.984c0-75.264-75.3152-152.576-150.6304-152.576h-434.0224L21.8112 143.36z",fill:"#FFD658","p-id":"7134"})])],-1)),L1={key:0},M1={key:1},O1=P({props:{disk:{type:Object,required:!0},currDisk:{type:Object},currMountPoint:{type:Object},onDisk:{type:Function,required:!0}},setup(e){var s,c;const a=e,o=y(!1);a.currDisk!=null&&((s=a.currDisk)==null?void 0:s.venderModel)==((c=a.disk)==null?void 0:c.venderModel)&&(o.value=!0);const n=f=>{o.value=!o.value,a.onDisk(f,null)};return(f,p)=>{var d;return i(),r("ul",$1,[t("li",{class:ot(["disk-info",{on:e.disk.venderModel==((d=e.currDisk)==null?void 0:d.venderModel),nopoint:e.disk.childrens==null||e.disk.childrens.length==0}]),onClick:p[0]||(p[0]=l=>n(e.disk))},[D1,t("div",B1,[t("div",Y1,h(e.disk.venderModel),1),t("div",A1,h(e.disk.used)+"/"+h(e.disk.size),1)]),S1,t("div",z1,h(e.disk.path),1)],2),z(t("div",P1,[(i(!0),r(L,null,j(e.disk.childrens,l=>{var u,m;return i(),r("li",{class:ot(["disk-children_item",{on:l.uuid==((u=e.currMountPoint)==null?void 0:u.uuid)&&l.path==((m=e.currMountPoint)==null?void 0:m.path)}]),onClick:b=>e.onDisk(e.disk,l)},[I1,l.mountPoint?(i(),r("span",L1," \u3010"+h(l.filesystem)+"\u3011 "+h(l.mountPoint)+" \uFF08"+h(l.used)+"/"+h(l.total)+"\uFF09 ["+h(l.uuid)+"] ",1)):(i(),r("span",M1," \u3010"+h(l.filesystem)+"\u3011 "+h(l.mountPoint||l.path||"\u672A\u6302\u8F7D\u78C1\u76D8")+" ["+h(l.uuid)+"] ",1))],10,T1)}),256))],512),[[wt,o.value]])])}}});var We=Y(O1,[["__scopeId","data-v-4a3b6e0a"]]);const Ae=e=>(O("data-v-12d0f96b"),e=e(),N(),e),N1={class:"action list"},q1=Ae(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u8BF7\u9009\u62E9\u4E00\u4E2A\u786C\u76D8\u6216\u5206\u533A")],-1)),V1={class:"action-body"},G1={class:"disk-list"},j1=Ae(()=>t("div",{class:"action-msg"},[t("span",null,[U(" \u60F3\u8981\u66F4\u7CBE\u786E\u7684\u914D\u7F6E\uFF1F\u8BF7\u524D\u5F80 "),t("a",{href:"/cgi-bin/luci/admin/system/diskman"},"\u9AD8\u7EA7\u8BBE\u7F6E")])],-1)),R1=Ae(()=>t("div",{class:"auto"},null,-1)),U1=P({props:{Cancel:{type:Function},Next:{type:Function},Close:{type:Function}},setup(e){const a=e,o=y(!0),n=it({disks:[],raids:[]});(()=>T(this,null,function*(){const b=yield Promise.all([S.Nas.Disk.Status.GET(),S.Raid.List.GET()]);try{if(b[0]){const g=b[0];g!=null&&g.data.result&&(n.disks=(g==null?void 0:g.data.result.disks)||[])}if(b[1]){const g=b[1];g.data.result&&(n.raids=g.data.result.disks||[])}}catch(g){F.Warning(g)}}))();const c=y(),f=y(),p=(b,g)=>{c.value=b,f.value=g},d=()=>{a.Close&&a.Close()},l=()=>{a.Cancel&&a.Cancel(),d()},u=b=>{a.Next&&a.Next(b),d()},m=()=>{if(c.value==null){F.Warning("\u8BF7\u9009\u62E9\u76EE\u6807\u786C\u76D8");return}if(c.value.childrens!=null&&c.value.childrens.length>0&&f.value==null){F.Warning("\u8BF7\u9009\u62E9\u786C\u76D8\u5206\u533A");return}if(f.value!=null&&(f.value.mountPoint==null||f.value.mountPoint=="")){F.Warning("\u8BE5\u5206\u533A\u5C1A\u672A\u6302\u8F7D\uFF0C\u8BF7\u5148\u53BB\u6302\u8F7D");return}o.value=!1,Be({action:"nas",disk:c.value,mount:f.value,Cancel:()=>{o.value=!0},Next:b=>{u(b)}})};return(b,g)=>o.value?(i(),M(et,{key:0,type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("div",N1,[q1,t("div",V1,[t("div",G1,[(i(!0),r(L,null,j(k(n).disks,v=>(i(),M(We,{disk:v,onDisk:p,currDisk:c.value,currMountPoint:f.value},null,8,["disk","currDisk","currMountPoint"]))),256)),(i(!0),r(L,null,j(k(n).raids,v=>(i(),M(We,{disk:v,onDisk:p,currDisk:c.value,currMountPoint:f.value},null,8,["disk","currDisk","currMountPoint"]))),256))])]),j1,t("div",{class:"action-footer"},[R1,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:l,type:"button"},"\u8FD4\u56DE"),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:m,type:"button"},"\u4E0B\u4E00\u6B65")])])]),_:1})]),_:1})):E("",!0)}});var W1=Y(U1,[["__scopeId","data-v-12d0f96b"]]),H1=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(W1,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const be=e=>(O("data-v-67a63e8f"),e=e(),N(),e),Z1={class:"action"},J1={class:"action-body"},X1=be(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),K1=be(()=>t("h2",{class:"title"},"\u670D\u52A1\u5DF2\u542F\u52A8",-1)),Q1={class:"info"},tc=be(()=>t("span",null,"\u524D\u5F80",-1)),ec=["href"],ac=be(()=>t("span",null,"\u914D\u7F6E",-1)),oc=P({props:{Close:Function},setup(e){const a=e,o=y(""),n=R(()=>`http://${location.hostname}:${o.value}`);(()=>{S.Nas.Linkease.Enable.POST().then(f=>{var p,d;(p=f==null?void 0:f.data)!=null&&p.result&&(o.value=((d=f.data.result)==null?void 0:d.port)||"")})})();const c=()=>{a.Close&&a.Close(),location.reload()};return(f,p)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("div",Z1,[t("div",J1,[X1,K1,t("div",Q1,[tc,t("a",{href:k(n),target:"_blank",rel:"noopener noreferrer"},h(k(n)),9,ec),ac]),t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:c},"\u5173\u95ED")])])])]),_:1})]),_:1}))}});var nc=Y(oc,[["__scopeId","data-v-67a63e8f"]]),ic=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(nc,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const ae=e=>(O("data-v-30ef6ccb"),e=e(),N(),e),rc=["onSubmit"],sc=ae(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Webdav\u5171\u4EAB\u914D\u7F6E")],-1)),dc={class:"action-body"},uc={class:"label-item"},lc=ae(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),cc={class:"label-item_value"},pc=["value"],fc={class:"label-item"},mc=ae(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),bc={class:"label-item_value"},vc={class:"label-item"},gc=ae(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),_c={class:"label-item_value"},hc={class:"action-footer"},xc=ae(()=>t("div",{class:"auto"},null,-1)),kc=["disabled"],wc=["disabled"],yc=P({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=d=>{d.preventDefault(),a.Close&&a.Close()},n=y(!1),s=y({username:"root",password:"",rootPath:a.rootPath});(()=>T(this,null,function*(){const d=F.Loading("\u52A0\u8F7D\u4E2D...");n.value=!0;try{const l=yield S.Nas.Webdav.Status.GET();if(l!=null&&l.data){const{result:u,error:m}=l.data;if(m){F.Warning(m);return}u&&(u.username&&(s.value.username=u.username),u.password&&(s.value.password=u.password))}}catch(l){F.Error(l)}n.value=!1,d.Close()}))();const f=()=>{const d=s.value;if(d.rootPath==""){F.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(d.username==""){F.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(d.password==""){F.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}p(d)},p=d=>T(this,null,function*(){n.value=!0;const l=F.Loading("\u521B\u5EFA\u4E2D...");try{const u=yield S.Nas.Webdav.Create.POST(d);if(u!=null&&u.data){const{error:m,result:b}=u.data;m&&F.Warning(m),b&&(F.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(u){F.Error(u)}l.Close(),n.value=!1});return(d,l)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("form",{class:"action",onSubmit:nt(f,["prevent"])},[sc,t("div",dc,[t("div",uc,[lc,t("div",cc,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,pc)])]),t("div",fc,[mc,t("div",bc,[z(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":l[0]||(l[0]=u=>s.value.username=u)},null,512),[[W,s.value.username,void 0,{trim:!0}]])])]),t("div",vc,[gc,t("div",_c,[z(t("input",{type:"password","onUpdate:modelValue":l[1]||(l[1]=u=>s.value.password=u)},null,512),[[W,s.value.password,void 0,{trim:!0}]])])])]),t("div",hc,[xc,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,kc),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,wc)])],40,rc)]),_:1})]),_:1}))}});var Fc=Y(yc,[["__scopeId","data-v-30ef6ccb"]]),Ec=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Fc,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Yt=e=>(O("data-v-3ef9e48f"),e=e(),N(),e),Cc=["onSubmit"],$c=Yt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Samba\u5171\u4EAB\u914D\u7F6E")],-1)),Dc={class:"action-body"},Bc={class:"label-item"},Yc=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),Ac={class:"label-item_value"},Sc=["value"],zc={class:"label-item"},Pc=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5171\u4EAB\u540D\uFF08\u5EFA\u8BAE\u4F7F\u7528\u82F1\u6587\u5B57\u6BCD\uFF09")],-1)),Tc={class:"label-item_value"},Ic={class:"label-item"},Lc=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),Mc={class:"label-item_value"},Oc={class:"label-item"},Nc=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),qc={class:"label-item_value"},Vc={class:"samba-item"},Gc={class:"samba-item_allow"},jc=Yt(()=>t("label",{for:"allow",class:"samba-allow"},"\u5141\u8BB8\u65E7\u534F\u8BAE\u4E0E\u8EAB\u4EFD\u9A8C\u8BC1(\u4E0D\u5B89\u5168)",-1)),Rc={class:"samba-item_tips"},Uc={class:"tooltip-trigger"},Wc={class:"samba_tip"},Hc=Yt(()=>t("span",{class:"samba_dir_tip"},"\u517C\u5BB9\u4E00\u4E9B\u7535\u89C6\u6216\u8005\u7535\u89C6\u76D2\u5B50",-1)),Zc={class:"action-footer"},Jc=Yt(()=>t("div",{class:"auto"},null,-1)),Xc=["disabled"],Kc=["disabled"],Qc=P({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=p=>{p.preventDefault(),a.Close&&a.Close()},n=y(!1),s=y({shareName:"",username:"",password:"",rootPath:a.rootPath,allowLegacy:!1}),c=()=>{const p=s.value;if(p.rootPath==""){F.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.shareName==""){F.Warning("\u5171\u4EAB\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.username==""){F.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.password==""){F.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}const d=yt.checkSmabaUserName(p.username);if(d!==!0){F.Warning(`${d}`);return}f(p)},f=p=>T(this,null,function*(){n.value=!0;const d=F.Loading("\u521B\u5EFA\u4E2D...");try{const l=yield S.Nas.Samba.Create.POST(p);if(l!=null&&l.data){const{error:u,result:m}=l.data;u&&F.Warning(u),m&&(F.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(l){F.Error(l)}d.Close(),n.value=!1});return(p,d)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("form",{class:"action",onSubmit:nt(c,["prevent"])},[$c,t("div",Dc,[t("div",Bc,[Yc,t("div",Ac,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,Sc)])]),t("div",zc,[Pc,t("div",Tc,[z(t("input",{type:"text","onUpdate:modelValue":d[0]||(d[0]=l=>s.value.shareName=l),required:"",placeholder:"\u5171\u4EAB\u540D\u79F0"},null,512),[[W,s.value.shareName,void 0,{trim:!0}]])])]),t("div",Ic,[Lc,t("div",Mc,[z(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":d[1]||(d[1]=l=>s.value.username=l)},null,512),[[W,s.value.username,void 0,{trim:!0}]])])]),t("div",Oc,[Nc,t("div",qc,[z(t("input",{type:"password","onUpdate:modelValue":d[2]||(d[2]=l=>s.value.password=l)},null,512),[[W,s.value.password,void 0,{trim:!0}]])])]),t("div",Vc,[t("div",Gc,[z(t("input",{type:"checkbox",id:"allow","onUpdate:modelValue":d[3]||(d[3]=l=>s.value.allowLegacy=l)},null,512),[[It,s.value.allowLegacy]]),jc]),t("div",Rc,[t("span",Uc,[t("span",Wc,[D(gt)]),Hc])])])]),t("div",Zc,[Jc,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,Xc),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,Kc)])],40,Cc)]),_:1})]),_:1}))}});var t2=Y(Qc,[["__scopeId","data-v-3ef9e48f"]]),e2=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(t2,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Vt=e=>!Array.isArray(window.quickstart_features)||window.quickstart_features.indexOf(e)!=-1,Ut=e=>(O("data-v-650e3bd4"),e=e(),N(),e),a2={key:0,class:"action"},o2=Ut(()=>t("h2",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528 NAS \u914D\u7F6E\u5411\u5BFC",-1)),n2=Ut(()=>t("h3",{class:"desc"},"\u8BF7\u9009\u62E9\u9700\u8981\u6DFB\u52A0\u7684NAS\u670D\u52A1",-1)),i2=Ut(()=>t("option",{value:"linkease"},"\u8DE8\u8BBE\u5907\u5171\u4EAB\uFF08\u6613\u6709\u4E91\uFF09",-1)),r2=Ut(()=>t("option",{value:"samba"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Samba\uFF09",-1)),s2=Ut(()=>t("option",{value:"webdav"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08WebDAV\uFF09",-1)),d2=[i2,r2,s2],u2={key:0,class:"tips"},l2=U("\u5982\u9700\u5BF9 Samba \u6216 WebDAV \u8FDB\u884C\u66F4\u7EC6\u81F4\u7684\u6743\u9650\u63A7\u5236\uFF0C\u8BF7\u4F7F\u7528\u201C"),c2=Ut(()=>t("a",{href:"/cgi-bin/luci/admin/nas/unishare"},"\u7EDF\u4E00\u6587\u4EF6\u5171\u4EAB",-1)),p2=U("\u201D"),f2=[l2,c2,p2],m2={class:"btns"},b2=["disabled"],v2=P({props:{setup:Number,Close:{type:Function,required:!0}},setup(e){const a=e,o=y(!0),n=y("linkease"),s=y(!1),c=y(a.setup||0),f=()=>{a.Close&&a.Close()},p=()=>T(this,null,function*(){switch(n.value){case"webdav":yield d();break;case"samba":yield u();break;case"linkease":yield l();break}}),d=()=>T(this,null,function*(){s.value=!0,(yield ct.checkAndInstallApp("app-meta-gowebdav","GoWebdav"))&&m(),s.value=!1}),l=()=>T(this,null,function*(){s.value=!0,(yield ct.checkAndInstallApp("linkease","\u6613\u6709\u4E91","app-meta-linkease"))&&b(),s.value=!1}),u=()=>T(this,null,function*(){s.value=!0;const _=F.Loading("\u914D\u7F6E\u4E2D...");m(),_.Close(),s.value=!1}),m=()=>{s.value=!1,o.value=!1,H1({Cancel:()=>{o.value=!0},Next:_=>{switch(n.value){case"webdav":g(_);break;case"samba":v(_);break}}})},b=()=>{ic({}),f()},g=_=>{Ec({rootPath:_}),f()},v=_=>{e2({rootPath:_}),f()};return(_,w)=>o.value?(i(),M(et,{key:0,Close:e.Close,type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[c.value==0?(i(),r("div",a2,[o2,n2,t("form",null,[t("label",null,[z(t("select",{"onUpdate:modelValue":w[0]||(w[0]=x=>n.value=x)},d2,512),[[Q,n.value]])])]),k(Vt)("unishare")?(i(),r("div",u2,f2)):E("",!0),t("div",m2,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:p,type:"button",disabled:s.value},"\u4E0B\u4E00\u6B65",8,b2),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f,type:"button"},"\u53D6\u6D88")])])):E("",!0)]),_:1})]),_:1},8,["Close"])):E("",!0)}});var g2=Y(v2,[["__scopeId","data-v-650e3bd4"]]),ca=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(g2,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Se=e=>(O("data-v-edf68726"),e=e(),N(),e),_2={class:"app-container_linkease"},h2={class:"linkease-item"},x2=Se(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),k2={class:"linkease-item_value"},w2={key:0,class:"configure"},y2={key:0,class:"linkease-item"},F2=Se(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u670D\u52A1\u5730\u5740:")],-1)),E2={class:"linkease-item_value"},C2=["href"],$2=Se(()=>t("div",null,[t("a",{href:" https://app.linkease.com/",target:"_blank"},"\u4E0B\u8F7D\u6613\u6709\u4E91\u5BA2\u6237\u7AEF\uFF0C\u968F\u65F6\u968F\u5730\u76F8\u518C\u5907\u4EFD\u3001\u8FDC\u7A0B\u8BBF\u95EE")],-1)),D2=P({props:{linkease:{type:Object}},setup(e){const a=e,o=R(()=>{var s;return`http://${location.hostname}:${(s=a.linkease)==null?void 0:s.port}`}),n=()=>{ca({setup:0})};return(s,c)=>{var f,p,d;return i(),r("ul",_2,[t("li",h2,[x2,t("div",k2,[(f=e.linkease)!=null&&f.enabel?(i(),r("span",w2,"\u5DF2\u914D\u7F6E")):(i(),r("span",{key:1,class:"configure enabel",onClick:c[0]||(c[0]=l=>n())},"\u672A\u914D\u7F6E"))])]),(p=e.linkease)!=null&&p.enabel?(i(),r(L,{key:0},[(d=e.linkease)!=null&&d.port?(i(),r("li",y2,[F2,t("div",E2,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,C2)])])):E("",!0)],64)):E("",!0),$2])}}});var B2=Y(D2,[["__scopeId","data-v-edf68726"]]);const pa=e=>(O("data-v-8376a10e"),e=e(),N(),e),Y2={class:"app-container"},A2={class:"app-container_title"},S2=pa(()=>t("span",null,"\u5B58\u50A8\u670D\u52A1",-1)),z2={class:"app-container_tool"},P2={class:"more_icon",title:"\u67E5\u770B\u5B58\u50A8\u670D\u52A1\u4FE1\u606F"},T2={class:"DeviceBlock"},I2=pa(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/services/samba4"},"SAMBA\u9AD8\u7EA7\u914D\u7F6E")],-1)),L2={class:"app-container_body"},M2={class:"app-container_nas-menu"},O2=P({setup(e){const a=y(!1),o=y("linkease"),n=y(),s=Qe();(()=>{S.Nas.Service.Status.GET().then(l=>{var u;if((u=l==null?void 0:l.data)!=null&&u.result){const m=l.data.result;n.value=m,m.webdav&&(s.webdav=m.webdav)}})})();const f=()=>{ca({setup:0})},p=()=>{a.value=!a.value},d=()=>{p(),ct.installAndGo("app-meta-gowebdav","GoWebDAV","/cgi-bin/luci/admin/nas/gowebdav")};return(l,u)=>{var b,g,v;const m=X("GlHelp");return i(),r("div",Y2,[t("div",A2,[t("span",null,[S2,D(m,{type:"store"})]),t("div",z2,[t("div",{class:"app-container_configure",onClick:f},"\u5FEB\u901F\u914D\u7F6E"),t("span",P2,[D($t,{onClick:p})])]),z(t("div",T2,[t("div",{class:"menu_background",onClick:p}),t("ul",null,[I2,t("li",null,[t("a",{onClick:d},"WebDAV\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[wt,a.value]])]),t("div",L2,[t("ul",M2,[t("button",{onClick:u[0]||(u[0]=_=>o.value="linkease"),class:ot({on:o.value=="linkease"})},"\u6613\u6709\u4E91",2),t("button",{onClick:u[1]||(u[1]=_=>o.value="samba"),class:ot({on:o.value=="samba"})},"SAMBA",2),t("button",{onClick:u[2]||(u[2]=_=>o.value="webdav"),class:ot({on:o.value=="webdav"})},"WEBDAV",2)]),o.value=="samba"?(i(),M(l1,{key:0,sambas:(b=n.value)==null?void 0:b.sambas},null,8,["sambas"])):o.value=="webdav"?(i(),M(C1,{key:1,webdav:(g=n.value)==null?void 0:g.webdav},null,8,["webdav"])):o.value=="linkease"?(i(),M(B2,{key:2,linkease:(v=n.value)==null?void 0:v.linkease},null,8,["linkease"])):E("",!0)])])}}});var N2=Y(O2,[["__scopeId","data-v-8376a10e"]]);const ve=e=>(O("data-v-3fd3a42d"),e=e(),N(),e),q2={class:"app-container_docker"},V2={class:"docker-item"},G2=ve(()=>t("div",{class:"docker-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),j2={key:0,class:"docker-item_value"},R2=ve(()=>t("span",{class:"configure"},"\u672A\u5B89\u88C5",-1)),U2=[R2],W2={key:1,class:"docker-item_value"},H2={class:"input-switch"},Z2=["value","disabled"],J2=ve(()=>t("em",null,null,-1)),X2=[J2],K2={key:0,class:"docker-item"},Q2=ve(()=>t("div",{class:"docker-item_name"},[t("span",null,"Docker\u6839\u76EE\u5F55\uFF1A")],-1)),t6={class:"docker-item_value"},e6={class:"configure enabel"},a6={key:0},o6={class:"tooltip-trigger"},n6={class:"docker_tip"},i6={class:"tooltip-text tooltip-top"},r6={class:"docker_dir_tip"},s6=P({props:{docker:{type:Object}},setup(e){var c;const a=e,o=R(()=>{var f;return((f=a.docker)==null?void 0:f.status)!="not installed"}),n=it({enable:((c=a.docker)==null?void 0:c.status)=="running",disabled:!1}),s=()=>T(this,null,function*(){n.disabled=!0;try{const f=yield S.Guide.DockerSwitch.POST({enable:n.enable});if(f!=null&&f.data){const{success:p,error:d}=f.data;if(d)throw n.enable=!n.enable,d;(p||0)==0}}catch(f){F.Warning(`${f}`)}finally{n.disabled=!1}});return(f,p)=>{var d,l,u,m;return i(),r("ul",q2,[t("li",V2,[G2,(d=a.docker)!=null&&d.status?(i(),r(L,{key:0},[k(o)?(i(),r("div",W2,[t("label",H2,[z(t("input",{type:"checkbox",hidden:"",value:!k(n).enable,"onUpdate:modelValue":p[0]||(p[0]=b=>k(n).enable=b),disabled:k(n).disabled,onChange:s},null,40,Z2),[[It,k(n).enable]]),t("span",{class:ot(k(n).enable?"enable":"close")},X2,2)])])):(i(),r("div",j2,U2))],64)):E("",!0)]),((l=e.docker)==null?void 0:l.status)=="running"?(i(),r("li",K2,[Q2,t("div",t6,[t("span",e6,h((u=e.docker)==null?void 0:u.path),1),(m=e.docker)!=null&&m.errorInfo?(i(),r("span",a6,[t("span",o6,[t("span",n6,[D(gt)]),t("div",null,[t("div",i6,[t("span",r6,h(e.docker.errorInfo),1)])])])])):E("",!0)])])):E("",!0)])}}});var d6=Y(s6,[["__scopeId","data-v-3fd3a42d"]]);const u6={},l6={width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},c6=t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),p6=[c6];function f6(e,a){return i(),r("svg",l6,p6)}var m6=Y(u6,[["render",f6]]);const pt=e=>(O("data-v-308e4b48"),e=e(),N(),e),b6={key:0,class:"action"},v6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),g6=pt(()=>t("p",{class:"desc"},"\u5F53\u7CFB\u7EDF\u6839\u76EE\u5F55\u7A7A\u95F4\u4E0D\u8DB3\u65F6\uFF0C\u53EF\u5C06docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\uFF0C\u4EE5\u4FDD\u8BC1\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C:",-1)),_6={key:1,class:"action"},h6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),x6=pt(()=>t("p",{class:"desc"},"\u5F53\u7CFB\u7EDF\u6839\u76EE\u5F55\u7A7A\u95F4\u4E0D\u8DB3\u65F6\uFF0C\u53EF\u5C06docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\uFF0C\u4EE5\u4FDD\u8BC1\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C:",-1)),k6={class:"roots"},w6=pt(()=>t("span",{class:"roots_tit"},"Docker\u6839\u76EE\u5F55\uFF1A",-1)),y6={class:"root"},F6={class:"move"},E6=pt(()=>t("span",{class:"roots_tit"},"\u8FC1\u79FB\u5230\uFF1A",-1)),C6={key:0},$6=["onSubmit"],D6={class:"select-editable"},B6=pt(()=>t("option",{selected:"",value:null},"\u8BF7\u9009\u62E9\u8FC1\u79FB\u5730\u5740",-1)),Y6=["value"],A6=pt(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),S6={key:1,class:"tips"},z6={class:"tips_content"},P6=pt(()=>t("span",{class:"tip"},"\u68C0\u6D4B\u5230\u60A8\u8FD8\u6CA1\u6709\u6302\u8F7D\u5916\u7F6E\u786C\u76D8\u6216\u5206\u533A\u5C0F\u4E8E8GB\uFF0C\u9700\u8981\u60A8\u63A5\u4E0A\u786C\u76D8\u5E76\u683C\u5F0F\u5316\u6216\u624B\u52A8\u6302\u8F7D\u786C\u76D8\u540E\uFF0C\u518D\u6267\u884CDocker\u8FC1\u79FB\u5411\u5BFC\uFF0C\u5C06Docker\u8FC1\u79FB\u5230\u76EE\u6807\u786C\u76D8\u3002",-1)),T6={key:0,class:"btns"},I6={key:1,class:"btns"},L6={key:2,class:"action docker_success"},M6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),O6={class:"finished"},N6=pt(()=>t("p",{class:"successed"},"\u8FC1\u79FB\u6210\u529F\uFF01",-1)),q6={key:3,class:"action docker_download"},V6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),G6={class:"finished"},j6=pt(()=>t("p",{class:"successed"},"\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0D\u4E3A\u7A7A",-1)),R6={class:"docker_moves"},U6={class:"moves change"},W6=pt(()=>t("label",{for:"move"},"\u66F4\u6362\u76EE\u5F55\uFF08\u4E0D\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u4EC5\u5C06docker\u76EE\u5F55\u4FEE\u6539\u4E3A\u76EE\u6807\u8DEF\u5F84\uFF09",-1)),H6={class:"moves"},Z6=pt(()=>t("label",{for:"cover"},"\u8986\u76D6\u8FC1\u79FB\uFF08\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u7EE7\u7EED\u8FC1\u79FB\u4F1A\u6E05\u7A7A\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0B\u7684\u6587\u4EF6\uFF09",-1)),J6={class:"btns"},X6=P({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=y(),n=y(),s=y(0),c=y("null"),f=y(""),p=y(),d=y(!1),l=y("");(()=>{S.Nas.Disk.Status.GET().then(x=>{x!=null&&x.data.result&&(p.value=x==null?void 0:x.data.result)}),S.Guide.DockerStatus.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const A=x.data.result;o.value=A}}),S.Guide.DockerPartitionList.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const A=x.data.result;n.value=A}})})();const m=x=>{let C=c.value;if(C=="useInput"&&(C=f.value),C==null||C=="null"||C=="")return;const A=F.Loading("\u6B63\u5728\u8FC1\u79FB\u4E2D...");S.Guide.DockerTransfer.POST({path:C,force:x,overwriteDir:!!l.value}).then(B=>{var $;if(B!=null&&B.data){if((B.data.success||0)==0){if(($=B.data.result)!=null&&$.emptyPathWarning){d.value=!0,s.value=2;return}s.value=1;return}else if(B.data.error)throw B.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(B=>{F.Error(B)}).finally(()=>A.Close())},b=()=>{d.value=!1,m(!1)},g=x=>{x.preventDefault(),a.Close&&a.Close()},v=x=>{x.preventDefault(),location.reload()},_=x=>{x.preventDefault(),s.value=0},w=x=>{x.preventDefault(),m(!0)};return(x,C)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>{var A,B,$,q,H,G;return[s.value==-1?(i(),r("div",b6,[v6,g6,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:g},"\u53D6\u6D88")])])):s.value==0?(i(),r("div",_6,[h6,x6,t("div",k6,[w6,t("span",y6,h((A=o.value)==null?void 0:A.path),1)]),t("div",F6,[E6,($=(B=n.value)==null?void 0:B.partitionList)!=null&&$.length?(i(),r("div",C6,[t("form",{onSubmit:nt(b,["prevent"])},[t("label",null,[t("div",D6,[z(t("select",{"onUpdate:modelValue":C[0]||(C[0]=Z=>c.value=Z)},[B6,(i(!0),r(L,null,j((q=n.value)==null?void 0:q.partitionList,(Z,ht)=>(i(),r("option",{value:Z,key:ht},h(Z),9,Y6))),128)),A6],512),[[Q,c.value,void 0,{trim:!0}]]),c.value=="useInput"?z((i(),r("input",{key:0,type:"text","onUpdate:modelValue":C[1]||(C[1]=Z=>f.value=Z),required:"",placeholder:"\u8BF7\u8F93\u5165\u8FC1\u79FB\u5730\u5740"},null,512)),[[W,f.value,void 0,{trim:!0}]]):E("",!0)])])],40,$6)])):n.value?(i(),r("div",S6,[t("div",z6,[D(gt),P6])])):E("",!0)]),(G=(H=n.value)==null?void 0:H.partitionList)!=null&&G.length?(i(),r("div",T6,[t("button",{class:"cbi-button cbi-button-apply",onClick:b},"\u786E\u5B9A"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:g},"\u53D6\u6D88")])):(i(),r("div",I6,[t("button",{class:"cbi-button cbi-button-apply",onClick:g},"\u786E\u5B9A")]))])):s.value==1?(i(),r("div",L6,[M6,t("div",O6,[D(De)]),N6,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:v},"\u786E\u5B9A")])])):s.value==2?(i(),r("div",q6,[V6,t("div",G6,[D(m6)]),j6,t("div",R6,[t("div",U6,[z(t("input",{type:"radio",id:"move",name:"moves","onUpdate:modelValue":C[2]||(C[2]=Z=>l.value=Z),value:""},null,512),[[ft,l.value]]),W6]),t("div",H6,[z(t("input",{type:"radio",id:"cover",name:"moves","onUpdate:modelValue":C[3]||(C[3]=Z=>l.value=Z),value:"true"},null,512),[[ft,l.value]]),Z6])]),t("div",J6,[d.value?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:w},"\u786E\u5B9A")):E("",!0),t("button",{class:"cbi-button cbi-button-apply",onClick:_},"\u8FD4\u56DE"),d.value?E("",!0):(i(),r("button",{key:1,class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:v},"\u53D6\u6D88"))])])):E("",!0)]}),_:1},8,["Close"]))}});var K6=Y(X6,[["__scopeId","data-v-308e4b48"]]);const Q6=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(K6,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},fa=e=>(O("data-v-223bcc06"),e=e(),N(),e),t5={class:"app-container"},e5={class:"app-container_title"},a5=fa(()=>t("span",null,"Docker",-1)),o5={key:0,class:"app-container_tool"},n5={key:1,class:"more_icon",title:"\u67E5\u770BDocker\u4FE1\u606F"},i5={class:"DeviceBlock"},r5=fa(()=>t("ul",null,[t("li",null,[t("a",{href:"/cgi-bin/luci/admin/docker/overview"},"Docker\u9AD8\u7EA7\u914D\u7F6E")])],-1)),s5={key:1,class:"loading_placeholder"},d5=P({props:{docker:{type:Object}},setup(e){const a=y(!1),o=y(),n=y(!1),s=()=>{n.value=!n.value},c=()=>{Q6()};return setTimeout(()=>{S.Guide.DockerStatus.GET().then(p=>{var d;if((d=p==null?void 0:p.data)!=null&&d.result){const l=p.data.result;o.value=l}}).finally(()=>{a.value=!0})},1100),(p,d)=>{var m,b;const l=X("GlHelp"),u=X("icon-loading");return i(),r("div",t5,[t("div",e5,[t("span",null,[a5,D(l,{type:"docker"})]),a.value?(i(),r("div",o5,[((m=o.value)==null?void 0:m.status)!="not installed"?(i(),r("div",{key:0,class:"app-container_configure",onClick:c},"\u5FEB\u901F\u914D\u7F6E ")):E("",!0),((b=o.value)==null?void 0:b.status)==="running"?(i(),r("span",n5,[D($t,{onClick:s})])):E("",!0)])):E("",!0),z(t("div",i5,[t("div",{class:"menu_background",onClick:s}),r5],512),[[wt,n.value]])]),t("div",null,[a.value?(i(),M(d6,{key:0,docker:o.value},null,8,["docker"])):(i(),r("div",s5,[D(u,{size:50,color:"currentColor"})]))])])}}});var u5=Y(d5,[["__scopeId","data-v-223bcc06"]]);const oe=e=>(O("data-v-dbe287b2"),e=e(),N(),e),l5={class:"app-container_aria2"},c5={class:"aria2-item"},p5=oe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),f5={class:"aria2-item_value"},m5={key:0,class:"configure"},b5={key:1,class:"configure enabel"},v5={class:"aria2-item"},g5=oe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u4E0B\u8F7D\u76EE\u5F55:")],-1)),_5={class:"aria2-item_value"},h5=["href"],x5={class:"aria2-item"},k5=oe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),w5={class:"aria2-item_value"},y5=["href"],F5={class:"aria2-item"},E5=oe(()=>t("div",{class:"aria2-item_name right"},[t("span",null,"\u8BA4\u8BC1\u5931\u8D25\uFF1F")],-1)),C5={class:"aria2-item_value"},$5=["href"],D5=oe(()=>t("div",{class:"use-url_app"},[t("a",{href:"https://doc.linkease.com/zh/guide/linkease_app/tutorial.html#%E8%BF%9C%E7%A8%8B%E4%B8%8B%E8%BD%BD",target:"_blank"},"\u4F7F\u7528\u6613\u6709\u4E91APP\uFF0C\u968F\u65F6\u968F\u5730\u8FDC\u7A0B\u4E0B\u8F7D")],-1)),B5=P({props:{aria2:{type:Object}},setup(e){const a=e,o=R(()=>{var s;return`${location.origin}${(s=a.aria2)==null?void 0:s.webPath}`}),n=R(()=>{var f,p,d;let s=(f=a.aria2)==null?void 0:f.rpcToken;s&&(s=encodeURIComponent(btoa(s)));const c=encodeURIComponent(location.hostname);return`${location.origin}${(p=a.aria2)==null?void 0:p.webPath}/#!/settings/rpc/set/http/${c}/${(d=a.aria2)==null?void 0:d.rpcPort}/jsonrpc/${s}`});return(s,c)=>{var f,p,d,l;return i(),r("ul",l5,[t("li",c5,[p5,t("div",f5,[((f=e.aria2)==null?void 0:f.status)=="running"?(i(),r("span",m5,"\u5DF2\u542F\u52A8")):(i(),r("span",b5,"\u672A\u542F\u52A8"))])]),((p=e.aria2)==null?void 0:p.status)=="running"?(i(),r(L,{key:0},[t("li",v5,[g5,t("div",_5,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((d=e.aria2)==null?void 0:d.downloadPath)},h((l=e.aria2)==null?void 0:l.downloadPath),9,h5)])]),t("li",x5,[k5,t("div",w5,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,y5)])]),t("li",F5,[E5,t("div",C5,[t("a",{href:k(n),target:"_blank",rel:"noopener noreferrer"},"\u70B9\u6B64\u81EA\u52A8\u914D\u7F6E AriaNg",8,$5)])])],64)):E("",!0),D5])}}});var Y5=Y(B5,[["__scopeId","data-v-dbe287b2"]]);const ge=e=>(O("data-v-1af61e64"),e=e(),N(),e),A5={class:"app-container_qbittorrent"},S5={class:"qbittorrent-item"},z5=ge(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),P5={class:"qbittorrent-item_value"},T5={key:0,class:"configure"},I5={key:1,class:"configure enabel"},L5={class:"qbittorrent-item"},M5=ge(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u4E0B\u8F7D\u76EE\u5F55:")],-1)),O5={class:"qbittorrent-item_value"},N5=["href"],q5={class:"qbittorrent-item"},V5=ge(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),G5={class:"qbittorrent-item_value"},j5=["href"],R5=ge(()=>t("li",{class:"qbittorrent-item"},[t("div",{class:"qbittorrent-item_name right"},[t("span",null,"\u9ED8\u8BA4\u7528\u6237\u540D\uFF1Aadmin")]),t("div",{class:"qbittorrent-item_value"},[t("span",null,"\u9ED8\u8BA4\u5BC6\u7801\uFF1Aadminadmin")])],-1)),U5=P({props:{qbittorrent:{type:Object}},setup(e){const a=e,o=R(()=>{var n;return`http://${location.hostname}${(n=a.qbittorrent)==null?void 0:n.webPath}`});return(n,s)=>{var c,f,p,d;return i(),r("ul",A5,[t("li",S5,[z5,t("div",P5,[((c=e.qbittorrent)==null?void 0:c.status)=="running"?(i(),r("span",T5,"\u5DF2\u542F\u52A8")):(i(),r("span",I5,"\u672A\u542F\u52A8"))])]),((f=e.qbittorrent)==null?void 0:f.status)=="running"?(i(),r(L,{key:0},[t("li",L5,[M5,t("div",O5,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=e.qbittorrent)==null?void 0:p.downloadPath)},h((d=e.qbittorrent)==null?void 0:d.downloadPath),9,N5)])]),t("li",q5,[V5,t("div",G5,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,j5)])]),R5],64)):E("",!0)])}}});var W5=Y(U5,[["__scopeId","data-v-1af61e64"]]);const ze=e=>(O("data-v-31717210"),e=e(),N(),e),H5={class:"app-container_transmission"},Z5={class:"transmission-item"},J5=ze(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),X5={class:"transmission-item_value"},K5={key:0,class:"configure"},Q5={key:1,class:"configure enabel"},t3={class:"transmission-item"},e3=ze(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u4E0B\u8F7D\u76EE\u5F55:")],-1)),a3={class:"transmission-item_value"},o3=["href"],n3={class:"transmission-item"},i3=ze(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),r3={class:"transmission-item_value"},s3=["href"],d3=P({props:{transmission:{type:Object}},setup(e){const a=e,o=R(()=>{var n;return`http://${location.hostname}${(n=a.transmission)==null?void 0:n.webPath}`});return(n,s)=>{var c,f,p,d;return i(),r("ul",H5,[t("li",Z5,[J5,t("div",X5,[((c=e.transmission)==null?void 0:c.status)=="running"?(i(),r("span",K5,"\u5DF2\u542F\u52A8")):(i(),r("span",Q5,"\u672A\u542F\u52A8"))])]),((f=e.transmission)==null?void 0:f.status)=="running"?(i(),r(L,{key:0},[t("li",t3,[e3,t("div",a3,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=e.transmission)==null?void 0:p.downloadPath)},h((d=e.transmission)==null?void 0:d.downloadPath),9,o3)])]),t("li",n3,[i3,t("div",r3,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,s3)])])],64)):E("",!0)])}}});var u3=Y(d3,[["__scopeId","data-v-31717210"]]);const l3={},c3={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},p3=t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6","fill-opacity":"0.65"},null,-1),f3=[p3];function m3(e,a){return i(),r("svg",c3,f3)}var zt=Y(l3,[["render",m3]]);const K=e=>(O("data-v-378dba8e"),e=e(),N(),e),b3={key:0,class:"action"},v3=K(()=>t("h2",{class:"title"},"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",-1)),g3={class:"load_service input_row"},_3=K(()=>t("div",{class:"left"},[t("span",null,"\u4E0B\u8F7D\u670D\u52A1\uFF1A")],-1)),h3={class:"radios"},x3=K(()=>t("label",{for:"Aria2"},"Aria2",-1)),k3={class:"radios"},w3=K(()=>t("label",{for:"qB"},"qBittorrent",-1)),y3={class:"radios"},F3=K(()=>t("label",{for:"Tr"},"Transmission",-1)),E3=["onSubmit"],C3={class:"input_row"},$3={class:"left"},D3={class:"tooltip-trigger"},B3=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/aria2\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")])],-1)),Y3=K(()=>t("span",null,"\u914D\u7F6E\u76EE\u5F55\uFF1A",-1)),A3={class:"myinput_wrap"},S3={class:"input_row"},z3={class:"left"},P3={class:"tooltip-trigger"},T3=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")])],-1)),I3=K(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),L3={class:"myinput_wrap"},M3={class:"input_row"},O3={class:"left"},N3={class:"tooltip-trigger"},q3=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-bottom"},[t("span",{class:"dowload_rpc_tip"},"\u7528\u4E8E\u8FDC\u7A0B\u8BBF\u95EE\u7684\u4EE4\u724C\u3002")])],-1)),V3=K(()=>t("span",null,"RPC \u4EE4\u724C\uFF1A",-1)),G3={class:"input_row"},j3=K(()=>t("div",{class:""},[t("span",null,"\u9644\u52A0\u7684 BT Tracker\uFF1A")],-1)),R3={class:"radios"},U3=K(()=>t("label",{for:"default"},"\u9ED8\u8BA4",-1)),W3={class:"radios"},H3=K(()=>t("label",{for:"add"},"\u81EA\u5DF1\u6DFB\u52A0",-1)),Z3={class:"input_row"},J3=K(()=>t("div",{class:"left"},null,-1)),X3={class:"myinput_wrap Tracker_input"},K3=["onSubmit"],Q3={class:"input_row"},t4={class:"left"},e4={class:"tooltip-trigger"},a4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/qb\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")])],-1)),o4=K(()=>t("span",null,"\u914D\u7F6E\u76EE\u5F55\uFF1A",-1)),n4={class:"myinput_wrap"},i4={class:"input_row"},r4={class:"left"},s4={class:"tooltip-trigger"},d4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")])],-1)),u4=K(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),l4={class:"myinput_wrap"},c4=["onSubmit"],p4={class:"input_row"},f4={class:"left"},m4={class:"tooltip-trigger"},b4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/tr\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")])],-1)),v4=K(()=>t("span",null,"\u914D\u7F6E\u76EE\u5F55\uFF1A",-1)),g4={class:"myinput_wrap"},_4={class:"input_row"},h4={class:"left"},x4={class:"tooltip-trigger"},k4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")])],-1)),w4=K(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),y4={class:"myinput_wrap"},F4={class:"btns"},E4={key:1,class:"action"},C4={class:"title"},$4={class:"finished"},D4=K(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),B4=P({props:{services:{type:Object,required:!0},partitionList:{type:Array,required:!0},defaultTab:{type:String,required:!1},Close:Function},setup(e){const a=e,o=y(""),n=y(""),s=y(""),c=y(""),f=y("default"),p=y("Aria2"),d=y(""),l=y(""),u=y(""),m=y(""),b=y([]),g=y([]),v=y(0);Ft(()=>{var G,Z,ht,Ie,Le,Me,Oe,Ne,qe,Ve;switch(a.defaultTab){case"aria2":p.value="Aria2";break;case"qbittorrent":p.value="qBittorrent";break;case"transmission":p.value="Transmission";break}b.value=a.partitionList.map(Ht=>({key:Ht})),g.value=a.partitionList.filter(Ht=>Ht.startsWith("/mnt/")).map(Ht=>Ht.replace(/(\/mnt\/[^/]+).*/,"$1")),s.value=((G=a.services.aria2)==null?void 0:G.configPath)||"";const B=((Z=a.services.aria2)==null?void 0:Z.downloadPath)||((ht=a.services.qbittorrent)==null?void 0:ht.downloadPath)||((Ie=a.services.transmission)==null?void 0:Ie.downloadPath);B&&(c.value=B);const $=(Le=a.services.aria2)==null?void 0:Le.rpcToken;$&&(o.value=$),d.value=((Me=a.services.qbittorrent)==null?void 0:Me.configPath)||"";const q=((Oe=a.services.qbittorrent)==null?void 0:Oe.downloadPath)||B||((Ne=a.services.transmission)==null?void 0:Ne.downloadPath);q&&(l.value=q),u.value=((qe=a.services.transmission)==null?void 0:qe.configPath)||"";const H=((Ve=a.services.transmission)==null?void 0:Ve.downloadPath)||B||q;H&&(m.value=H)});const _=()=>{let B=s.value,$=c.value;B==null||B==""||$==null||$==""||T(this,null,function*(){if(yield ct.checkAndInstallApp("app-meta-aria2","Aria2")){const H=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.Aria2Init.POST({configPath:B,downloadPath:$,rpcToken:o.value,btTracker:f.value=="add"?n.value:""}).then(G=>{var Z;if(G!=null&&G.data){if((G.data.success||0)==0){v.value=1;return}else if((Z=G.data)!=null&&Z.error)throw G.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(G=>F.Error(G)).finally(()=>H.Close())}})},w=()=>{let B=d.value,$=l.value;B==null||B==""||$==null||$==""||T(this,null,function*(){if(yield ct.checkAndInstallApp("app-meta-qbittorrent","qBittorrent")){const H=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.qbitorrentInit.POST({configPath:B,downloadPath:$}).then(G=>{var Z;if(G!=null&&G.data){if((G.data.success||0)==0){v.value=1;return}else if((Z=G.data)!=null&&Z.error)throw G.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(G=>F.Error(G)).finally(()=>H.Close())}})},x=()=>{let B=u.value,$=m.value;B==null||B==""||$==null||$==""||T(this,null,function*(){if(yield ct.checkAndInstallApp("app-meta-transmission","Transmission")){const H=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.transmissionInit.POST({configPath:B,downloadPath:$}).then(G=>{var Z;if(G!=null&&G.data){if((G.data.success||0)==0){v.value=1;return}else if((Z=G.data)!=null&&Z.error)throw G.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(G=>F.Error(G)).finally(()=>H.Close())}})},C=B=>{B.preventDefault(),a.Close&&a.Close()},A=B=>{B.preventDefault(),location.reload()};return(B,$)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[v.value==0?(i(),r("div",b3,[v3,t("ul",null,[t("li",null,[t("div",g3,[_3,t("div",h3,[z(t("input",{type:"radio",value:"Aria2","onUpdate:modelValue":$[0]||($[0]=q=>p.value=q),name:"download",id:"Aria2"},null,512),[[ft,p.value]]),x3]),t("div",k3,[z(t("input",{type:"radio",value:"qBittorrent","onUpdate:modelValue":$[1]||($[1]=q=>p.value=q),name:"download",id:"qB"},null,512),[[ft,p.value]]),w3]),t("div",y3,[z(t("input",{type:"radio",value:"Transmission","onUpdate:modelValue":$[2]||($[2]=q=>p.value=q),name:"download",id:"Tr"},null,512),[[ft,p.value]]),F3])])])]),p.value=="Aria2"?(i(),r("form",{key:0,onSubmit:nt(_,["prevent"])},[t("ul",null,[t("li",null,[t("div",C3,[t("div",$3,[t("span",D3,[D(zt),B3]),Y3]),t("div",A3,[D(Pt,{modelValue:s.value,"onUpdate:modelValue":$[3]||($[3]=q=>s.value=q),modelModifiers:{trim:!0},title:"\u914D\u7F6E\u76EE\u5F55",options:g.value.concat("/root").map(q=>({key:q+"/Configs/aria2"}))},null,8,["modelValue","options"])])])]),t("li",null,[t("div",S3,[t("div",z3,[t("span",P3,[D(zt),T3]),I3]),t("div",L3,[D(Pt,{modelValue:c.value,"onUpdate:modelValue":$[4]||($[4]=q=>c.value=q),modelModifiers:{trim:!0},title:"\u4E0B\u8F7D\u76EE\u5F55",options:b.value},null,8,["modelValue","options"])])])]),t("li",null,[t("div",M3,[t("div",O3,[t("span",N3,[D(zt),q3]),V3]),z(t("input",{type:"text",class:"RPC_input",placeholder:"\u8BF7\u8F93\u5165RPC\u4EE4\u724C","onUpdate:modelValue":$[5]||($[5]=q=>o.value=q)},null,512),[[W,o.value,void 0,{trim:!0}]])])]),t("li",null,[t("div",G3,[j3,t("div",R3,[z(t("input",{type:"radio",value:"default",name:"BT",id:"default","onUpdate:modelValue":$[6]||($[6]=q=>f.value=q)},null,512),[[ft,f.value]]),U3]),t("div",W3,[z(t("input",{type:"radio",value:"add",name:"BT",id:"add","onUpdate:modelValue":$[7]||($[7]=q=>f.value=q)},null,512),[[ft,f.value]]),H3])])]),t("li",null,[t("div",Z3,[J3,t("div",X3,[f.value=="add"?z((i(),r("textarea",{key:0,"onUpdate:modelValue":$[8]||($[8]=q=>n.value=q),rows:"4",placeholder:"\u8BF7\u8F93\u5165BT Tracker\u670D\u52A1\u5668\u5730\u5740\uFF0C\u591A\u4E2A\u5730\u5740\u4F7F\u7528\u6362\u884C\u6216\u8005\u82F1\u6587\u9017\u53F7\u5206\u9694"},null,512)),[[W,n.value,void 0,{trim:!0}]]):E("",!0)])])])])],40,E3)):E("",!0),p.value=="qBittorrent"?(i(),r("form",{key:1,onSubmit:nt(w,["prevent"])},[t("ul",null,[t("li",null,[t("div",Q3,[t("div",t4,[t("span",e4,[D(zt),a4]),o4]),t("div",n4,[D(Pt,{modelValue:d.value,"onUpdate:modelValue":$[9]||($[9]=q=>d.value=q),modelModifiers:{trim:!0},title:"\u914D\u7F6E\u76EE\u5F55",options:g.value.concat("/root").map(q=>({key:q+"/Configs/qb"}))},null,8,["modelValue","options"])])])]),t("li",null,[t("div",i4,[t("div",r4,[t("span",s4,[D(zt),d4]),u4]),t("div",l4,[D(Pt,{modelValue:l.value,"onUpdate:modelValue":$[10]||($[10]=q=>l.value=q),modelModifiers:{trim:!0},title:"\u4E0B\u8F7D\u76EE\u5F55",options:b.value},null,8,["modelValue","options"])])])])])],40,K3)):E("",!0),p.value=="Transmission"?(i(),r("form",{key:2,onSubmit:nt(x,["prevent"])},[t("ul",null,[t("li",null,[t("div",p4,[t("div",f4,[t("span",m4,[D(zt),b4]),v4]),t("div",g4,[D(Pt,{modelValue:u.value,"onUpdate:modelValue":$[11]||($[11]=q=>u.value=q),modelModifiers:{trim:!0},title:"\u914D\u7F6E\u76EE\u5F55",options:g.value.concat("/root").map(q=>({key:q+"/Configs/transmission"}))},null,8,["modelValue","options"])])])]),t("li",null,[t("div",_4,[t("div",h4,[t("span",x4,[D(zt),k4]),w4]),t("div",y4,[D(Pt,{modelValue:m.value,"onUpdate:modelValue":$[12]||($[12]=q=>m.value=q),modelModifiers:{trim:!0},title:"\u4E0B\u8F7D\u76EE\u5F55",options:b.value},null,8,["modelValue","options"])])])])])],40,c4)):E("",!0),t("div",F4,[p.value=="Aria2"?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:_},"\u542F\u7528")):E("",!0),p.value=="qBittorrent"?(i(),r("button",{key:1,class:"cbi-button cbi-button-apply",onClick:w},"\u542F\u7528")):E("",!0),p.value=="Transmission"?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:x},"\u542F\u7528")):E("",!0),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:C},"\u53D6\u6D88")])])):v.value==1?(i(),r("div",E4,[t("h2",C4,h(p.value)+"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",1),t("div",$4,[D(De)]),D4,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:A},"\u786E\u5B9A")])])):E("",!0)]),_:1},8,["Close"]))}});var Y4=Y(B4,[["__scopeId","data-v-378dba8e"]]);const A4=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Y4,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},S4=e=>(O("data-v-23580536"),e=e(),N(),e),z4={class:"app-container"},P4={class:"app-container_title"},T4=S4(()=>t("span",null,"\u4E0B\u8F7D\u670D\u52A1",-1)),I4={class:"app-container_tool"},L4=["disabled"],M4={class:"more_icon",title:"\u67E5\u770B\u9AD8\u7EA7\u914D\u7F6E"},O4={class:"DeviceBlock"},N4={class:"app-container_body"},q4={class:"app-container_nas-menu"},V4=P({setup(e){y(!1);const a=y("aria2"),o=y();Qe(),setTimeout(()=>{S.Guide.DownloadService.Status.GET().then(b=>{var g;if((g=b==null?void 0:b.data)!=null&&g.result){const v=b.data.result;o.value=v}})},800);const s=y(!1),c=y(!1),f=()=>{c.value=!c.value},p=()=>{S.Guide.DownloadPartition.List.GET().then(b=>{var v,_;let g=[];(_=(v=b==null?void 0:b.data)==null?void 0:v.result)!=null&&_.partitionList&&(g=b.data.result.partitionList),A4({services:o.value,partitionList:g,defaultTab:a.value})})},d=(b,g,v)=>T(this,null,function*(){f(),ct.installAndGo(b,g,v)}),l=()=>{d("app-meta-aria2","Aria2","/cgi-bin/luci/admin/services/aria2")},u=()=>{d("app-meta-qbittorrent","qBittorrent","/cgi-bin/luci/admin/nas/qBittorrent")},m=()=>{d("app-meta-transmission","Transmission","/cgi-bin/luci/admin/services/transmission")};return(b,g)=>{var _,w,x;const v=X("GlHelp");return i(),r("div",z4,[t("div",P4,[t("span",null,[T4,D(v,{type:"download"})]),t("div",I4,[o.value?(i(),r("div",{key:0,class:"app-container_configure",onClick:p,disabled:s.value},"\u5FEB\u901F\u914D\u7F6E ",8,L4)):E("",!0),t("span",M4,[D($t,{onClick:f})])]),z(t("div",O4,[t("div",{class:"menu_background",onClick:f}),t("ul",null,[t("li",null,[t("a",{onClick:l},"Aria2\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:u},"qBittorrent\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:m},"Transmission\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[wt,c.value]])]),t("div",N4,[t("ul",q4,[t("button",{onClick:g[0]||(g[0]=C=>a.value="aria2"),class:ot({on:a.value=="aria2"})},"Aria2",2),t("button",{onClick:g[1]||(g[1]=C=>a.value="qbittorrent"),class:ot({on:a.value=="qbittorrent"})},"qBittorrent",2),t("button",{onClick:g[2]||(g[2]=C=>a.value="transmission"),class:ot({on:a.value=="transmission"})},"Transmission",2)]),a.value=="aria2"?(i(),M(Y5,{key:0,aria2:(_=o.value)==null?void 0:_.aria2},null,8,["aria2"])):a.value=="qbittorrent"?(i(),M(W5,{key:1,qbittorrent:(w=o.value)==null?void 0:w.qbittorrent},null,8,["qbittorrent"])):a.value=="transmission"?(i(),M(u3,{key:2,transmission:(x=o.value)==null?void 0:x.transmission},null,8,["transmission"])):E("",!0)])])}}});var G4=Y(V4,[["__scopeId","data-v-23580536"]]);const Et=e=>(O("data-v-43beecef"),e=e(),N(),e),j4={class:"actioner-container"},R4=Et(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),U4={class:"actioner-container_body"},W4={class:"label-item"},H4=Et(()=>t("span",null,"DDNSTO",-1)),Z4=Et(()=>t("p",{class:"label_info"},"DDNSTO \u662F\u4E00\u4E2A\u4E0D\u9700\u8981\u516C\u7F51IP\u4E5F\u53EF\u4EE5\u5728\u5916\u7F51\u8BBF\u95EE\u7684\u7A7F\u900F\u57DF\u540D\u670D\u52A1\uFF0C\u4E00\u4E2A\u6D4F\u89C8\u5668\u641E\u5B9A\u5185\u7F51\u7A7F\u900F\uFF0C\u8FDC\u7A0B\u8BBF\u95EEOpenwrt\u3001\u8FDC\u7A0B\u7EC8\u7AEF\u3001\u8FDC\u7A0B\u684C\u9762...",-1)),J4={class:"label-item"},X4=Et(()=>t("span",null,"\u963F\u91CC\u4E91",-1)),K4=Et(()=>t("p",{class:"label_info"}," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),Q4={class:"label-item"},t8=Et(()=>t("span",null,"Dnspod",-1)),e8=Et(()=>t("p",{class:"label_info"}," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),a8={class:"label-item"},o8=Et(()=>t("span",null,"\u82B1\u751F\u58F3",-1)),n8=Et(()=>t("p",{class:"label_info"}," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),i8=P({props:{onSetup:{type:Function,required:!0},active:{type:String,default:"ddnsto"}},emits:["update:active"],setup(e,{emit:a}){const o=e,n=()=>{o.onSetup()},s=y(o.active),c=()=>{switch(a("update:active",s.value),s.value){case"ddnsto":o.onSetup("ddnsto");break;case"ali":o.onSetup("ddns-ali");break;case"dnspod":o.onSetup("ddns-dnspod");break;case"oray":o.onSetup("ddns-oray");break}};return(f,p)=>(i(),r("div",j4,[R4,t("div",U4,[t("div",W4,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[0]||(p[0]=d=>s.value=d),value:"ddnsto"},null,512),[[ft,s.value]]),H4]),Z4]),t("div",J4,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[1]||(p[1]=d=>s.value=d),value:"ali"},null,512),[[ft,s.value]]),X4]),K4]),t("div",Q4,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[2]||(p[2]=d=>s.value=d),value:"dnspod"},null,512),[[ft,s.value]]),t8]),e8]),t("div",a8,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[3]||(p[3]=d=>s.value=d),value:"oray"},null,512),[[ft,s.value]]),o8]),n8])]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:n},"\u53D6\u6D88"),t("div",{class:"next",onClick:c},"\u4E0B\u4E00\u6B65")])]))}});var r8=Y(i8,[["__scopeId","data-v-43beecef"]]);const ne=e=>(O("data-v-43dd65a2"),e=e(),N(),e),s8={class:"actioner-container"},d8={class:"actioner-container_body"},u8=ne(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),l8=ne(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),c8=ne(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),p8={class:"body-info"},f8=ne(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),m8=["href"],b8=ne(()=>t("div",null,[t("span",null,"\u53EF\u524D\u5F80"),t("a",{href:"/cgi-bin/luci/admin/services/ddns",target:"_blank"},"\u670D\u52A1-\u52A8\u6001DNS"),t("span",null,"\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")],-1)),v8=P({props:{target:{type:String,required:!0},onSetup:{type:Function,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",s8,[t("div",d8,[u8,l8,c8,t("div",p8,[f8,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},h(e.target),9,m8)]),b8]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var g8=Y(v8,[["__scopeId","data-v-43dd65a2"]]);const ma=e=>(O("data-v-7790f1da"),e=e(),N(),e),_8={class:"actioner-container"},h8=ma(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),x8=ma(()=>t("div",{class:"actioner-container_body ddnsto-login"},[t("iframe",{src:"https://www.kooldns.cn/bind/#/auth?send=1&source=openwrt&callback=*"})],-1)),k8=P({props:{onSetup:{type:Function,required:!0},onDdnstoConfig:{type:Function,required:!0}},setup(e){const a=e,o=()=>{a.onSetup()},n=s=>{if(s.data.auth=="ddnsto"){const c=s.data.sign,f=s.data.token;c&&f&&(removeEventListener("message",n),a.onDdnstoConfig(c,f),a.onSetup("ddnsto-run"))}};return Ft(()=>{window.addEventListener("message",n)}),Gt(()=>{removeEventListener("message",n)}),(s,c)=>(i(),r("div",_8,[h8,x8,t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u53D6\u6D88")])]))}});var w8=Y(k8,[["__scopeId","data-v-7790f1da"]]);const y8=e=>(O("data-v-7b3ee72a"),e=e(),N(),e),F8={class:"actioner-container"},E8=y8(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),C8={class:"actioner-container_body ddnsto-bind"},$8=["src"],D8=P({props:{onSetup:{type:Function,required:!0},config:{type:Object,required:!0},domain:{type:String,required:!0}},emits:["update:domain"],setup(e,{emit:a}){const o=e,n=R(()=>{const{domain:f,token:p,sign:d,routerId:l,netaddr:u}=o.config,m=encodeURIComponent(f),b=encodeURIComponent(u);return`https://www.kooldns.cn/bind/#/domain?domain=${m}&sign=${d}&token=${p}&routerId=${l}&netaddr=${b}`}),s=f=>{if(f.data){const{auth:p,url:d}=f.data;p==="ddnsto"&&d&&c(d)}},c=f=>T(this,null,function*(){var p;try{const d=yield S.Guide.DdnstoAddress.POST({address:f});d!=null&&d.data&&(((p=d==null?void 0:d.data)==null?void 0:p.success)||0)==0&&(a("update:domain",f),o.onSetup("ddnsto-save"))}catch(d){}});return Ft(()=>{window.addEventListener("message",s)}),Gt(()=>{removeEventListener("message",s)}),(f,p)=>(i(),r("div",F8,[E8,t("div",C8,[t("iframe",{src:k(n)},null,8,$8)])]))}});var B8=Y(D8,[["__scopeId","data-v-7b3ee72a"]]);const ie=e=>(O("data-v-7f5a8953"),e=e(),N(),e),Y8={class:"actioner-container"},A8={class:"actioner-container_body"},S8=ie(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),z8=ie(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),P8=ie(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),T8={class:"body-info"},I8=ie(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),L8=["href"],M8=ie(()=>t("div",null,[t("span",null,"\u53EF\u524D\u5F80"),t("a",{href:"https://www.ddnsto.com/app/#/devices",target:"_blank"},"DDNSTO\u63A7\u5236\u53F0"),t("span",null,"\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")],-1)),O8=P({props:{onSetup:{type:Function,required:!0},target:{type:String,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",Y8,[t("div",A8,[S8,z8,P8,t("div",T8,[I8,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},h(e.target),9,L8)]),M8]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var N8=Y(O8,[["__scopeId","data-v-7f5a8953"]]);const q8=e=>(O("data-v-d60389d6"),e=e(),N(),e),V8={class:"actioner-container"},G8=q8(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),j8={class:"actioner-container_body"},R8={class:"actioner-container_footer"},U8=P({props:{onSetup:{type:Function,required:!0}},setup(e){const a=e,o=()=>{a.onSetup()},n=()=>T(this,null,function*(){if(f.value)return;f.value=!0;const d=F.Loading("\u5B89\u88C5\u4E2D...");try{if(yield ct.installApp("app-meta-ddnsto",30)){a.onSetup("ddnsto-login");return}else s.value="\u5B89\u88C5\u5931\u8D25"}catch(l){s.value=l}finally{d.Close()}f.value=!1}),s=y("\u6B63\u5728\u68C0\u6D4B\u4E2D..."),c=y(!1),f=y(!1);return(()=>T(this,null,function*(){try{const d=yield S.App.Check.POST({name:"ddnsto"});if(d!=null&&d.data){const{result:l,error:u}=d.data;if(u){s.value=u;return}if(l){if(l.status=="installed"){a.onSetup("ddnsto-login");return}l.status=="uninstalled"&&(s.value="\u9700\u8981\u5B89\u88C5DDNSTO\u63D2\u4EF6\uFF0C\u70B9\u51FB\u201C\u786E\u5B9A\u201D\u5F00\u59CB\u5B89\u88C5")}}}catch(d){s.value=d}c.value=!0}))(),(d,l)=>(i(),r("div",V8,[G8,t("div",j8,[t("span",null,h(s.value),1)]),t("div",R8,[c.value?(i(),r(L,{key:0},[t("div",{class:"close",onClick:o},"\u53D6\u6D88"),t("div",{class:"next",onClick:n},"\u786E\u5B9A")],64)):E("",!0)])]))}});var W8=Y(U8,[["__scopeId","data-v-d60389d6"]]);const H8=e=>(O("data-v-1e0ebd66"),e=e(),N(),e),Z8={class:"actioner-container"},J8=H8(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),X8={class:"actioner-container_body"},K8=P({props:{onSetup:{type:Function,required:!0},token:{type:String,required:!0},onDdnstoLocalConfig:{type:Function,required:!0}},setup(e){const a=e,o=y("\u6B63\u5728\u68C0\u6D4B\u63D2\u4EF6\u662F\u5426\u5DF2\u542F\u52A8...");(d=>T(this,null,function*(){var l;try{const u=yield S.Guide.Ddnsto.POST({token:a.token});u!=null&&u.data&&(u.data.error&&(o.value=u.data.error),(((l=u==null?void 0:u.data)==null?void 0:l.success)||0)==0&&c())}catch(u){o.value=u}}))(a.token);const s=y(),c=()=>{const d=()=>T(this,null,function*(){if((yield f())===!0){p();return}s.value=window.setTimeout(d,2e3)});d()},f=()=>T(this,null,function*(){try{const d=yield S.App.Check.POST({name:"ddnsto",checkRunning:!0});if(d!=null&&d.data){d.data.error&&(o.value=d.data.error);const l=d.data.result;if((l==null?void 0:l.status)=="running")return!0}}catch(d){o.value=d}return!1});Gt(()=>{s.value&&clearInterval(s.value)});const p=()=>T(this,null,function*(){var d;try{const l=yield S.Guide.DdntoConfig.GET();if(l!=null&&l.data&&(l.data.error&&(o.value=l.data.error),(((d=l==null?void 0:l.data)==null?void 0:d.success)||0)==0&&l.data.result)){const u=l.data.result;a.onDdnstoLocalConfig(u.netAddr,u.deviceId),a.onSetup("ddnsto-bind")}}catch(l){o.value=l}});return(d,l)=>(i(),r("div",Z8,[J8,t("div",X8,h(o.value),1)]))}});var Q8=Y(K8,[["__scopeId","data-v-1e0ebd66"]]);const tp={class:"action-main"},ep=P({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=y("ddnsto-install"),n=d=>{d!=null?o.value=d:s()},s=()=>{a.Close&&a.Close()},c=it({sign:"",token:"",domain:a.url,netaddr:"",routerId:""}),f=(d,l)=>{c.sign=d,c.token=l},p=(d,l)=>{c.netaddr=d,c.routerId=l};return(d,l)=>(i(),M(et,{type:1},{default:V(()=>[t("div",tp,[o.value=="ddnsto-install"?(i(),M(W8,{key:0,onSetup:n})):o.value=="ddnsto-login"?(i(),M(w8,{key:1,onSetup:n,onDdnstoConfig:f})):o.value=="ddnsto-run"?(i(),M(Q8,{key:2,onSetup:n,token:k(c).token,onDdnstoLocalConfig:p},null,8,["token"])):o.value=="ddnsto-bind"?(i(),M(B8,{key:3,onSetup:n,config:{token:k(c).token,sign:k(c).sign,domain:k(c).domain,netaddr:k(c).netaddr,routerId:k(c).routerId},domain:k(c).domain,"onUpdate:domain":l[0]||(l[0]=u=>k(c).domain=u)},null,8,["config","domain"])):o.value=="ddnsto-save"?(i(),M(N8,{key:4,onSetup:n,target:k(c).domain},null,8,["target"])):E("",!0)])]),_:1}))}});var ap=Y(ep,[["__scopeId","data-v-7a6bd385"]]);const op=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(ap,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},np={class:"action"},ip={class:"action-header"},rp=["innerHTML"],sp={class:"action-footer"},dp=P({props:{Close:Function,next:{type:Function},clear:{type:Function},continuer:{type:Function},nextTitle:{type:String,default:"\u786E\u5B9A"},clearTitle:{type:String,default:"\u8FD4\u56DE"},continuerTitle:{type:String,default:"\u7EE7\u7EED\u4FDD\u5B58"},title:{type:String,default:"\u63D0\u793A"},content:{type:String}},setup(e){const a=e,o=()=>{a.next&&a.next(),a.Close&&a.Close()},n=()=>{a.clear&&a.clear(),a.Close&&a.Close()},s=()=>{a.continuer&&a.continuer(),a.Close&&a.Close()};return(c,f)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[t("div",np,[t("div",ip,h(e.title),1),t("div",{class:"action-body",innerHTML:e.content},null,8,rp),t("div",sp,[e.clear?(i(),r("div",{key:0,class:"clear",onClick:n},h(e.clearTitle),1)):E("",!0),t("div",{class:"next",onClick:o},h(e.nextTitle),1),e.continuer?(i(),r("div",{key:1,class:"next",onClick:s},h(e.continuerTitle),1)):E("",!0)])])]),_:1},8,["Close"]))}});var up=Y(dp,[["__scopeId","data-v-4358e88c"]]);const de=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(up,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},rt=e=>(O("data-v-9435cfa6"),e=e(),N(),e),lp={class:"actioner-container"},cp=["onSubmit"],pp=rt(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),fp={key:0,class:"title_info"},mp=rt(()=>t("p",null," \u963F\u91CC\u4E91 ",-1)),bp=rt(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),vp=rt(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E9%98%BF%E9%87%8C%E4%BA%91",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),gp=[mp,bp,vp],_p={key:1,class:"title_info"},hp=rt(()=>t("p",null," dnspod ",-1)),xp=rt(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),kp=rt(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#dnspod",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),wp=[hp,xp,kp],yp={key:2,class:"title_info"},Fp=rt(()=>t("p",null," \u82B1\u751F\u58F3 ",-1)),Ep=rt(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),Cp=rt(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E8%8A%B1%E7%94%9F%E5%A3%B3",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),$p=[Fp,Ep,Cp],Dp={class:"label-item"},Bp=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u5730\u5740\u7248\u672C\uFF1A")],-1)),Yp={class:"label-item_value"},Ap=rt(()=>t("option",{value:"ipv4"},"IPv4\u5730\u5740",-1)),Sp=rt(()=>t("option",{value:"ipv6"},"IPv6\u5730\u5740",-1)),zp=[Ap,Sp],Pp=rt(()=>t("div",{class:"label_tips"},[t("svg",{width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])]),t("span",{class:"info"},"\u8BBE\u5B9A\u54EA\u4E00\u4E2A IP \u5730\u5740\uFF08IPv4 \u6216 IPv6\uFF09\u4F1A\u88AB\u53D1\u9001\u7ED9 DDNS \u63D0\u4F9B\u5546")],-1)),Tp={class:"label-item"},Ip=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u57DF\u540D\uFF1A")],-1)),Lp={class:"label-item_value"},Mp={class:"label-item"},Op=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D\uFF1A")],-1)),Np={class:"label-item_value"},qp={class:"label-item"},Vp=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801\uFF1A")],-1)),Gp={class:"label-item_value"},jp={class:"actioner-container_footer"},Rp=["disabled"],Up=P({props:{name:{type:String,default:"ali"},onSetup:{type:Function,required:!0},target:{type:String,required:!0}},emits:["update:target"],setup(e,{emit:a}){const o=e,n=y("ipv4"),s=y(o.name),c=y(""),f=y(""),p=y(""),d=y(!1),l=()=>{o.onSetup("index")},u=()=>{d.value=!0;const v=F.Loading("\u68C0\u6D4B\u4E2D...");S.Network.CheckPublickNet.POST({ipVersion:n.value}).then(_=>{var w,x;if(_!=null&&_.data){if((w=_==null?void 0:_.data)!=null&&w.error){F.Warning(_==null?void 0:_.data.error);return}if((((x=_==null?void 0:_.data)==null?void 0:x.success)||0)==0){const C=_.data.result;C&&C.address?g():m();return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(_=>{F.Error(_)}).finally(()=>{v.Close(),d.value=!1})},m=()=>{de({title:"\u6E29\u99A8\u63D0\u793A",nextTitle:"\u4F7F\u7528DDNSTO",continuerTitle:"\u7EE7\u7EED\u4FDD\u5B58",content:"\u68C0\u6D4B\u5230\u60A8\u7684wan\u53E3\u6CA1\u6709\u516C\u7F51IP\u6216\u8005IPv6\u5730\u5740\uFF0C\u53EF\u4EE5\u4F7F\u7528DDNSTO\u914D\u7F6E\u8FDC\u7A0B\u57DF\u540D\u8BBF\u95EE",next(){b()},continuer(){g()},clear(){}})},b=()=>{o.onSetup("ddnsto")},g=()=>{d.value=!0;const v=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.PostDdns.POST({ipVersion:n.value,serviceName:s.value,domain:c.value,userName:f.value,password:p.value}).then(_=>{if(_!=null&&_.data){const{error:w,scope:x,success:C}=_.data;if(w=="-100"&&x=="guide.ddns"){de({title:"\u6E29\u99A8\u63D0\u793A",content:"\u68C0\u6D4B\u5230\u4F60\u6709\u672A\u4FDD\u5B58\u7684\u914D\u7F6E\uFF0C\u53EF\u524D\u5F80\u9875\u9762\u53F3\u4E0A\u89D2\u70B9\u51FB\u67E5\u770B\uFF0C\u4FDD\u5B58\u5E76\u5E94\u7528\u6216\u8005\u6062\u590D\u914D\u7F6E\u540E\u7EE7\u7EED",next(){}});return}if(w){F.Warning(w);return}if((C||0)==0){a("update:target",c.value),o.onSetup("ddns-success");return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(_=>{F.Error(_)}).finally(()=>{v.Close(),d.value=!1})};return(v,_)=>(i(),r("div",lp,[t("form",{class:"actioner-dns",onSubmit:nt(u,["prevent"])},[pp,t("div",{class:ot(["actioner-container_body",e.name])},[e.name=="ali"?(i(),r("div",fp,gp)):e.name=="dnspod"?(i(),r("div",_p,wp)):e.name=="oray"?(i(),r("div",yp,$p)):E("",!0),t("div",Dp,[Bp,t("div",Yp,[z(t("select",{name:"",id:"","onUpdate:modelValue":_[0]||(_[0]=w=>n.value=w)},zp,512),[[Q,n.value]])]),Pp]),t("div",Tp,[Ip,t("div",Lp,[z(t("input",{type:"text",placeholder:"myhost.example.com","onUpdate:modelValue":_[1]||(_[1]=w=>c.value=w),required:""},null,512),[[W,c.value,void 0,{trim:!0}]])])]),t("div",Mp,[Op,t("div",Np,[z(t("input",{type:"text","onUpdate:modelValue":_[2]||(_[2]=w=>f.value=w),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u540D",required:""},null,512),[[W,f.value,void 0,{trim:!0}]])])]),t("div",qp,[Vp,t("div",Gp,[z(t("input",{type:"password","onUpdate:modelValue":_[3]||(_[3]=w=>p.value=w),placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",required:""},null,512),[[W,p.value,void 0,{trim:!0}]])])])],2),t("div",jp,[t("div",{class:"close",onClick:l,type:"button"},"\u8FD4\u56DE"),t("button",{class:"next save",type:"submit",disabled:d.value},"\u4FDD\u5B58",8,Rp)])],40,cp)]))}});var ye=Y(Up,[["__scopeId","data-v-9435cfa6"]]);const Wp={class:"action-main"},Hp=P({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=y(""),n=y("index"),s=d=>{if(d!=null){if(d=="ddnsto"){c();return}n.value=d}else f()},c=()=>{f(),op({url:a.url})},f=()=>{a.Close&&a.Close()},p=y("ddnsto");return(d,l)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[t("div",Wp,[n.value=="index"?(i(),M(r8,{key:0,onSetup:s,active:p.value,"onUpdate:active":l[0]||(l[0]=u=>p.value=u)},null,8,["active"])):n.value=="ddns-ali"?(i(),M(ye,{key:1,onSetup:s,target:o.value,"onUpdate:target":l[1]||(l[1]=u=>o.value=u),name:"ali"},null,8,["target"])):n.value=="ddns-dnspod"?(i(),M(ye,{key:2,onSetup:s,target:o.value,"onUpdate:target":l[2]||(l[2]=u=>o.value=u),name:"dnspod"},null,8,["target"])):n.value=="ddns-oray"?(i(),M(ye,{key:3,onSetup:s,target:o.value,"onUpdate:target":l[3]||(l[3]=u=>o.value=u),name:"oray"},null,8,["target"])):n.value=="ddns-success"?(i(),M(g8,{key:4,onSetup:s,target:o.value},null,8,["target"])):E("",!0)])]),_:1},8,["Close"]))}});var Zp=Y(Hp,[["__scopeId","data-v-6f1d92d9"]]);const Jp=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Zp,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},Nt=e=>(O("data-v-2d533925"),e=e(),N(),e),Xp={class:"app-container"},Kp={class:"app-container_title"},Qp=Nt(()=>t("span",null,"\u8FDC\u7A0B\u57DF\u540D",-1)),t7={class:"app-container_domain"},e7={class:"domain-item"},a7=Nt(()=>t("div",{class:"domain-item_name"},[t("span",null,"DDNSTO\uFF1A")],-1)),o7={class:"domain-item_value"},n7=["href","title"],i7={key:1,class:"configure"},r7=Nt(()=>t("a",{class:"item_btn",href:"https://www.kooldns.cn/app/#/devices",target:"_blank"},"\u63A7\u5236\u53F0",-1)),s7={key:0,class:"domain-item"},d7=Nt(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv4\uFF1A")],-1)),u7={class:"domain-item_value"},l7={key:0},c7=["href"],p7={key:2,href:"/cgi-bin/luci/admin/services/ddns"},f7=Nt(()=>t("svg",{t:"1653625385794",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4476",width:"28",height:"28"},[t("path",{d:"M145.83060282785186 873.7309800675556h650.2280809434073c24.411293468444445 0 44.384169832296294-19.97287636385185 44.38416861866666-44.384169832296294V500.90395784533337c0-13.315251313777777-8.876834209185184-22.19208430933333-22.19208430933333-22.19208430933333s-22.19208430933333 8.876834209185184-22.19208430933333 22.19208430933333v326.22364444444446H145.83060282785186V179.1187305054815h616.9399532657777c13.315251313777777 0 22.19208430933333-8.876834209185184 22.19208552296296-22.19208552296296s-8.876834209185184-22.19208430933333-22.19208552296296-22.19208430933333H145.83060282785186c-24.411293468444445 0-44.384169832296294 19.97287636385185-44.38416861866666 44.384169832296294v650.2280797297777c0 24.411293468444445 19.97287636385185 44.384169832296294 44.38416861866666 44.384169832296294z",fill:"#666","p-id":"4477"}),t("path",{d:"M887.0462301677038 203.53002276029633l-488.225862087111 488.2258633007407c-8.876834209185184 8.876834209185184-8.876834209185184 22.19208430933333 0 31.06891851851852 4.438417104592592 4.438417104592592 11.096042154666666 6.657625050074073 15.53445925925926 6.657625050074073s11.096042154666666-2.2192079454814815 15.53445925925926-6.657625050074073l490.4450712462222-490.4450712462222c8.876834209185184-8.876834209185184 8.876834209185184-22.19208430933333 0-31.06891851851852s-24.411293468444445-6.657625050074073-33.288127677629625 2.2192079454814815z",fill:"#666","p-id":"4478"})],-1)),m7=[f7],b7={key:1,class:"domain-item"},v7=Nt(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv6\uFF1A")],-1)),g7={class:"domain-item_value"},_7={key:0},h7=["href"],x7={key:2,href:"/cgi-bin/luci/admin/services/ddns"},k7=Nt(()=>t("svg",{t:"1653625385794",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4476",width:"28",height:"28"},[t("path",{d:"M145.83060282785186 873.7309800675556h650.2280809434073c24.411293468444445 0 44.384169832296294-19.97287636385185 44.38416861866666-44.384169832296294V500.90395784533337c0-13.315251313777777-8.876834209185184-22.19208430933333-22.19208430933333-22.19208430933333s-22.19208430933333 8.876834209185184-22.19208430933333 22.19208430933333v326.22364444444446H145.83060282785186V179.1187305054815h616.9399532657777c13.315251313777777 0 22.19208430933333-8.876834209185184 22.19208552296296-22.19208552296296s-8.876834209185184-22.19208430933333-22.19208552296296-22.19208430933333H145.83060282785186c-24.411293468444445 0-44.384169832296294 19.97287636385185-44.38416861866666 44.384169832296294v650.2280797297777c0 24.411293468444445 19.97287636385185 44.384169832296294 44.38416861866666 44.384169832296294z",fill:"#666","p-id":"4477"}),t("path",{d:"M887.0462301677038 203.53002276029633l-488.225862087111 488.2258633007407c-8.876834209185184 8.876834209185184-8.876834209185184 22.19208430933333 0 31.06891851851852 4.438417104592592 4.438417104592592 11.096042154666666 6.657625050074073 15.53445925925926 6.657625050074073s11.096042154666666-2.2192079454814815 15.53445925925926-6.657625050074073l490.4450712462222-490.4450712462222c8.876834209185184-8.876834209185184 8.876834209185184-22.19208430933333 0-31.06891851851852s-24.411293468444445-6.657625050074073-33.288127677629625 2.2192079454814815z",fill:"#666","p-id":"4478"})],-1)),w7=[k7],y7=P({setup(e){let a=!1,o;const n=y({}),s=function(){!a||S.Guide.GetDdns.GET().then(d=>{var l;d!=null&&d.data&&(((l=d==null?void 0:d.data)==null?void 0:l.success)||0)==0&&d.data.result&&(n.value=d.data.result)}).then(()=>{!a||(o=window.setTimeout(s,3e3))})};Ft(()=>{a=!0,o=window.setTimeout(s,1100)}),Gt(()=>{o!==void 0&&window.clearTimeout(o),a=!1});const c=()=>{Jp({url:n.value.ddnstoDomain})},f=R(()=>{const d=n.value.ipv4Domain;return!d||d=="Stopped"||d=="Disabled"?d:`http://${d}`}),p=R(()=>{const d=n.value.ipv6Domain;return!d||d=="Stopped"||d=="Disabled"?d:`http://${d}`});return(d,l)=>{var m,b,g,v;const u=X("GlHelp");return i(),r("div",Xp,[t("div",Kp,[t("span",null,[Qp,D(u,{type:"ddns"})]),t("div",{class:"app-container_tool"},[t("div",{class:"app-container_configure",onClick:c},"\u5FEB\u901F\u914D\u7F6E")])]),t("ul",t7,[t("li",e7,[a7,t("div",o7,[(m=n.value)!=null&&m.ddnstoDomain?(i(),r("a",{key:0,class:"configure",href:(b=n.value)==null?void 0:b.ddnstoDomain,target:"_blank",rel:"noopener noreferrer",title:(g=n.value)==null?void 0:g.ddnstoDomain},h((v=n.value)==null?void 0:v.ddnstoDomain),9,n7)):(i(),r("span",i7,"\u672A\u5B89\u88C5\u6216\u672A\u914D\u7F6E")),r7])]),k(f)?(i(),r("li",s7,[d7,t("div",u7,[k(f)=="Stopped"||k(f)=="Disabled"?(i(),r("span",l7,h(k(f)),1)):(i(),r("a",{key:1,class:"configure",href:k(f),target:"_blank",rel:"noopener noreferrer"},h(k(f)),9,c7)),k(f)?(i(),r("a",p7,m7)):E("",!0)])])):E("",!0),k(p)?(i(),r("li",b7,[v7,t("div",g7,[k(p)=="Stopped"||k(p)=="Disabled"?(i(),r("span",_7,h(k(p)),1)):(i(),r("a",{key:1,class:"configure",href:k(p),target:"_blank",rel:"noopener noreferrer"},h(k(p)),9,h7)),k(p)?(i(),r("a",x7,w7)):E("",!0)])])):E("",!0)])])}}});var F7=Y(y7,[["__scopeId","data-v-2d533925"]]);const E7={class:"nas-container"},C7={class:"nas-container_card"},$7={class:"nas-container_card"},D7={key:0,class:"nas-container_card"},B7={class:"nas-container_card"},Y7={class:"nas-container_card"},A7=P({setup(e){return(a,o)=>(i(),r("div",E7,[t("div",C7,[D(Ql)]),t("div",$7,[D(N2)]),k(Vt)("dockerd")?(i(),r("div",D7,[D(u5)])):E("",!0),t("div",B7,[D(G4)]),t("div",Y7,[D(F7)])]))}});var S7=Y(A7,[["__scopeId","data-v-66cc4e33"]]);const _t=e=>(O("data-v-f3717996"),e=e(),N(),e),z7={class:"app-container"},P7={class:"app-container_title"},T7=_t(()=>t("span",null,"\u7CFB\u7EDF\u4FE1\u606F",-1)),I7={class:"more_icon",title:"\u67E5\u770B\u7CFB\u7EDF\u4FE1\u606F"},L7={class:"DeviceBlock"},M7=_t(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/flash"},"\u5907\u4EFD\u5347\u7EA7")],-1)),O7=_t(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/store/pages/maintance"},"\u63D2\u4EF6\u5907\u4EFD")],-1)),N7={class:"item-label"},q7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u6E29\u5EA6")],-1)),V7={class:"item-label_value"},G7={class:"item-label"},j7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u4F7F\u7528\u7387")],-1)),R7={class:"item-label_value"},U7={class:"item-label"},W7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u5B58\u4F7F\u7528\u7387")],-1)),H7={class:"item-label_value"},Z7={class:"item-label"},J7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u8BBE\u5907\u578B\u53F7")],-1)),X7={class:"item-label_value"},K7={class:"item-label"},Q7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u56FA\u4EF6\u7248\u672C")],-1)),tf={class:"item-label_value"},ef={class:"item-label"},af=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u6838\u7248\u672C")],-1)),of={class:"item-label_value"},nf={class:"item-label"},rf=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5DF2\u542F\u52A8")],-1)),sf={class:"item-label_value"},df={class:"item-label"},uf=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u7CFB\u7EDF\u65F6\u95F4")],-1)),lf={class:"item-label_value"},cf=P({setup(e){const a=Ce(),o=R(()=>a.version),n=R(()=>a.systemStatus),s=y(!1),c=R(()=>{var m;return((m=n.value)==null?void 0:m.cpuUsage)||0}),f=R(()=>{var m;return((m=n.value)==null?void 0:m.cpuTemperature)||0}),p=R(()=>{var b;const m=((b=n.value)==null?void 0:b.memAvailablePercentage)||100;return 100-m}),d=yt.stampForm;Ft(()=>{});const l=()=>{s.value=!s.value},u=()=>{l(),ct.installAndGo("app-meta-netdata","NetData","/cgi-bin/luci/admin/status/netdata")};return(m,b)=>{var v,_,w,x,C;const g=X("progress-item");return i(),r("div",z7,[t("div",P7,[T7,t("span",I7,[D($t,{onClick:l})]),z(t("div",L7,[t("div",{class:"menu_background",onClick:l}),t("ul",null,[t("li",null,[t("a",{onClick:u},"\u7CFB\u7EDF\u76D1\u63A7")]),M7,O7])],512),[[wt,s.value]])]),t("div",N7,[q7,t("div",V7,[D(g,{value:k(f)/1.5,text:`${k(f)}\u2103`},null,8,["value","text"])])]),t("div",G7,[j7,t("div",R7,[D(g,{value:k(c),text:`${k(c)}%`},null,8,["value","text"])])]),t("div",U7,[W7,t("div",H7,[D(g,{value:k(p),text:`${k(p)}%`},null,8,["value","text"])])]),t("div",Z7,[J7,t("div",X7,[t("span",null,h((v=k(o))==null?void 0:v.model),1)])]),t("div",K7,[Q7,t("div",tf,[t("span",null,h((_=k(o))==null?void 0:_.firmwareVersion),1)])]),t("div",ef,[af,t("div",of,[t("span",null,h((w=k(o))==null?void 0:w.kernelVersion),1)])]),t("div",nf,[rf,t("div",sf,[t("span",null,h(k(d)((x=k(n))==null?void 0:x.uptime)),1)])]),t("div",df,[uf,t("div",lf,[t("span",null,h((C=k(n))==null?void 0:C.localtime),1)])])])}}});var pf=Y(cf,[["__scopeId","data-v-f3717996"]]);const ba=/\d+\.\d+\.\d+\.\d+/,ff=e=>ba.test(e)&&te.IPv4.isValid(e),Ct=e=>{const a=te.IPv4.parse(e).toByteArray();return a[0]<<24|a[1]<<16|a[2]<<8|a[3]},He=e=>te.fromByteArray([e>>24&255,e>>16&255,e>>8&255,e&255]).toString(),mf=e=>{if(!ba.test(e)||!te.IPv4.isIPv4(e))return!1;let a=0,o=Ct(e);for(let n=31;n>=0&&(o&1<{let s=Ct(e)&Ct(a),c=Ct(o),f=Ct(n),d=~Ct(a);return cs+1&&f{let o=Ct(a),n=Ct(e)&o,s=~o,c;return s>=105?(c=n|s-5,n=n|100):s>=3?(c=n|s-1,n=n|2):(n=n|1,c=n),[He(n),He(c)]},gf=e=>te.IPv4.subnetMaskFromPrefixLength(e).toString();var xt={isValidMask:mf,isValidIPv4:ff,isValidMaskRange:bf,calcMaskRange:vf,prefixToMask:gf};const mt=e=>(O("data-v-9cffddcc"),e=e(),N(),e),_f=["onSubmit"],hf=mt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u5185\u7F51\u914D\u7F6E")],-1)),xf={class:"actioner-dns_body"},kf={class:"label-item"},wf=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5730\u5740")],-1)),yf={class:"label-item_value"},Ff={class:"label-item"},Ef=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5B50\u7F51\u63A9\u7801")],-1)),Cf={class:"label-item_value"},$f={key:0,class:"chose_dhcp"},Df={key:0,class:"dhcp_info"},Bf={key:1,class:"dhcp_info"},Yf={class:"label-item"},Af=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u8D77\u59CB\u5730\u5740")],-1)),Sf={class:"label-item_value"},zf={class:"label-item"},Pf=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u7ED3\u675F\u5730\u5740")],-1)),Tf={class:"label-item_value"},If={class:"actioner-dns_footer"},Lf=["disabled"],Mf={key:1,class:"actioner-dns"},Of=mt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u66F4\u6362\u914D\u7F6E")],-1)),Nf={class:"actioner-dns_body"},qf={key:0,class:"setting_status"},Vf=mt(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128"},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063"})])],-1)),Gf=mt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u6210\u529F",-1)),jf=["href"],Rf={key:1,class:"setting_status"},Uf=mt(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063200324",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5898",width:"128",height:"128"},[t("path",{d:"M549.044706 512l166.189176-166.249412a26.383059 26.383059 0 0 0 0-36.98447 26.383059 26.383059 0 0 0-37.044706 0L512 475.015529l-166.249412-166.249411a26.383059 26.383059 0 0 0-36.98447 0 26.383059 26.383059 0 0 0 0 37.044706L475.015529 512l-166.249411 166.249412a26.383059 26.383059 0 0 0 0 36.98447 26.383059 26.383059 0 0 0 37.044706 0L512 548.984471l166.249412 166.249411a26.383059 26.383059 0 0 0 36.98447 0 26.383059 26.383059 0 0 0 0-37.044706L548.984471 512zM512 1024a512 512 0 1 1 0-1024 512 512 0 0 1 0 1024z",fill:"#E84335","p-id":"5899"})])],-1)),Wf=mt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u5931\u8D25",-1)),Hf=mt(()=>t("p",null,"\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E",-1)),Zf={key:2,class:"setting_status"},Jf=mt(()=>t("div",{class:"success_icon"},[t("svg",{width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])])],-1)),Xf=mt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u8D85\u65F6",-1)),Kf=mt(()=>t("p",null,"\u8DEF\u7531\u5668 IP \u53EF\u80FD\u5DF2\u7ECF\u4FEE\u6539\u6210\u529F\u3002\u82E5\u5237\u65B0\u9875\u9762\u5931\u8D25\uFF0C\u8BF7\u91CD\u65B0\u8FDE\u63A5\u8DEF\u7531\u5668\uFF0C\u5426\u5219\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E\u3002",-1)),Qf=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y({lanIp:"",netMask:"255.255.255.0",enableDhcp:!1,dhcpStart:"",dhcpEnd:""});y("");const s=y(!1);y(!0),y(!1);const c=y(""),f=y(2),p=y(!1),d=y("timeout");let l=!0;(()=>{S.Guide.GetLan.GET().then(_=>{_.data.result&&(p.value=_.data.result.enableDhcp||!1,_.data.result.enableDhcp=!1,n.value=_.data.result,_.data.result.lanIp!==location.hostname&&(l=!1))})})();const m=()=>{const _=n.value;if(!xt.isValidIPv4(_.lanIp)){F.Warning("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!xt.isValidMask(_.netMask)){F.Warning("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}const w=xt.calcMaskRange(_.lanIp,_.netMask);_.dhcpStart=w[0],_.dhcpEnd=w[1],n.value=_},b=()=>{const _=n.value;if(!xt.isValidIPv4(_.lanIp)){F.Warning("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!xt.isValidMask(_.netMask)){F.Warning("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}if(_.enableDhcp&&!(xt.isValidIPv4(_.dhcpStart)&&xt.isValidIPv4(_.dhcpEnd)&&xt.isValidMaskRange(_.lanIp,_.netMask,_.dhcpStart,_.dhcpEnd))){F.Warning("DHCP\u7684IP\u6C60\u683C\u5F0F\u9519\u8BEF\u6216\u8D85\u51FA\u5B50\u7F51\u8303\u56F4");return}const w=F.Loading("\u6B63\u5728\u914D\u7F6E\u2026\u8BF7\u7A0D\u7B49",30);let x=0;const C=B=>{d.value=B,o.value=1,x=1,w.Close()},A=()=>{const B=new Date().getTime()+3e4,$=l?location.protocol+"//"+_.lanIp+(location.port?":"+location.port:""):location.origin,q=$+"/luci-static/resources/icons/loading.gif",H=()=>{x==0&&(new Date().getTime()>B?C("timeout"):window.setTimeout(Z,2e3))},G=()=>{x==0&&(c.value=$+location.pathname,C("success"),window.setTimeout(()=>{f.value=1},1e3),window.setTimeout(()=>{location.href=c.value},2e3))},Z=()=>{if(x!=0)return;console.log("check online ",q);const ht=new Image;ht.onload=G,ht.onerror=H,ht.src=q};window.setTimeout(Z,5e3)};S.Guide.LanIp.POST(_).then(B=>{var $;if(B!=null&&B.data){if((B.data.success||0)==0)return;if(($=B.data)!=null&&$.error)throw B.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(B=>{x==0&&(C("fail"),F.Error(B))}),A(),window.setTimeout(()=>{x==0&&C("timeout")},3e4)},g=_=>{_.preventDefault(),a.Close&&a.Close()},v=_=>{location.reload()};return(_,w)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(b,["prevent"])},[hf,t("div",xf,[t("div",kf,[wf,t("div",yf,[z(t("input",{type:"text",placeholder:"192.168.100.1",required:"","onUpdate:modelValue":w[0]||(w[0]=x=>n.value.lanIp=x),onChange:m},null,544),[[W,n.value.lanIp,void 0,{trim:!0}]])])]),t("div",Ff,[Ef,t("div",Cf,[z(t("input",{type:"text",placeholder:"255.255.255.0",required:"","onUpdate:modelValue":w[1]||(w[1]=x=>n.value.netMask=x),onChange:m},null,544),[[W,n.value.netMask,void 0,{trim:!0}]])])]),p.value?(i(),r("div",$f,[D(ea,{modelValue:n.value.enableDhcp,"onUpdate:modelValue":w[2]||(w[2]=x=>n.value.enableDhcp=x)},{default:V(()=>[n.value.enableDhcp?(i(),r("span",Df,"\u4FEE\u6539DHCP\u670D\u52A1")):(i(),r("span",Bf,"\u4FDD\u6301DHCP\u670D\u52A1\u8BBE\u7F6E"))]),_:1},8,["modelValue"])])):E("",!0),n.value.enableDhcp?(i(),r(L,{key:1},[t("div",Yf,[Af,t("div",Sf,[z(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":w[3]||(w[3]=x=>n.value.dhcpStart=x)},null,512),[[W,n.value.dhcpStart,void 0,{trim:!0}]])])]),t("div",zf,[Pf,t("div",Tf,[z(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":w[4]||(w[4]=x=>n.value.dhcpEnd=x)},null,512),[[W,n.value.dhcpEnd,void 0,{trim:!0}]])])])],64)):E("",!0)]),t("div",If,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:s.value},"\u786E\u8BA4",8,Lf),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])],40,_f)):o.value==1?(i(),r("div",Mf,[Of,t("div",Nf,[d.value=="success"?(i(),r("div",qf,[Vf,Gf,t("a",{href:c.value,class:"NewAdress"},h(f.value)+"s\u540E \u8DF3\u8F6C\u65B0\u5730\u5740",9,jf)])):d.value=="fail"?(i(),r("div",Rf,[Uf,Wf,Hf,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:v},"\u6211\u77E5\u9053\u4E86")])):d.value=="timeout"?(i(),r("div",Zf,[Jf,Xf,Kf,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:v},"\u5237\u65B0\u9875\u9762")])):E("",!0)])])):E("",!0)]),_:1},8,["Close"]))}});var tm=Y(Qf,[["__scopeId","data-v-9cffddcc"]]);const em=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(tm,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},bt=e=>(O("data-v-0384f3ac"),e=e(),N(),e),am={key:0,class:"actioner-dns"},om=bt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),nm={class:"actioner-dns_body"},im=bt(()=>t("p",{class:"sandbox_info"},"\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4Docker\u548C\u786C\u76D8\u7684\u6570\u636E",-1)),rm={key:0,class:"disk_loading_icon"},sm=bt(()=>t("span",{class:"disk_loading_info"},"\u6B63\u5728\u52A0\u8F7D\u4E2D...",-1)),dm={key:1,class:"disk_tips"},um=bt(()=>t("span",null,"\u68C0\u6D4B\u4E0D\u5230\u6302\u8F7D\u7684\u78C1\u76D8\u4FE1\u606F\uFF0C\u8BF7\u5148\u63D2\u4E0A\u78C1\u76D8\uFF0C\u5EFA\u8BAE\u4F7F\u7528U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378",-1)),lm={class:"label-item"},cm=bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u78C1\u76D8\uFF08\u5EFA\u8BAE\u9009\u62E9U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378\uFF09")],-1)),pm={class:"label-item_value"},fm=bt(()=>t("option",{value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u78C1\u76D8",-1)),mm=["value"],bm={class:"label-item"},vm=bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A\uFF08\u5206\u533A\u5927\u5C0F\u987B\u5927\u4E8E2G\uFF0C\u5C06\u6B64\u5206\u533A\u4F5C\u4E3A\u5916\u90E8 overlay \u4F7F\u7528\uFF09")],-1)),gm={class:"label-item_value"},_m=bt(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u5206\u533A",-1)),hm=["value","disabled"],xm={class:"sandbox_tips"},km=bt(()=>t("span",null,"\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E",-1)),wm={class:"sandbox_info timeout"},ym=U("\u5373\u5C06\u91CD\u542F\u8BBE\u5907 "),Fm=bt(()=>t("p",{class:"sandbox_roboot_tips"},[U("\u7B49\u5F85\u8BBE\u5907\u91CD\u542F\uFF0C\u91CD\u542F\u5B8C\u6210\u540E"),t("span",{class:"sandbox_roboot_refresh"},"\u8BF7\u5237\u65B0\u754C\u9762")],-1)),Em={key:0,class:"actioner-dns_footer"},Cm=["disabled"],$m={key:1,class:"actioner-tips"},Dm=bt(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u6E29\u99A8\u63D0\u793A")],-1)),Bm=bt(()=>t("div",{class:"actioner-tips_body"},[t("p",{class:"sandbox_info"},"\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E\uFF0C\u5E76\u683C\u5F0F\u5316\u6210EXT4\uFF0C\u968F\u540E\u81EA\u52A8\u91CD\u542F\u8FDB\u5165\u6C99\u7BB1\u6A21\u5F0F\uFF0C\u662F\u5426\u7EE7\u7EED\uFF1F")],-1)),Ym={key:2,class:"actioner-tips"},Am=bt(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u9519\u8BEF")],-1)),Sm={class:"actioner-tips_body"},zm={class:"sandbox_info"},Pm=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0);y("disk");const n=y(""),s=y(3),c=y(""),f=y([]),p=y(""),d=y(null);(()=>{S.Nas.SandboxDisks.GET().then(x=>{var C;if(x!=null&&x.data&&(C=x.data)!=null&&C.result){d.value=x.data.result;return}throw"\u52A0\u8F7D\u78C1\u76D8\u4FE1\u606F\u5931\u8D25"}).catch(x=>{n.value=x,o.value=3})})();const u=()=>S.System.Reboot.POST({name:c.value,path:p.value}).then(x=>{var C;if(!(x!=null&&x.data&&(((C=x==null?void 0:x.data)==null?void 0:C.success)||0)==0))throw"\u672A\u77E5\u9519\u8BEF"}),m=x=>{var C,A;p.value="",f.value=c.value&&((A=(C=d.value)==null?void 0:C.disks.find(B=>B.path==c.value))==null?void 0:A.childrens)||[]},b=()=>{s.value>0&&(s.value-=1,window.setTimeout(b,1e3))},g=x=>{x.preventDefault(),a.Close&&a.Close()},v=()=>{new Promise((x,C)=>{const A="/luci-static/resources/icons/loading.gif",B=()=>{window.setTimeout($,2e3)},$=()=>{const q=new Image;q.onload=x,q.onerror=B,q.src=A};window.setTimeout($,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},_=x=>{const C=F.Loading("\u914D\u7F6E\u6C99\u7BB1\u91CD\u542F\u4E2D...");S.Nas.Sandbox.POST({path:p.value}).then(A=>{var B;if(A!=null&&A.data){if((A.data.success||0)==0)return o.value=2,window.setTimeout(b,1e3),u();if((B=A.data)!=null&&B.error)throw A.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).then(v).catch(A=>F.Warning(A)).finally(()=>C.Close())},w=()=>{o.value=0};return(x,C)=>{const A=X("icon-loading");return i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0||o.value==2?(i(),r("div",am,[om,t("div",nm,[im,o.value==0?(i(),r(L,{key:0},[d.value?E("",!0):(i(),r("div",rm,[D(A,{size:38,color:"currentColor"}),sm])),d.value&&d.value.disks.length==0?(i(),r("div",dm,[D(gt),um])):E("",!0),d.value&&d.value.disks.length>0?(i(),r(L,{key:2},[t("div",lm,[cm,t("div",pm,[z(t("select",{name:"",id:"",onChange:m,"onUpdate:modelValue":C[0]||(C[0]=B=>c.value=B)},[fm,(i(!0),r(L,null,j(d.value.disks,(B,$)=>(i(),r("option",{value:B.path,key:$},h(B.venderModel)+"\uFF08"+h(B.size)+"\uFF09 ",9,mm))),128))],544),[[Q,c.value]])])]),t("div",bm,[vm,t("div",gm,[z(t("select",{name:"",id:"","onUpdate:modelValue":C[1]||(C[1]=B=>p.value=B)},[_m,(i(!0),r(L,null,j(f.value,(B,$)=>(i(),r("option",{value:B.path,key:$,disabled:B.sizeInt<(1<<30)*1||B.isSystemRoot},h(B.name)+"\uFF08"+h(B.filesystem||"\u672A\u683C\u5F0F\u5316")+"\uFF09"+h(B.total),9,hm))),128))],512),[[Q,p.value]])])]),t("div",xm,[D(gt),km])],64)):E("",!0)],64)):E("",!0),o.value==2?(i(),r(L,{key:1},[t("p",wm,[ym,t("span",null,"\uFF08"+h(s.value)+"s\uFF09",1)]),Fm],64)):E("",!0)]),o.value==0?(i(),r("div",Em,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:!p.value,onClick:C[2]||(C[2]=B=>o.value=1)},"\u5F00\u542F\u6C99\u7BB1",8,Cm),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])):E("",!0)])):E("",!0),o.value==1?(i(),r("div",$m,[Dm,Bm,t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:_},"\u7EE7\u7EED"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},"\u53D6\u6D88")])])):E("",!0),o.value==3?(i(),r("div",Ym,[Am,t("div",Sm,[t("p",zm,h(n.value),1)]),t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},"\u53D6\u6D88")])])):E("",!0)]),_:1},8,["Close"])}}});var Tm=Y(Pm,[["__scopeId","data-v-0384f3ac"]]);const Im=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Tm,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},va=e=>(O("data-v-4db2efb4"),e=e(),N(),e),Lm={key:0,class:"actioner-dns"},Mm=va(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),Om=va(()=>t("div",{class:"actioner-dns_body"},[t("p",{class:"sandbox_info"},"\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4 Docker \u548C\u786C\u76D8\u7684\u6570\u636E"),t("div",{class:"sandbox_environment"},[t("p",null,"\u5F53\u524D\u5904\u4E8E\u6C99\u7BB1\u73AF\u5883\uFF1A"),t("p",null,"1\u3001\u70B9\u51FB\u201C\u63D0\u4EA4\u201D\u53EF\u5C06\u53D8\u66F4\u5408\u5E76\u5230\u975E\u6C99\u7BB1\u73AF\u5883"),t("p",null,"2\u3001\u70B9\u51FB\u201C\u91CD\u7F6E\u201D\u53EF\u5C06\u6C99\u7BB1\u6062\u590D\u5230\u521D\u59CB\u72B6\u6001"),t("p",null,"3\u3001\u70B9\u51FB\u201C\u9000\u51FA\u201D\u53EF\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u5E76\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E")]),t("div",{class:"sandbox_environment_info"},[U("\u4EE5\u4E0A\u64CD\u4F5C\u90FD\u5C06\u91CD\u542F\u8BBE\u5907\uFF0C\u8BBE\u5907\u91CD\u542F\u5B8C\u6210\u540E\u4F1A\u81EA\u52A8\u5237\u65B0\u9875\u9762\u3002\u5982\u679C IP \u53D8\u5316\u53EF\u80FD\u9700\u8981"),t("span",{class:"sandbox_environment_reboot"},"\u624B\u52A8\u5728\u5730\u5740\u680F\u8F93\u5165\u5730\u5740"),t("p",{class:"sandbox_environment_tex"},[U(" \u5982\u9700"),t("b",null,"\u4E34\u65F6"),U("\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u8BF7\u5C06\u8BBE\u5907\u5173\u673A\u540E\u62D4\u51FA\u76F8\u5173\u78C1\u76D8\uFF0C\u542F\u52A8\u524D\u63D2\u5165\u76F8\u5173\u78C1\u76D8\u53EF\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u3002"),t("br"),U(" \u6CE8\u610F\u4E34\u65F6\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\u4EE5\u540E\u5347\u7EA7\u56FA\u4EF6\u4F1A\u5BFC\u81F4\u4E4B\u524D\u7684\u6C99\u7BB1\u6570\u636E\u65E0\u6548 ")])])],-1)),Nm={class:"actioner-dns_footer"},qm=["disabled"],Vm=["disabled"],Gm=["disabled"],jm=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y(!1),s=()=>{new Promise((l,u)=>{const m="/luci-static/resources/icons/loading.gif",b=()=>{window.setTimeout(g,2e3)},g=()=>{const v=new Image;v.onload=l,v.onerror=b,v.src=m};window.setTimeout(g,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},c=()=>{n.value=!0;const l=F.Loading("\u63D0\u4EA4\u4E2D...");S.Nas.SandboxCommit.POST().then(u=>{var m,b;if(u!=null&&u.data)if((((m=u==null?void 0:u.data)==null?void 0:m.success)||0)==0){F.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D...");return}else(b=u==null?void 0:u.data)!=null&&b.error&&alert(u.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(u=>{F.Error(u),n.value=!1}).finally(()=>l.Close())},f=()=>{n.value=!0;const l=F.Loading("\u91CD\u7F6E\u4E2D...");S.Nas.SandboxReset.POST().then(u=>{var m,b;if(u!=null&&u.data)if((((m=u==null?void 0:u.data)==null?void 0:m.success)||0)==0){F.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740");return}else(b=u==null?void 0:u.data)!=null&&b.error&&alert(u.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(u=>{F.Error(u),n.value=!1}).finally(()=>l.Close())},p=()=>{if(!confirm("\u786E\u5B9A\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E\uFF1F\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u9700\u8981\u91CD\u65B0\u683C\u5F0F\u5316\u76F8\u5E94\u78C1\u76D8\u5206\u533A"))return;n.value=!0;const l=F.Loading("\u6267\u884C\u4E2D...");S.Nas.SandboxExit.POST().then(u=>{var m,b;if(u!=null&&u.data)if((((m=u==null?void 0:u.data)==null?void 0:m.success)||0)==0){F.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740");return}else(b=u==null?void 0:u.data)!=null&&b.error&&alert(u.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(u=>{F.Error(u),n.value=!1}).finally(()=>l.Close())},d=l=>{l.preventDefault(),a.Close&&a.Close()};return(l,u)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0?(i(),r("div",Lm,[Mm,Om,t("div",Nm,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:c,disabled:n.value},"\u63D0\u4EA4",8,qm),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:f,disabled:n.value},"\u91CD\u7F6E",8,Vm),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:p,disabled:n.value},"\u9000\u51FA",8,Gm),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u53D6\u6D88")])])):E("",!0)]),_:1},8,["Close"]))}});var Rm=Y(jm,[["__scopeId","data-v-4db2efb4"]]);const Um=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Rm,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},Wm={class:"nav-container"},Hm=["onClick"],Zm={key:1,class:"btn_styles color3 app-update-button",onclick:"window.location.href='/cgi-bin/luci/admin/system/ota'"},Jm=U(" \u56FA\u4EF6\u66F4\u65B0 "),Xm={key:0,style:{display:"inline-block"}},Km={key:1},Qm=["disabled"],t9=U(" DNS\u914D\u7F6E "),e9={key:0,style:{display:"inline-block"}},a9=P({setup(e){const a=Ce(),o=le(),n=R(()=>o.status);y(!1),y(!0);const s=y(),c=()=>{oa()},f=()=>{Im()},p=()=>{Um()},d=()=>{alert("\u8BE5\u56FA\u4EF6\u4E0D\u652F\u6301\u6C99\u7BB1\u6A21\u5F0F")},l=()=>{em()},u=()=>{ra()},m=()=>{var b,g,v,_;window.open(`${(g=(b=window.quickstart_configs)==null?void 0:b.ttyd)!=null&&g.ssl?"https":"http"}://${window.location.hostname}:${((_=(v=window.quickstart_configs)==null?void 0:v.ttyd)==null?void 0:_.port)||7681}/`,"_blank")};return Vt("sandbox")&&S.Nas.GetSandbox.GET().then(g=>{var v,_,w;g!=null&&g.data&&((((v=g==null?void 0:g.data)==null?void 0:v.success)||0)==0?(_=g==null?void 0:g.data)!=null&&_.result&&(s.value=g.data.result):(w=g==null?void 0:g.data)!=null&&w.error&&alert(g.data.error))}).catch(g=>F.Warning(g)),(b,g)=>{var w,x,C,A,B,$;const v=X("router-link"),_=X("icon-loading");return i(),r("div",Wm,[D(v,{to:"/network",custom:""},{default:V(({navigate:q})=>[t("button",{class:"btn_styles color1",onClick:q},"\u7F51\u7EDC\u5411\u5BFC",8,Hm)]),_:1}),k(Vt)("ttyd")?(i(),r("button",{key:0,class:"btn_styles color2 app-btn-ttyd",onClick:m},"\u7EC8\u7AEF")):E("",!0),k(Vt)("ota")?(i(),r("button",Zm,[Jm,k(a).checkUpdate==null?(i(),r("span",Xm,[D(_,{size:"0.8em",color:"currentColor"})])):(w=k(a).checkUpdate)!=null&&w.needUpdate?(i(),r("i",Km)):E("",!0)])):E("",!0),t("button",{class:"btn_styles color4",onClick:l},"\u5185\u7F51\u914D\u7F6E"),t("button",{class:"btn_styles color5",onClick:c,disabled:!((x=k(n))!=null&&x.proto)},[t9,(C=k(n))!=null&&C.proto?E("",!0):(i(),r("span",e9,[D(_,{size:"0.8em",color:"currentColor"})]))],8,Qm),t("button",{class:"btn_styles color1",onClick:u},"\u8F6F\u4EF6\u6E90\u914D\u7F6E"),k(Vt)("sandbox")?(i(),r(L,{key:2},[((A=s.value)==null?void 0:A.status)=="unsupport"?(i(),r("button",{key:0,class:"btn_styles color2",onClick:d},"\u5F00\u542F\u6C99\u7BB1")):((B=s.value)==null?void 0:B.status)=="stopped"?(i(),r("button",{key:1,class:"btn_styles color3",onClick:f},"\u5F00\u542F\u6C99\u7BB1")):(($=s.value)==null?void 0:$.status)=="running"?(i(),r("button",{key:2,class:"btn_styles color4",onClick:p},"\u6C99\u7BB1\u5DF2\u5F00\u542F")):E("",!0)],64)):E("",!0)])}}});var o9=Y(a9,[["__scopeId","data-v-0d223b54"]]);const _e=e=>(O("data-v-08ce2a3e"),e=e(),N(),e),n9={id:"page"},i9=_e(()=>t("div",{style:{height:"48px","text-align":"right"}},[t("a",{onclick:"void(0)",href:"https://www.istoreos.com/",target:"_blank",style:{"text-decoration":"none",color:"white","line-height":"1.5em"}},"iStoreOS\u5B98\u7F51")],-1)),r9=_e(()=>t("em",null,null,-1)),s9=_e(()=>t("em",null,null,-1)),d9=_e(()=>t("em",null,null,-1)),u9=P({setup(e){return to(),(a,o)=>(i(),r("div",n9,[i9,D(Qd),r9,D(o9),D(S7),s9,D(pf),d9]))}});var l9=Y(u9,[["__scopeId","data-v-08ce2a3e"]]);const c9={};function p9(e,a){const o=X("router-view");return i(),M(o)}var f9=Y(c9,[["render",p9]]);const m9={},b9={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},v9=Lt('icon_router',3),g9=[v9];function _9(e,a){return i(),r("svg",b9,g9)}var h9=Y(m9,[["render",_9]]);const x9={},k9={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},w9=Lt('icon_dial',3),y9=[w9];function F9(e,a){return i(),r("svg",k9,y9)}var E9=Y(x9,[["render",F9]]);const C9={},$9={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},D9=Lt('icon_side router',3),B9=[D9];function Y9(e,a){return i(),r("svg",$9,B9)}var A9=Y(C9,[["render",Y9]]);const Wt=e=>(O("data-v-082ffcaf"),e=e(),N(),e),S9={id:"page"},z9=Wt(()=>t("div",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528\u7F51\u7EDC\u914D\u7F6E\u5411\u5BFC",-1)),P9=Wt(()=>t("div",{class:"desc"},"\u9009\u62E9\u4E00\u79CD\u8FDE\u63A5\u65B9\u5F0F\u4EE5\u5F00\u59CB",-1)),T9={class:"network-containers"},I9={class:"network-container_item"},L9={class:"cover"},M9={class:"thumbnail"},O9=Wt(()=>t("span",null,"\u5BBD\u5E26\u62E8\u53F7\u8FDE\u63A5",-1)),N9={class:"network-container_item"},q9={class:"cover"},V9={class:"thumbnail"},G9=Wt(()=>t("span",null,"\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668",-1)),j9={class:"network-container_item"},R9={class:"cover"},U9={class:"thumbnail"},W9=Wt(()=>t("span",null,"\u914D\u7F6E\u4E3A\u65C1\u8DEF\u7531",-1)),H9=Wt(()=>t("div",{class:"info"},[U(" \u6CA1\u627E\u5230\u60F3\u8981\u7684\u914D\u7F6E\uFF1F\u8BF7\u4F7F\u7528 "),t("a",{href:"/cgi-bin/luci/admin/network/network"},"\u9AD8\u7EA7\u6A21\u5F0F")],-1)),Z9=P({setup(e){return(a,o)=>{const n=X("router-link");return i(),r("div",S9,[z9,P9,t("div",T9,[t("div",I9,[D(n,{to:"/network/pppoe"},{default:V(()=>[t("div",L9,[t("div",M9,[D(E9),O9])])]),_:1})]),t("div",N9,[D(n,{to:"/network/dhcp"},{default:V(()=>[t("div",q9,[t("div",V9,[D(h9),G9])])]),_:1})]),t("div",j9,[D(n,{to:"/network/gateway"},{default:V(()=>[t("div",R9,[t("div",U9,[D(A9),W9])])]),_:1})])]),H9])}}});var J9=Y(Z9,[["__scopeId","data-v-082ffcaf"]]);const At=e=>(O("data-v-16746f19"),e=e(),N(),e),X9={key:0,id:"page"},K9=At(()=>t("h2",{class:"title"},"\u914D\u7F6E\u5BBD\u5E26\u8D26\u53F7",-1)),Q9=At(()=>t("h3",{class:"desc"},"\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u5149\u732B",-1)),tb={class:"network-message"},eb={key:0},ab=U(" \u56E0\u4E3A\u60A8\u7684\u8BBE\u5907"),ob=At(()=>t("span",null,"\u6CA1\u6709 WAN \u53E3",-1)),nb=U("\uFF0C\u65E0\u6CD5\u8D70\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B "),ib=At(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/question.html#%E7%BD%91%E7%BB%9C",target:"_blank",rel:"noopener noreferrer"},"\u94FE\u63A5",-1)),rb=[ab,ob,nb,ib],sb=["onSubmit"],db=At(()=>t("div",{class:"label-key"},[t("span",null,"\u5BBD\u5E26\u8D26\u53F7")],-1)),ub=["disabled"],lb=At(()=>t("div",{class:"label-key"},[t("span",null,"\u5BC6\u7801")],-1)),cb=["disabled"],pb={key:0,class:"chose_dhcp"},fb=At(()=>t("span",{class:"dhcp_info"},"\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09",-1)),mb={key:1,class:"msg"},bb={class:"btns"},vb=["disabled"],gb=["onClick"],_b={key:1,id:"page"},hb=At(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),xb={class:"btns"},kb=["onClick"],wb=["onClick"],yb=P({setup(e){const a=y(0),o=y({}),n=y(""),s=y(!1),c=y(0),f=y(!1);(()=>T(this,null,function*(){var l,u;s.value=!0;try{const m=yield Promise.all([S.Guide.Pppoe.GET(),S.Guide.GetLan.GET()]);if(m[0].data){const{success:b,error:g,result:v}=m[0].data;v&&(v.enableLanDhcp=!1,o.value=v),b==-1011&&(s.value=!0,c.value=b)}(l=m[1].data)!=null&&l.result&&(((u=m[1].data)==null?void 0:u.result).enableDhcp||(f.value=!0,o.value.enableLanDhcp=!0))}catch(m){n.value=m}c.value==0&&(s.value=!1)}))();const d=()=>T(this,null,function*(){const l=o.value.account||"",u=o.value.password||"";if(l==""){n.value="\u8D26\u53F7\u4E0D\u80FD\u4E3A\u7A7A";return}if(u==""){n.value="\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A";return}s.value=!0;const m=F.Loading("\u914D\u7F6E\u4E2D...");try{const b=yield S.Guide.Pppoe.POST({account:l,password:u});if(b!=null&&b.data){const{error:g,success:v}=b.data;g&&(n.value=g),(v==null||v==0)&&(F.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(b){n.value=b}s.value=!1,m.Close()});return(l,u)=>{const m=X("switch-box"),b=X("router-link");return a.value==0?(i(),r("div",X9,[K9,Q9,t("div",tb,[c.value==-1011?(i(),r("li",eb,rb)):E("",!0)]),t("form",{onSubmit:nt(d,["prevent"])},[t("label",null,[db,z(t("input",{type:"text","onUpdate:modelValue":u[0]||(u[0]=g=>o.value.account=g),placeholder:"\u5BBD\u5E26\u8D26\u53F7",required:"",disabled:s.value},null,8,ub),[[W,o.value.account,void 0,{trim:!0}]])]),t("label",null,[lb,z(t("input",{type:"password","onUpdate:modelValue":u[1]||(u[1]=g=>o.value.password=g),placeholder:"\u5BBD\u5E26\u5BC6\u7801",required:"",disabled:s.value},null,8,cb),[[W,o.value.password,void 0,{trim:!0}]])]),f.value?(i(),r("div",pb,[D(m,{modelValue:o.value.enableLanDhcp,"onUpdate:modelValue":u[2]||(u[2]=g=>o.value.enableLanDhcp=g)},{default:V(()=>[fb]),_:1},8,["modelValue"])])):E("",!0),n.value?(i(),r("div",mb,h(n.value),1)):E("",!0),t("div",bb,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},"\u4FDD\u5B58\u914D\u7F6E",8,vb),D(b,{to:"/network",custom:""},{default:V(({navigate:g})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u8FD4\u56DE",8,gb)]),_:1})])],40,sb)])):a.value==1?(i(),r("div",_b,[hb,t("div",xb,[D(b,{to:"/",custom:""},{default:V(({navigate:g})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:g},"\u8FDB\u5165\u63A7\u5236\u53F0",8,kb)]),_:1}),D(b,{to:"/network",custom:""},{default:V(({navigate:g})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u8FD4\u56DE",8,wb)]),_:1})])])):E("",!0)}}});var Fb=Y(yb,[["__scopeId","data-v-16746f19"]]);const st=e=>(O("data-v-0d3a64fa"),e=e(),N(),e),Eb={key:0,id:"page"},Cb=st(()=>t("h2",{class:"title"},"\u914D\u7F6E\u4E92\u8054\u7F51",-1)),$b=st(()=>t("h3",{class:"desc"},"\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u4E0A\u7EA7\u8DEF\u7531\u5C40\u57DF\u7F51\uFF08 LAN \uFF09\u63A5\u53E3",-1)),Db={class:"network-message"},Bb={key:0},Yb=U(" \u56E0\u4E3A\u60A8\u7684\u8BBE\u5907"),Ab=st(()=>t("span",null,"\u6CA1\u6709 WAN \u53E3",-1)),Sb=U("\uFF0C\u65E0\u6CD5\u4F7F\u7528\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B "),zb=st(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/question.html#%E7%BD%91%E7%BB%9C",target:"_blank",rel:"noopener noreferrer"},"\u94FE\u63A5",-1)),Pb=[Yb,Ab,Sb,zb],Tb=["onSubmit"],Ib=st(()=>t("div",{class:"label-key"},[t("span",null,"WAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),Lb=st(()=>t("option",{value:"dhcp"},"\u81EA\u52A8\u83B7\u53D6IP\u5730\u5740\uFF08DHCP\uFF09",-1)),Mb=st(()=>t("option",{value:"static"},"\u9759\u6001IP\u5730\u5740",-1)),Ob=[Lb,Mb],Nb=st(()=>t("div",{class:"label-key"},[t("span",null,"IP\u5730\u5740")],-1)),qb=["disabled"],Vb={key:0,class:"msg"},Gb=st(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),jb=["disabled"],Rb={key:1,class:"msg"},Ub=st(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),Wb=["disabled"],Hb=st(()=>t("div",{class:"label-key"},[t("span",null,"DNS \u914D\u7F6E\u65B9\u5F0F")],-1)),Zb=["disabled"],Jb=st(()=>t("option",{value:"manual"},"\u624B\u5DE5\u914D\u7F6E",-1)),Xb=st(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),Kb=["onUpdate:modelValue","disabled"],Qb=st(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),tv=["disabled"],ev=st(()=>t("div",{class:"label-key"},"\u5907\u7528DNS\u670D\u52A1\u5668",-1)),av=["disabled"],ov={key:2,class:"chose_dhcp"},nv=st(()=>t("span",{class:"dhcp_info"},"\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09",-1)),iv={key:3,class:"msgs"},rv={class:"btns"},sv=["disabled"],dv=["onClick"],uv={key:1,id:"page"},lv=st(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),cv={class:"btns"},pv=["onClick"],fv=["onClick"],mv=P({setup(e){const a=y(0),o=y({}),n=y(""),s=y(""),c=y(""),f=y(!1),p=y(""),d=y(""),l=y(0),u=yt.checkIsIP,m=y(!1);(()=>T(this,null,function*(){var x,C;f.value=!0;try{const A=yield Promise.all([S.Guide.ClientModel.GET(),S.Guide.GetLan.GET()]);if(A[0]){const B=A[0];if(B.data){const{success:$,error:q,result:H}=B.data;H&&(H.wanProto!="dhcp"&&H.wanProto!="static"&&(H.wanProto="dhcp",H.dnsProto="auto"),H.enableLanDhcp=!1,o.value=H),$==-1011&&(l.value=$,f.value=!0)}}(x=A[1].data)!=null&&x.result&&(((C=A[1].data)==null?void 0:C.result).enableDhcp||(m.value=!0,o.value.enableLanDhcp=!0))}catch(A){n.value=A}l.value==0&&(f.value=!1)}))();const g=x=>{x.target.value=="static"?((o.value.staticIp==null||o.value.staticIp=="")&&(o.value.staticIp="192.168.1.100"),(o.value.subnetMask==null||o.value.subnetMask=="")&&(o.value.subnetMask="255.255.255.0"),o.value.dnsProto=="auto"&&setTimeout(()=>o.value.dnsProto="manual",0)):o.value.dnsProto=="manual"&&setTimeout(()=>o.value.dnsProto="auto",0)},v=x=>{const C=x.target;if(C.value==""){p.value="";return}u(C.value)?p.value="":p.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684IP\u5730\u5740"},_=x=>{const C=x.target;if(C.value==""){d.value="";return}u(C.value)?d.value="":d.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684\u5730\u5740"},w=()=>T(this,null,function*(){const x={};switch(o.value.wanProto){case"dhcp":break;case"static":x.staticIp=o.value.staticIp,x.subnetMask=o.value.subnetMask,x.gateway=o.value.gateway;break}switch(o.value.dnsProto){case"auto":break;case"manual":x.manualDnsIp=[],o.value.manualDnsIp!=null&&o.value.manualDnsIp.length>0?x.manualDnsIp=o.value.manualDnsIp:(x.manualDnsIp.push(s.value),c.value&&x.manualDnsIp.push(c.value));break}x.dnsProto=o.value.dnsProto,x.wanProto=o.value.wanProto,x.enableLanDhcp=o.value.enableLanDhcp;const C=F.Loading("\u914D\u7F6E\u4E2D....");f.value=!0;try{const A=yield S.Guide.ClientModel.POST(x);if(A!=null&&A.data){const{success:B,error:$}=A==null?void 0:A.data;$&&(n.value=$),(B==null||B==0)&&(F.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(A){n.value=A}f.value=!1,C.Close()});return(x,C)=>{const A=X("switch-box"),B=X("router-link");return a.value==0?(i(),r("div",Eb,[Cb,$b,t("div",Db,[l.value==-1011?(i(),r("li",Bb,Pb)):E("",!0)]),t("form",{onSubmit:nt(w,["prevent"])},[t("label",null,[Ib,z(t("select",{"onUpdate:modelValue":C[0]||(C[0]=$=>o.value.wanProto=$),onInput:g},Ob,544),[[Q,o.value.wanProto]])]),o.value.wanProto=="static"?(i(),r(L,{key:0},[t("label",null,[Nb,z(t("input",{type:"text","onUpdate:modelValue":C[1]||(C[1]=$=>o.value.staticIp=$),placeholder:"\u9759\u6001IP\u5730\u5740",required:"",disabled:f.value,onInput:v},null,40,qb),[[W,o.value.staticIp,void 0,{trim:!0}]])]),p.value?(i(),r("p",Vb,h(p.value),1)):E("",!0),t("label",null,[Gb,z(t("input",{type:"text","onUpdate:modelValue":C[2]||(C[2]=$=>o.value.subnetMask=$),placeholder:"\u5B50\u7F51\u63A9\u7801",required:"",disabled:f.value,onInput:_},null,40,jb),[[W,o.value.subnetMask,void 0,{trim:!0}]])]),d.value?(i(),r("p",Rb,h(d.value),1)):E("",!0),t("label",null,[Ub,z(t("input",{type:"text","onUpdate:modelValue":C[3]||(C[3]=$=>o.value.gateway=$),placeholder:"\u7F51\u5173\u5730\u5740",required:"",disabled:f.value},null,8,Wb),[[W,o.value.gateway,void 0,{trim:!0}]])])],64)):E("",!0),t("label",null,[Hb,z(t("select",{"onUpdate:modelValue":C[4]||(C[4]=$=>o.value.dnsProto=$)},[t("option",{value:"auto",disabled:o.value.wanProto=="static"},"\u81EA\u52A8\u83B7\u53D6\uFF08DHCP\uFF09",8,Zb),Jb],512),[[Q,o.value.dnsProto]])]),o.value.dnsProto=="manual"?(i(),r(L,{key:1},[o.value.manualDnsIp!=null&&o.value.manualDnsIp.length>0?(i(!0),r(L,{key:0},j(o.value.manualDnsIp,($,q)=>(i(),r("label",null,[Xb,z(t("input",{type:"text","onUpdate:modelValue":H=>o.value.manualDnsIp[q]=H,placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:f.value},null,8,Kb),[[W,o.value.manualDnsIp[q],void 0,{trim:!0}]])]))),256)):(i(),r(L,{key:1},[t("label",null,[Qb,z(t("input",{type:"text","onUpdate:modelValue":C[5]||(C[5]=$=>s.value=$),placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:f.value},null,8,tv),[[W,s.value,void 0,{trim:!0}]])]),t("label",null,[ev,z(t("input",{type:"text","onUpdate:modelValue":C[6]||(C[6]=$=>c.value=$),placeholder:"\u5907\u7528DNS\u670D\u52A1\u5668",disabled:f.value},null,8,av),[[W,c.value,void 0,{trim:!0}]])])],64))],64)):E("",!0),m.value?(i(),r("div",ov,[D(A,{modelValue:o.value.enableLanDhcp,"onUpdate:modelValue":C[7]||(C[7]=$=>o.value.enableLanDhcp=$)},{default:V(()=>[nv]),_:1},8,["modelValue"])])):E("",!0),n.value?(i(),r("div",iv,h(n.value),1)):E("",!0),t("div",rv,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:f.value},"\u4FDD\u5B58\u914D\u7F6E",8,sv),D(B,{to:"/network",custom:""},{default:V(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,dv)]),_:1})])],40,Tb)])):a.value==1?(i(),r("div",uv,[lv,t("div",cv,[D(B,{to:"/",custom:""},{default:V(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:$},"\u8FDB\u5165\u63A7\u5236\u53F0",8,pv)]),_:1}),D(B,{to:"/network",custom:""},{default:V(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,fv)]),_:1})])])):E("",!0)}}});var bv=Y(mv,[["__scopeId","data-v-0d3a64fa"]]);const lt=e=>(O("data-v-1c3f186c"),e=e(),N(),e),vv={key:0,id:"page"},gv=lt(()=>t("h2",{class:"title"},"\u65C1\u8DEF\u7531\u914D\u7F6E\u524D\u7684\u51C6\u5907\u5DE5\u4F5C",-1)),_v=lt(()=>t("code",null,[U(" \u65C1\u8DEF\u7531\u6A21\u5F0F\uFF0C\u4E5F\u53EB\u5355\u81C2\u8DEF\u7531\u6A21\u5F0F\u3002 "),t("br"),U("\u60A8\u53EF\u4EE5\u7528\u4E0A\u4E00\u7EA7\u8DEF\u7531\uFF08\u4E3B\u8DEF\u7531\uFF09\u62E8\u53F7\uFF0C\u7136\u540E\u7528\u672C\u8DEF\u7531\u6765\u5B9E\u73B0\u4E00\u4E9B\u9AD8\u7EA7\u529F\u80FD\u3002 "),t("br"),U("\u672C\u5411\u5BFC\u652F\u6301\u81EA\u52A8\u6216\u624B\u52A8\u914D\u7F6E\uFF1A "),t("br"),U("\u70B9\u51FB\u201C\u81EA\u52A8\u914D\u7F6E\u201D\u6309\u94AE\u5F00\u59CB\u81EA\u52A8\u914D\u7F6E\u5411\u5BFC\uFF1B "),t("br"),U("\u624B\u52A8\u914D\u7F6E\u5219\u9700\u81EA\u884C\u83B7\u53D6\u4E3B\u8DEF\u7531\u5668\u7684IP\u5730\u5740\uFF08\u4F8B\u5982 192.168.2.1 \uFF09\u548C\u5B50\u7F51\u63A9\u7801\uFF0C\u8BB0\u5F55\u4EE5\u5907\u540E\u7EED\u586B\u5199\uFF0C\u70B9\u51FB\u201C\u624B\u52A8\u914D\u7F6E\u201D\u6309\u94AE\uFF0C\u5207\u6362\u5230\u53C2\u6570\u914D\u7F6E\u9875\uFF0C\u6309\u5B9E\u9645\u60C5\u51B5\u81EA\u884C\u586B\u5199\u3002 ")],-1)),hv={class:"btns"},xv=["onClick"],kv={key:1,id:"page"},wv=lt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u65C1\u8DEF\u7531\u7F51\u7EDC",-1)),yv=lt(()=>t("h3",{class:"desc"},"\u73B0\u5728\uFF0C\u8BF7\u4F60\u914D\u7F6E\u65C1\u8DEF\u7531\u4FE1\u606F",-1)),Fv=["onSubmit"],Ev=lt(()=>t("div",{class:"label-key"},[t("span",null,"LAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),Cv={class:"label-value"},$v=lt(()=>t("option",null,"\u65C1\u8DEF\u7531\u6A21\u5F0F\u4EC5\u652F\u6301\u9759\u6001IP\u5730\u5740",-1)),Dv=[$v],Bv=lt(()=>t("div",{class:"label-key"},[t("span",null,"IP \u5730\u5740")],-1)),Yv=lt(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),Av=lt(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),Sv=lt(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),zv={key:0,class:"msgs"},Pv={class:"switch_inline"},Tv={key:0,class:"switch_info"},Iv={key:1,class:"switch_info"},Lv={class:"switch_inline"},Mv=lt(()=>t("span",{class:"switch_info"},"\u81EA\u52A8\u83B7\u53D6 IPV6\uFF08\u5373\u5F00\u542F DHCPv6 \u5BA2\u6237\u7AEF\uFF09",-1)),Ov={class:"btns"},Nv=lt(()=>t("button",{class:"cbi-button cbi-button-apply app-btn app-next"},"\u4FDD\u5B58\u914D\u7F6E",-1)),qv=["onClick"],Vv={key:2,id:"page"},Gv=lt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),jv=lt(()=>t("h3",{class:"desc"},"\u73B0\u5728\uFF0C\u5C06\u672C\u8DEF\u7531WAN\u53E3\u65AD\u5F00\uFF0C\u5C06\u5176\u4E2D\u4E00\u4E2ALAN\u53E3\u4E0E\u4E3B\u8DEF\u7531\u8FDE\u63A5\uFF0C\u5E76\u5C06\u5F53\u524D\u6D4F\u89C8\u5668\u8BBE\u5907\u8FDE\u63A5\u5230\u4E3B\u8DEF\u7531\u3002\u70B9\u51FB\u201C\u8FDB\u5165\u63A7\u5236\u53F0\u201D\u6D4F\u89C8\u5668\u5C06\u8DF3\u8F6C\u5230\u65B0\u7684\u8DEF\u7531IP",-1)),Rv={key:3,id:"page"},Uv=lt(()=>t("h2",{class:"title"},"\u65C1\u8DEF\u7531\u81EA\u52A8\u914D\u7F6E",-1)),Wv=lt(()=>t("code",null," \u9996\u5148\u786E\u8BA4\u4E3B\u8DEF\u7531\u5F00\u542F\u4E86 DHCP \u670D\u52A1\uFF0C\u786E\u8BA4\u672C\u8DEF\u7531 WAN \u53E3\u662F DHCP \u5BA2\u6237\u7AEF\u6A21\u5F0F\uFF08\u9ED8\u8BA4\u5373\u662F\uFF0C\u5982\u679C\u4E0D\u662F\u53EF\u4F7F\u7528\u201C\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668\u201D\u5411\u5BFC\u6539\u6210 DHCP \u5BA2\u6237\u7AEF\uFF09\uFF0C\u7136\u540E\u5C06\u672C\u8DEF\u7531 WAN \u53E3\u4E0E\u4E3B\u8DEF\u7531\u7684 LAN \u8FDE\u63A5\uFF0C\u4EE5\u81EA\u52A8\u83B7\u53D6\u914D\u7F6E\u3002 ",-1)),Hv=U(" 1. \u6EE1\u8DB3\u4E0A\u8FF0\u6761\u4EF6\u4EE5\u540E\uFF0C\u70B9\u51FB\u201C\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\u201D\u4EE5\u5237\u65B0\u5F53\u524D\u8FDE\u63A5\u4FE1\u606F\uFF0C\u6210\u529F\u4EE5\u540E\uFF0C\u201C\u81EA\u52A8\u586B\u5199\u201D\u6309\u94AE\u5C06\u88AB\u6FC0\u6D3B\u3002(\u5931\u8D25\u53EF\u518D\u6B21\u70B9\u51FB) "),Zv=["disabled"],Jv=U("\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\uFF08\u70B9\u6B64\u5237\u65B0\uFF09 "),Xv={style:{"text-align":"left"}},Kv=U(" 2. \u70B9\u51FB\u201C\u81EA\u52A8\u586B\u5199\u201D\uFF0C\u5C06\u5207\u6362\u5230\u53C2\u6570\u9875\u5E76\u81EA\u52A8\u586B\u5199\u3002\u6B64\u65F6\u4F9D\u7136\u53EF\u4EE5\u81EA\u884C\u8C03\u6574\u53C2\u6570\u3002 "),Qv={class:"btns"},tg=["disabled"],eg=["onClick"],ag=P({setup(e){const a=y(0),o=y(""),n=y(!1),s=R(()=>{var m,b,g;return!(((m=f.value)==null?void 0:m.ipv4addr)&&((b=f.value)==null?void 0:b.ipv4mask)&&((g=f.value)==null?void 0:g.gateway))}),c=y({subnetMask:"255.255.255.0",staticDnsIp:"223.5.5.5",staticLanIp:"",gateway:"",enableDhcp:!0,dhcp6c:!1}),f=y(),p=()=>{n.value=!0,S.Network.Status.GET().then(m=>{if(m!=null&&m.data){const{result:b}=m==null?void 0:m.data;b&&(f.value=b)}}).finally(()=>{n.value=!1})},d=m=>{var b,g,v,_,w;m&&(c.value.staticLanIp=((b=f.value)==null?void 0:b.ipv4addr)||"",c.value.subnetMask=((g=f.value)==null?void 0:g.ipv4mask)&&xt.prefixToMask(f.value.ipv4mask)||"",c.value.gateway=((v=f.value)==null?void 0:v.gateway)||"",c.value.staticDnsIp=((_=f.value)==null?void 0:_.dnsList)&&((w=f.value)==null?void 0:w.dnsList[0])||"223.5.5.5"),a.value=1},l=m=>{window.location.href=location.protocol+"//"+c.value.staticLanIp+(location.port?":"+location.port:"")},u=()=>T(this,null,function*(){const m=c.value,b=F.Loading("\u914D\u7F6E\u4E2D...");try{const g=yield S.Guide.GatewayRouter.POST(m);if(g!=null&&g.data){const{success:v,error:_}=g==null?void 0:g.data;if(_&&(o.value=_),v==null||v==0){setTimeout(()=>{a.value=2,b.Close()},5e3);return}}}catch(g){o.value=g}b.Close()});return(m,b)=>{var _,w,x,C;const g=X("router-link"),v=X("switch-box");return a.value==0?(i(),r("div",vv,[gv,_v,t("div",hv,[t("button",{class:"cbi-button cbi-button-success app-btn app-next",onClick:b[0]||(b[0]=A=>a.value=3)},"\u81EA\u52A8\u914D\u7F6E..."),t("button",{class:"cbi-button cbi-button-neutral app-btn app-next",onClick:b[1]||(b[1]=A=>d(!1))},"\u624B\u52A8\u914D\u7F6E..."),D(g,{to:"/network",custom:""},{default:V(({navigate:A})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:A},"\u8FD4\u56DE",8,xv)]),_:1})])])):a.value==1?(i(),r("div",kv,[wv,yv,t("form",{onSubmit:nt(u,["prevent"])},[t("label",null,[Ev,t("div",Cv,[t("select",{disabled:"",style:Tt({backgroundColor:"rgba(215, 215, 215, 1)",color:"#333"})},Dv,4)])]),t("label",null,[Bv,z(t("input",{type:"text","onUpdate:modelValue":b[2]||(b[2]=A=>c.value.staticLanIp=A),placeholder:"IP\u5730\u5740",required:""},null,512),[[W,c.value.staticLanIp,void 0,{trim:!0}]])]),t("label",null,[Yv,z(t("input",{type:"text","onUpdate:modelValue":b[3]||(b[3]=A=>c.value.subnetMask=A),placeholder:"\u5B50\u7F51\u63A9\u7801",required:""},null,512),[[W,c.value.subnetMask,void 0,{trim:!0}]])]),t("label",null,[Av,z(t("input",{type:"text","onUpdate:modelValue":b[4]||(b[4]=A=>c.value.gateway=A),placeholder:"\u7F51\u5173\u5730\u5740",required:""},null,512),[[W,c.value.gateway,void 0,{trim:!0}]])]),t("label",null,[Sv,z(t("input",{type:"text","onUpdate:modelValue":b[5]||(b[5]=A=>c.value.staticDnsIp=A),placeholder:"223.5.5.5",required:""},null,512),[[W,c.value.staticDnsIp,void 0,{trim:!0}]])]),o.value?(i(),r("div",zv,h(o.value),1)):E("",!0),t("div",Pv,[D(v,{modelValue:c.value.enableDhcp,"onUpdate:modelValue":b[6]||(b[6]=A=>c.value.enableDhcp=A)},{default:V(()=>[c.value.enableDhcp?(i(),r("span",Tv,"\u63D0\u4F9B DHCPv4 \u670D\u52A1\uFF08\u9700\u8981\u5173\u95ED\u4E3B\u8DEF\u7531 DHCP \u670D\u52A1\uFF09")):(i(),r("span",Iv,"\u63D0\u4F9B DHCPv4 \u670D\u52A1"))]),_:1},8,["modelValue"])]),t("div",Lv,[D(v,{modelValue:c.value.dhcp6c,"onUpdate:modelValue":b[7]||(b[7]=A=>c.value.dhcp6c=A)},{default:V(()=>[Mv]),_:1},8,["modelValue"])]),t("div",Ov,[Nv,D(g,{to:"/network",custom:""},{default:V(({navigate:A})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:A},"\u8FD4\u56DE",8,qv)]),_:1})])],40,Fv)])):a.value==2?(i(),r("div",Vv,[Gv,jv,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:l},"\u8FDB\u5165\u63A7\u5236\u53F0")])])):a.value==3?(i(),r("div",Rv,[Uv,Wv,Hv,t("button",{class:ot(["cbi-button cbi-button-neutral",k(s)?"cbi-button-neutral":"cbi-button-success"]),disabled:n.value,onClick:p},[Jv,t("p",Xv,[t("ul",null,[t("li",null,"IP \u5730\u5740: "+h((_=f.value)==null?void 0:_.ipv4addr),1),t("li",null,"\u5B50\u7F51\u63A9\u7801: "+h(((w=f.value)==null?void 0:w.ipv4mask)&&k(xt).prefixToMask(f.value.ipv4mask)),1),t("li",null,"\u7F51\u5173\u5730\u5740: "+h((x=f.value)==null?void 0:x.gateway),1),t("li",null,"DNS\u670D\u52A1\u5668: "+h(((C=f.value)==null?void 0:C.dnsList)&&f.value.dnsList[0]||(k(s)?"":"\uFF08\u65E0DNS\u670D\u52A1\u5668\uFF0C\u8BF7\u4E4B\u540E\u81EA\u884C\u586B\u5199\u516C\u5171DNS\u670D\u52A1\u5668\uFF0C\u4F8B\u5982 223.5.5.5\uFF09")),1)])])],10,Zv),Kv,t("div",Qv,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:k(s),onClick:b[8]||(b[8]=A=>d(!0))},"\u81EA\u52A8\u586B\u5199..."+h(k(s)?"\uFF08\u8BF7\u5148\u83B7\u53D6IPv4\u4E0A\u6E38\u4FE1\u606F\uFF09":""),9,tg),D(g,{to:"/network",custom:""},{default:V(({navigate:A})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:A},"\u8FD4\u56DE",8,eg)]),_:1})])])):E("",!0)}}});var og=Y(ag,[["__scopeId","data-v-1c3f186c"]]);const St=e=>(O("data-v-7fc91c6d"),e=e(),N(),e),ng={class:"actioner-container"},ig=St(()=>t("div",{class:"actioner-container_header"},[t("span",null,"RAID\u521B\u5EFA\u5411\u5BFC")],-1)),rg={class:"actioner-container_body"},sg=St(()=>t("p",null,"RAID\u78C1\u76D8\u9635\u5217\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C \u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002",-1)),dg={class:"label-item"},ug=St(()=>t("div",{class:"label-item_key"},[t("span",null,"RAID\u7EA7\u522B\uFF1A")],-1)),lg={class:"label-item_value"},cg=["value"],pg={class:"label-item_tips"},fg={class:"label-item"},mg=St(()=>t("div",{class:"label-item_key"},[t("span",null,"\u78C1\u76D8\u9635\u5217\u6210\u5458\uFF1A")],-1)),bg={key:0,class:"label-item_value"},vg=St(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),gg=[vg],_g={key:1,class:"label-item_value"},hg=["value"],xg={key:1,class:"msg-warning"},kg={class:"label-item_tips"},wg=U(" \u9009\u62E9\u5C06\u8981\u7528\u4E8E\u521B\u5EFA RAID \u7684\u786C\u76D8\uFF0C\u901A\u8FC7 USB \u63A5\u5165\u7684\u8BBE\u5907\u4E0D\u4F1A\u5728\u5217\u8868\u4E2D\u663E\u793A\uFF08USB\u63A5\u5165\u4E0D\u7A33\u5B9A\uFF09\u3002 "),yg={class:"actioner-container_footer"},Fg=["disabled"],Eg=["disabled"],Cg={key:1,class:"actioner-container_body setup-loading"},$g=St(()=>t("span",null,"\u6B63\u5728\u521B\u5EFA\u4E2D...",-1)),Dg={class:"actioner-container_body setup-error"},Bg={class:"actioner-container_footer"},Yg=["disabled"],Ag={class:"actioner-container_body setup-success"},Sg=St(()=>t("div",{class:"body-title"},"\u521B\u5EFA\u6210\u529F",-1)),zg=St(()=>t("div",{class:"body-info"},[t("span",null," \u5982\u9700\u5BF9raid\u8BBE\u5907\u8FDB\u884C\u8BFB\u5199\u64CD\u4F5C\uFF0C\u9700\u8981\u5BF9raid\u8BBE\u5907\u683C\u5F0F\u5316\u5E76\u6302\u8F7D\u6587\u4EF6\u7CFB\u7EDF "),t("br"),t("span",null,[U(" \u53EF\u524D\u5F80 "),t("a",{href:"/cgi-bin/luci/",target:"_blank",rel:"noopener noreferrer"},"\u9996\u9875-\u78C1\u76D8\u4FE1\u606F"),U(" \u8FDB\u884C\u6302\u8F7D ")])],-1)),Pg=P({props:{Close:{type:Function,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=y("init"),c=y(""),f=[{name:"jbod",title:"JBOD (\u7EBF\u6027)",info:"\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u5C06\u591A\u4E2A\u786C\u76D8\u5408\u5E76\u4E3A\u5355\u4E2A\u5B58\u50A8\u7A7A\u95F4\uFF0C\u5176\u5BB9\u91CF\u7B49\u4E8E\u6240\u6709\u786C\u76D8\u5BB9\u91CF\u7684\u603B\u548C\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002",select:2},{name:"raid0",title:"RAID 0 (\u6761\u5E26)",info:"\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u201C\u533A\u5757\u5EF6\u5C55\u201D\u529F\u80FD\u662F\u5C06\u6570\u636E\u5206\u6210\u591A\u4E2A\u5757\uFF0C\u5E76\u5C06\u6570\u636E\u5757\u5206\u6563\u5230\u7EC4\u6210\u7684\u591A\u4E2A\u786C\u76D8\u4E0A\u4EE5\u63D0\u9AD8\u6027\u80FD\u7684\u8FC7\u7A0B\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002",select:2},{name:"raid1",title:"RAID 1 (\u955C\u50CF)",info:"\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u540C\u65F6\u5411\u6240\u6709\u786C\u76D8\u5199\u5165\u76F8\u540C\u7684\u6570\u636E\u3002\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002",select:2},{name:"raid5",title:"RAID 5 ",info:"\u81F3\u5C11\u9700\u89813\u5757\u786C\u76D8\uFF0C\u6267\u884C\u6BB5\u843D\u5206\u5757\u5EF6\u5C55\uFF0C\u5E76\u5BF9\u5206\u5E03\u5230\u6240\u6709\u7EC4\u6210\u786C\u76D8\u4E0A\u7684\u6570\u636E\u6267\u884C\u5947\u5076\u6821\u9A8C\uFF0C\u4ECE\u800C\u63D0\u4F9B\u6BD4 RAID 1 \u66F4\u6709\u6548\u7684\u6570\u636E\u5197\u4F59\u3002",select:3},{name:"raid6",title:"RAID 6 ",info:"\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u6267\u884C\u4E24\u4E2A\u5C42\u7EA7\u7684\u6570\u636E\u5947\u5076\u6821\u9A8C\u4EE5\u5B58\u50A8\u7B49\u4E8E 2 \u4E2A\u786C\u76D8\u5BB9\u91CF\u7684\u5197\u4F59\u6570\u636E\uFF0C\u63D0\u4F9B\u6BD4 RAID 5 \u66F4\u5927\u7A0B\u5EA6\u7684\u6570\u636E\u5197\u4F59\u3002",select:4},{name:"raid10",title:"RAID 10",info:"\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u63D0\u4F9B RAID 0 \u7684\u6027\u80FD\u548C RAID 1 \u7684\u6570\u636E\u4FDD\u62A4\u7EA7\u522B\uFF0C\u5C06\u786C\u76D8\u7EC4\u5408\u8FDB\u955C\u50CF\u6570\u636E\u7684\u7531\u4E24\u4E2A\u786C\u76D8\u7EC4\u6210\u7684\u7EC4\u3002",select:4}],p=y("raid5"),d=y([]),l=_=>{let w="";return f.forEach(x=>{x.name===_&&(w=x.info)}),w},u=y(!1),m=it({loading:!1,members:[]}),b=_=>{};(()=>T(this,null,function*(){m.loading=!0;try{const _=yield S.Raid.CreateList.GET();if(_!=null&&_.data){const{success:w,error:x,result:C}=_.data;if(C&&(m.members=C.members||[]),x)throw x}}catch(_){console.log(_)}finally{m.loading=!1}}))();const v=()=>T(this,null,function*(){const _=f.filter(x=>x.name===p.value)[0],w=d.value;if(!_){F.Warning("\u8BF7\u9009\u62E9raid\u7C7B\u578B");return}if(w.length==0){F.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}if(_.select>w.length){F.Warning("\u8BF7\u9009\u62E9\u81F3\u5C11"+_.select+"\u5757\u78C1\u76D8");return}if(!!confirm(`\u662F\u5426\u7ACB\u5373\u521B\u5EFA ${_.name}\uFF1F\u9009\u62E9\u7684\u786C\u76D8\u6240\u6709\u5206\u533A\u5C06\u4F1A\u88AB\u6E05\u9664\uFF0C\u6B64\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u786C\u76D8\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002`)&&!!confirm(`\u786E\u5B9A\u521B\u5EFA ${_.name}\uFF1F\u8BE5\u64CD\u4F5C\u4E0D\u53EF\u9006,\u8BF7\u8C28\u614E\u64CD\u4F5C`)){u.value=!0,s.value="loading";try{const x=yield S.Raid.Create.POST({level:_.name,devicePaths:w});if(x.data){const{success:C,error:A,result:B}=x.data;if(A)throw A;(C||0)==0&&(s.value="success",n())}}catch(x){c.value=x,s.value="error"}finally{u.value=!1}}});return(_,w)=>{const x=X("icon-loading"),C=X("icon-error"),A=X("icon-success");return i(),r("div",ng,[ig,s.value=="init"?(i(),r(L,{key:0},[t("div",rg,[sg,t("div",dg,[ug,t("div",lg,[z(t("select",{"onUpdate:modelValue":w[0]||(w[0]=B=>p.value=B),onChange:b},[(i(),r(L,null,j(f,B=>t("option",{value:B.name},h(B.title),9,cg)),64))],544),[[Q,p.value]])]),t("div",pg,[D(gt),U(" "+h(l(p.value)),1)])]),t("div",fg,[mg,k(m).loading?(i(),r("div",bg,gg)):(i(),r("div",_g,[k(m).members.length>0?(i(!0),r(L,{key:0},j(k(m).members,B=>(i(),r("label",null,[z(t("input",{type:"checkbox","onUpdate:modelValue":w[1]||(w[1]=$=>d.value=$),value:B.path},null,8,hg),[[It,d.value]]),U(" \u3010"+h(B.model)+"\u3011"+h(B.name)+" "+h(B.path)+" ["+h(B.sizeStr)+"] ",1)]))),256)):(i(),r("span",xg," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))])),t("div",kg,[D(gt),wg])])]),t("div",yg,[t("div",{class:"close",onClick:o,disabled:u.value},"\u53D6\u6D88",8,Fg),t("div",{class:"next",onClick:v,disabled:u.value},"\u521B\u5EFA",8,Eg)])],64)):s.value=="loading"?(i(),r("div",Cg,[D(x,{size:60,color:"#666"}),$g])):s.value=="error"?(i(),r(L,{key:2},[t("div",Dg,[D(C),t("span",null,h(c.value),1)]),t("div",Bg,[t("div",{class:"close",onClick:o},"\u5173\u95ED"),t("div",{class:"next",onClick:v,disabled:u.value},"\u91CD\u65B0\u521B\u5EFA",8,Yg)])],64)):s.value=="success"?(i(),r(L,{key:3},[t("div",Ag,[D(A),Sg,zg]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])],64)):E("",!0)])}}});var Tg=Y(Pg,[["__scopeId","data-v-7fc91c6d"]]);const Ig={class:"actioner-container"},Lg={class:"actioner-container_body"},Mg=["value"],Og=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0}},setup(e){const a=e,o=()=>{a.Close()},n=y("");return(()=>{S.Raid.Detail.POST({path:a.raid.path}).then(c=>{if(c.data){const{result:f,error:p}=c.data;p?n.value=p:n.value=(f==null?void 0:f.detail)||""}}).catch(c=>{n.value=c.message})})(),(c,f)=>(i(),r("div",Ig,[t("div",Lg,[t("textarea",{value:n.value},null,8,Mg)]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])]))}});var Ng=Y(Og,[["__scopeId","data-v-51f9d7a2"]]);const Pe=e=>(O("data-v-c07c8244"),e=e(),N(),e),qg={class:"actioner-container"},Vg={class:"actioner-container_header"},Gg={class:"actioner-container_body"},jg={class:"label-item"},Rg=Pe(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),Ug={class:"label-item_value"},Wg={disabled:""},Hg={class:"label-item"},Zg=Pe(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u88AB\u6DFB\u52A0\u5230RAID\u7684\u786C\u76D8\uFF09\uFF1A ",-1)),Jg={key:0,class:"label-item_value"},Xg=Pe(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),Kg=[Xg],Qg={key:1,class:"label-item_value"},t_=["value"],e_={key:1,class:"msg-warning"},a_={class:"actioner-container_footer"},o_=["disabled"],n_=["disabled"],i_=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=()=>T(this,null,function*(){const l=p.value;if(l==""){F.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}f.value=!0;const u=F.Loading("\u4FDD\u5B58\u4E2D...");try{const m=yield S.Raid.Add.POST({path:a.raid.path,memberPath:l});if(m.data){const{error:b,success:g}=m.data;if(b)throw b;(g||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(m){F.Error(`${m}`)}finally{f.value=!1,u.Close()}}),c=it({loading:!1,members:[]}),f=y(!1),p=y("");return(()=>T(this,null,function*(){c.loading=!0,f.value=!0;try{const l=yield S.Raid.CreateList.GET();if(l!=null&&l.data){const{success:u,error:m,result:b}=l.data;if(b&&(c.members=b.members||[]),m)throw m}}catch(l){console.log(l)}finally{f.value=!1,c.loading=!1}}))(),(l,u)=>(i(),r("div",qg,[t("div",Vg,[t("span",null,"RAID - "+h(e.raid.name)+" \u4FEE\u6539",1)]),t("div",Gg,[t("div",jg,[Rg,t("div",Ug,[t("select",Wg,[t("option",null,h(e.raid.name)+"_"+h(e.raid.venderModel)+" ("+h(e.raid.path)+"\uFF0C"+h(e.raid.level)+"\uFF0C"+h(e.raid.size)+") ",1)])])]),t("div",Hg,[Zg,k(c).loading?(i(),r("div",Jg,Kg)):(i(),r("div",Qg,[k(c).members.length>0?(i(!0),r(L,{key:0},j(k(c).members,m=>(i(),r("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":u[0]||(u[0]=b=>p.value=b),value:m.path},null,8,t_),[[ft,p.value]]),U(" \u3010"+h(m.model)+"\u3011"+h(m.name)+" "+h(m.path)+" ["+h(m.sizeStr)+"] ",1)]))),256)):(i(),r("span",e_," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",a_,[t("div",{class:"close",onClick:o,disabled:f.value},"\u53D6\u6D88",8,o_),t("div",{class:"next",onClick:s,disabled:f.value},"\u4FDD\u5B58",8,n_)])]))}});var r_=Y(i_,[["__scopeId","data-v-c07c8244"]]);const ga=e=>(O("data-v-13dc2cd6"),e=e(),N(),e),s_={class:"actioner-container"},d_={class:"actioner-container_header"},u_={class:"actioner-container_body"},l_={class:"label-item"},c_=ga(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),p_={class:"label-item_value"},f_={disabled:""},m_={class:"label-item"},b_=ga(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u8981\u4ECERAID\u9635\u5217\u4E2D\u5220\u9664\u7684\u786C\u76D8\uFF09\uFF1A ",-1)),v_={class:"label-item_value"},g_=["value"],__={class:"actioner-container_footer"},h_=["disabled"],x_=["disabled"],k_=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=()=>T(this,null,function*(){const p=f.value;if(p==""){F.Warning("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u786C\u76D8");return}c.value=!0;const d=F.Loading("\u4FDD\u5B58\u4E2D...");try{const l=yield S.Raid.Remove.POST({path:a.raid.path,memberPath:p});if(l.data){const{error:u,success:m}=l.data;if(u)throw u;(m||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(l){F.Error(`${l}`)}finally{c.value=!1,d.Close()}}),c=y(!1),f=y("");return(p,d)=>(i(),r("div",s_,[t("div",d_,[t("span",null,"RAID - "+h(e.raid.name)+" \u79FB\u9664",1)]),t("div",u_,[t("div",l_,[c_,t("div",p_,[t("select",f_,[t("option",null,h(e.raid.name)+"_"+h(e.raid.venderModel)+" ("+h(e.raid.path)+"\uFF0C"+h(e.raid.level)+"\uFF0C"+h(e.raid.size)+") ",1)])])]),t("div",m_,[b_,t("div",v_,[(i(!0),r(L,null,j(e.raid.members,l=>(i(),r("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":d[0]||(d[0]=u=>f.value=u),value:l},null,8,g_),[[ft,f.value]]),U(" "+h(l),1)]))),256))])])]),t("div",__,[t("div",{class:"close",onClick:o,disabled:c.value},"\u53D6\u6D88",8,h_),t("div",{class:"next",onClick:s,disabled:c.value},"\u4FDD\u5B58",8,x_)])]))}});var w_=Y(k_,[["__scopeId","data-v-13dc2cd6"]]);const Te=e=>(O("data-v-5643983d"),e=e(),N(),e),y_={class:"actioner-container"},F_={class:"actioner-container_header"},E_={class:"actioner-container_body"},C_={class:"label-item"},$_=Te(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),D_={class:"label-item_value"},B_={disabled:""},Y_={class:"label-item"},A_=Te(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u7A7A\u95F2\u7684\u786C\u76D8\u6062\u590DRAID\u8BBE\u5907\uFF09\uFF1A ",-1)),S_={key:0,class:"label-item_value"},z_=Te(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),P_=[z_],T_={key:1,class:"label-item_value"},I_=["value"],L_={key:1,class:"msg-warning"},M_={class:"actioner-container_footer"},O_=["disabled"],N_=["disabled"],q_=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=()=>T(this,null,function*(){const l=p.value;if(l==""){F.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}f.value=!0;const u=F.Loading("\u4FDD\u5B58\u4E2D...");try{const m=yield S.Raid.Recover.POST({path:a.raid.path,memberPath:l});if(m.data){const{error:b,success:g}=m.data;if(b)throw b;(g||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(m){F.Error(`${m}`)}finally{f.value=!1,u.Close()}}),c=it({loading:!1,members:[]}),f=y(!1),p=y("");return(()=>T(this,null,function*(){c.loading=!0,f.value=!0;try{const l=yield S.Raid.CreateList.GET();if(l!=null&&l.data){const{success:u,error:m,result:b}=l.data;if(b&&(c.members=b.members||[]),m)throw m}}catch(l){console.log(l)}finally{f.value=!1,c.loading=!1}}))(),(l,u)=>(i(),r("div",y_,[t("div",F_,[t("span",null,"RAID - "+h(e.raid.name)+" \u6062\u590D",1)]),t("div",E_,[t("div",C_,[$_,t("div",D_,[t("select",B_,[t("option",null,h(e.raid.name)+"_"+h(e.raid.venderModel)+" ("+h(e.raid.path)+"\uFF0C"+h(e.raid.level)+"\uFF0C"+h(e.raid.size)+") ",1)])])]),t("div",Y_,[A_,k(c).loading?(i(),r("div",S_,P_)):(i(),r("div",T_,[k(c).members.length>0?(i(!0),r(L,{key:0},j(k(c).members,m=>(i(),r("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":u[0]||(u[0]=b=>p.value=b),value:m.path},null,8,I_),[[ft,p.value]]),U(" \u3010"+h(m.model)+"\u3011"+h(m.name)+" "+h(m.path)+" ["+h(m.sizeStr)+"] ",1)]))),256)):(i(),r("span",L_," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",M_,[t("div",{class:"close",onClick:o,disabled:f.value},"\u53D6\u6D88",8,O_),t("div",{class:"next",onClick:s,disabled:f.value},"\u4FDD\u5B58",8,N_)])]))}});var V_=Y(q_,[["__scopeId","data-v-5643983d"]]);const G_={class:"action-main"},j_=P({props:{Close:{type:Function,required:!0},setup:{type:String,default:"create"},raid:{type:Object},success:{type:Function}},setup(e){return(a,o)=>(i(),M(et,{type:2},{default:V(()=>[t("div",G_,[e.setup=="create"?(i(),M(Tg,{key:0,Close:e.Close},null,8,["Close"])):e.setup=="info"&&e.raid!=null?(i(),M(Ng,{key:1,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="edit"&&e.raid!=null?(i(),M(r_,{key:2,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="remove"&&e.raid!=null?(i(),M(w_,{key:3,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="recover"&&e.raid!=null?(i(),M(V_,{key:4,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):E("",!0)])]),_:1}))}});var R_=Y(j_,[["__scopeId","data-v-6ef94d02"]]);const Jt=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(R_,at(J({},e),{Close:()=>{n()}}));o.use(aa),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},re=e=>(O("data-v-535a673b"),e=e(),N(),e),U_={id:"page"},W_=re(()=>t("h2",{name:"content"}," RAID\u7BA1\u7406",-1)),H_=re(()=>t("div",{class:"cbi-map-descr"},[t("p",null," RAID \uFF08 Redundant Array of Independent Disks \uFF09\u5373\u72EC\u7ACB\u78C1\u76D8\u5197\u4F59\u9635\u5217\uFF0C\u7B80\u79F0\u4E3A\u300C\u78C1\u76D8\u9635\u5217\u300D\uFF0C \u5C31\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C\u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002 "),t("p",{style:{color:"#f5365b","margin-top":"10px"}}," * RAID\u529F\u80FD\u6B63\u5728\u516C\u6D4B\u4E2D\uFF0C\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u5982\u9020\u6210\u6570\u636E\u4E22\u5931\u7B49\u95EE\u9898\uFF0C\u6982\u4E0D\u8D1F\u8D23\uFF0C\u8BF7\u8C28\u614E\u4F7F\u7528\u3002 "),t("p",{style:{color:"#f5365b","margin-top":"10px"}}," * \u5982\u679C\u7531\u4E8E\u7CFB\u7EDF\u91CD\u7F6E\u6216\u91CD\u542F\u5BFC\u81F4\u7684RAID\u8BBE\u5907\u4E22\u5931\u53EF\u4EE5\u5C1D\u8BD5\u901A\u8FC7\u4E0B\u65B9'\u626B\u63CF\u6062\u590DRAID'\u6309\u94AE\u6062\u590D ")],-1)),Z_={class:"btns"},J_=["disabled"],X_={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},K_={class:"table cbi-section-table"},Q_={style:{}},th=re(()=>t("tr",{class:"tr cbi-section-table-titles anonymous"},[t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u540D\u79F0"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8BBE\u5907"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u72B6\u6001"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u7EA7\u522B"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5BB9\u91CF"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u6210\u5458"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u6302\u8F7D\u4FE1\u606F"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u64CD\u4F5C")],-1)),eh={class:"tr cbi-section-table-row"},ah={class:"td cbi-value-field"},oh={class:"td cbi-value-field"},nh=["title"],ih={class:"item-status"},rh={key:0,class:"item-status item-status-detail"},sh={class:"td cbi-value-field"},dh={class:"td cbi-value-field"},uh={class:"td cbi-value-field"},lh=re(()=>t("br",null,null,-1)),ch={class:"td cbi-value-field"},ph=re(()=>t("br",null,null,-1)),fh={key:1,href:"/cgi-bin/luci/admin/quickstart/"},mh={class:"td cbi-section-table-cell nowrap cbi-section-actions"},bh=["disabled","onClick"],vh=["disabled","onClick"],gh=["onClick"],_h=["onClick"],hh=["onClick"],xh=P({setup(e){const a=it({disksList:[]}),o=()=>T(this,null,function*(){try{const v=yield S.Raid.List.GET();if(v!=null&&v.data){const{success:_,error:w,result:x}=v.data;if(x&&(a.disksList=x.disks||[]),w)throw w}}catch(v){console.log(v)}}),n=yt.easyInterval(o,5e3);Fe(()=>{n()});const s=v=>{switch(v.level){case"raid0":case"jbod":return!0}return v.status.indexOf("degraded")!=-1||v.status.indexOf("resyncing(")!=-1},c=v=>{let _=[];return v.childrens&&v.childrens.forEach(w=>{w.mountPoint&&_.push(`${w.name}(${w.mountPoint})`)}),_},f=()=>T(this,null,function*(){Jt({setup:"create",success:()=>{o()}})}),p=v=>{Jt({setup:"info",raid:v})},d=v=>T(this,null,function*(){if(v.childrens&&v.childrens.length>0&&v.childrens.filter(x=>x.mountPoint).length>0){de({content:"\u5220\u9664 RAID \u8BBE\u5907\u4E4B\u524D\u8BF7\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF",nextTitle:"\u53BB\u5378\u8F7D",next:()=>{location.href="/cgi-bin/luci/admin/system/mounts"},clearTitle:"\u53D6\u6D88",clear:()=>{}});return}if(!confirm(`\u786E\u5B9A\u8981\u5220\u9664 ${v.name} \u8BE5\u78C1\u76D8\u9635\u5217\u5417\uFF1F\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002\u5220\u9664\u6210\u529F\u540E\uFF0C\u5982\u9700\u53E6\u5916\u7EC4RAID\uFF0C\u5EFA\u8BAE\u7A0D\u7B49\u51E0\u5206\u949F\u540E\u518D\u8BD5\u3002`)||!confirm(`\u786E\u5B9A\u8981\u5220\u9664 ${v.name} \u5417?`))return;const _=F.Loading("\u5220\u9664\u4E2D...");try{const w=yield S.Raid.Delete.POST({path:v.path,members:v.members});if(w.data){const{success:x,error:C}=w.data;if(C)throw C;(x||0)==0&&(F.Success("\u5220\u9664\u6210\u529F"),o())}}catch(w){F.Error(`${w}`)}finally{_.Close()}}),l=v=>{Jt({setup:"edit",raid:v,success:()=>{o()}})},u=v=>{Jt({setup:"remove",raid:v,success:()=>{o()}})},m=v=>{Jt({setup:"recover",raid:v,success:()=>{o()}})},b=y(!1),g=()=>{de({content:"\u5C06\u626B\u63CF\u78C1\u76D8\u91CC RAID \u7684\u78C1\u76D8\u9635\u5217\u914D\u7F6E\u5E76\u6062\u590D\uFF0C\u786E\u5B9A\u8981\u6062\u590D RAID \u78C1\u76D8\u9635\u5217\u5417\uFF1F",nextTitle:"\u786E\u5B9A",next:()=>T(this,null,function*(){b.value=!0;const v=F.Loading("\u626B\u63CF\u4E2D...");try{const _=yield S.Raid.Autofix.GET();if(_.data){const{error:w,success:x}=_.data;if(w)throw w;(x||0)==0&&(F.Success("\u6062\u590D\u5B8C\u6210"),o())}}catch(_){F.Error(`${_}`)}finally{v.Close(),b.value=!1}}),clearTitle:"\u53D6\u6D88",clear:()=>{}})};return(v,_)=>(i(),r("div",U_,[W_,H_,t("div",Z_,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:_[0]||(_[0]=w=>f())},"\u521B\u5EFARAID"),t("button",{class:"btn cbi-button cbi-button-apply",onClick:_[1]||(_[1]=w=>g()),disabled:b.value},"\u626B\u63CF\u6062\u590DRAID",8,J_)]),t("div",null,[t("div",X_,[t("table",K_,[t("tbody",Q_,[th,(i(!0),r(L,null,j(k(a).disksList,w=>(i(),r("tr",eh,[t("td",ah,[t("b",null,h(w.name),1)]),t("td",oh,[t("b",null,h(w.path),1)]),t("td",{class:"td cbi-value-field",title:w.status+(w.rebuildStatus||"")},[t("b",ih,h(w.status),1),w.rebuildStatus?(i(),r("b",rh," \u2026 ")):E("",!0)],8,nh),t("td",sh,[t("b",null,h(w.level),1)]),t("td",dh,[t("b",null,h(w.size),1)]),t("td",uh,[(i(!0),r(L,null,j(w.members,x=>(i(),r("b",null,[U(h(x)+" ",1),lh]))),256))]),t("td",ch,[c(w).length>0?(i(!0),r(L,{key:0},j(c(w),x=>(i(),r("b",null,[U(h(x)+" ",1),ph]))),256)):(i(),r("a",fh,"\u53BB\u6302\u8F7D"))]),t("td",mh,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6269\u5145",disabled:s(w),onClick:x=>l(w)},"\u6269\u5145",8,bh),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u79FB\u9664",disabled:s(w),onClick:x=>u(w)},"\u79FB\u9664",8,vh),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6062\u590D",onClick:x=>m(w)},"\u6062\u590D",8,gh),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:x=>p(w)},"\u8BE6\u60C5",8,_h),t("button",{class:"cbi-button cbi-button-remove",title:"\u5982\u679C\u60A8\u5728RAID\u78C1\u76D8\u9635\u5217\u4E2D\u521B\u5EFA\u4E86\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u540E\u5220\u9664\u6587\u4EF6\u7CFB\u7EDF\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002",onClick:x=>d(w)},"\u5220\u9664",8,hh)])]))),256))])])])])]))}});var kh=Y(xh,[["__scopeId","data-v-535a673b"]]);const _a=e=>(O("data-v-2bc40d1c"),e=e(),N(),e),wh={id:"page"},yh=_a(()=>t("h2",{name:"content"},"S.M.A.R.T.",-1)),Fh=_a(()=>t("div",{class:"cbi-map-descr"},[t("p",null," S.M.A.R.T.\uFF0C\u5168\u79F0\u4E3A\u201CSelf-Monitoring Analysis and Reporting Technology\u201D\uFF0C\u5373\u201C\u81EA\u6211\u76D1\u6D4B\u3001\u5206\u6790\u53CA\u62A5\u544A\u6280\u672F\u201D\uFF0C "),t("p",null," \u662F\u4E00\u79CD\u81EA\u52A8\u7684\u786C\u76D8\u72B6\u6001\u68C0\u6D4B\u4E0E\u9884\u8B66\u7CFB\u7EDF\u548C\u89C4\u8303\u3002\u901A\u8FC7\u5728\u786C\u76D8\u786C\u4EF6\u5185\u7684\u68C0\u6D4B\u6307\u4EE4\u5BF9\u786C\u76D8\u7684\u786C\u4EF6\u5982\u78C1\u5934\u3001\u76D8\u7247\u3001\u9A6C\u8FBE\u3001 "),t("p",null," \u7535\u8DEF\u7684\u8FD0\u884C\u60C5\u51B5\u8FDB\u884C\u76D1\u63A7\u3001\u8BB0\u5F55\u5E76\u4E0E\u5382\u5546\u6240\u8BBE\u5B9A\u7684\u9884\u8BBE\u5B89\u5168\u503C\u8FDB\u884C\u6BD4\u8F83\uFF0C\u82E5\u76D1\u63A7\u60C5\u51B5\u5C06\u8981\u6216\u5DF2\u8D85\u51FA\u9884\u8BBE\u5B89\u5168\u503C\u7684\u5B89\u5168\u8303\u56F4\uFF0C "),t("p",null," \u5C31\u53EF\u4EE5\u901A\u8FC7\u4E3B\u673A\u7684\u76D1\u63A7\u786C\u4EF6\u6216\u8F6F\u4EF6\u81EA\u52A8\u5411\u7528\u6237\u4F5C\u51FA\u8B66\u544A\u5E76\u8FDB\u884C\u8F7B\u5FAE\u7684\u81EA\u52A8\u4FEE\u590D\uFF0C\u4EE5\u63D0\u524D\u4FDD\u969C\u786C\u76D8\u6570\u636E\u7684\u5B89\u5168\u3002 ")],-1)),Eh={class:"tabs"},Ch=["href","onClick"],$h=P({setup(e){const a=[{to:"/smart",name:"\u5E38\u89C4\u8BBE\u7F6E"},{to:"/smart/task",name:"\u8BA1\u5212\u4EFB\u52A1"},{to:"/smart/log",name:"\u67E5\u770B\u65E5\u5FD7"}],o=y(!1),n=it({global:{enable:!1,powermode:"never",tmpDiff:0,tmpMax:0},devices:[],tasks:[]}),s=p=>{const{global:d,devices:l,tasks:u}=p;d&&(n.global.enable=d.enable||!1,n.global.powermode=d.powermode||"never"),n.devices=l||[],n.tasks=u||[]};(()=>T(this,null,function*(){try{const p=yield S.Smart.Config.GET();if(p.data){const{result:d}=p.data;d&&s(d)}}catch(p){}finally{o.value=!0}}))();const f=p=>T(this,null,function*(){const d=F.Loading("\u4FDD\u5B58\u4E2D...");try{const l=yield S.Smart.Config.POST(p);if(l.data){console.log(l.data);const{success:u,error:m,result:b}=l.data;if(m)throw m;(u||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),b&&s(b))}}catch(l){F.Error(`${l}`)}finally{d.Close()}});return(p,d)=>{const l=X("router-link"),u=X("router-view");return i(),r("div",wh,[yh,Fh,t("ul",Eh,[(i(),r(L,null,j(a,m=>D(l,{to:m.to,custom:"",key:m.to},{default:V(({route:b,href:g,navigate:v,isActive:_,isExactActive:w})=>[t("li",{class:ot({"active cbi-tab":_&&w})},[t("a",{href:g,onClick:v},h(m.name),9,Ch)],2)]),_:2},1032,["to"])),64))]),o.value?(i(),M(u,{key:0,name:"default"},{default:V(({Component:m,route:b})=>[(i(),M(La,null,{default:V(()=>[(i(),M(Ma(m),{key:b.path,config:k(n),saveData:f},null,8,["config"]))]),_:2},1024))]),_:1})):E("",!0)])}}});var Dh=Y($h,[["__scopeId","data-v-2bc40d1c"]]);const Bh={class:"action-main"},Yh=P({setup(e){return(a,o)=>(i(),M(et,{type:2},{default:V(()=>[t("div",Bh,[Dt(a.$slots,"default",{},void 0,!0)])]),_:3}))}});var he=Y(Yh,[["__scopeId","data-v-742230ae"]]);const Ah={class:"actioner-container"},Sh={class:"actioner-container_header"},zh={class:"actioner-container_body"},Ph={class:"cbi-value"},Th=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),Ih={class:"cbi-value-field"},Lh={class:"cbi-value-description"},Mh={class:"cbi-value"},Oh=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),Nh={class:"cbi-value-field"},qh={class:"cbi-checkbox"},Vh=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),Gh=t("option",{value:0},"\u7981\u7528",-1),jh=["value"],Rh=t("div",{class:"cbi-value-description"}," \u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A. ",-1),Uh={class:"cbi-value"},Wh=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),Hh={class:"cbi-value-field"},Zh={class:"cbi-checkbox"},Jh=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),Xh=t("option",{value:0},"\u7981\u7528",-1),Kh=["value"],Qh=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),tx={class:"actioner-container_footer"},ex=["disabled"],ax=["disabled"],ox=P({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0},device:{type:Object},next:{type:Function,required:!0}},setup(e){var f,p,d;const a=e;console.log(a.device);const o=y(!1),n=it({tmpDiff:((f=a.device)==null?void 0:f.tmpDiff)||0,tmpMax:((p=a.device)==null?void 0:p.tmpMax)||0,devicePath:((d=a.device)==null?void 0:d.devicePath)||""}),s=()=>{o.value=!0,a.close()},c=()=>T(this,null,function*(){o.value=!0;try{yield a.next({tmpDiff:n.tmpDiff,tmpMax:n.tmpMax,devicePath:n.devicePath}),o.value=!1,s()}catch(l){}});return(l,u)=>(i(),M(he,null,{default:V(()=>[t("div",Ah,[t("div",Sh,[t("span",null," S.M.A.R.T. \xBB \u8BBE\u5907 \xBB "+h(e.disk.path),1)]),t("div",zh,[t("div",Ph,[Th,t("div",Ih,[t("div",Lh,h(e.disk.model)+" [ "+h(e.disk.path)+"\uFF0C"+h(e.disk.sizeStr)+" ] ",1)])]),t("div",Mh,[Oh,t("div",Nh,[t("div",qh,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[0]||(u[0]=m=>k(n).tmpDiff=m)},[Vh,Gh,(i(),r(L,null,j(20,m=>t("option",{value:m},h(m)+"\xB0C",9,jh)),64))],512),[[Q,k(n).tmpDiff,void 0,{number:!0}]])]),Rh])]),t("div",Uh,[Wh,t("div",Hh,[t("div",Zh,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[1]||(u[1]=m=>k(n).tmpMax=m)},[Jh,Xh,(i(),r(L,null,j(20,m=>t("option",{value:m*5},h(m*5)+"\xB0C",9,Kh)),64))],512),[[Q,k(n).tmpMax,void 0,{number:!0}]])]),Qh])])]),t("div",tx,[t("button",{class:"close",onClick:s,disabled:o.value},"\u53D6\u6D88",8,ex),t("button",{class:"next",onClick:c,disabled:o.value},"\u4FDD\u5B58",8,ax)])])]),_:1}))}}),nx={class:"actioner-container"},ix=t("div",{class:"actioner-container_header"},[t("span",null," \u521B\u5EFA\u8BA1\u5212\u4EFB\u52A1 ")],-1),rx={class:"actioner-container_body"},sx={class:"cbi-value"},dx=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),ux={class:"cbi-value-field"},lx={class:"cbi-checkbox"},cx=t("option",{value:""},"\u9009\u62E9\u78C1\u76D8",-1),px=["value"],fx={class:"cbi-value"},mx=t("label",{class:"cbi-value-title"}," \u7C7B\u578B ",-1),bx={class:"cbi-value-field"},vx={class:"cbi-checkbox"},gx=t("option",{value:"short"},"\u77ED\u6682\u81EA\u68C0",-1),_x=t("option",{value:"long"},"\u957F\u65F6\u81EA\u68C0",-1),hx=t("option",{value:"conveyance"},"\u4F20\u8F93\u65F6\u81EA\u68C0",-1),xx=t("option",{value:"offline"},"\u79BB\u7EBF\u65F6\u81EA\u68C0",-1),kx=[gx,_x,hx,xx],wx={class:"cbi-value"},yx=t("label",{class:"cbi-value-title"}," \u5C0F\u65F6 ",-1),Fx={class:"cbi-value-field"},Ex={class:"cbi-checkbox"},Cx=t("option",{value:"*"},"*",-1),$x=["value"],Dx=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5C0F\u65F6 ",-1),Bx={class:"cbi-value"},Yx=t("label",{class:"cbi-value-title"}," \u5929 ",-1),Ax={class:"cbi-value-field"},Sx={class:"cbi-checkbox"},zx=t("option",{value:"*"},"*",-1),Px=["value"],Tx=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5929 ",-1),Ix={class:"cbi-value"},Lx=t("label",{class:"cbi-value-title"}," \u6708 ",-1),Mx={class:"cbi-value-field"},Ox={class:"cbi-checkbox"},Nx=t("option",{value:"*"},"*",-1),qx=["value"],Vx=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u6708 ",-1),Gx={class:"actioner-container_footer"},jx=["disabled"],Rx=["disabled"],Ux=P({props:{close:{type:Function,required:!0},config:{type:Object,required:!0},next:{type:Function,required:!0}},setup(e){const a=e,o=y(!1),n=it({type:"short",devicePath:"",month:"*",dayPerMonth:"*",hour:"*"}),s=y([]);(()=>T(this,null,function*(){try{const d=yield S.Smart.List.GET();if(d.data){const{result:l,error:u}=d.data;l&&l.disks&&(s.value=l.disks)}}catch(d){}}))();const f=()=>{o.value=!0,a.close()},p=()=>T(this,null,function*(){if(n.devicePath==""){F.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}o.value=!0;try{yield a.next(n),f()}catch(d){}finally{o.value=!1}});return(d,l)=>(i(),M(he,null,{default:V(()=>[t("div",nx,[ix,t("div",rx,[t("div",sx,[dx,t("div",ux,[t("div",lx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[0]||(l[0]=u=>k(n).devicePath=u)},[cx,(i(!0),r(L,null,j(s.value,u=>(i(),r("option",{value:u.path},h(u.model)+" [ "+h(u.path)+"\uFF0C"+h(u.sizeStr)+" ] ",9,px))),256))],512),[[Q,k(n).devicePath,void 0,{trim:!0}]])])])]),t("div",fx,[mx,t("div",bx,[t("div",vx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[1]||(l[1]=u=>k(n).type=u)},kx,512),[[Q,k(n).type,void 0,{trim:!0}]])])])]),t("div",wx,[yx,t("div",Fx,[t("div",Ex,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[2]||(l[2]=u=>k(n).hour=u)},[Cx,(i(),r(L,null,j(24,(u,m)=>t("option",{value:`${m}`},h(m),9,$x)),64))],512),[[Q,k(n).hour,void 0,{trim:!0}]])]),Dx])]),t("div",Bx,[Yx,t("div",Ax,[t("div",Sx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[3]||(l[3]=u=>k(n).dayPerMonth=u)},[zx,(i(),r(L,null,j(31,u=>t("option",{value:`${u}`},h(u),9,Px)),64))],512),[[Q,k(n).dayPerMonth,void 0,{trim:!0}]])]),Tx])]),t("div",Ix,[Lx,t("div",Mx,[t("div",Ox,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[4]||(l[4]=u=>k(n).month=u)},[Nx,(i(),r(L,null,j(12,(u,m)=>t("option",{value:`${u}`},h(u),9,qx)),64))],512),[[Q,k(n).month,void 0,{trim:!0}]])]),Vx])])]),t("div",Gx,[t("button",{class:"close",onClick:f,disabled:o.value},"\u53D6\u6D88",8,jx),t("button",{class:"next",onClick:p,disabled:o.value},"\u4FDD\u5B58",8,Rx)])])]),_:1}))}}),Wx=e=>(O("data-v-3f7c551e"),e=e(),N(),e),Hx={class:"actioner-container"},Zx=Wx(()=>t("div",{class:"actioner-container_header"},[t("span",null," \u8FD0\u884C\u8C03\u8BD5 ")],-1)),Jx={class:"actioner-container_body"},Xx=["value"],Kx={class:"actioner-container_footer"},Qx=["disabled"],tk=["disabled"],ek=P({props:{close:{type:Function,required:!0},task:{type:Object,required:!0}},setup(e){const a=e,o=y(!1),n=y(""),s=y(""),c=y(""),f=()=>T(this,null,function*(){n.value+=".";try{const u=yield S.Smart.Test.Result.POST({type:"selftest",devicePath:a.task.devicePath||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(c.value=m.result),b&&(c.value=b)}}catch(u){u&&(c.value=u)}}),p=yt.easyInterval(f,5e3);Fe(()=>{p()});const d=()=>{o.value=!0,p(),a.close()},l=()=>T(this,null,function*(){o.value=!0;try{const u=yield S.Smart.Test.POST({type:a.task.type||"short",devicePath:a.task.devicePath||""});if(u.data){const{success:m,error:b,result:g}=u.data;b&&(s.value=b),g&&g.result&&(s.value=g.result)}}catch(u){s.value=u}finally{}});return(u,m)=>(i(),M(he,null,{default:V(()=>[t("div",Hx,[Zx,t("div",Jx,[t("textarea",{value:s.value+` +var xa=Object.defineProperty,ka=Object.defineProperties;var wa=Object.getOwnPropertyDescriptors;var Ge=Object.getOwnPropertySymbols;var ya=Object.prototype.hasOwnProperty,Fa=Object.prototype.propertyIsEnumerable;var ke=(e,a,o)=>a in e?xa(e,a,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[a]=o,J=(e,a)=>{for(var o in a||(a={}))ya.call(a,o)&&ke(e,o,a[o]);if(Ge)for(var o of Ge(a))Fa.call(a,o)&&ke(e,o,a[o]);return e},at=(e,a)=>ka(e,wa(a));var Ea=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports);var Zt=(e,a,o)=>(ke(e,typeof a!="symbol"?a+"":a,o),o);var T=(e,a,o)=>new Promise((n,s)=>{var c=d=>{try{p(o.next(d))}catch(l){s(l)}},f=d=>{try{p(o.throw(d))}catch(l){s(l)}},p=d=>d.done?n(d.value):Promise.resolve(d.value).then(c,f);p((o=o.apply(e,a)).next())});import{d as Qt,a as P,c as R,u as k,o as i,b as r,e as t,t as h,n as Vt,f as E,r as X,g as D,h as ot,i as Dt,w as z,v as Tt,j as Ca,k as M,l as V,m as y,p as $a,q as Ft,s as Q,F as L,x as j,y as W,z as O,A as N,B as It,C as Da,D as Gt,E as Ba,G as Ya,H as Aa,I as Sa,J as za,K as Pa,L as Ta,M as nt,T as kt,N as tt,O as Ia,P as it,Q as wt,R as U,S as ft,U as te,V as Fe,W as La,X as Ma,Y as ue,Z as Oa,_ as Na,$ as qa,a0 as Va}from"./vendor.js?v=c0f4c287";var oF=Ea(Kt=>{const Ga=function(){const a=document.createElement("link").relList;if(a&&a.supports&&a.supports("modulepreload"))return;for(const s of document.querySelectorAll('link[rel="modulepreload"]'))n(s);new MutationObserver(s=>{for(const c of s)if(c.type==="childList")for(const f of c.addedNodes)f.tagName==="LINK"&&f.rel==="modulepreload"&&n(f)}).observe(document,{childList:!0,subtree:!0});function o(s){const c={};return s.integrity&&(c.integrity=s.integrity),s.referrerpolicy&&(c.referrerPolicy=s.referrerpolicy),s.crossorigin==="use-credentials"?c.credentials="include":s.crossorigin==="anonymous"?c.credentials="omit":c.credentials="same-origin",c}function n(s){if(s.ep)return;s.ep=!0;const c=o(s);fetch(s.href,c)}};Ga();const ja=(e,a)=>T(Kt,null,function*(){return new Promise((o,n)=>T(Kt,null,function*(){try{const s=yield fetch(e,a);if(Math.floor(s.status/100)!=2)throw s.status+" "+s.statusText;const c=J({},s);c.data=yield s.json(),o(c)}catch(s){const c=s;n("\u7F51\u7EDC\u5F02\u5E38\uFF1A"+((c==null?void 0:c.message)||s))}}))});class Ee{constructor(a){Zt(this,"config",{baseURL:"",headers:{}});Zt(this,"useRequest",a=>a);Zt(this,"useResponse",a=>a);Zt(this,"useError",a=>a);a.baseURL&&(this.config.baseURL=a.baseURL),a.headers&&(this.config.headers=a.headers)}static create(a){return new Ee(a)}Do(a,o){return T(this,null,function*(){return new Promise((n,s)=>T(this,null,function*(){try{const c=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${c.baseURL||""}${a}`,o.headers==null&&(o.headers={}),c.headers&&(o.headers=J({},c.headers));const p=yield fetch(a,o),d=J({},p);d.data=yield p.json(),n(this.useResponse(d))}catch(c){this.useError(c),s(c)}}))})}TEXT(a,o){return T(this,null,function*(){return new Promise((n,s)=>T(this,null,function*(){try{const c=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${c.baseURL||""}${a}`,o.headers==null&&(o.headers={}),c.headers&&(o.headers=J({},c.headers));const p=yield fetch(a,o),d=J({},p);d.data=yield p.text(),n(d)}catch(c){this.useError(c),s(c)}}))})}interceptors(){const a=this;return{requset:{use(o){a.useRequest=o}},response:{use(o,n){a.useResponse=o,n&&(a.useError=n)}}}}}const Xe=Ee.create({});Xe.interceptors().requset.use(e=>e);Xe.interceptors().response.use(e=>(e.data&&e.data.success==null&&e.data.success==0,e));const Ra="/cgi-bin/luci/istore";let je=!1;const I=(e,a)=>(e.indexOf("//")==-1&&(e=`${Ra}${e}`),ja(e,a).then(o=>(o!=null&&o.data&&o.data.success==-1001&&o.data.error=="Forbidden"&&(je||(je=!0,alert("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55"),location.reload())),o))),Ua={Statistics:{GET(){return I("/u/network/statistics/",{method:"GET"})}},Status:{GET(){return I("/u/network/status/",{method:"GET"})}},Device:{List:{GET(){return I("/network/device/list/",{method:"GET"})}}},Homebox:{Enable:{POST(){return I("/network/homebox/enable/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},CheckPublickNet:{POST(e){return I("/network/checkPublicNet/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetInterfaceConfig:{GET(){return I("/network/interface/config/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}},POSTInterfaceConfig:{POST(e){return I("/network/interface/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},PortList:{GET(){return I("/network/port/list/",{method:"GET",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Wa={Version:{GET(){return I("/u/system/version/",{method:"GET"})}},CheckUpdate:{GET(){return I("/system/check-update/",{method:"GET"})}},Reboot:{POST(e){return I("/system/reboot/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Status:{GET(){return I("/system/status/",{method:"GET"})}}},Ha={Disk:{Status:{GET(){return I("/nas/disk/status/",{method:"GET"})}},Erase:{POST(e){return I("/nas/disk/erase",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Init:{POST:e=>I("/nas/disk/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},InitRest:{POST:e=>I("/nas/disk/initrest/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},Partition:{Format:{POST:e=>I("/nas/disk/partition/format",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},Mount:{POST:e=>I("/nas/disk/partition/mount",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Service:{Status:{GET(){return I("/u/nas/service/status/",{method:"GET"})}}},Samba:{Create:{POST(e){return I("/nas/samba/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Webdav:{Create:{POST(e){return I("/nas/webdav/create",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Status:{GET(){return I("/nas/webdav/status/",{method:"GET"})}}},Linkease:{Enable:{POST(){return I("/u/nas/linkease/enable",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Sandbox:{POST(e){return I("/nas/sandbox/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetSandbox:{GET(){return I("/nas/sandbox/",{method:"GET"})}},SandboxDisks:{GET(){return I("/nas/sandbox/disks/",{method:"GET"})}},SandboxCommit:{POST(){return I("/u/nas/sandbox/commit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify({})})}},SandboxReset:{POST(){return I("/nas/sandbox/reset/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}},SandboxExit:{POST(){return I("/nas/sandbox/exit/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"}})}}},Za={Check:{POST(e){return I("/app/check/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Install:{POST(e){return I("/app/install/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Ja={Pppoe:{GET(){return I("/guide/pppoe/",{method:"GET"})},POST(e){return I("/guide/pppoe/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DnsConfig:{GET(){return I("/guide/dns-config/",{method:"GET"})},POST(e){return I("/guide/dns-config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DhcpClient:{POST(e){return I("/guide/dhcp-client/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},ClientModel:{GET(){return I("/guide/client-mode/",{method:"GET"})},POST(e){return I("/guide/client-mode/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GatewayRouter:{POST(e){return I("/guide/gateway-router/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DockerStatus:{GET(){return I("/guide/docker/status/",{method:"GET"})}},DockerPartitionList:{GET(){return I("/guide/docker/partition/list/",{method:"GET"})}},DockerTransfer:{POST(e){return I("/guide/docker/transfer/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DockerSwitch:{POST(e){return I("/guide/docker/switch/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DownloadService:{Status:{GET(){return I("/guide/download-service/status/",{method:"GET"})}}},DownloadPartition:{List:{GET(){return I("/guide/download/partition/list/",{method:"GET"})}}},Aria2Init:{POST(e){return I("/guide/aria2/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},qbitorrentInit:{POST(e){return I("/guide/qbittorrent/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},transmissionInit:{POST(e){return I("/guide/transmission/init/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetLan:{GET(){return I("/guide/lan/",{method:"GET"})}},LanIp:{POST(e){return I("/guide/lan/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},SoftSource:{POST(e){return I("/guide/soft-source/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetSoftSource:{GET(){return I("/guide/soft-source/",{method:"GET"})}},SoftSourceList:{GET(){return I("/guide/soft-source/list/",{method:"GET"})}},PostDdns:{POST(e){return I("/u/guide/ddns/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetDdns:{GET(){return I("/u/guide/ddns/",{method:"GET"})}},Ddnsto:{POST(e){return I("/guide/ddnsto/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},DdntoConfig:{GET(){return I("/guide/ddnsto/config/",{method:"GET"})}},DdnstoAddress:{POST(e){return I("/guide/ddnsto/address/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Xa={Create:{POST(e){return I("/raid/create/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Delete:{POST(e){return I("/raid/delete/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Add:{POST(e){return I("/raid/add/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Remove:{POST(e){return I("/raid/remove/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Recover:{POST(e){return I("/raid/recover/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Detail:{POST(e){return I("/raid/detail/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},List:{GET(){return I("/raid/list/",{method:"GET"})}},CreateList:{GET(){return I("/raid/create/list/",{method:"GET"})}},Autofix:{GET(){return I("/raid/autofix/",{method:"GET"})}}},Ka={Log:{GET(){return I("/smart/log/",{method:"GET"})}},List:{GET(){return I("/u/smart/list/",{method:"GET"})}},Config:{GET(){return I("/smart/config/",{method:"GET"})},POST(e){return I("/smart/config/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},Test:{POST(e){return I("/u/smart/test/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})},Result:{POST(e){return I("/smart/test/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Attribute:{Result:{POST(e){return I("/smart/attribute/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}},Extend:{Result:{POST(e){return I("/smart/extend/result/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}}}};var Qa=Object.freeze(Object.defineProperty({__proto__:null,Network:Ua,System:Wa,Nas:Ha,App:Za,Guide:Ja,Raid:Xa,Smart:Ka},Symbol.toStringTag,{value:"Module"})),S=J({},Qa);const Ke=Qt("app",{state:()=>({portitemStyle:{show:!1,left:0,top:0,portitem:{name:"",macAddress:"",linkSpeed:"",linkState:"",rx_packets:"",tx_packets:"",interfaceNames:[],master:"",duplex:""}}})});Qt("guide",{});const Qe=Qt("nas",{state:()=>({webdav:{}})}),le=Qt("network",{state:()=>({status:{},statistics:{},deviceList:{}}),getters:{},actions:{updateNetworkStatus(e){this.status=e},requestNetworkStatistics(){return T(this,null,function*(){try{const e=yield S.Network.Statistics.GET();e!=null&&e.data&&e.data.result&&(this.statistics=e.data.result)}catch(e){console.log(e)}})},requestDeviceList(){S.Network.Device.List.GET().then(e=>{if(e!=null&&e.data){const{result:a}=e==null?void 0:e.data;a&&(this.deviceList=a)}})},incrTime(){this.status.uptimeStamp&&this.status.uptimeStamp++}}}),Ce=Qt("system",{state:()=>({version:{},checkUpdate:null,systemStatus:{}}),getters:{},actions:{incrTime(){var e;(e=this.systemStatus)!=null&&e.uptime&&this.systemStatus.uptime++},requestVersion(){S.System.Version.GET().then(e=>{var a;(a=e==null?void 0:e.data)!=null&&a.result&&(this.version=e.data.result)})},requestCheckUpdate(){S.System.CheckUpdate.GET().then(e=>{var a;(a=e==null?void 0:e.data)!=null&&a.result&&(this.checkUpdate=e.data.result)})},updateSystemStatus(e){this.systemStatus=e}}});let Re=!1;const to=()=>{if(Re)return;Re=!0;let e=!0,a=!0;const o=le(),n=Ce(),s=function(){return S.System.Status.GET().then(f=>{f!=null&&f.data.result&&n.updateSystemStatus(f.data.result)}).finally(()=>{setTimeout(s,5e3),e&&(setInterval(()=>{n.incrTime()},1e3),e=!1)})},c=function(){return S.Network.Status.GET().then(f=>{if(f!=null&&f.data){const{result:p}=f==null?void 0:f.data;p&&o.updateNetworkStatus(p)}}).finally(()=>{setTimeout(c,5e3),a&&(setInterval(()=>{o.incrTime()},1e3),a=!1)})};c(),o.requestDeviceList(),setTimeout(()=>{n.requestCheckUpdate(),n.requestVersion(),s()},1100)};var Y=(e,a)=>{const o=e.__vccOpts||e;for(const[n,s]of a)o[n]=s;return o};const eo=P({setup(e){const a=Ke(),o=R(()=>a.portitemStyle.portitem),n=R(()=>a.portitemStyle.show),s=R(()=>({bottom:`calc(100% - ${a.portitemStyle.top}px)`,left:`${a.portitemStyle.left}px`})),c=d=>{switch(d){case"full":return"\u5168\u53CC\u5DE5";case"half":return"\u534A\u53CC\u5DE5"}},f=d=>{a.portitemStyle.show=!0},p=d=>{a.portitemStyle.show=!1};return(d,l)=>k(n)?(i(),r("div",{key:0,class:"disk-item-tooltip",style:Vt(k(s)),onMouseenter:f,onMouseleave:p},[t("div",null,h(c(k(o).duplex)),1),t("div",null,"\u540D\u79F0\uFF1A"+h(k(o).name||"--"),1),t("div",null,"MAC\uFF1A"+h(k(o).macAddress||"--"),1),t("div",null,"\u63A5\u6536\uFF1A"+h(k(o).rx_packets||"--"),1),t("div",null,"\u53D1\u9001\uFF1A"+h(k(o).tx_packets||"--"),1)],36)):E("",!0)}});var ao=Y(eo,[["__scopeId","data-v-57f1326f"]]);const oo={id:"main"},no=P({setup(e){return(a,o)=>{const n=X("router-view");return i(),r("div",oo,[D(n),D(ao)])}}});var io=Y(no,[["__scopeId","data-v-9bc295c2"]]);const ro={},so={t:"1640593669834",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"54870",width:"128",height:"128"},uo=t("path",{d:"M148.7872 57.4464h177.152c64.9216 0 118.0672 53.1456 118.0672 118.0672v295.2192H148.7872C83.8656 470.7328 30.72 417.5872 30.72 352.5632v-177.152C30.72 110.592 83.8656 57.4464 148.7872 57.4464z m0 531.3536h295.2192v295.2192c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152C83.8656 1001.984 30.72 948.9408 30.72 883.9168v-177.152C30.72 641.9456 83.8656 588.8 148.7872 588.8z m0 0M768.7168 559.2064L562.0736 346.7264c-23.6544-17.7152-35.4304-53.1456-35.4304-82.6368s11.776-59.0848 35.4304-82.6368L686.08 57.4464C733.2864 10.24 810.0864 10.24 851.3536 57.4464l124.0064 124.0064c23.6544 23.6544 35.4304 53.1456 35.4304 82.6368s-11.776 59.0848-35.4304 82.6368L768.7168 559.2064z m0-478.208c-17.7152 0-29.4912 5.9392-41.3696 17.7152l-123.904 124.0064c-11.776 11.776-17.7152 23.6544-17.7152 41.3696s5.9392 29.4912 17.7152 41.3696l165.2736 165.2736 165.2736-165.2736c11.776-11.776 17.7152-23.6544 17.7152-41.3696s-5.9392-29.4912-17.7152-41.3696L809.984 98.7136c-11.776-11.776-23.552-17.7152-41.2672-17.7152z m0 0","p-id":"54871"},null,-1),lo=t("path",{d:"M562.0736 588.8h295.2192c64.9216 0 118.0672 53.1456 118.0672 118.0672v177.152c0 64.9216-53.1456 118.0672-118.0672 118.0672h-177.152c-64.9216 0-118.0672-53.1456-118.0672-118.0672V588.8z m0 0","p-id":"54872"},null,-1),co=[uo,lo];function po(e,a){return i(),r("svg",so,co)}var fo=Y(ro,[["render",po]]);const mo={},bo={t:"1640598743438",class:"icon",viewBox:"0 0 1036 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"65341",width:"128",height:"128"},vo=t("path",{d:"M984.177778 432.355556l-45.511111 0c-22.755556 0-45.511111-17.066667-51.2-39.822222l-28.444444-68.266667C847.644444 312.888889 853.333333 284.444444 870.4 267.377778l34.133333-34.133333c17.066667-17.066667 17.066667-39.822222 0-56.888889l-56.888889-56.888889c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-34.133333 34.133333C739.555556 170.666667 711.111111 176.355556 694.044444 164.977778L625.777778 136.533333c-22.755556-5.688889-39.822222-28.444444-39.822222-51.2L585.955556 39.822222c0-22.755556-17.066667-39.822222-39.822222-39.822222L472.177778 0C449.422222 0 432.355556 17.066667 432.355556 39.822222l0 45.511111c0 22.755556-17.066667 45.511111-39.822222 51.2L329.955556 164.977778C312.888889 176.355556 284.444444 170.666667 267.377778 153.6L233.244444 119.466667c-17.066667-17.066667-39.822222-17.066667-56.888889 0l-56.888889 56.888889c-17.066667 17.066667-17.066667 39.822222 0 56.888889l34.133333 34.133333C170.666667 284.444444 176.355556 312.888889 164.977778 329.955556L136.533333 398.222222C130.844444 415.288889 108.088889 432.355556 85.333333 432.355556l-45.511111 0C17.066667 432.355556 0 449.422222 0 472.177778l0 79.644444c0 22.755556 17.066667 39.822222 39.822222 39.822222l45.511111 0c22.755556 0 45.511111 17.066667 51.2 39.822222l28.444444 68.266667C176.355556 711.111111 170.666667 739.555556 153.6 756.622222l-34.133333 34.133333c-17.066667 17.066667-17.066667 39.822222 0 56.888889l56.888889 56.888889c17.066667 17.066667 39.822222 17.066667 56.888889 0l34.133333-34.133333C284.444444 853.333333 312.888889 847.644444 329.955556 859.022222L398.222222 887.466667c22.755556 5.688889 39.822222 28.444444 39.822222 51.2l0 45.511111c0 22.755556 17.066667 39.822222 39.822222 39.822222l79.644444 0c22.755556 0 39.822222-17.066667 39.822222-39.822222l0-45.511111c0-22.755556 17.066667-45.511111 39.822222-51.2l68.266667-28.444444c17.066667-11.377778 45.511111-5.688889 62.577778 11.377778l34.133333 34.133333c17.066667 17.066667 39.822222 17.066667 56.888889 0l56.888889-56.888889c17.066667-17.066667 17.066667-39.822222 0-56.888889l-34.133333-34.133333c-17.066667-17.066667-17.066667-45.511111-11.377778-62.577778l28.444444-68.266667c5.688889-22.755556 28.444444-39.822222 51.2-39.822222l45.511111 0c22.755556 0 39.822222-17.066667 39.822222-39.822222L1035.377778 472.177778C1024 449.422222 1006.933333 432.355556 984.177778 432.355556L984.177778 432.355556zM711.111111 512c0 108.088889-91.022222 199.111111-199.111111 199.111111-108.088889 0-199.111111-85.333333-199.111111-199.111111 0-108.088889 85.333333-199.111111 199.111111-199.111111C620.088889 312.888889 711.111111 403.911111 711.111111 512L711.111111 512zM711.111111 512","p-id":"65342"},null,-1),go=[vo];function _o(e,a){return i(),r("svg",bo,go)}var ho=Y(mo,[["render",_o]]);const xo={},ko={t:"1640599890701",class:"icon",viewBox:"0 0 1565 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"76947",width:"128",height:"128"},wo=t("path",{d:"M1206.477959 299.331595c-27.357038 0-53.867311 3.354494-79.465683 9.151581C1078.518669 130.792698 916.428217 0 723.365689 0 492.068443 0 304.575027 187.493416 304.575027 418.790662c0 16.055976 1.074741 31.786273 2.865975 47.386299-9.184149-0.911901-18.400865-1.40042-27.812989-1.40042C125.191018 464.743973 0 589.934991 0 744.371987c0 154.469563 125.191018 279.628013 279.595446 279.628013 59.990077 0 221.233764 0 394.527575 0l0-302.295274L496.986197 721.704726l285.457668-339.031868 285.457668 339.031868-177.136823 0 0 302.295274c139.748871 0 262.204185 0 315.71325 0 197.947713 0 358.40977-168.34349 358.40977-366.291203S1404.425673 299.331595 1206.477959 299.331595z","p-id":"76948"},null,-1),yo=[wo];function Fo(e,a){return i(),r("svg",ko,yo)}var Eo=Y(xo,[["render",Fo]]);const Co={},$o={t:"1640599792937",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"68605",width:"128",height:"128"},Do=t("path",{d:"M512 825.6c-211.2 0-377.6-57.6-377.6-128l0 0L134.4 896l0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0 0-204.8 0 0C889.6 768 723.2 825.6 512 825.6L512 825.6z","p-id":"68606"},null,-1),Bo=t("path",{d:"M512 544c-211.2 0-377.6-57.6-377.6-128l0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 416l0 0C889.6 486.4 723.2 544 512 544L512 544z","p-id":"68607"},null,-1),Yo=t("path",{d:"M889.6 128 889.6 128c0-70.4-166.4-128-377.6-128C300.8 0 134.4 57.6 134.4 128l0 0 0 0 0 204.8 0 0c6.4 70.4 172.8 128 377.6 128 204.8 0 371.2-57.6 377.6-128l0 0L889.6 128 889.6 128 889.6 128zM512 217.6c-153.6 0-281.6-44.8-281.6-96 0-51.2 128-96 281.6-96 153.6 0 281.6 44.8 281.6 96C793.6 179.2 665.6 217.6 512 217.6L512 217.6z","p-id":"68608"},null,-1),Ao=[Do,Bo,Yo];function So(e,a){return i(),r("svg",$o,Ao)}var zo=Y(Co,[["render",So]]);const Po={},To={t:"1640575557247",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4211",width:"128",height:"128"},Io=t("path",{d:"M560 800l-10.464-416h-75.072L464 800h96z m-14.144-493.984c9.44-9.312 14.144-20.672 14.144-34.016 0-13.6-4.704-24.992-14.144-34.208A46.784 46.784 0 0 0 512 224c-13.12 0-24.448 4.608-33.856 13.792A45.856 45.856 0 0 0 464 272c0 13.344 4.704 24.704 14.144 34.016 9.408 9.312 20.704 13.984 33.856 13.984 13.12 0 24.448-4.672 33.856-13.984zM512 32C246.912 32 32 246.912 32 512c0 265.088 214.912 480 480 480 265.088 0 480-214.912 480-480 0-265.088-214.912-480-480-480z m0 64c229.76 0 416 186.24 416 416s-186.24 416-416 416S96 741.76 96 512 282.24 96 512 96z","p-id":"4212"},null,-1),Lo=[Io];function Mo(e,a){return i(),r("svg",To,Lo)}var Oo=Y(Po,[["render",Mo]]);const No={},qo={t:"1640681742480",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"80687",width:"128",height:"128"},Vo=t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"80688"},null,-1),Go=t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"80689"},null,-1),jo=t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"80690"},null,-1),Ro=t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"80691"},null,-1),Uo=t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"80692"},null,-1),Wo=t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"80693"},null,-1),Ho=t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"80694"},null,-1),Zo=t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"80695"},null,-1),Jo=t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"80696"},null,-1),Xo=t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"80697"},null,-1),Ko=t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80698"},null,-1),Qo=t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80699"},null,-1),tn=t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80700"},null,-1),en=t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"80701"},null,-1),an=t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"80702"},null,-1),on=t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"80703"},null,-1),nn=t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"80704"},null,-1),rn=t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"80705"},null,-1),sn=t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"80706"},null,-1),dn=[Vo,Go,jo,Ro,Uo,Wo,Ho,Zo,Jo,Xo,Ko,Qo,tn,en,an,on,nn,rn,sn];function un(e,a){return i(),r("svg",qo,dn)}var ln=Y(No,[["render",un]]);const cn={},pn={t:"1640775712185",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2996",width:"128",height:"128"},fn=t("path",{d:"M894.185422 128.023792 129.814578 445.743994 445.99982 577.744353 571.860343 893.929596Z","p-id":"2997"},null,-1),mn=[fn];function bn(e,a){return i(),r("svg",pn,mn)}var vn=Y(cn,[["render",bn]]);const gn={class:"progress"},_n=P({props:{value:{type:Number,required:!0},text:{type:String}},setup(e){const a=e,o=R(()=>a.value>=80?"#e45e5e":a.value>=70?"#ff9800":a.value>=60?"#297ff3":a.value>0?"#53c31b":"");return(n,s)=>(i(),r("div",gn,[t("div",{class:ot(["progress-value",`${e.value>50}`]),style:Vt({width:`${e.value}%`,backgroundColor:k(o)})},[t("span",null,h(e.text),1)],6),Dt(n.$slots,"default",{},void 0,!0)]))}});var ta=Y(_n,[["__scopeId","data-v-733828e1"]]);const hn={},xn={height:"32",width:"64",t:"1649907260906",viewBox:"-8 248 1045 537",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink"},kn=t("path",{d:"M764.904497 251.418146 259.086289 251.418146c-143.076626 0-259.065314 115.989711-259.065314 259.065314 0 143.077649 115.988688 259.063267 259.065314 259.063267l505.818207 0c143.074579 0 259.063267-115.985618 259.063267-259.063267C1023.967764 367.407857 907.980099 251.418146 764.904497 251.418146zM764.904497 747.164974c-130.507356 0-236.682537-106.175181-236.682537-236.682537S634.397141 273.798876 764.904497 273.798876s236.683561 106.176205 236.683561 236.683561S895.411853 747.164974 764.904497 747.164974z","p-id":"2794",fill:"#52C41A"},null,-1),wn=[kn];function yn(e,a){return i(),r("svg",xn,wn)}var Fn=Y(hn,[["render",yn]]);const En={},Cn={height:"32",width:"64",t:"1649907515643",viewBox:"-8 248 1045 537",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2971","xmlns:xlink":"http://www.w3.org/1999/xlink"},$n=t("path",{d:"M764.867148 249.793136 259.0735 249.793136c-143.070486 0-259.052011 115.984594-259.052011 259.052011 0 143.07151 115.982548 259.050987 259.052011 259.050987l505.793648 0c143.067416 0 259.050987-115.979478 259.050987-259.050987C1023.917112 365.778754 907.933541 249.793136 764.867148 249.793136zM259.0735 745.516428c-130.501216 0-236.671281-106.172111-236.671281-236.671281 0-130.501216 106.170065-236.671281 236.671281-236.671281S495.744781 378.344954 495.744781 508.84617C495.744781 639.34534 389.574716 745.516428 259.0735 745.516428z","p-id":"2972",fill:"#999"},null,-1),Dn=[$n];function Bn(e,a){return i(),r("svg",Cn,Dn)}var Yn=Y(En,[["render",Bn]]);const An={class:"checkbox_switch"},Sn={class:"checkbox_switch_on"},zn={class:"checkbox_switch_off"},Pn=P({props:{modelValue:{type:Boolean,required:!0}},emits:["update:modelValue"],setup(e,{emit:a}){const o=e,n=R({get:()=>o.modelValue.valueOf(),set:s=>a("update:modelValue",s)});return(s,c)=>(i(),r("label",An,[z(t("input",{type:"checkbox","onUpdate:modelValue":c[0]||(c[0]=f=>Ca(n)?n.value=f:null)},null,512),[[Tt,k(n)]]),t("span",Sn,[D(Fn)]),t("span",zn,[D(Yn)]),Dt(s.$slots,"default",{},void 0,!0)]))}});var ea=Y(Pn,[["__scopeId","data-v-4457c24d"]]);const Tn={},In={t:"1641369474206",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7685",width:"128",height:"128"},Ln=t("path",{d:"M757.76 637.44l-218.88 245.76c-14.72 16.64-40.32 16.64-54.4 0L265.6 637.44C244.48 613.76 261.12 576 293.12 576l437.76 0C762.24 576 779.52 613.76 757.76 637.44z","p-id":"7686"},null,-1),Mn=[Ln];function On(e,a){return i(),r("svg",In,Mn)}var Nn=Y(Tn,[["render",On]]);const qn={},Vn={t:"1641369492518",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7831",width:"128",height:"128"},Gn=t("path",{d:"M758.4 385.92 539.52 140.16c-14.72-16.64-40.32-16.64-54.4 0L266.24 385.92C244.48 409.6 261.76 448 293.12 448l437.76 0C762.88 448 779.52 409.6 758.4 385.92z","p-id":"7832"},null,-1),jn=[Gn];function Rn(e,a){return i(),r("svg",Vn,jn)}var Un=Y(qn,[["render",Rn]]);const Wn={};function Hn(e,a){return i(),r("article",null,[Dt(e.$slots,"default",{},void 0,!0)])}var Zn=Y(Wn,[["render",Hn],["__scopeId","data-v-bd286d4e"]]);const Jn={class:"cover"},Xn={class:"thumbnail"},Kn=P({emits:["click"],setup(e,{emit:a}){const o=()=>{a("click")};return(n,s)=>(i(),M(Zn,null,{default:V(()=>[t("a",{onClick:o},[t("div",Jn,[t("div",Xn,[Dt(n.$slots,"default",{},void 0,!0)])])])]),_:3}))}});var Qn=Y(Kn,[["__scopeId","data-v-123deb20"]]);const ti=e=>(O("data-v-169d5b59"),e=e(),N(),e),ei={class:"select-editable"},ai={selected:"",value:""},oi=["value"],ni=ti(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),ii=["placeholder"],ri=P({props:{modelValue:{type:String,required:!0},title:{type:String,default:""},options:{type:Array,default:[]}},emits:["update:modelValue"],setup(e,{emit:a}){const o=e,n=y(""),s=y(""),c=R({get:()=>o.modelValue.valueOf(),set:l=>a("update:modelValue",l)}),f=l=>{l===n.value||n.value==="useInput"&&l===s.value||(l===""||o.options.some(u=>u.key===l)?n.value=l:(s.value=l,n.value="useInput"))};$a(()=>o.modelValue,l=>{f(l)}),Ft(()=>{const l=c.value;f(l)});const p=l=>{n.value==="useInput"?c.value=s.value:c.value=n.value},d=l=>{c.value=s.value};return(l,u)=>(i(),r("label",null,[t("div",ei,[z(t("select",{"onUpdate:modelValue":u[0]||(u[0]=m=>n.value=m),autocomplete:"off",onChange:p},[t("option",ai,"\u8BF7\u9009\u62E9"+h(e.title),1),(i(!0),r(L,null,j(e.options,(m,b)=>(i(),r("option",{value:m.key,key:b},h(m.value||m.key),9,oi))),128)),ni],544),[[Q,n.value,void 0,{trim:!0}]]),n.value=="useInput"?z((i(),r("input",{key:0,type:"text","onUpdate:modelValue":u[1]||(u[1]=m=>s.value=m),required:"",placeholder:"\u8BF7\u8F93\u5165"+e.title,onChange:d},null,40,ii)),[[W,s.value,void 0,{trim:!0}]]):E("",!0)])]))}});var Pt=Y(ri,[["__scopeId","data-v-169d5b59"]]);const si={t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},di=P({props:{size:{type:[Number,String],default:50},color:{type:String,default:"#fff"}},setup(e){const a=o=>{if(o==null)return;if(typeof o=="number")return o+"px";const n=o.toString();return parseInt(n)+""==n?n+"px":n};return(o,n)=>(i(),r("div",{class:"quick-loading",style:Vt({width:a(e.size),height:a(e.size)})},[(i(),r("svg",si,[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454",style:Vt({fill:e.color})},null,4)]))],4))}});var ui=Y(di,[["__scopeId","data-v-0ec4e762"]]);const li={},ci={t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},pi=t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""},null,-1),fi=[pi];function mi(e,a){return i(),r("svg",ci,fi)}var bi=Y(li,[["render",mi]]);const vi={},gi={width:"128",height:"128",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},_i=It('',1),hi=[_i];function xi(e,a){return i(),r("svg",gi,hi)}var ki=Y(vi,[["render",xi]]);const wi=e=>(O("data-v-7fc1a08c"),e=e(),N(),e),yi=["href"],Fi=wi(()=>t("svg",{t:"1684144670421",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4343"},[t("path",{d:"M512 74.666667c241.066667 0 437.333333 196.266667 437.333333 437.333333S753.066667 949.333333 512 949.333333 74.666667 753.066667 74.666667 512 270.933333 74.666667 512 74.666667zM512 704c-23.466667 0-42.666667 19.2-42.666667 42.666667s19.2 42.666667 42.666667 42.666666 42.666667-19.2 42.666667-42.666666-19.2-42.666667-42.666667-42.666667z m0-458.666667c-76.8 0-138.666667 61.866667-138.666667 138.666667 0 17.066667 14.933333 32 32 32s32-14.933333 32-32c0-40.533333 34.133333-74.666667 74.666667-74.666667s74.666667 34.133333 74.666667 74.666667c0 2.133333 0 6.4-2.133334 10.666667-6.4 14.933333-19.2 32-40.533333 51.2-10.666667 10.666667-21.333333 19.2-34.133333 27.733333-2.133333 2.133333-6.4 4.266667-8.533334 6.4l-6.4 4.266667c-8.533333 6.4-14.933333 17.066667-14.933333 27.733333v108.8c2.133333 17.066667 14.933333 29.866667 32 29.866667h2.133333c17.066667-2.133333 29.866667-14.933333 29.866667-32v-89.6l12.8-10.666667c10.666667-8.533333 19.2-17.066667 29.866667-25.6 27.733333-25.6 46.933333-49.066667 57.6-74.666667 4.266667-10.666667 6.4-23.466667 6.4-34.133333 0-76.8-61.866667-138.666667-138.666667-138.666667z",fill:"#666666","p-id":"4344"})],-1)),Ei=[Fi],Ci=P({props:{type:null},setup(e){const a=e,o=R(()=>{switch(a.type){case"disk":return"https://www.linkease.com/rd/8myYAEVA/";case"store":return"https://www.linkease.com/rd/1F58VUTT/";case"docker":return"https://www.linkease.com/rd/2Q28MDtf/";case"download":return"https://www.linkease.com/rd/1tJo1KX-/";case"ddns":return"https://www.linkease.com/rd/3yFiX5-X/";case"network-interface":return"https://www.linkease.com/rd/3ca51a3G/"}});return(n,s)=>(i(),r("a",{href:k(o),target:"_blank",title:"\u8DF3\u8F6C\u6559\u7A0B"},Ei,8,yi))}});var $i=Y(Ci,[["__scopeId","data-v-7fc1a08c"]]),aa={install:e=>{e.component("icon-loading",ui),e.component("icon-success",bi),e.component("icon-error",ki),e.component("GlHelp",$i)}};const Di=e=>{},Bi=()=>new Date().getTime(),Yi=e=>{if(e<1e3)return`${e} B`;let o=1e3,n=0;for(let f=e/1e3;f>=1e3;f/=1e3)o*=1e3,n++;let s=[" KB"," MB"," GB"," TB"," PB"," EB"];return(e/100/(o/100)).toFixed(1)+s[n]},Ai=e=>{if(e==null)return 0;if(e<1e4)return e;let o=parseInt(`${e/1e4}`),n=e%1e4;return`${o}\u4E07${n}`},Si=e=>{if(e)try{var a=new Date(e),o=a.getHours(),n=a.getMinutes(),s=a.getSeconds();return o<10&&(o=`0${o}`),n<10&&(n=`0${n}`),s<10&&(s=`0${s}`),`${o}:${n}:${s}`}catch(c){}return""},zi=e=>{if(e){let a=Math.floor(e/86400),o=Math.floor(e/3600)%24,n=Math.floor(e/60)%60,s=e%60;return a+"\u5929"+o+"\u5C0F\u65F6"+(n<10?"0"+n:n)+"\u5206"+(s<10?"0"+s:s)+"\u79D2"}},Pi=e=>/^\d+\.\d+\.\d+\.\d+$/.test(e),Ti=e=>e.length<3?"\u7528\u6237\u540D\u592A\u77ED":e.toLowerCase()!=e?"\u7528\u6237\u540D\u53EA\u80FD\u4E3A\u5C0F\u5199":new RegExp("^\\d").exec(e)?"\u7528\u6237\u540D\u4E0D\u80FD\u4EE5\u6570\u5B57\u5F00\u5934":new RegExp("^_").exec(e)?"\u7528\u6237\u540D\u4E0D\u80FD\u4EE5_\u5F00\u5934":new RegExp("^[a-z0-9_]+$").exec(e)?!0:"\u975E\u6CD5\u7684\u7528\u6237\u540D",Ii=(e,a)=>{let o=!0,n=null;const s=()=>{n=null,o&&e().finally(()=>{o&&(n=setTimeout(s,a))})};return n=setTimeout(s,0),()=>{o=!1,n!=null&&clearTimeout(n)}};var Li=Object.freeze(Object.defineProperty({__proto__:null,formatDate:Di,UnixDate:Bi,byteToSize:Yi,numberToSum:Ai,dateForm:Si,stampForm:zi,checkIsIP:Pi,checkSmabaUserName:Ti,easyInterval:Ii},Symbol.toStringTag,{value:"Module"})),yt=J({},Li);const Mi={class:"flow"},Oi={class:"flow-data"},Ni={key:0},qi={key:1},Vi=P({setup(e){Da([Ba,Ya,Aa,Sa,za,Pa]);const a=y(),o=g=>{var _;const v=(_=a.value)==null?void 0:_[g];return!v||v.startTime==0?"":d(v.startTime*1e3)+"-"+d(v.endTime*1e3)},n=R(()=>{var v;let g=[];return(v=a.value)==null||v.forEach(_=>{g.push({value:_.uploadSpeed})}),g}),s=R(()=>{var v;let g=[];return(v=a.value)==null||v.forEach(_=>{g.push({value:_.downloadSpeed})}),g}),c=R(()=>{var v;let g="";if(a.value){let _=((v=a.value)==null?void 0:v.length)||0;if(_>0){let w=a.value[_-1];g=l(w.uploadSpeed)+"/s"}}return g}),f=R(()=>{var v;let g="";if(a.value){let _=((v=a.value)==null?void 0:v.length)||0;if(_>0){let w=a.value[_-1];g=l(w.downloadSpeed)+"/s"}}return g});R(()=>{var v;let g=[];return(v=a.value)==null||v.forEach(_=>{g.push({value:_.downloadSpeed+_.uploadSpeed})}),g});const p=()=>T(this,null,function*(){var g;try{const v=yield S.Network.Statistics.GET();if(v.data&&(g=v.data.result)!=null&&g.items){const _=v.data.result.slots||10;if(v.data.result.items.length<_){let w=v.data.result.items;for(;w.length<_;)w=[{downloadSpeed:0,endTime:0,startTime:0,uploadSpeed:0}].concat(w);a.value=w}else v.data.result.items.length>_?a.value=v.data.result.items.slice(_-v.data.result.items.length):a.value=v.data.result.items}}catch(v){console.log(v)}}),d=yt.dateForm,l=yt.byteToSize,u=y();let m=null;const b=g=>(m=Ta(g,"dark"),m.setOption({animation:!1,backgroundColor:"transparent",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:v=>{if(Array.isArray(v)){let _="";v.length>0&&(_=o(v[0].axisValue));for(let w=0;w${v[w].seriesName}: ${l(v[w].value)}/s`;return _.toString()}else{const _=v;return`${o(_.axisValue)}
${_.seriesName}: ${l(_.value)}/s`}}},xAxis:{type:"category",boundaryGap:!1,splitLine:{lineStyle:{color:["#999"]},show:!1},name:"",show:!1,nameGap:0,nameTextStyle:{height:0,lineHeight:0,padding:0}},title:{text:"\u6D41\u91CF\u7EDF\u8BA1",textStyle:{fontSize:12,color:"rgba(0, 0, 0, 0.6)"},top:"10px",left:"10px"},yAxis:{type:"value",name:"",minInterval:1e4,interval:1e3,axisLabel:{formatter:function(v,_){return`${l(v)}/s`},color:"#fff",show:!1},nameTextStyle:{color:"#fff"},splitLine:{lineStyle:{color:["#999"]},show:!1}},series:[{name:"\u4E0B\u8F7D",data:s.value,type:"line",smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(32, 199, 247, 1)"},{offset:1,color:"rgba(32, 199, 247, 0.1)"}],global:!1}}},{name:"\u4E0A\u4F20",data:n.value,type:"line",smooth:!0,areaStyle:{color:{type:"linear",x:0,y:0,x2:0,y2:1,colorStops:[{offset:0,color:"rgba(85, 58, 254, 1)"},{offset:1,color:"rgba(85, 58, 254, 0.1)"}],global:!1}}}],legend:{padding:0,align:"right",top:"10px",selected:{\u4E0A\u4F20:!0,\u4E0B\u8F7D:!0},textStyle:{color:"rgba(0, 0, 0, 0.6)"},itemStyle:{color:"#5e72e4"},lineStyle:{color:"#333"}},grid:{left:"2%",right:"2%",bottom:"0%",top:"10%",containLabel:!0}}),m);return Ft(()=>{setTimeout(()=>T(this,null,function*(){if(u.value){yield p();const g=b(u.value),v=u.value;g.resize({width:v.clientWidth,height:v.clientHeight}),window.addEventListener("resize",()=>{g.resize({width:v.clientWidth,height:v.clientHeight})});const _=()=>T(this,null,function*(){m!=null&&(yield p(),m!=null&&(g.setOption({series:[{name:"\u4E0B\u8F7D",data:s.value,type:"line",areaStyle:{},smooth:!0},{name:"\u4E0A\u4F20",data:n.value,type:"line",areaStyle:{},smooth:!0}]}),setTimeout(_,5e3)))});setTimeout(_,5e3)}}),900)}),Gt(()=>{m!=null&&(m.dispose(),m=null)}),(g,v)=>(i(),r("div",Mi,[t("div",{ref_key:"el",ref:u,class:"echart"},null,512),t("div",Oi,[k(c)?(i(),r("span",Ni,"\u4E0A\u4F20: "+h(k(c)),1)):E("",!0),k(f)?(i(),r("span",qi,"\u4E0B\u8F7D: "+h(k(f)),1)):E("",!0)])]))}});var Gi=Y(Vi,[["__scopeId","data-v-e8f7c118"]]);const ji={},Ri={t:"1649668202191",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2338","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"28px",height:"28px"},Ui=t("path",{d:"M288 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2339",fill:"#666"},null,-1),Wi=t("path",{d:"M512 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2340",fill:"#666"},null,-1),Hi=t("path",{d:"M736 512m-64 0a64 64 0 1 0 128 0 64 64 0 1 0-128 0Z","p-id":"2341",fill:"#666"},null,-1),Zi=[Ui,Wi,Hi];function Ji(e,a){return i(),r("svg",Ri,Zi)}var $t=Y(ji,[["render",Ji]]);let se=0;const Xi={props:{type:String,message:String|Function,Close:Function,countdown:Number},data(){return{show:!1,remain:0}},mounted(){if(window.setTimeout(()=>{this.show=!0},0),this.countdown){this.remain=this.countdown;const e=()=>{this.show&&this.remain>0&&(this.remain=this.remain-1,se=window.setTimeout(e,1e3))};se=window.setTimeout(e,1e3)}},computed:{Message(){return this.message+(this.countdown?" "+this.remain+"s":"")}},methods:{Stop(){this.type!="loading"&&(this.show=!1,se!=0&&clearTimeout(se),this.Close())}}},ce=e=>(O("data-v-6935a479"),e=e(),N(),e),Ki={key:0,class:"loading icon"},Qi=ce(()=>t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1047 1047",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},[t("path",{d:"M522.695111 1.991111c-26.339556 0.170667-47.416889 21.475556-47.672889 48.753778-0.284444 26.453333-0.056889 52.963556-0.056889 79.445333 0 27.249778-0.369778 54.528 0.113778 81.777778 0.483556 27.050667 22.016 47.132444 49.351111 46.904889a47.786667 47.786667 0 0 0 47.729778-47.445333c0.284444-53.76 0.284444-107.52-0.028444-161.251556-0.170667-27.676444-21.902222-48.355556-49.436445-48.184889m-195.896889 88.092445c-8.334222-14.222222-21.646222-21.276444-38.314666-21.333334-35.128889 0-56.576 36.949333-38.968889 68.152889a11616.995556 11616.995556 0 0 0 78.961777 137.614222 44.942222 44.942222 0 0 0 61.838223 16.896c21.304889-12.202667 29.667556-38.968889 17.379555-60.871111-26.453333-47.104-53.560889-93.866667-80.896-140.458666m-228.693333 234.524444c44.316444 25.799111 88.746667 51.342222 133.176889 76.970667 6.712889 3.896889 13.681778 6.912 21.703111 6.428444 20.138667 0.142222 35.953778-11.946667 41.301333-31.573333 5.006222-18.261333-2.673778-36.721778-20.224-46.990222-44.629333-26.026667-89.372444-51.882667-134.115555-77.710223-22.528-12.999111-47.815111-7.025778-59.818667 13.909334-12.231111 21.248-4.977778 45.624889 17.948444 58.965333m34.161778 235.975111c26.396444 0 52.821333 0.199111 79.217778-0.085333 23.409778-0.256 39.139556-16.412444 38.798222-39.139556-0.341333-21.617778-16.924444-37.347556-39.594666-37.376-51.655111-0.056889-103.310222-0.056889-154.965334 0.028445-24.177778 0.056889-40.704 15.985778-40.561778 38.684444 0.142222 22.186667 16.583111 37.745778 40.192 37.859556 25.656889 0.142222 51.285333 0.028444 76.913778 0m151.722667 100.238222a34.247111 34.247111 0 0 0-46.876445-12.942222 13764.778667 13764.778667 0 0 0-139.008 80.583111c-11.093333 6.485333-16.327111 16.867556-16.497777 25.372444 0.085333 30.549333 27.249778 47.957333 50.403555 35.072 47.160889-26.197333 93.724444-53.475556 140.145778-80.924444 17.180444-10.154667 21.504-30.378667 11.832889-47.160889m91.875555 101.660444c-14.250667-4.067556-27.619556 1.422222-35.84 15.644445a24375.466667 24375.466667 0 0 0-77.312 134.485333c-10.012444 17.550222-5.859556 35.669333 9.784889 45.027556 16.014222 9.557333 34.247111 4.039111 44.714667-13.994667 25.543111-44.088889 50.915556-88.263111 76.373333-132.352 3.299556-5.745778 5.688889-11.690667 5.745778-14.933333 0-17.834667-9.272889-29.866667-23.466667-33.877334m147.456 44.288c-16.384 0.085333-27.306667 11.918222-27.448888 30.151111-0.142222 25.372444-0.028444 50.716444-0.028445 76.060445h-0.085333c0 26.112-0.113778 52.252444 0.056889 78.364444 0.113778 18.261333 11.064889 30.065778 27.448889 30.208 16.952889 0.142222 28.046222-11.832889 28.103111-30.748444 0.113778-51.086222 0.142222-102.172444 0.056889-153.258667 0-18.773333-11.207111-30.862222-28.103112-30.776889m177.208889-26.112c-7.509333-12.8-21.902222-16.014222-33.792-8.874666a23.722667 23.722667 0 0 0-8.533333 32.995555c26.282667 46.279111 52.906667 92.330667 79.644444 138.353778 4.494222 7.765333 11.633778 11.946667 20.906667 11.804444 18.545778-0.142222 30.520889-19.342222 21.219556-35.868444-26.026667-46.392889-52.650667-92.444444-79.473778-138.410667m239.957333-41.187555c-45.283556-26.254222-90.595556-52.48-135.964444-78.648889-4.693333-2.702222-9.728-4.323556-15.36-2.958222-9.102222 2.247111-14.933333 8.049778-16.497778 17.095111-1.877333 10.894222 3.84 18.204444 12.885333 23.438222 29.809778 17.180444 59.562667 34.417778 89.344 51.598222 15.217778 8.789333 30.236444 17.976889 45.738667 26.225778 14.677333 7.793778 31.061333-2.048 31.061333-18.033778-0.056889-8.448-4.096-14.592-11.207111-18.716444m48.867556-234.638222c-24.888889-0.085333-49.749333 0-74.609778 0v-0.085334c-25.258667 0-50.517333-0.056889-75.776 0.028445-13.425778 0.056889-20.963556 6.343111-21.162667 17.294222-0.199111 11.150222 7.082667 17.521778 20.679111 17.550222 50.488889 0.113778 100.977778 0.142222 151.495112 0.085333 13.368889 0 21.191111-6.485333 21.390222-17.152 0.227556-10.808889-8.106667-17.664-22.016-17.720888m-187.960889-127.146667c45.084444-26.026667 90.140444-52.110222 135.168-78.222222 4.864-2.844444 8.248889-6.855111 8.135111-12.942223-0.142222-11.036444-11.207111-17.436444-21.504-11.548444-45.511111 26.055111-90.851556 52.394667-136.135111 78.819556-7.68 4.494222-10.524444 11.52-5.575111 19.569777 4.835556 7.850667 12.088889 8.817778 19.911111 4.323556m-122.311111-115.114667c5.205333-0.256 8.220444-3.413333 10.609778-7.651555 4.920889-8.647111 10.040889-17.208889 14.990222-25.827556 20.48-35.555556 40.931556-71.025778 61.297778-106.609778 5.091556-8.874667 3.015111-16.668444-4.778667-18.517333-7.68-1.848889-10.894222 3.697778-14.051556 9.159111l-68.778666 119.495111c-2.844444 4.977778-6.030222 9.870222-8.305778 15.104-3.128889 7.196444 1.678222 14.648889 9.045333 14.848","p-id":"3454"})],-1)),tr=[Qi],er={key:1,class:"success icon"},ar=ce(()=>t("svg",{t:"1632451272305",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M1001.305115 275.874141 431.461709 845.718571c-28.221762 28.221762-73.977875 28.221762-102.20066 0L22.661116 539.116591c-28.222785-28.221762-28.222785-73.979922 0-102.20066 28.221762-28.221762 73.977875-28.221762 102.20066 0l255.500115 255.502162 518.743588-518.743588c28.221762-28.221762 73.977875-28.221762 102.199637 0C1029.5279 201.89422 1029.5279 247.65238 1001.305115 275.874141z","p-id":"2205"})],-1)),or=[ar],nr={key:2,class:"error icon"},ir=ce(()=>t("svg",{t:"1632451325789",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2204",width:"128",height:"128"},[t("path",{d:"M823.04 840.32 524.16 540.16l296.32-294.4c12.8-12.8 12.8-33.28 0-45.44-12.8-12.8-33.28-12.8-46.08 0L478.08 494.08 184.96 200.32c-12.8-12.8-33.28-12.8-45.44 0s-12.8 33.28 0 45.44l292.48 293.76-302.72 300.8c-12.8 12.8-12.8 33.28 0 45.44 12.8 12.8 33.28 12.8 46.08 0l302.72-300.16 299.52 300.16c12.8 12.8 33.28 12.8 45.44 0C835.2 873.6 835.2 853.12 823.04 840.32z","p-id":"2205"})],-1)),rr=[ir],sr={key:3,class:"warning icon"},dr=ce(()=>t("svg",{t:"1632451401172",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1638",width:"128",height:"128"},[t("path",{d:"M512 1021.45211835a60.32985613 60.32985613 0 1 1 60.32985613-60.32985611 60.32985613 60.32985613 0 0 1-60.32985613 60.32985611z m86.85823451-924.97400238L572.32985613 719.80283775a60.32985613 60.32985613 0 0 1-120.65971226 0l-26.52837838-623.32472178c-0.16758294-2.22885301-0.28489098-4.49122263-0.284891-6.78710881a87.14312551 87.14312551 0 0 1 174.28625102 0c0 2.2958862-0.11730806 4.5582558-0.284891 6.78710881z","p-id":"1639"})],-1)),ur=[dr];function lr(e,a,o,n,s,c){return i(),M(kt,{name:"el-fade-in-linear"},{default:V(()=>[s.show?(i(),r("div",{key:0,class:"toast",onClick:a[1]||(a[1]=f=>c.Stop())},[o.type=="loading"?(i(),r("div",Ki,tr)):o.type=="success"?(i(),r("div",er,or)):o.type=="error"?(i(),r("div",nr,rr)):o.type=="warning"?(i(),r("div",sr,ur)):E("",!0),t("div",{class:"message",onClick:a[0]||(a[0]=nt(()=>{},["stop"]))},h(c.Message),1)])):E("",!0)]),_:1})}var cr=Y(Xi,[["render",lr],["__scopeId","data-v-6935a479"]]);const Xt=new Map,jt=e=>{const a=tt(cr,at(J({},e),{Close:()=>{n()}})),o=document.createElement("div");document.body.append(o),a.mount(o);const n=()=>{o.remove(),Xt.get(a._uid)&&Xt.delete(a._uid)};return e.type=="loading"&&Xt.set(a._uid,{Close:n}),(e==null?void 0:e.duration)==0||((e==null?void 0:e.duration)>0?setTimeout(()=>{n()},e==null?void 0:e.duration):setTimeout(()=>{n()},3e3)),{Close:n}},F=e=>jt(e);F.Loading=(e,a)=>jt({type:"loading",message:e||"\u52A0\u8F7D\u4E2D...",duration:0,countdown:a||0});F.Success=e=>jt({type:"success",message:e});F.Error=e=>jt({type:"error",message:e,duration:0});F.Warning=e=>jt({type:"warning",message:e});F.Message=e=>jt({message:e});F.Clear=()=>{Xt.forEach((e,a)=>{e.Close(),Xt.delete(a)})};const ct={installApp:(e,a)=>new Promise((o,n)=>{let s=0;S.App.Install.POST({name:e}).then(()=>{const c=setTimeout(()=>{s==0&&(s=1,o(!1))},(a||60)*1e3),f=()=>{s==0&&S.App.Check.POST({name:e}).then(p=>{if(s==0&&p!=null&&p.data){const{result:d}=p.data;if((d==null?void 0:d.status)=="installed"){clearTimeout(c),s=1,o(!0);return}}}).catch(p=>{}).finally(()=>{s==0&&setTimeout(f,3e3)})};setTimeout(f,3e3)}).catch(c=>{s==0&&(s=1,n("\u5B89\u88C5\u5931\u8D25\uFF0C"+c))})}),checkAndInstallApp:(e,a,o)=>T(Kt,null,function*(){let n=F.Loading("\u68C0\u67E5\u4E2D...");try{const s=yield S.App.Check.POST({name:e});if(n.Close(),s!=null&&s.data){const{result:c,error:f}=s.data;if(f)F.Warning(f);else if(c){if(c.status=="installed")return!0;if(confirm(`\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 ${a} \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F`)){n=F.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const p=yield ct.installApp(o||e);if(n.Close(),p)return!0;F.Error("\u5B89\u88C5\u5931\u8D25\u6216\u8D85\u65F6\uFF0C\u8BF7\u68C0\u67E5\u8F6F\u4EF6\u6E90\u6216\u7A0D\u5019\u91CD\u8BD5")}}else F.Warning("\u68C0\u67E5\u63D2\u4EF6\u72B6\u6001\u5931\u8D25")}return!1}catch(s){return n.Close(),F.Warning(s),!1}}),installAndGo:(e,a,o,n)=>T(Kt,null,function*(){(yield ct.checkAndInstallApp(e,a,n))&&(location.href=o)})},pr={},fr={t:"1640746738262",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1216",width:"128",height:"128"},mr=t("path",{d:"M511.232 438.8352L112.9984 40.6016A51.2 51.2 0 0 0 40.6016 112.9984L438.784 511.232 40.6016 909.4656a51.2 51.2 0 1 0 72.3968 72.448l398.2336-398.2848 398.2336 398.2848a51.2 51.2 0 1 0 72.448-72.448l-398.2848-398.2336 398.2848-398.2336A51.2 51.2 0 0 0 909.4656 40.6016L511.232 438.784z","p-id":"1217"},null,-1),br=[mr];function vr(e,a){return i(),r("svg",fr,br)}var gr=Y(pr,[["render",vr]]);const _r=e=>(O("data-v-428d873e"),e=e(),N(),e),hr={id:"actioner"},xr={key:0,class:"action-container"},kr={class:"action-container_header"},wr=_r(()=>t("div",null,null,-1)),yr={class:"title"},Fr={class:"action-container_body"},Er=P({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){const a=e,o=y(!1);Ft(()=>{o.value=!0,document.body.setAttribute("lock-scroll","true")}),Gt(()=>{document.body.removeAttribute("lock-scroll")});const n=()=>{a.Close&&(o.value=!1,setTimeout(()=>{a.Close&&a.Close()},300))};return(s,c)=>(i(),r("div",hr,[t("div",{class:"bg",onClick:n}),e.type!=null?Dt(s.$slots,"default",{key:0},void 0,!0):(i(),r(L,{key:1},[o.value?(i(),r("div",xr,[t("div",kr,[wr,t("div",yr,h(e.title),1),t("button",{class:"close",title:"\u5173\u95ED",onClick:n},[D(gr)])]),t("div",Fr,[Dt(s.$slots,"default",{},void 0,!0)])])):E("",!0)],64))]))}});var Cr=Y(Er,[["__scopeId","data-v-428d873e"]]);const et=P({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){return(a,o)=>(i(),M(Cr,{Close:e.Close,type:e.type,title:e.title},{default:V(()=>[Dt(a.$slots,"default")]),_:3},8,["Close","type","title"]))}}),Lt=e=>(O("data-v-2a4078c6"),e=e(),N(),e),$r=["onSubmit"],Dr=Lt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),Br={class:"actioner-dns_body"},Yr={class:"label-item"},Ar=Lt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u9009\u9879")],-1)),Sr={class:"label-item_value"},zr=["disabled"],Pr=Lt(()=>t("option",{value:"manual"},"\u81EA\u5B9A\u4E49DNS",-1)),Tr={class:"label-item"},Ir=Lt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u670D\u52A1\u5668\u5730\u5740")],-1)),Lr={class:"label-item_value"},Mr=["onUpdate:modelValue"],Or=Lt(()=>t("div",{class:"label-item_key"},"\u5907\u7528DNS\u670D\u52A1\u5668\u5730\u5740",-1)),Nr={class:"label-item_value"},qr=["onUpdate:modelValue"],Vr={key:1,class:"label-message"},Gr={class:"actioner-dns_footer"},jr=["disabled"],Rr={key:1,class:"actioner-dns"},Ur=Lt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),Wr=Lt(()=>t("div",{class:"actioner-dns_body"},[t("div",{class:"config-message"},"DNS\u914D\u7F6E\u5DF2\u4FDD\u5B58")],-1)),Hr=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=le(),s=n.status,c=R(()=>n.status.proto!="static"),f=()=>{let g=s.dnsList||[];for(g=g.filter(v=>v);g.length<2;)g.push("");return g},p=y({interfaceName:s.defaultInterface||"",dnsProto:s.dnsProto||"manual",manualDnsIp:f()}),d=y(""),l=y(!1),u=()=>T(this,null,function*(){d.value="";let g={};switch(p.value.dnsProto){case"auto":break;case"manual":if(g.manualDnsIp=[],!p.value.manualDnsIp[0]){F.Error("\u81F3\u5C11\u9700\u8981\u586B\u5199\u4E00\u4E2ADNS");return}g.manualDnsIp=p.value.manualDnsIp.filter(_=>_);break}g.dnsProto=p.value.dnsProto,g.interfaceName=p.value.interfaceName;const v=F.Loading("\u914D\u7F6E\u4E2D...");try{const _=yield S.Guide.DnsConfig.POST(g);if(_!=null&&_.data){const{success:w,error:x}=_==null?void 0:_.data;x&&(d.value=x),(w==null||w==0)&&(F.Success("\u914D\u7F6E\u6210\u529F"),o.value=1)}}catch(_){d.value=_}v.Close()}),m=g=>{g.preventDefault(),a.Close&&a.Close()},b=g=>{location.reload()};return(g,v)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(u,["prevent"])},[Dr,t("div",Br,[t("div",Yr,[Ar,t("div",Sr,[z(t("select",{"onUpdate:modelValue":v[0]||(v[0]=_=>p.value.dnsProto=_)},[t("option",{value:"auto",disabled:!k(c)},"\u81EA\u52A8\u83B7\u53D6DNS",8,zr),Pr],512),[[Q,p.value.dnsProto]])])]),p.value.dnsProto=="manual"?(i(!0),r(L,{key:0},j(p.value.manualDnsIp,(_,w)=>(i(),r("div",Tr,[w==0?(i(),r(L,{key:0},[Ir,t("div",Lr,[z(t("input",{type:"text",placeholder:"\u8BF7\u8F93\u5165DNS\u5730\u5740",required:"","onUpdate:modelValue":x=>p.value.manualDnsIp[w]=x},null,8,Mr),[[W,p.value.manualDnsIp[w],void 0,{trim:!0}]])])],64)):(i(),r(L,{key:1},[Or,t("div",Nr,[z(t("input",{type:"text",placeholder:"\u5907\u7528DNS\u5730\u5740","onUpdate:modelValue":x=>p.value.manualDnsIp[w]=x},null,8,qr),[[W,p.value.manualDnsIp[w],void 0,{trim:!0}]])])],64))]))),256)):E("",!0),d.value?(i(),r("div",Vr,h(d.value),1)):E("",!0)]),t("div",Gr,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:l.value},"\u786E\u8BA4",8,jr),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:m},"\u53D6\u6D88")])],40,$r)):o.value==1?(i(),r("div",Rr,[Ur,Wr,t("div",{class:"actioner-dns_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:b},"\u5B8C\u6210")])])):E("",!0)]),_:1},8,["Close"]))}});var Zr=Y(Hr,[["__scopeId","data-v-2a4078c6"]]);const oa=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Zr,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},pe=e=>(O("data-v-0ae97e7e"),e=e(),N(),e),Jr={class:"action"},Xr={class:"action-body"},Kr=pe(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),Qr=pe(()=>t("h2",{class:"title"},"\u670D\u52A1\u5DF2\u542F\u52A8",-1)),ts={class:"info"},es=pe(()=>t("span",null,"\u524D\u5F80",-1)),as=["href"],os=pe(()=>t("span",null,"\u8FDB\u884C\u6D4B\u901F",-1)),ns=P({props:{port:Number,Close:Function},setup(e){const a=e,o=R(()=>`http://${location.hostname}:${a.port}`),n=()=>{a.Close&&(a.Close(),location.reload())};return(s,c)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("div",Jr,[t("div",Xr,[Kr,Qr,t("div",ts,[es,t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,as),os]),t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:n},"\u5173\u95ED")])])])]),_:1})]),_:1}))}});var is=Y(ns,[["__scopeId","data-v-0ae97e7e"]]),rs=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(is,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const $e=e=>(O("data-v-39248365"),e=e(),N(),e),ss=$e(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","xmlns:v":"https://vecta.io/nano",width:"48",height:"38",viewBox:"0 0 12.7 10.05"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(0 -286.95)"},[t("rect",{x:".21",y:"287.25",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0834 280.6)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#999",filter:"url(#A)",stroke:"#999","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0999 280.7)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.24",y:"294.55",width:"1.6",height:"1.38",ry:".11",fill:"#ccc",stroke:"#ccc","stroke-width":".22","paint-order":"normal"})])])],-1)),ds={class:"app-container_status-label_text"},us=$e(()=>t("div",{class:"text_status"},"\u5DF2\u65AD\u5F00",-1)),ls={class:"text_info"},cs=$e(()=>t("div",{class:"app-container_status-label_iconer"},[t("svg",{xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"48",height:"38",viewBox:"0 0 12.7 10.05","xmlns:v":"https://vecta.io/nano"},[t("defs",null,[t("filter",{id:"A","color-interpolation-filters":"sRGB"},[t("feColorMatrix",{result:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "}),t("feColorMatrix",{values:"0 0 0 -1 0 0 0 0 -1 0 0 0 0 -1 0 0 0 0 1 0"}),t("feColorMatrix",{in:"A",values:"2 -0.5 -0.5 0 0 -0.5 2 -0.5 0 0 -0.5 -0.5 2 0 0 0 0 0 1 0 "})]),t("path",{id:"B",d:"M80.56 75.75h3.91v22.79h-3.91z"})]),t("g",{transform:"translate(-.03 -287.07)"},[t("rect",{x:".24",y:"287.36",width:"12.33",height:"9.5",ry:".57",fill:"#e6e6e6",stroke:"#e6e6e6","stroke-linejoin":"round","stroke-width":".37","paint-order":"normal"}),t("path",{transform:"matrix(.105 0 0 .0989 -6.0532 280.72)",d:"M73.96 75.66h89.41c2.31 0 4.17 1.86 4.17 4.17v52.65h-21.74v9.41h-8.69v12.59h-36.87v-12.59h-8.69v-9.41H69.79V79.83c0-2.31 1.86-4.17 4.17-4.17z",fill:"#4d4d4d",filter:"url(#A)",stroke:"#4d4d4d","stroke-width":"2.5"}),t("g",{transform:"matrix(.1048 0 0 .1048 -6.0697 280.81)",fill:"#fff",filter:"url(#A)",stroke:"#fff"},[t("use",{"xlink:href":"#B"}),t("use",{"xlink:href":"#B",x:"73.04"}),t("use",{"xlink:href":"#B",x:"52.17"}),t("use",{"xlink:href":"#B",x:"41.74"}),t("use",{"xlink:href":"#B",x:"31.3"}),t("use",{"xlink:href":"#B",x:"20.87"}),t("use",{"xlink:href":"#B",x:"10.43"}),t("use",{"xlink:href":"#B",x:"62.61"})]),t("rect",{x:"1.27",y:"294.67",width:"1.6",height:"1.38",ry:".11",fill:"#55d400",stroke:"#55d400","stroke-width":".22","paint-order":"normal"})])])],-1)),ps={class:"app-container_status-label_text"},fs={class:"text_info"},ms=P({props:{item:{type:Object,required:!0},transform:{type:Number,default:0}},setup(e){const a=e,o=Ke(),n=y(null),s=f=>{const p=f.target,{left:d,top:l}=p.getBoundingClientRect();o.portitemStyle.show=!0,o.portitemStyle.left=d,o.portitemStyle.top=l,o.portitemStyle.portitem=a.item},c=f=>{o.portitemStyle.show=!1};return(f,p)=>(i(),r("div",{class:"app-container_status-label_bg",style:Vt(`transform: translateX(${e.transform}px);`),ref_key:"el",ref:n,onMouseenter:s,onMouseleave:c},[e.item.linkState=="DOWN"?(i(),r(L,{key:0},[ss,t("div",ds,[us,t("div",ls,h(e.item.name)+" "+h(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64)):(i(),r(L,{key:1},[cs,t("div",ps,[t("div",null,h(e.item.linkSpeed),1),t("div",fs,h(e.item.name)+" "+h(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64))],36))}});var na=Y(ms,[["__scopeId","data-v-39248365"]]);const ia=e=>(O("data-v-3470ca08"),e=e(),N(),e),bs=ia(()=>t("span",null,h("<"),-1)),vs=[bs],gs=ia(()=>t("span",null,h(">"),-1)),_s=[gs],hs=P({props:{portList:{type:Array,required:!0}},setup(e){const a=y(),o=y(0),n=y(0),s=y(0),c=y(!1),f=()=>{if(s.value>=0){s.value=0;return}s.value+=100},p=()=>{if(s.value<=0-o.value+n.value){s.value=0-o.value+n.value;return}s.value-=100};return Ft(()=>{Ia(()=>{a.value&&(o.value=a.value.scrollWidth,n.value=a.value.clientWidth,c.value=o.value>n.value)})}),(d,l)=>(i(),r("div",{class:"app-interfaces",ref_key:"el",ref:a},[c.value?(i(),r(L,{key:0},[t("a",{class:"btn-f",onClick:f},vs),t("a",{class:"btn-r",onClick:p},_s)],64)):E("",!0),(i(!0),r(L,null,j(e.portList,(u,m)=>(i(),M(na,{item:u,transform:s.value},null,8,["item","transform"]))),256))],512))}});var xs=Y(hs,[["__scopeId","data-v-3470ca08"]]);const ks={},ws={width:"82px",height:"82px",viewBox:"0 0 82 82",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},ys=It('icon_finished',2),Fs=[ys];function Es(e,a){return i(),r("svg",ws,Fs)}var De=Y(ks,[["render",Es]]);const Rt=e=>(O("data-v-1e29113c"),e=e(),N(),e),Cs=["onSubmit"],$s=Rt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),Ds={class:"actioner-dns_body"},Bs={class:"label-item"},Ys=Rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5F53\u524D\u8F6F\u4EF6\u6E90")],-1)),As={class:"label-item_value"},Ss={class:"item_info"},zs={class:"label-item"},Ps=Rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5207\u6362\u8F6F\u4EF6\u6E90")],-1)),Ts={class:"label-item_value"},Is=Rt(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u8F6F\u4EF6\u6E90",-1)),Ls=["value"],Ms={class:"actioner-dns_footer"},Os=["disabled"],Ns={key:1,class:"actioner-dns"},qs=Rt(()=>t("div",{class:"actioner-dns_header"},[t("span",{class:"softsource_tit"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),Vs={class:"actioner-dns_body"},Gs={class:"finished"},js=Rt(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),Rs=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y(""),s=y(),c=y();(()=>{S.Guide.SoftSourceList.GET().then(u=>{var m,b;if((m=u==null?void 0:u.data)!=null&&m.result){const g=(b=u==null?void 0:u.data)==null?void 0:b.result;c.value=g}}).then(()=>S.Guide.GetSoftSource.GET()).then(u=>{var m,b;if((m=u==null?void 0:u.data)!=null&&m.result){const g=u.data.result;s.value=g.softSource,(b=c.value)!=null&&b.softSourceList.find(v=>v.identity==g.softSource.identity)&&(n.value=g.softSource.identity)}})})();const p=u=>{u.preventDefault(),a.Close&&a.Close()},d=u=>{const m=F.Loading("\u6B63\u5728\u5207\u6362\u4E2D...");S.Guide.SoftSource.POST({softSourceIdentity:n.value}).then(b=>{if(b!=null&&b.data){if((b.data.success||0)==0){o.value=1;return}else if(b.data.error)throw b.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(b=>{F.Error(b)}).finally(()=>m.Close())},l=u=>{u.preventDefault(),location.reload()};return(u,m)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>{var b,g;return[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(d,["prevent"])},[$s,t("div",Ds,[t("div",Bs,[Ys,t("div",As,[t("p",Ss,h((b=s.value)==null?void 0:b.name),1)])]),t("div",zs,[Ps,t("div",Ts,[z(t("select",{name:"",id:"","onUpdate:modelValue":m[0]||(m[0]=v=>n.value=v)},[Is,(i(!0),r(L,null,j((g=c.value)==null?void 0:g.softSourceList,(v,_)=>(i(),r("option",{value:v.identity,key:_},h(v.name),9,Ls))),128))],512),[[Q,n.value,void 0,{trim:!0}]])])])]),t("div",Ms,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:n.value==""},"\u786E\u8BA4",8,Os),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:p},"\u53D6\u6D88")])],40,Cs)):E("",!0),o.value==1?(i(),r("form",Ns,[qs,t("div",Vs,[t("div",Gs,[D(De)]),js,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply softsource_successed",onClick:l},"\u786E\u5B9A")])])])):E("",!0)]}),_:1},8,["Close"]))}});var Us=Y(Rs,[["__scopeId","data-v-1e29113c"]]);const ra=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Us,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},lt=e=>(O("data-v-fd7a24a6"),e=e(),N(),e),Ws={class:"app-container_status-label"},Hs={class:"app-container_status-label_item",style:{"padding-right":"10px"}},Zs={class:"app-container_status-container",style:{height:"100%"}},Js={key:0,class:"app-container_status-container_body"},Xs=lt(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("title",null,"icon_internet connected"),t("g",{id:"icon_internet-connected",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng","fill-rule":"nonzero"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.0779329313",fill:"#553AFE"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#553AFE"}),t("path",{d:"M8,15 L13.2546984,20.2546984 C13.6452227,20.6452227 14.2783876,20.6452227 14.6689119,20.2546984 C14.6813066,20.2423037 14.6933732,20.2295853 14.7050993,20.2165563 L23,11 L23,11",id:"Path-3",stroke:"#FFFFFF","stroke-width":"2","stroke-linecap":"round"})])])])],-1)),Ks={class:"app-container_status-info"},Qs=lt(()=>t("span",{class:"container_success"},"\u5DF2\u8054\u7F51",-1)),td={class:"container_time"},ed={key:1,class:"app-container_status-container_body"},ad=lt(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#FAAD14","fill-rule":"nonzero"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#FAAD14","fill-rule":"nonzero"}),t("path",{d:"M15,6 C15.8284271,6 16.5,6.67157288 16.5,7.5 L16.5,18.5 C16.5,19.3284271 15.8284271,20 15,20 C14.1715729,20 13.5,19.3284271 13.5,18.5 L13.5,7.5 C13.5,6.67157288 14.1715729,6 15,6 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"}),t("path",{d:"M15,25 C14.171875,25 13.5,24.328125 13.5,23.5 C13.5,22.671875 14.171875,22 15,22 C15.828125,22 16.5,22.671875 16.5,23.5 C16.5,24.328125 15.828125,25 15,25 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"})])])])],-1)),od={class:"app-container_status-info"},nd=lt(()=>t("span",{class:"container_failure"},"DNS\u9519\u8BEF",-1)),id={class:"container_time"},rd={key:2,class:"app-container_status-container_body"},sd=lt(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#FAAD14","fill-rule":"nonzero"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#FAAD14","fill-rule":"nonzero"}),t("path",{d:"M15,6 C15.8284271,6 16.5,6.67157288 16.5,7.5 L16.5,18.5 C16.5,19.3284271 15.8284271,20 15,20 C14.1715729,20 13.5,19.3284271 13.5,18.5 L13.5,7.5 C13.5,6.67157288 14.1715729,6 15,6 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"}),t("path",{d:"M15,25 C14.171875,25 13.5,24.328125 13.5,23.5 C13.5,22.671875 14.171875,22 15,22 C15.828125,22 16.5,22.671875 16.5,23.5 C16.5,24.328125 15.828125,25 15,25 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"})])])])],-1)),dd={class:"app-container_status-info"},ud=lt(()=>t("span",{class:"container_failure"},"\u8F6F\u4EF6\u6E90\u9519\u8BEF",-1)),ld={class:"container_time"},cd={key:3,class:"app-container_status-container_body"},pd=lt(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#FAAD14","fill-rule":"nonzero"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#FAAD14","fill-rule":"nonzero"}),t("path",{d:"M15,6 C15.8284271,6 16.5,6.67157288 16.5,7.5 L16.5,18.5 C16.5,19.3284271 15.8284271,20 15,20 C14.1715729,20 13.5,19.3284271 13.5,18.5 L13.5,7.5 C13.5,6.67157288 14.1715729,6 15,6 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"}),t("path",{d:"M15,25 C14.171875,25 13.5,24.328125 13.5,23.5 C13.5,22.671875 14.171875,22 15,22 C15.828125,22 16.5,22.671875 16.5,23.5 C16.5,24.328125 15.828125,25 15,25 Z",id:"\u8DEF\u5F84",fill:"#FFFFFF"})])])])],-1)),fd={class:"app-container_status-info"},md=lt(()=>t("span",{class:"container_failure"},"\u672A\u8054\u7F51",-1)),bd={class:"container_time"},vd={key:4,class:"app-container_status-container_body"},gd=lt(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_internet-launching",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng","fill-rule":"nonzero"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.08",fill:"#3ED4AB"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#3ED4AB"}),t("path",{d:"M11.5738525,15.0233901 C11.5738525,14.8431935 11.5023882,14.6703653 11.3750746,14.5429471 C11.2477609,14.4155288 11.0750745,14.3439644 10.8950258,14.3440059 L7.67882684,14.3440059 C7.49875102,14.3439644 7.326041,14.4155503 7.19872281,14.5430024 C7.07140462,14.6704545 6.99991721,14.8433228 7.00000007,15.0235465 C7.00000007,15.2037431 7.0714644,15.3765713 7.19877809,15.5039895 C7.32609178,15.6314078 7.4987781,15.7029722 7.67882684,15.7029307 L10.8950258,15.7029307 C11.0750745,15.7029722 11.2477609,15.6314078 11.3750746,15.5039895 C11.5023882,15.3765713 11.5738525,15.2037431 11.5738525,15.0235465 L11.5738525,15.0233901 Z M22.3211553,14.3440059 L19.1049564,14.3440059 C18.9248806,14.3439644 18.7521705,14.4155503 18.6248524,14.5430024 C18.4975342,14.6704545 18.4260468,14.8433228 18.4261296,15.0235465 C18.4261296,15.2037431 18.4975939,15.3765713 18.6249076,15.5039895 C18.7522213,15.6314078 18.9249076,15.7029722 19.1049564,15.7029307 L22.3211553,15.7029307 C22.5012041,15.7029722 22.6738904,15.6314078 22.8012041,15.5039895 C22.9285178,15.3765713 22.9999911,15.2037431 22.9999911,15.0235465 C23.0019042,14.6481319 22.6962619,14.3440059 22.3211553,14.3440059 Z M15.0075079,18.6494887 C14.8274565,18.6494887 14.6547678,18.7210138 14.5274536,18.8484354 C14.4001395,18.9758571 14.3286356,19.1486892 14.3286812,19.3288885 L14.3286812,22.3206158 C14.3286398,22.5008124 14.4001455,22.6736405 14.5274592,22.8010588 C14.6547729,22.928477 14.8274592,23 15.0075079,23 C15.1875567,23 15.360243,22.928477 15.4875567,22.8010588 C15.6148704,22.6736405 15.6863761,22.5008124 15.6863348,22.3206158 L15.6863348,19.3308123 C15.6866114,18.9551699 15.3828413,18.6502825 15.0075079,18.6494887 Z M15.0075079,7 C14.8274592,7 14.6547729,7.07152297 14.5274592,7.19894122 C14.4001455,7.32635946 14.3286398,7.49918761 14.3286812,7.67938422 L14.3286812,10.8982245 C14.3286398,11.0784212 14.4001455,11.2512493 14.5274592,11.3786675 C14.6547729,11.5060858 14.8274592,11.5776088 15.0075079,11.5776088 C15.1875567,11.5776088 15.360243,11.5060858 15.4875567,11.3786675 C15.6148704,11.2512493 15.6863761,11.0784212 15.6863346,10.8982245 L15.6863346,7.67938422 C15.6863761,7.49918761 15.6148704,7.32635946 15.4875567,7.19894122 C15.360243,7.07152297 15.1875567,7 15.0075079,7 Z M11.6020132,17.4145291 L9.32916742,19.6892415 C9.06467707,19.9548666 9.06467707,20.3845576 9.32916742,20.6501827 C9.45618492,20.7780764 9.62906847,20.8497648 9.80924376,20.8492554 C9.98367775,20.8492554 10.1560177,20.783579 10.2893201,20.6501827 L12.5637599,18.3738593 C12.8282503,18.1082342 12.8282503,17.6785432 12.5637599,17.4129181 C12.2975184,17.147886 11.8671244,17.1486768 11.601857,17.4146855 L11.6020132,17.4145291 Z M17.8766048,12.7750942 C18.0510388,12.7750942 18.2236912,12.7094361 18.3566811,12.5760242 L20.6314491,10.29956 C20.8959395,10.0339349 20.8959395,9.6042439 20.6314491,9.3386188 C20.366042,9.07391123 19.9367036,9.07391123 19.6712965,9.3386188 L17.3966847,11.6133312 C17.1321944,11.8789563 17.1321944,12.3086474 17.3966847,12.5742725 C17.5235351,12.7026276 17.6963754,12.7749288 17.8767611,12.7750942 L17.8766048,12.7750942 Z M18.5349595,17.572293 C18.2695524,17.3075854 17.8402139,17.3075854 17.5748068,17.572293 C17.3103165,17.8379181 17.3103165,18.2676091 17.5748068,18.5332342 L19.6882679,20.6501827 C19.8152854,20.7780764 19.988169,20.8497648 20.1683442,20.8492554 C20.342747,20.8492554 20.5152744,20.783579 20.6484206,20.6501827 C20.9129109,20.3845576 20.9129109,19.9548666 20.6484206,19.6892415 L18.5349595,17.5722773 L18.5349595,17.572293 Z M10.2891638,9.35734026 C10.0237567,9.09263269 9.59441827,9.09263269 9.32901114,9.35734026 C9.06452079,9.62296536 9.06452079,10.0526564 9.32901114,10.3182815 L11.6037635,12.594902 C11.7308042,12.7227441 11.9036849,12.7943806 12.0838399,12.7938344 C12.2582738,12.7938344 12.43077,12.7281576 12.5639162,12.594902 C12.8284065,12.3292769 12.8284065,11.8995859 12.5639162,11.6339608 L10.2891638,9.3573559 L10.2891638,9.35734026 Z",id:"Shape",fill:"#FFFFFF"})])])])],-1)),_d=lt(()=>t("div",{class:"app-container_status-info"},[t("span",{class:"container_failure"},"\u68C0\u6D4B\u4E2D...")],-1)),hd=[gd,_d],xd={class:"app-container_status-label_item",style:{"padding-left":"10px"}},kd={class:"app-container_status-container",style:{height:"100%"}},wd={class:"more_icon",title:"\u67E5\u770B\u8BBE\u5907\u4FE1\u606F"},yd={class:"DeviceBlock"},Fd=lt(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/status/routes"},"\u8BBE\u5907\u8DEF\u7531")],-1)),Ed={class:"app-container_status-container_body"},Cd=lt(()=>t("svg",{width:"50px",height:"50px",viewBox:"0 0 50 50",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("title",null,"icon_device number"),t("g",{id:"icon_device-number",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"wancheng","fill-rule":"nonzero"},[t("path",{d:"M0,25 C0,33.9316396 4.76497292,42.1848151 12.5,46.6506351 C20.2350269,51.116455 29.7649731,51.116455 37.5,46.6506351 C45.2350271,42.1848151 50,33.9316396 50,25 C50,11.1928812 38.8071187,0 25,0 C11.1928813,0 0,11.1928812 0,25 Z",id:"Path","fill-opacity":"0.0804503114",fill:"#03C5FC"}),t("g",{id:"Group-2",transform:"translate(10.000000, 10.000000)"},[t("path",{d:"M0,15 C0,20.3589838 2.85898375,25.3108891 7.5,27.990381 C12.1410161,30.669873 17.8589839,30.669873 22.5,27.990381 C27.1410162,25.3108891 30,20.3589838 30,15 C30,6.7157287 23.2842712,0 15,0 C6.71572875,0 0,6.7157287 0,15 Z",id:"Path",fill:"#03C5FC"}),t("g",{id:"kehuduanIP",transform:"translate(5.000000, 7.000000)",fill:"#FFFFFF"},[t("path",{d:"M8.3164557,11.2822134 L2.39240506,11.2822134 C2.25316456,11.2822134 2.13924051,11.1683794 2.13924051,11.029249 L2.13924051,1.39130435 C2.13924051,1.25217391 2.25316456,1.13833992 2.39240506,1.13833992 L16.6075949,1.13833992 C16.7468354,1.13833992 16.8607595,1.25217391 16.8607595,1.39130435 L16.8607595,3.51620553 C17.2658228,3.5541502 17.6582278,3.69328063 18,3.9083004 L18,1.39130435 C18,0.619762846 17.3797468,0 16.6075949,0 L2.39240506,0 C1.62025316,0 1,0.619762846 1,1.39130435 L1,11.029249 C1,11.8007905 1.62025316,12.4205534 2.39240506,12.4205534 L7.15189873,12.4205534 L7.15189873,14.2798419 L6.40506329,14.2798419 C5.93670886,14.2798419 5.5443038,14.6592885 5.5443038,15.1399209 C5.5443038,15.6079051 5.92405063,16 6.40506329,16 L8.79746835,16 C8.48101266,15.5699605 8.3164557,15.0513834 8.3164557,14.5201581 L8.3164557,11.2822134 Z",id:"Path"}),t("path",{d:"M12.4062969,15.2371365 L12.4062969,14.0436242 L10.0074963,14.0436242 L10.0074963,6.39038031 C10.0074963,6.23042506 10.1394303,6.10738255 10.2833583,6.10738255 L15.6446777,6.10738255 C15.8005997,6.10738255 15.9205397,6.24272931 15.9205397,6.39038031 L15.9205397,8.77740492 L16.3283358,8.77740492 C16.5682159,8.77740492 16.7961019,8.85123043 17,8.97427293 L17,6.39038031 C17,5.62751678 16.3883058,5 15.6446777,5 L10.3313343,5 C9.58770615,5.0246085 9,5.63982103 9,6.39038031 L9,14.6465324 C9.02398801,15.3847875 9.61169415,15.9753915 10.3313343,16 L12.6581709,16 C12.5022489,15.7785235 12.4182909,15.50783 12.4062969,15.2371365 C12.4062969,15.2248322 12.4062969,15.2371365 12.4062969,15.2371365 L12.4062969,15.2371365 Z",id:"Path"}),t("path",{d:"M17.1515152,10 L13.8484848,10 C13.3787879,10 13,10.2857143 13,10.64 L13,15.36 C13,15.7142857 13.3787879,16 13.8484848,16 L17.1515152,16 C17.6212121,16 18,15.7142857 18,15.36 L18,10.64 C18,10.2857143 17.6212121,10 17.1515152,10 Z M14.0151515,10.7657143 L16.9848485,10.7657143 L16.9848485,14.8457143 L14.0151515,14.8457143 L14.0151515,10.7657143 L14.0151515,10.7657143 Z M15.4545455,15.6914286 C15.2575758,15.6914286 15.1060606,15.5657143 15.1060606,15.4285714 C15.1060606,15.28 15.2727273,15.1657143 15.469697,15.1657143 C15.6666667,15.1657143 15.8181818,15.2914286 15.8181818,15.44 C15.8181818,15.5085714 15.7727273,15.5885714 15.6969697,15.6342857 C15.6363636,15.68 15.5454545,15.7028571 15.4545455,15.6914286 C15.4545455,15.7028571 15.4545455,15.6914286 15.4545455,15.6914286 L15.4545455,15.6914286 Z",id:"Shape"})])])])])],-1)),$d={class:"app-container_status-info"},Dd={class:"container_content"},Bd=lt(()=>t("span",{class:"devise"},"\u5DF2\u8FDE\u63A5\u8BBE\u5907",-1)),Yd=lt(()=>t("em",null,null,-1)),Ad={class:"app-container_status-container"},Sd={class:"more_icon",title:"\u6D4B\u901F"},zd={class:"DeviceBlock"},Pd={class:"app-container_title"},Td={class:"app-container_status-label_block"},Id={class:"app-container_status-label_block"},Ld={class:"app-container_title"},Md={class:"app-container_status-label_block"},Od=lt(()=>t("em",null,null,-1)),Nd={class:"app-container_status-container"},qd={class:"app-container_title"},Vd=lt(()=>t("span",null,"\u7F51\u7EDC\u63A5\u53E3\u72B6\u6001",-1)),Gd={class:"more_icon",title:"\u67E5\u770B\u7F51\u7EDC\u63A5\u53E3\u4FE1\u606F"},jd={class:"DeviceBlock"},Rd=U("\u7F51\u53E3\u914D\u7F6E"),Ud={class:"app-container_body"},Wd=P({props:{homebox:{type:Object}},setup(e){const a=()=>{oa()},o=()=>{ra()},n=le(),s=R(()=>n.status),c=R(()=>n.deviceList),f=y(!1),p=y(!1),d=y(!1),l=it({portList:[],load:!1}),u=$=>{switch($){case"pppoe":return"\u62E8\u53F7\u4E0A\u7F51";case"static":return"\u9759\u6001\u7F51\u7EDC";case"dhcp":return"DHCP"}return $&&$.toUpperCase()},m=$=>{switch($){case"manual":return"\u624B\u52A8\u914D\u7F6E";case"auto":return"\u81EA\u52A8\u83B7\u53D6";default:return""}},b=()=>{S.Network.PortList.GET().then($=>{if($!=null&&$.data){const{result:q}=$==null?void 0:$.data;q&&(l.portList=q.ports||[])}}).finally(()=>{l.load=!0,g()})},g=()=>{setTimeout(()=>{b()},1e4)};b();const v=yt.stampForm,_=()=>{f.value=!f.value},w=()=>{p.value=!p.value},x=()=>{d.value=!d.value},C=()=>{_(),ct.installAndGo("app-meta-nlbwmon","\u5E26\u5BBD\u76D1\u63A7","/cgi-bin/luci/admin/services/nlbw")},A=()=>T(this,null,function*(){var $,q,H;if(w(),yield ct.checkAndInstallApp("app-meta-homebox","Homebox"))try{const G=yield S.Network.Homebox.Enable.POST();(q=($=G==null?void 0:G.data)==null?void 0:$.result)!=null&&q.port?rs({port:G.data.result.port,setup:0}):((H=G==null?void 0:G.data)==null?void 0:H.success)==0?location.href="/cgi-bin/luci/admin/services/homebox":F.Warning("\u542F\u52A8\u5931\u8D25")}catch(G){F.Warning("\u542F\u52A8\u5931\u8D25")}}),B=()=>{w(),ct.installAndGo("app-meta-systools","SysTools","/cgi-bin/luci/admin/system/systools/pages")};return($,q)=>{var G,Z;const H=X("router-link");return i(),r(L,null,[t("div",Ws,[t("div",Hs,[t("div",Zs,[k(s)!=null?(i(),r(L,{key:0},[k(s).networkInfo=="netSuccess"?(i(),r("div",Js,[Xs,t("div",Ks,[Qs,t("span",td,h(k(v)(k(s).uptimeStamp)),1)])])):k(s).networkInfo=="dnsFailed"?(i(),r("div",ed,[ad,t("div",od,[nd,t("span",id,h(k(v)(k(s).uptimeStamp)),1),t("div",{onClick:a,class:"container_configure"},"DNS\u914D\u7F6E")])])):k(s).networkInfo=="softSourceFailed"?(i(),r("div",rd,[sd,t("div",dd,[ud,t("span",ld,h(k(v)(k(s).uptimeStamp)),1),t("div",{onClick:o,class:"container_configure"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")])])):k(s).networkInfo=="netFailed"?(i(),r("div",cd,[pd,t("div",fd,[md,t("span",bd,h(k(v)(k(s).uptimeStamp)),1)])])):(i(),r("div",vd,hd))],64)):E("",!0)])]),t("div",xd,[t("div",kd,[t("span",wd,[D($t,{onClick:_})]),z(t("div",yd,[t("div",{class:"menu_background",onClick:_}),t("ul",null,[Fd,t("li",null,[t("a",{onClick:C},"\u5E26\u5BBD\u76D1\u63A7")])])],512),[[wt,f.value]]),t("div",Ed,[Cd,t("div",$d,[t("span",Dd,h(((Z=(G=k(c))==null?void 0:G.devices)==null?void 0:Z.length)||0),1),Bd])])])])]),Yd,t("div",Ad,[t("span",Sd,[D($t,{onClick:w})]),z(t("div",zd,[t("div",{class:"menu_background",onClick:w}),t("ul",null,[t("li",null,[t("a",{onClick:A},"\u5185\u7F51\u6D4B\u901F")]),t("li",null,[t("a",{onClick:B},"\u5916\u7F51\u6D4B\u901F")])])],512),[[wt,p.value]]),t("div",Pd,[t("span",null,"IP\u5730\u5740\uFF08"+h(k(s).defaultInterface)+"\uFF09",1)]),t("div",Td,[t("span",null," IPv4\uFF1A "+h(k(s).ipv4addr)+" \uFF08"+h(u(k(s).proto||""))+"\uFF09 ",1)]),t("div",Id,[t("span",null,"IPv6\uFF1A"+h(k(s).ipv6addr),1)]),t("div",Ld,[t("span",null,"DNS\uFF08"+h(m(k(s).dnsProto))+"\uFF09",1)]),(i(!0),r(L,null,j(k(s).dnsList,ht=>(i(),r("div",Md,[t("span",null,h(ht),1)]))),256))]),Od,t("div",Nd,[t("div",qd,[Vd,t("span",Gd,[D($t,{onClick:x})]),z(t("div",jd,[t("div",{class:"menu_background",onClick:x}),t("ul",null,[t("li",null,[D(H,{to:"/interfaceconfig"},{default:V(()=>[Rd]),_:1})])])],512),[[wt,d.value]])]),t("div",Ud,[k(l).load?(i(),M(xs,{key:0,portList:k(l).portList},null,8,["portList"])):E("",!0)])])],64)}}});var Hd=Y(Wd,[["__scopeId","data-v-fd7a24a6"]]);const Zd={class:"network-container"},Jd={class:"network-container_flow"},Xd={class:"network-container_flow-container"},Kd={class:"network-container_status"},Qd=P({setup(e){return(a,o)=>(i(),r("div",Zd,[t("div",Jd,[t("div",Xd,[D(Gi)])]),t("div",Kd,[D(Hd)])]))}});var t0=Y(Qd,[["__scopeId","data-v-6cd42792"]]);const e0={},a0={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},o0=t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),n0=[o0];function i0(e,a){return i(),r("svg",a0,n0)}var gt=Y(e0,[["render",i0]]);const r0={},s0={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},d0=It('\u5206\u533A\u4FE1\u606F',2),u0=[d0];function l0(e,a){return i(),r("svg",s0,u0)}var Ue=Y(r0,[["render",l0]]);const c0={},p0={width:"18px",height:"18px",viewBox:"0 0 18 18",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},f0=It('\u5168\u76D8\u683C\u5F0F\u5316',2),m0=[f0];function b0(e,a){return i(),r("svg",p0,m0)}var v0=Y(c0,[["render",b0]]);const Bt=e=>(O("data-v-3a0bca4c"),e=e(),N(),e),g0=["onSubmit"],_0=Bt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u786C\u76D8\u914D\u7F6E")],-1)),h0={class:"action-body"},x0={class:"disk-info"},k0=Bt(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),w0={key:0,class:"disk-info_mount-name"},y0={key:1,class:"disk-info_mount-name"},F0={key:0,class:"label-item"},E0=Bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),C0={class:"label-item_path"},$0={class:"label-item"},D0=Bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u683C\u5F0F\u5316\u9009\u9879")],-1)),B0={class:"label-item_value"},Y0=["disabled"],A0={key:0,value:""},S0=Bt(()=>t("option",{value:"format"},"\u683C\u5F0F\u5316",-1)),z0={key:1,value:"default"},P0={class:"label-item_value"},T0={key:0,class:"msg"},I0={key:1,class:"msg"},L0={class:"action-footer"},M0=Bt(()=>t("div",{class:"auto"},null,-1)),O0=["disabled"],N0=["disabled"],q0={key:1,class:"action result"},V0={class:"action-body"},G0=Bt(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),j0=Bt(()=>t("div",{class:"action-body_msg"},"\u683C\u5F0F\u5316\u6210\u529F",-1)),R0={key:0,class:"action-body_info"},U0={key:1,class:"action-body_info"},W0=U(" \u5DF2\u7ECF\u6210\u529F\u521D\u59CB\u5316\u5206\u533A "),H0={class:"btns"},Z0=P({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){const a=e,o=()=>{a.Close&&a.Close()},n=x=>{x.preventDefault(),a.Cancel&&a.Cancel(),o()},s=x=>{a.Next&&a.Next(x),o()},c=y(!1),f=y(0),p=x=>{f.value=x},d=y(a.action=="nas"?"":"format"),l=y(),u=y(),m=()=>{switch(d.value){case"format":g();return;case"default":b();return;default:F.Warning("\u8BF7\u9009\u62E9\u9009\u7EBF");return}},b=()=>{let x="";const C=a.mount;if(C!=null&&C.mountPoint!=null&&(x=C.mountPoint),x!=""){s(x);return}F.Warning("\u65E0\u6CD5\u8BC6\u522B\u8DEF\u5F84")},g=()=>{const x=a.disk,C=a.mount;if(C){const A=C.mountPoint||C.path;if(!confirm(`\u8B66\u544A\uFF1A\u683C\u5F0F\u5316\u4F1A\u6E05\u7A7A ${A} \u5206\u533A\u6570\u636E\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C`)||!confirm(`\u662F\u5426\u786E\u5B9A\u683C\u5F0F\u5316 ${A}?`))return;_(C);return}if(x){if(!confirm(`\u8B66\u544A\uFF1A\u8BE5\u64CD\u4F5C\u5C06\u521D\u59CB\u5316 ${x.venderModel} \u786C\u76D8\u5E76\u521B\u5EFA\u5206\u533A\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C`)||!confirm("\u662F\u5426\u786E\u5B9A\u521D\u59CB\u5316?"))return;v(x);return}F.Warning("\u65E0\u6CD5\u8BC6\u522B\u6570\u636E")},v=x=>T(this,null,function*(){if(x.name==null||x.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u540D\u79F0");return}if(x.path==null||x.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u8DEF\u5F84");return}c.value=!0;const C=F.Loading("\u521D\u59CB\u5316\u4E2D...");try{const A=yield S.Nas.Disk.Init.POST({name:x.name,path:x.path});if(A!=null&&A.data){const{result:B,error:$}=A==null?void 0:A.data;$&&F.Warning($),B&&(B.errorInfo?F.Warning(B.errorInfo):(F.Success("\u521D\u59CB\u5316\u6210\u529F"),B.childrens&&B.childrens.length>0&&(u.value=B.childrens[0]),l.value=B,p(1)))}}catch(A){F.Error(A)}C.Close(),c.value=!1}),_=x=>T(this,null,function*(){if(x.path==null||x.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}c.value=!0;const C=F.Loading("\u683C\u5F0F\u5316\u4E2D...");try{const A=yield S.Nas.Disk.Partition.Format.POST({path:x.path,uuid:x.uuid,mountPoint:x.mountPoint});if(A!=null&&A.data){const{result:B,error:$}=A==null?void 0:A.data;$&&F.Warning($),B&&(F.Success("\u683C\u5F0F\u5316\u6210\u529F"),u.value=B,p(1))}}catch(A){F.Error(A)}C.Close(),c.value=!1}),w=()=>{if(u.value&&u.value.mountPoint){s(u.value.mountPoint);return}F.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")};return(x,C)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>{var A;return[f.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:nt(m,["prevent"])},[_0,t("div",h0,[t("div",x0,[k0,e.mount?(i(),r("div",w0,[t("span",null,"\u3010"+h(e.mount.total)+"\u3011",1),t("span",null,h(e.mount.mountPoint||e.mount.path),1)])):e.disk?(i(),r("div",y0,[t("span",null,"\u3010"+h(e.disk.size)+"\u3011",1),t("span",null,h(e.disk.venderModel),1)])):E("",!0)]),e.mount?(i(),r("div",F0,[E0,t("div",C0,h(e.mount.mountPoint||e.mount.path)+"\uFF08"+h(e.mount.total)+"\uFF09",1)])):E("",!0),t("div",$0,[D0,t("div",B0,[z(t("select",{"onUpdate:modelValue":C[0]||(C[0]=B=>d.value=B),required:"",disabled:e.action=="disk"},[e.mount!=null?(i(),r("option",A0,"\u8BF7\u9009\u62E9\u9009\u9879")):E("",!0),S0,e.mount!=null?(i(),r("option",z0,"\u4E0D\u683C\u5F0F\u5316,\u4F7F\u7528\u539F\u6587\u4EF6\u7CFB\u7EDF")):E("",!0)],8,Y0),[[Q,d.value]])]),t("div",P0,[d.value=="format"?(i(),r("p",T0,"\u683C\u5F0F\u5316\u4E3AEXT4\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u4F20\u8F93\u901F\u5EA6\u66F4\u5FEB")):d.value=="default"?(i(),r("p",I0)):E("",!0)])])]),t("div",L0,[M0,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:c.value},"\u8FD4\u56DE",8,O0),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:c.value},"\u4E0B\u4E00\u6B65",8,N0)])],40,g0)):f.value==1?(i(),r("div",q0,[t("div",V0,[G0,j0,l.value?(i(),r("div",R0,[U(" \u5DF2\u7ECF\u6210\u529F\u683C\u5F0F\u5316\u78C1\u76D8 "+h(l.value.venderModel)+" \u5E76\u6302\u8F7D\u5230 ",1),t("a",null,h((A=u.value)==null?void 0:A.mountPoint),1)])):E("",!0),u.value?(i(),r("div",U0,[W0,t("a",null,h(u.value.mountPoint),1)])):E("",!0),t("div",H0,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:w},h(e.action=="nas"?"\u4E0B\u4E00\u6B65":"\u5B8C\u6210"),1)])])])):E("",!0)]}),_:1})]),_:1}))}});var J0=Y(Z0,[["__scopeId","data-v-3a0bca4c"]]),Be=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(J0,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Mt=e=>(O("data-v-57d4812a"),e=e(),N(),e),X0=["onSubmit"],K0=Mt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"})],-1)),Q0={class:"action-body"},tu={class:"disk-info"},eu=Mt(()=>t("div",{class:"disk-info_icon"},[t("svg",{t:"1642589762094",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"11301",width:"128",height:"128"},[t("path",{d:"M899.892468 123.889088c0-44.342099-36.286708-80.620486-80.624646-80.620486H204.728017C160.385918 43.268602 124.107532 79.546988 124.107532 123.889088v802.847056c0 44.342099 36.278386 80.620486 80.620485 80.620486h614.539805c44.337938 0 80.624646-36.278386 80.624646-80.620486V123.889088z",fill:"#D0D0DB","p-id":"11302"}),t("path",{d:"M169.8768 977.7772V174.930143c0-44.342099 36.278386-80.620486 80.620486-80.620485h614.539804c9.936092 0 19.426974 1.905666 28.239639 5.23434-11.525534-30.507298-40.996782-52.389169-75.398629-52.389169H203.342457c-44.342099 0-80.620486 36.278386-80.620486 80.620486v802.851217c0 34.410168 21.881871 63.873094 52.385008 75.381985A79.730065 79.730065 0 0 1 169.8768 977.7772z",fill:"#FFFFFF","p-id":"11303"}),t("path",{d:"M820.657543 40.497481H206.117739c-44.342099 0-80.620486 36.278386-80.620486 80.620485v802.847057c0 44.342099 36.278386 80.620486 80.620486 80.620486h614.539804c44.337938 0 80.624646-36.278386 80.624647-80.620486V121.117966c0-44.342099-36.286708-80.620486-80.624647-80.620485z m19.60173 828.785749c0 40.846992-33.43237 74.279362-74.287684 74.279361H199.780776c-40.855313 0-74.279362-33.424048-74.279362-74.279361V129.593603c0-40.855313 33.424048-74.279362 74.279362-74.279362h566.203296c40.842831 0 74.283522 33.424048 74.283522 74.279362l-0.008321 739.689627z",fill:"#6E6E96","p-id":"11304"}),t("path",{d:"M815.106979 1024H200.567175C146.933914 1024 103.303319 980.369405 103.303319 926.736144V123.889088C103.303319 70.255827 146.933914 26.625232 200.567175 26.625232h614.539804c53.633261 0 97.268017 43.630595 97.268017 97.263856v802.847056c0 53.633261-43.634756 97.263856-97.268017 97.263856zM200.567175 59.911972C165.287391 59.911972 136.590059 88.609303 136.590059 123.889088v802.847056c0 35.279784 28.697331 63.977115 63.977116 63.977115h614.539804c35.279784 0 63.981276-28.697331 63.981276-63.977115V123.889088c0-35.279784-28.701492-63.977115-63.981276-63.977116H200.567175z",fill:"#6E6E96","p-id":"11305"}),t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"11306"}),t("path",{d:"M731.931736 1024H301.946104a16.64337 16.64337 0 0 1-16.64337-16.64337V941.515457a16.64337 16.64337 0 0 1 16.64337-16.64337h429.985632a16.64337 16.64337 0 0 1 16.64337 16.64337v65.841173a16.64337 16.64337 0 0 1-16.64337 16.64337z m-413.342262-33.286741h396.698892v-32.554432H318.589474v32.554432z",fill:"#6E6E96","p-id":"11307"}),t("path",{d:"M337.230049 960.318304h20.804213v47.038326h-20.804213zM386.565159 960.318304h20.804213v47.038326h-20.804213zM435.891948 960.318304h20.804213v47.038326h-20.804213zM485.231219 960.318304h20.804213v47.038326h-20.804213zM534.558008 960.318304h20.804213v47.038326h-20.804213zM583.897279 960.318304h20.804213v47.038326h-20.804213zM633.224068 960.318304h20.804213v47.038326h-20.804213zM682.563339 960.318304h20.804213v47.038326h-20.804213z",fill:"#FFE599","p-id":"11308"}),t("path",{d:"M219.153659 140.794591m-26.874883 0a26.874882 26.874882 0 1 0 53.749765 0 26.874882 26.874882 0 1 0-53.749765 0Z",fill:"#ADADD1","p-id":"11309"}),t("path",{d:"M219.153659 184.312843c-23.995579 0-43.518252-19.522673-43.518253-43.518252s19.522673-43.518252 43.518253-43.518253 43.518252 19.522673 43.518252 43.518253-19.522673 43.518252-43.518252 43.518252z m0-53.749764c-5.642103 0-10.231512 4.589409-10.231512 10.231512s4.589409 10.231512 10.231512 10.231512 10.231512-4.589409 10.231511-10.231512-4.589409-10.231512-10.231511-10.231512z",fill:"#6E6E96","p-id":"11310"}),t("path",{d:"M801.28466 140.794591m-26.870721 0a26.870721 26.870721 0 1 0 53.741442 0 26.870721 26.870721 0 1 0-53.741442 0Z",fill:"#ADADD1","p-id":"11311"}),t("path",{d:"M801.28466 184.308683c-23.995579 0-43.514092-19.518512-43.514091-43.514092s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514092z m0-53.741443c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11312"}),t("path",{d:"M801.280499 905.23291m-26.870721 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11313"}),t("path",{d:"M801.280499 948.747001c-23.995579 0-43.514092-19.518512-43.514091-43.514091s19.518512-43.514092 43.514091-43.514092 43.514092 19.518512 43.514092 43.514092-19.518512 43.514092-43.514092 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11314"}),t("path",{d:"M219.153659 905.23291m-26.870722 0a26.870721 26.870721 0 1 0 53.741443 0 26.870721 26.870721 0 1 0-53.741443 0Z",fill:"#ADADD1","p-id":"11315"}),t("path",{d:"M219.153659 948.747001c-23.995579 0-43.514092-19.518512-43.514092-43.514091s19.518512-43.514092 43.514092-43.514092 43.514092 19.518512 43.514091 43.514092-19.522673 43.514092-43.514091 43.514091z m0-53.741442c-5.637942 0-10.227351 4.589409-10.227351 10.227351s4.589409 10.227351 10.227351 10.227351 10.227351-4.589409 10.227351-10.227351-4.589409-10.227351-10.227351-10.227351z",fill:"#6E6E96","p-id":"11316"}),t("path",{d:"M520.972857 777.43263c-142.542145 0-258.508988-115.971004-258.508988-258.52147a16.64337 16.64337 0 0 1 33.28674 0c0 124.19699 101.033579 225.23473 225.222248 225.23473s225.222248-101.03774 225.222248-225.23473c0-124.188668-101.033579-225.218087-225.222248-225.218087a16.64337 16.64337 0 0 1 0-33.286741c142.542145 0 258.508988 115.966843 258.508988 258.504828 0 142.550466-115.966843 258.521471-258.508988 258.52147z",fill:"#6E6E96","p-id":"11317"}),t("path",{d:"M520.968696 518.919481m-83.312551 0a83.312551 83.312551 0 1 0 166.625102 0 83.312551 83.312551 0 1 0-166.625102 0Z",fill:"#A9A9BA","p-id":"11318"}),t("path",{d:"M520.968696 618.875402c-55.114521 0-99.955921-44.83724-99.955921-99.95176 0-55.118682 44.8414-99.955921 99.955921-99.955921s99.95176 44.8414 99.95176 99.955921c0 55.11036-44.83724 99.95176-99.95176 99.95176z m0-166.625101c-36.761044 0-66.669181 29.908136-66.66918 66.66918s29.908136 66.66502 66.66918 66.66502 66.66502-29.908136 66.66502-66.66502c0-36.761044-29.903976-66.669181-66.66502-66.66918z",fill:"#6E6E96","p-id":"11319"}),t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"11320"})])],-1)),au={key:0,class:"disk-info_mount-name"},ou={key:1,class:"disk-info_mount-name"},nu={key:0,class:"label-item"},iu=Mt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),ru={class:"label-item_path"},su={class:"label-item"},du=Mt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u6302\u8F7D\u70B9")],-1)),uu={class:"label-item_value"},lu={class:"action-footer"},cu=Mt(()=>t("div",{class:"auto"},null,-1)),pu=["disabled"],fu=["disabled"],mu={key:1,class:"action result"},bu={class:"action-body"},vu=Mt(()=>t("div",{class:"action-body_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),gu=Mt(()=>t("div",{class:"action-body_msg"},"\u6302\u8F7D\u6210\u529F",-1)),_u={key:0,class:"action-body_info"},hu={class:"btns"},xu=P({props:{action:String,disk:{type:Object,required:!0},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){var g;const a=e,o=()=>{a.Close&&a.Close()},n=v=>{v.preventDefault(),a.Cancel&&a.Cancel(),o()},s=v=>{a.Next&&a.Next(v),o()},c=y(!1),f=y(0),p=y("/mnt/data_"+((g=a==null?void 0:a.mount)==null?void 0:g.name)),d=v=>{f.value=v};y(a.mount?"":"format"),y();const l=y(),u=()=>T(this,null,function*(){const v=a.mount;if(v==null){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A");return}if(v.path==null||v.path==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}if(v.uuid==null||v.uuid==""){F.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533AID");return}c.value=!0;const _=F.Loading("\u6302\u8F7D\u4E2D...");try{const w=yield S.Nas.Disk.Partition.Mount.POST({path:v.path,uuid:v.uuid,mountPoint:p.value});if(w!=null&&w.data){const{result:x,error:C}=w==null?void 0:w.data;C&&F.Warning(C),x&&(F.Success("\u6302\u8F7D\u6210\u529F"),l.value=x,d(1))}}catch(w){F.Error(w)}_.Close(),c.value=!1}),m=()=>{if(l.value&&l.value.mountPoint){s(l.value.mountPoint);return}F.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")},b=()=>{};return(v,_)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>{var w,x;return[f.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:nt(b,["prevent"])},[K0,t("div",Q0,[t("div",tu,[eu,e.mount?(i(),r("div",au,[t("span",null,"\u3010"+h(e.mount.total)+"\u3011",1),t("span",null,h(e.mount.mountPoint),1)])):e.disk?(i(),r("div",ou,[t("span",null,"\u3010"+h(e.disk.size)+"\u3011",1),t("span",null,h(e.disk.venderModel),1)])):E("",!0)]),e.mount?(i(),r("div",nu,[iu,t("div",ru,h(e.mount.path)+"\uFF08"+h(e.mount.total)+"\uFF0C"+h((x=(w=e.mount)==null?void 0:w.filesystem)==null?void 0:x.toUpperCase())+"\uFF09",1)])):E("",!0),t("div",su,[du,t("div",uu,[z(t("input",{type:"text","onUpdate:modelValue":_[0]||(_[0]=C=>p.value=C)},null,512),[[W,p.value,void 0,{trim:!0}]])])])]),t("div",lu,[cu,t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:c.value,onClick:u},"\u786E\u5B9A",8,pu),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:c.value},"\u8FD4\u56DE",8,fu)])],40,X0)):f.value==1?(i(),r("div",mu,[t("div",bu,[vu,gu,l.value?(i(),r("div",_u,[U(" \u5DF2\u6210\u529F\u5C06\u5206\u533A "+h(l.value.path)+" \u6302\u8F7D\u5230 ",1),t("a",null,h(l.value.mountPoint),1)])):E("",!0),t("div",hu,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:m},h(e.action=="nas"?"\u5B8C\u6210":"\u4E0B\u4E00\u6B65"),1)])])])):E("",!0)]}),_:1})]),_:1}))}});var ku=Y(xu,[["__scopeId","data-v-57d4812a"]]),sa=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(ku,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const da=e=>(O("data-v-31be4af0"),e=e(),N(),e),wu={class:"disk-content"},yu={class:"disk-item"},Fu={class:"disk-item_name"},Eu={key:0},Cu={key:1},$u={key:2},Du={class:"disk_value"},Bu={key:0,class:"disk-item_value"},Yu={class:"value-data"},Au={key:1,class:"disk-item_value"},Su={key:0,class:"disk-item"},zu={class:"disk-item_name"},Pu=["href"],Tu={class:"disk_status"},Iu={class:"disk_status_item"},Lu={key:0,class:"tooltip-trigger disk_tip"},Mu=da(()=>t("div",{class:"tooltip-text tooltip-top"},[t("div",{class:"disk_dir_tip"},"\u5F53\u524D\u78C1\u76D8\u4E3A\u53EA\u8BFB\u72B6\u6001\uFF0C\u53EF\u80FD\u5BFC\u81F4\u65E0\u6CD5\u5199\u5165\u6570\u636E")],-1)),Ou={class:"disk_status_item"},Nu={key:0,class:"tooltip-trigger disk_tip"},qu=da(()=>t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"disk_dir_tip"},"\u5F53\u524D\u78C1\u76D8\u786C\u76D8\u683C\u5F0F\u4E3ANTFS\uFF0C\u53EF\u80FD\u5BFC\u81F4\u786C\u76D8\u51FA\u73B0\u517C\u5BB9\u6027\u95EE\u9898\uFF0C\u5EFA\u8BAE\u683C\u5F0F\u5316\u6210EXT4\u6587\u4EF6\u7CFB\u7EDF")],-1)),Vu=P({props:{part:{type:Object,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=R(()=>a.part.filesystem=="No FileSystem"),n=R(()=>o.value||!a.part.isSystemRoot&&a.part.mountPoint&&(a.part.isReadOnly||a.part.filesystem=="ntfs")),s=function(){Be({action:"disk",disk:a.disk,mount:a.part,Cancel:()=>{},Next:l=>{location.reload()}})},c=()=>{sa({action:"nas",disk:a.disk,mount:a.part,Cancel:()=>{},Next:()=>{location.reload()}})},f=()=>T(this,null,function*(){const l=F.Loading("\u5904\u7406\u4E2D...");try{const u=yield S.Nas.Disk.InitRest.POST({name:a.disk.name,path:a.disk.path});if(u!=null&&u.data){const{result:m,error:b}=u==null?void 0:u.data;b&&F.Warning(b),m&&(F.Success("\u6302\u8F7D\u6210\u529F"),location.reload())}}catch(u){F.Error(u)}l.Close()}),p=R(()=>a.part.filesystem=="Free Space"),d=R(()=>{const l=a.part.mountPoint?a.part.mountPoint:"";return l.indexOf("/mnt/")==0?"/cgi-bin/luci/admin/services/linkease/file/?path=/"+l.substring(5):"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+l});return(l,u)=>{var b;const m=X("progress-item");return i(),r("div",wu,[t("li",yu,[t("div",Fu,[k(p)?(i(),r("span",Eu,"\u672A\u5206\u533A")):(i(),r("span",Cu,h(e.part.name)+h(e.part.mountPoint?"":k(o)?"\uFF08\u672A\u683C\u5F0F\u5316\uFF09":"\uFF08\u672A\u6302\u8F7D\uFF09"),1)),e.part.isSystemRoot?(i(),r("span",$u,"\uFF08\u7CFB\u7EDF\u5206\u533A\uFF09")):E("",!0)]),t("div",Du,[e.part.mountPoint||k(p)?(i(),r("div",Bu,[t("div",Yu,[D(m,{value:k(p)||!e.part.usage?0:e.part.usage,text:k(p)?"\u672A\u5206\u533A\uFF08"+e.part.total+"\uFF09":e.part.used+"/"+e.part.total,style:{backgroundColor:"#767676"}},null,8,["value","text"])])])):k(o)?E("",!0):(i(),r("div",Au,[t("div",{class:"value-data buttondiv",onClick:c},"\u624B\u52A8\u6302\u8F7D")])),k(p)?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:f},"\u5206\u533A\u5E76\u683C\u5F0F\u5316")):k(n)?(i(),r("button",{key:3,class:"cbi-button cbi-button-apply",onClick:s},"\u683C\u5F0F\u5316\u5206\u533A")):E("",!0)])]),e.part.mountPoint?(i(),r("li",Su,[t("span",zu,[t("a",{href:k(d),target:"_blank"},h(e.part.mountPoint),9,Pu)]),t("div",Tu,[t("div",Iu,[t("div",null,"\u78C1\u76D8\u8BFB\u5199\u72B6\u6001\uFF1A"+h(e.part.isReadOnly?"\u53EA\u8BFB":"\u8BFB\u5199"),1),!e.part.isSystemRoot&&e.part.isReadOnly?(i(),r("div",Lu,[D(gt),Mu])):E("",!0)]),t("div",Ou,[t("div",null,"\u78C1\u76D8\u683C\u5F0F\uFF1A"+h((b=e.part.filesystem)==null?void 0:b.toUpperCase()),1),e.part.filesystem=="ntfs"?(i(),r("div",Nu,[D(gt),qu])):E("",!0)])])])):E("",!0)])}}});var Gu=Y(Vu,[["__scopeId","data-v-31be4af0"]]);const ua=e=>(O("data-v-5fa713aa"),e=e(),N(),e),ju={key:0,class:"action"},Ru={class:"title"},Uu=ua(()=>t("div",{class:"app-container_info"},[t("span",null,"\u5206\u533A / \u6302\u8F7D\u70B9"),t("span",null,"\u5BB9\u91CF")],-1)),Wu={class:"app-container_body"},Hu=ua(()=>t("div",{class:"auto"},null,-1)),Zu=P({props:{disk:{type:Object,required:!0},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){const a=e,o=y(0),n=()=>{a.Close&&a.Close()},s=c=>{c.preventDefault(),a.Cancel&&a.Cancel(),n()};return(c,f)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[o.value==0?(i(),r("div",ju,[t("h2",Ru,"\u5206\u533A\u4FE1\u606F - "+h((e.disk.name||"?")+(e.disk.isSystemRoot?"\uFF08\u7CFB\u7EDF\u76D8\uFF09":"")),1),t("ul",null,[t("li",null,[Uu,t("div",Wu,[(i(!0),r(L,null,j(e.disk.childrens,(p,d)=>(i(),M(Gu,{key:d,part:p,disk:e.disk},null,8,["part","disk"]))),128))])])]),t("div",{class:"action-footer"},[Hu,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button"},"\u8FD4\u56DE")])])):E("",!0)]),_:1})]),_:1},8,["Close"]))}});var Ju=Y(Zu,[["__scopeId","data-v-5fa713aa"]]),Xu=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Ju,at(J({},e),{Close:()=>{n()}}));o.component("progress-item",ta),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const fe=e=>(O("data-v-eb0dbbd8"),e=e(),N(),e),Ku={key:0,class:"disk-item error"},Qu=["title"],tl={class:"disk-item_value"},el={class:"value-data"},al={class:"error"},ol={key:1,class:"disk-item"},nl=["title"],il={key:0,class:"disk_value"},rl=fe(()=>t("div",{class:"value-data"},[t("a",{href:"/cgi-bin/luci/admin/nas/smart"},[t("span",{class:"error"}," S.M.A.R.T\u5F02\u5E38")])],-1)),sl=[rl],dl={key:1,class:"disk_value"},ul={class:"disk-item_value"},ll={class:"value-data"},cl=fe(()=>t("div",{class:"disk-item-tooltip"},[t("span",null,"\u4EC5\u7EDF\u8BA1\u5DF2\u6302\u8F7D\u5206\u533A")],-1)),pl={class:"disk_icon"},fl={key:0,class:"tooltip-trigger"},ml={class:"disk_tip"},bl=fe(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"disk_dir_tip"},"\u60A8\u7684\u7CFB\u7EDF\u7A7A\u95F4\u5DF2\u4E0D\u8DB3\uFF0C\u68C0\u6D4B\u5230\u60A8\u7684Docker\u6839\u76EE\u5F55\u4F4D\u4E8E\u7CFB\u7EDF\u6839\u76EE\u5F55\u4E0A\uFF0C\u53EF\u80FD\u4F1A\u5F71\u54CD\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u5EFA\u8BAE\u4F7F\u7528Docker\u8FC1\u79FB\u5411\u5BFC\u5C06Docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\u4E0A\u3002")])],-1)),vl={key:1,class:"tooltip-trigger"},gl={class:"disk_tip"},_l=fe(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"disk_dir_tip"},"\u5206\u533A\u5B58\u5728\u5F02\u5E38\uFF0C\u70B9\u51FB\u5206\u533A\u5217\u8868\u67E5\u770B\u9519\u8BEF")])],-1)),hl={key:2,class:"disk-item load"},xl=["title"],kl={class:"disk_value"},wl={class:"disk-item_value"},yl={class:"value-data"},Fl={key:3,class:"disk-item load"},El=["title"],Cl={class:"disk_value"},$l={key:0,class:"disk-item_value"},Dl={class:"value-data"},Bl={key:1,class:"disk-item_value"},Yl={class:"value-data"},Al={class:"disk_icon"},Sl=P({props:{disk:{type:Object,required:!0},smartWarning:{type:Boolean}},setup(e){const a=e,o=R(()=>a.disk.errorInfo?"error":a.disk.childrens==null||a.disk.childrens.length==0||a.disk.childrens.length==1&&a.disk.childrens[0].filesystem=="No FileSystem"?"load":a.disk.childrens.filter(p=>p.mountPoint).length==0?"unmounted":"success"),n=R(()=>{const p=a.disk;let d=p.name;return p.size&&(d+=`\u3010${p.size}\u3011`),p.venderModel&&(d+=`(${p.venderModel})`),d}),s=()=>{Be({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},c=()=>{Xu({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},f=()=>{const p=a.disk,d=p.childrens||[];sa({action:"nas",disk:p,mount:d[0],Cancel:()=>{},Next:()=>{location.reload()}})};return(p,d)=>{var u,m,b,g,v;const l=X("progress-item");return k(o)=="error"?(i(),r("li",Ku,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,Qu),t("div",tl,[t("div",el,[t("span",al,h(e.disk.errorInfo),1)])])])):k(o)=="success"?(i(),r("li",ol,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,nl),e.disk.smartWarning&&e.smartWarning?(i(),r("div",il,sl)):(i(),r("div",dl,[t("div",ul,[t("div",ll,[D(l,{value:e.disk.usage||0,text:`${e.disk.used}/${e.disk.total}`,style:{backgroundColor:"#767676"}},null,8,["value","text"])]),cl]),t("div",pl,[e.disk.isDockerRoot&&e.disk.isSystemRoot&&e.disk.usage&&e.disk.usage>=90?(i(),r("span",fl,[t("span",ml,[D(gt)]),bl])):E("",!0),!e.disk.isSystemRoot&&(((u=e.disk.childrens)==null?void 0:u.filter(_=>_.isReadOnly||_.filesystem=="ntfs").length)||0)>0?(i(),r("span",vl,[t("span",gl,[D(gt)]),_l])):E("",!0),!e.disk.isSystemRoot&&(((m=e.disk.childrens)==null?void 0:m.filter(_=>_.isReadOnly||_.filesystem=="ntfs").length)||0)>0?(i(),r("span",{key:2,class:"disk_infoicon",onClick:d[0]||(d[0]=_=>s())},[D(v0)])):E("",!0),t("span",{class:"disk_infoicon",onClick:d[1]||(d[1]=_=>c())},[D(Ue)])])]))])):k(o)=="load"?(i(),r("li",hl,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,xl),t("div",kl,[t("div",wl,[t("div",yl,[t("button",{onClick:d[2]||(d[2]=_=>s())},"\u683C\u5F0F\u5316\u5E76\u6302\u8F7D")])])])])):k(o)=="unmounted"?(i(),r("li",Fl,[t("div",{class:"disk-item_name",title:k(n)},[t("span",null,h(k(n)),1)],8,El),t("div",Cl,[((b=e.disk.childrens)==null?void 0:b.length)==1?(i(),r("div",$l,[t("div",Dl,[t("button",{onClick:d[3]||(d[3]=_=>f())},"\u624B\u52A8\u6302\u8F7D")])])):E("",!0),(((g=e.disk.childrens)==null?void 0:g.length)||0)>1?(i(),r("div",Bl,[t("div",Yl,[t("button",{onClick:d[4]||(d[4]=_=>c())},"\u624B\u52A8\u6302\u8F7D")])])):E("",!0),t("div",Al,[(((v=e.disk.childrens)==null?void 0:v.length)||0)>1?(i(),r("span",{key:0,class:"disk_infoicon",onClick:d[5]||(d[5]=_=>c())},[D(Ue)])):E("",!0)])])])):E("",!0)}}});var we=Y(Sl,[["__scopeId","data-v-eb0dbbd8"]]);const ee=e=>(O("data-v-40555016"),e=e(),N(),e),zl={class:"app-container"},Pl={class:"app-container_title"},Tl={class:"disk_info"},Il=U(" \u78C1\u76D8\u4FE1\u606F "),Ll={class:"app-container_tool"},Ml={class:"more_icon",title:"\u67E5\u770B\u78C1\u76D8\u7BA1\u7406\u4FE1\u606F"},Ol={class:"DeviceBlock"},Nl=ee(()=>t("ul",null,[t("li",null,[t("a",{href:"/cgi-bin/luci/admin/nas/raid"},"RAID\u7BA1\u7406")]),t("li",null,[t("a",{href:"/cgi-bin/luci/admin/nas/smart"},"S.M.A.R.T.")]),t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/diskman"},"\u78C1\u76D8\u7BA1\u7406")]),t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/mounts"},"\u6302\u8F7D\u70B9")])],-1)),ql={key:0},Vl={class:"disk_loading_icon"},Gl=ee(()=>t("span",{class:"disk_loading_info"},"\u6B63\u5728\u83B7\u53D6\u78C1\u76D8\u4FE1\u606F...",-1)),jl={key:1},Rl=ee(()=>t("div",{class:"app-container_info"},[t("span",null,"\u7CFB\u7EDF\u6839\u76EE\u5F55")],-1)),Ul={class:"app-container_body"},Wl={key:2},Hl=ee(()=>t("div",{class:"app-container_info"},[t("span",null,"\u5DF2\u6302\u8F7D\u78C1\u76D8")],-1)),Zl={class:"app-container_body"},Jl={key:3},Xl=ee(()=>t("div",{class:"app-container_info"},[t("span",null,"RAID\u8BBE\u5907")],-1)),Kl={class:"app-container_body"},Ql=P({setup(e){const a=y(!1),o=it({disks:null,raidList:null}),n=()=>{S.Nas.Disk.Status.GET().then(p=>{var d;if((d=p==null?void 0:p.data)!=null&&d.result){const l=p.data.result;o.disks=l.disks||[]}})};(()=>T(this,null,function*(){try{const p=yield S.Raid.List.GET();if(p!=null&&p.data){const{success:d,error:l,result:u}=p.data;if(u&&(o.raidList=u.disks||[]),l)throw l}}catch(p){console.log(p)}}))(),n();const c=()=>{a.value=!a.value},f=()=>{ct.installAndGo("luci-app-linkease","\u6613\u6709\u4E91","/cgi-bin/luci/admin/services/linkease/file/","app-meta-linkease")};return(p,d)=>{var m,b;const l=X("GlHelp"),u=X("icon-loading");return i(),r("div",zl,[t("ul",null,[t("li",null,[t("div",Pl,[t("span",Tl,[Il,D(l,{type:"disk"})]),t("div",Ll,[t("div",{class:"app-container_configure",onClick:f}," \u6587\u4EF6\u7BA1\u7406 "),t("span",Ml,[D($t,{onClick:c})])]),z(t("div",Ol,[t("div",{class:"menu_background",onClick:c}),Nl],512),[[wt,a.value]])])]),!k(o).disks&&!k(o).raidList?(i(),r("li",ql,[t("div",Vl,[D(u,{size:38,color:"currentColor"}),Gl])])):E("",!0),k(o).disks?(i(),r("li",jl,[Rl,t("div",Ul,[(i(!0),r(L,null,j((m=k(o).disks)==null?void 0:m.filter(g=>g.isSystemRoot),(g,v)=>(i(),M(we,{key:v,disk:g},null,8,["disk"]))),128))])])):E("",!0),k(o).disks?(i(),r("li",Wl,[Hl,t("div",Zl,[(i(!0),r(L,null,j((b=k(o).disks)==null?void 0:b.filter(g=>!g.isSystemRoot),(g,v)=>(i(),M(we,{key:v,disk:g,smartWarning:!0},null,8,["disk"]))),128))])])):E("",!0),k(o).raidList&&k(o).raidList.length>0?(i(),r("li",Jl,[Xl,t("div",Kl,[(i(!0),r(L,null,j(k(o).raidList,(g,v)=>(i(),M(we,{key:v,disk:g},null,8,["disk"]))),128))])])):E("",!0)])])}}});var t1=Y(Ql,[["__scopeId","data-v-40555016"]]);const la=e=>(O("data-v-13ca629c"),e=e(),N(),e),e1={class:"app-container_samba"},a1={key:0,class:"sambas-item"},o1=la(()=>t("div",{class:"sambas-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),n1={class:"sambas-item_value"},i1=la(()=>t("li",{class:"sambas-item"},[t("div",{class:"sambas-item_name tit"},[t("span",null,"\u5730\u5740")]),t("div",{class:"sambas-item_value tit"},[t("span",null,"\u76EE\u5F55")])],-1)),r1={class:"samba-item"},s1={class:"samba-item_name"},d1=["title"],u1=["href"],l1=P({props:{sambas:{type:Array}},setup(e){const a=window.location.hostname;return(o,n)=>{var s;return i(),r("ul",e1,[e.sambas?(i(),r("li",a1,[o1,t("div",n1,[t("span",null,h((s=e.sambas)!=null&&s.length?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])])):E("",!0),i1,(i(!0),r(L,null,j(e.sambas,c=>(i(),r("li",r1,[t("div",s1,[t("span",null,"smb://"+h(k(a))+"/"+h(c.shareName),1)]),t("div",{class:"samba-item_value",title:c.path},[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+c.path},h(c.path),9,u1)],8,d1)]))),256))])}}});var c1=Y(l1,[["__scopeId","data-v-13ca629c"]]);const me=e=>(O("data-v-b4608492"),e=e(),N(),e),p1={class:"webdav-item"},f1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),m1={class:"webdav-item_value"},b1={key:0,class:"webdav-item"},v1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u6302\u8F7D\u8DEF\u5F84:")],-1)),g1={class:"webdav-item_value"},_1=["href"],h1={key:1,class:"webdav-item"},x1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u670D\u52A1\u8DEF\u5F84:")],-1)),k1={class:"webdav-item_value"},w1=["href"],y1={key:2,class:"webdav-item"},F1=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u8D26\u53F7:")],-1)),E1={class:"webdav-item_value"},C1=P({props:{webdav:{type:Object}},setup(e){const a=e,o=R(()=>{var n;return`http://${location.hostname}:${(n=a.webdav)==null?void 0:n.port}`});return(n,s)=>{var c,f,p,d,l,u,m;return i(),r(L,null,[t("li",p1,[f1,t("div",m1,[t("span",null,h((c=e.webdav)!=null&&c.path?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])]),(f=e.webdav)!=null&&f.path?(i(),r("li",b1,[v1,t("div",g1,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=e.webdav)==null?void 0:p.path)},h((d=e.webdav)==null?void 0:d.path),9,_1)])])):E("",!0),(l=e.webdav)!=null&&l.port?(i(),r("li",h1,[x1,t("div",k1,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,w1)])])):E("",!0),(u=e.webdav)!=null&&u.username?(i(),r("li",y1,[F1,t("div",E1,[t("span",null,h((m=e.webdav)==null?void 0:m.username),1)])])):E("",!0)],64)}}});var $1=Y(C1,[["__scopeId","data-v-b4608492"]]);const Ye=e=>(O("data-v-4a3b6e0a"),e=e(),N(),e),D1={class:"disk-item"},B1=Ye(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563338465",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2216",width:"128",height:"128"},[t("path",{d:"M998.4 711.68l-119.467-512c-6.826-42.667-42.666-75.093-87.04-76.8H232.107c-44.374 1.707-80.214 35.84-87.04 78.507L25.6 711.68c-5.12 13.653-6.827 29.013-6.827 42.667 0 76.8 63.147 139.946 141.654 139.946H865.28c78.507 0 141.653-63.146 141.653-139.946 0-13.654-3.413-29.014-8.533-42.667zM394.24 366.933c1.707-51.2 56.32-92.16 124.587-92.16S640 315.733 640 365.227c44.373-1.707 81.92 23.893 83.627 58.026s-34.134 63.147-78.507 64.854h-6.827l-245.76 1.706c-44.373 0-80.213-27.306-80.213-59.733 0-35.84 37.547-63.147 81.92-63.147z m471.04 459.094H160.427c-39.254 0-69.974-30.72-69.974-69.974s32.427-69.973 69.974-69.973H865.28c39.253 0 69.973 30.72 69.973 69.973 1.707 37.547-30.72 69.974-69.973 69.974z m-35.84-92.16c-11.947 0-22.187 8.533-23.893 20.48 0 11.946 8.533 22.186 20.48 23.893h3.413c11.947 0 22.187-10.24 22.187-22.187 0-13.653-8.534-22.186-22.187-22.186z m-46.08 22.186c0-25.6 20.48-46.08 46.08-46.08s46.08 20.48 46.08 46.08-20.48 46.08-46.08 46.08-46.08-20.48-46.08-46.08z","p-id":"2217"})])],-1)),Y1={class:"disk-item_f"},A1={class:"disk-item_venderModel"},S1={class:"disk-item_used"},z1=Ye(()=>t("div",{class:"auto"},null,-1)),P1={class:"disk-item-r"},T1={class:"disk-children"},I1=["onClick"],L1=Ye(()=>t("div",{class:"disk-item_icon"},[t("svg",{t:"1642563581459",class:"icon",viewBox:"0 0 1228 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"7132",width:"128",height:"128"},[t("path",{d:"M525.2096 145.3568c1.9968-45.568-35.6864-99.1232-57.4976-99.1232H57.4976C15.872 79.9232 17.8176 145.408 17.8176 145.408h507.392z",fill:"#ECC049","p-id":"7133"}),t("path",{d:"M21.8112 143.36L19.8144 825.1392c0 75.3152 75.3152 152.576 150.6304 152.576h887.9104c75.264 0 150.6304-75.264 150.6304-152.576V297.984c0-75.264-75.3152-152.576-150.6304-152.576h-434.0224L21.8112 143.36z",fill:"#FFD658","p-id":"7134"})])],-1)),M1={key:0},O1={key:1},N1=P({props:{disk:{type:Object,required:!0},currDisk:{type:Object},currMountPoint:{type:Object},onDisk:{type:Function,required:!0}},setup(e){var s,c;const a=e,o=y(!1);a.currDisk!=null&&((s=a.currDisk)==null?void 0:s.venderModel)==((c=a.disk)==null?void 0:c.venderModel)&&(o.value=!0);const n=f=>{o.value=!o.value,a.onDisk(f,null)};return(f,p)=>{var d;return i(),r("ul",D1,[t("li",{class:ot(["disk-info",{on:e.disk.venderModel==((d=e.currDisk)==null?void 0:d.venderModel),nopoint:e.disk.childrens==null||e.disk.childrens.length==0}]),onClick:p[0]||(p[0]=l=>n(e.disk))},[B1,t("div",Y1,[t("div",A1,h(e.disk.venderModel),1),t("div",S1,h(e.disk.used)+"/"+h(e.disk.size),1)]),z1,t("div",P1,h(e.disk.path),1)],2),z(t("div",T1,[(i(!0),r(L,null,j(e.disk.childrens,l=>{var u,m;return i(),r("li",{class:ot(["disk-children_item",{on:l.uuid==((u=e.currMountPoint)==null?void 0:u.uuid)&&l.path==((m=e.currMountPoint)==null?void 0:m.path)}]),onClick:b=>e.onDisk(e.disk,l)},[L1,l.mountPoint?(i(),r("span",M1," \u3010"+h(l.filesystem)+"\u3011 "+h(l.mountPoint)+" \uFF08"+h(l.used)+"/"+h(l.total)+"\uFF09 ["+h(l.uuid)+"] ",1)):(i(),r("span",O1," \u3010"+h(l.filesystem)+"\u3011 "+h(l.mountPoint||l.path||"\u672A\u6302\u8F7D\u78C1\u76D8")+" ["+h(l.uuid)+"] ",1))],10,I1)}),256))],512),[[wt,o.value]])])}}});var We=Y(N1,[["__scopeId","data-v-4a3b6e0a"]]);const Ae=e=>(O("data-v-12d0f96b"),e=e(),N(),e),q1={class:"action list"},V1=Ae(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u8BF7\u9009\u62E9\u4E00\u4E2A\u786C\u76D8\u6216\u5206\u533A")],-1)),G1={class:"action-body"},j1={class:"disk-list"},R1=Ae(()=>t("div",{class:"action-msg"},[t("span",null,[U(" \u60F3\u8981\u66F4\u7CBE\u786E\u7684\u914D\u7F6E\uFF1F\u8BF7\u524D\u5F80 "),t("a",{href:"/cgi-bin/luci/admin/system/diskman"},"\u9AD8\u7EA7\u8BBE\u7F6E")])],-1)),U1=Ae(()=>t("div",{class:"auto"},null,-1)),W1=P({props:{Cancel:{type:Function},Next:{type:Function},Close:{type:Function}},setup(e){const a=e,o=y(!0),n=it({disks:[],raids:[]});(()=>T(this,null,function*(){const b=yield Promise.all([S.Nas.Disk.Status.GET(),S.Raid.List.GET()]);try{if(b[0]){const g=b[0];g!=null&&g.data.result&&(n.disks=(g==null?void 0:g.data.result.disks)||[])}if(b[1]){const g=b[1];g.data.result&&(n.raids=g.data.result.disks||[])}}catch(g){F.Warning(g)}}))();const c=y(),f=y(),p=(b,g)=>{c.value=b,f.value=g},d=()=>{a.Close&&a.Close()},l=()=>{a.Cancel&&a.Cancel(),d()},u=b=>{a.Next&&a.Next(b),d()},m=()=>{if(c.value==null){F.Warning("\u8BF7\u9009\u62E9\u76EE\u6807\u786C\u76D8");return}if(c.value.childrens!=null&&c.value.childrens.length>0&&f.value==null){F.Warning("\u8BF7\u9009\u62E9\u786C\u76D8\u5206\u533A");return}if(f.value!=null&&(f.value.mountPoint==null||f.value.mountPoint=="")){F.Warning("\u8BE5\u5206\u533A\u5C1A\u672A\u6302\u8F7D\uFF0C\u8BF7\u5148\u53BB\u6302\u8F7D");return}o.value=!1,Be({action:"nas",disk:c.value,mount:f.value,Cancel:()=>{o.value=!0},Next:b=>{u(b)}})};return(b,g)=>o.value?(i(),M(et,{key:0,type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("div",q1,[V1,t("div",G1,[t("div",j1,[(i(!0),r(L,null,j(k(n).disks,v=>(i(),M(We,{disk:v,onDisk:p,currDisk:c.value,currMountPoint:f.value},null,8,["disk","currDisk","currMountPoint"]))),256)),(i(!0),r(L,null,j(k(n).raids,v=>(i(),M(We,{disk:v,onDisk:p,currDisk:c.value,currMountPoint:f.value},null,8,["disk","currDisk","currMountPoint"]))),256))])]),R1,t("div",{class:"action-footer"},[U1,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:l,type:"button"},"\u8FD4\u56DE"),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:m,type:"button"},"\u4E0B\u4E00\u6B65")])])]),_:1})]),_:1})):E("",!0)}});var H1=Y(W1,[["__scopeId","data-v-12d0f96b"]]),Z1=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(H1,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const be=e=>(O("data-v-67a63e8f"),e=e(),N(),e),J1={class:"action"},X1={class:"action-body"},K1=be(()=>t("div",{class:"icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})])],-1)),Q1=be(()=>t("h2",{class:"title"},"\u670D\u52A1\u5DF2\u542F\u52A8",-1)),tc={class:"info"},ec=be(()=>t("span",null,"\u524D\u5F80",-1)),ac=["href"],oc=be(()=>t("span",null,"\u914D\u7F6E",-1)),nc=P({props:{Close:Function},setup(e){const a=e,o=y(""),n=R(()=>`http://${location.hostname}:${o.value}`);(()=>{S.Nas.Linkease.Enable.POST().then(f=>{var p,d;(p=f==null?void 0:f.data)!=null&&p.result&&(o.value=((d=f.data.result)==null?void 0:d.port)||"")})})();const c=()=>{a.Close&&a.Close(),location.reload()};return(f,p)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("div",J1,[t("div",X1,[K1,Q1,t("div",tc,[ec,t("a",{href:k(n),target:"_blank",rel:"noopener noreferrer"},h(k(n)),9,ac),oc]),t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:c},"\u5173\u95ED")])])])]),_:1})]),_:1}))}});var ic=Y(nc,[["__scopeId","data-v-67a63e8f"]]),rc=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(ic,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const ae=e=>(O("data-v-30ef6ccb"),e=e(),N(),e),sc=["onSubmit"],dc=ae(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Webdav\u5171\u4EAB\u914D\u7F6E")],-1)),uc={class:"action-body"},lc={class:"label-item"},cc=ae(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),pc={class:"label-item_value"},fc=["value"],mc={class:"label-item"},bc=ae(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),vc={class:"label-item_value"},gc={class:"label-item"},_c=ae(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),hc={class:"label-item_value"},xc={class:"action-footer"},kc=ae(()=>t("div",{class:"auto"},null,-1)),wc=["disabled"],yc=["disabled"],Fc=P({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=d=>{d.preventDefault(),a.Close&&a.Close()},n=y(!1),s=y({username:"root",password:"",rootPath:a.rootPath});(()=>T(this,null,function*(){const d=F.Loading("\u52A0\u8F7D\u4E2D...");n.value=!0;try{const l=yield S.Nas.Webdav.Status.GET();if(l!=null&&l.data){const{result:u,error:m}=l.data;if(m){F.Warning(m);return}u&&(u.username&&(s.value.username=u.username),u.password&&(s.value.password=u.password))}}catch(l){F.Error(l)}n.value=!1,d.Close()}))();const f=()=>{const d=s.value;if(d.rootPath==""){F.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(d.username==""){F.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(d.password==""){F.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}p(d)},p=d=>T(this,null,function*(){n.value=!0;const l=F.Loading("\u521B\u5EFA\u4E2D...");try{const u=yield S.Nas.Webdav.Create.POST(d);if(u!=null&&u.data){const{error:m,result:b}=u.data;m&&F.Warning(m),b&&(F.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(u){F.Error(u)}l.Close(),n.value=!1});return(d,l)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("form",{class:"action",onSubmit:nt(f,["prevent"])},[dc,t("div",uc,[t("div",lc,[cc,t("div",pc,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,fc)])]),t("div",mc,[bc,t("div",vc,[z(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":l[0]||(l[0]=u=>s.value.username=u)},null,512),[[W,s.value.username,void 0,{trim:!0}]])])]),t("div",gc,[_c,t("div",hc,[z(t("input",{type:"password","onUpdate:modelValue":l[1]||(l[1]=u=>s.value.password=u)},null,512),[[W,s.value.password,void 0,{trim:!0}]])])])]),t("div",xc,[kc,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,wc),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,yc)])],40,sc)]),_:1})]),_:1}))}});var Ec=Y(Fc,[["__scopeId","data-v-30ef6ccb"]]),Cc=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Ec,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Yt=e=>(O("data-v-3ef9e48f"),e=e(),N(),e),$c=["onSubmit"],Dc=Yt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Samba\u5171\u4EAB\u914D\u7F6E")],-1)),Bc={class:"action-body"},Yc={class:"label-item"},Ac=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),Sc={class:"label-item_value"},zc=["value"],Pc={class:"label-item"},Tc=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5171\u4EAB\u540D\uFF08\u5EFA\u8BAE\u4F7F\u7528\u82F1\u6587\u5B57\u6BCD\uFF09")],-1)),Ic={class:"label-item_value"},Lc={class:"label-item"},Mc=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),Oc={class:"label-item_value"},Nc={class:"label-item"},qc=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),Vc={class:"label-item_value"},Gc={class:"samba-item"},jc={class:"samba-item_allow"},Rc=Yt(()=>t("label",{for:"allow",class:"samba-allow"},"\u5141\u8BB8\u65E7\u534F\u8BAE\u4E0E\u8EAB\u4EFD\u9A8C\u8BC1(\u4E0D\u5B89\u5168)",-1)),Uc={class:"samba-item_tips"},Wc={class:"tooltip-trigger"},Hc={class:"samba_tip"},Zc=Yt(()=>t("span",{class:"samba_dir_tip"},"\u517C\u5BB9\u4E00\u4E9B\u7535\u89C6\u6216\u8005\u7535\u89C6\u76D2\u5B50",-1)),Jc={class:"action-footer"},Xc=Yt(()=>t("div",{class:"auto"},null,-1)),Kc=["disabled"],Qc=["disabled"],t2=P({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=p=>{p.preventDefault(),a.Close&&a.Close()},n=y(!1),s=y({shareName:"",username:"",password:"",rootPath:a.rootPath,allowLegacy:!1}),c=()=>{const p=s.value;if(p.rootPath==""){F.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.shareName==""){F.Warning("\u5171\u4EAB\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.username==""){F.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.password==""){F.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}const d=yt.checkSmabaUserName(p.username);if(d!==!0){F.Warning(`${d}`);return}f(p)},f=p=>T(this,null,function*(){n.value=!0;const d=F.Loading("\u521B\u5EFA\u4E2D...");try{const l=yield S.Nas.Samba.Create.POST(p);if(l!=null&&l.data){const{error:u,result:m}=l.data;u&&F.Warning(u),m&&(F.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(l){F.Error(l)}d.Close(),n.value=!1});return(p,d)=>(i(),M(et,{type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[t("form",{class:"action",onSubmit:nt(c,["prevent"])},[Dc,t("div",Bc,[t("div",Yc,[Ac,t("div",Sc,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,zc)])]),t("div",Pc,[Tc,t("div",Ic,[z(t("input",{type:"text","onUpdate:modelValue":d[0]||(d[0]=l=>s.value.shareName=l),required:"",placeholder:"\u5171\u4EAB\u540D\u79F0"},null,512),[[W,s.value.shareName,void 0,{trim:!0}]])])]),t("div",Lc,[Mc,t("div",Oc,[z(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":d[1]||(d[1]=l=>s.value.username=l)},null,512),[[W,s.value.username,void 0,{trim:!0}]])])]),t("div",Nc,[qc,t("div",Vc,[z(t("input",{type:"password","onUpdate:modelValue":d[2]||(d[2]=l=>s.value.password=l)},null,512),[[W,s.value.password,void 0,{trim:!0}]])])]),t("div",Gc,[t("div",jc,[z(t("input",{type:"checkbox",id:"allow","onUpdate:modelValue":d[3]||(d[3]=l=>s.value.allowLegacy=l)},null,512),[[Tt,s.value.allowLegacy]]),Rc]),t("div",Uc,[t("span",Wc,[t("span",Hc,[D(gt)]),Zc])])])]),t("div",Jc,[Xc,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,Kc),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,Qc)])],40,$c)]),_:1})]),_:1}))}});var e2=Y(t2,[["__scopeId","data-v-3ef9e48f"]]),a2=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(e2,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const qt=e=>!Array.isArray(window.quickstart_features)||window.quickstart_features.indexOf(e)!=-1,Ut=e=>(O("data-v-650e3bd4"),e=e(),N(),e),o2={key:0,class:"action"},n2=Ut(()=>t("h2",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528 NAS \u914D\u7F6E\u5411\u5BFC",-1)),i2=Ut(()=>t("h3",{class:"desc"},"\u8BF7\u9009\u62E9\u9700\u8981\u6DFB\u52A0\u7684NAS\u670D\u52A1",-1)),r2=Ut(()=>t("option",{value:"linkease"},"\u8DE8\u8BBE\u5907\u5171\u4EAB\uFF08\u6613\u6709\u4E91\uFF09",-1)),s2=Ut(()=>t("option",{value:"samba"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Samba\uFF09",-1)),d2=Ut(()=>t("option",{value:"webdav"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08WebDAV\uFF09",-1)),u2=[r2,s2,d2],l2={key:0,class:"tips"},c2=U("\u5982\u9700\u5BF9 Samba \u6216 WebDAV \u8FDB\u884C\u66F4\u7EC6\u81F4\u7684\u6743\u9650\u63A7\u5236\uFF0C\u8BF7\u4F7F\u7528\u201C"),p2=Ut(()=>t("a",{href:"/cgi-bin/luci/admin/nas/unishare"},"\u7EDF\u4E00\u6587\u4EF6\u5171\u4EAB",-1)),f2=U("\u201D"),m2=[c2,p2,f2],b2={class:"btns"},v2=["disabled"],g2=P({props:{setup:Number,Close:{type:Function,required:!0}},setup(e){const a=e,o=y(!0),n=y("linkease"),s=y(!1),c=y(a.setup||0),f=()=>{a.Close&&a.Close()},p=()=>T(this,null,function*(){switch(n.value){case"webdav":yield d();break;case"samba":yield u();break;case"linkease":yield l();break}}),d=()=>T(this,null,function*(){s.value=!0,(yield ct.checkAndInstallApp("app-meta-gowebdav","GoWebdav"))&&m(),s.value=!1}),l=()=>T(this,null,function*(){s.value=!0,(yield ct.checkAndInstallApp("linkease","\u6613\u6709\u4E91","app-meta-linkease"))&&b(),s.value=!1}),u=()=>T(this,null,function*(){s.value=!0;const _=F.Loading("\u914D\u7F6E\u4E2D...");m(),_.Close(),s.value=!1}),m=()=>{s.value=!1,o.value=!1,Z1({Cancel:()=>{o.value=!0},Next:_=>{switch(n.value){case"webdav":g(_);break;case"samba":v(_);break}}})},b=()=>{rc({}),f()},g=_=>{Cc({rootPath:_}),f()},v=_=>{a2({rootPath:_}),f()};return(_,w)=>o.value?(i(),M(et,{key:0,Close:e.Close,type:1},{default:V(()=>[D(kt,{name:"rotate",mode:"out-in"},{default:V(()=>[c.value==0?(i(),r("div",o2,[n2,i2,t("form",null,[t("label",null,[z(t("select",{"onUpdate:modelValue":w[0]||(w[0]=x=>n.value=x)},u2,512),[[Q,n.value]])])]),k(qt)("unishare")?(i(),r("div",l2,m2)):E("",!0),t("div",b2,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:p,type:"button",disabled:s.value},"\u4E0B\u4E00\u6B65",8,v2),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f,type:"button"},"\u53D6\u6D88")])])):E("",!0)]),_:1})]),_:1},8,["Close"])):E("",!0)}});var _2=Y(g2,[["__scopeId","data-v-650e3bd4"]]),ca=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(_2,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Se=e=>(O("data-v-edf68726"),e=e(),N(),e),h2={class:"app-container_linkease"},x2={class:"linkease-item"},k2=Se(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),w2={class:"linkease-item_value"},y2={key:0,class:"configure"},F2={key:0,class:"linkease-item"},E2=Se(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u670D\u52A1\u5730\u5740:")],-1)),C2={class:"linkease-item_value"},$2=["href"],D2=Se(()=>t("div",null,[t("a",{href:" https://app.linkease.com/",target:"_blank"},"\u4E0B\u8F7D\u6613\u6709\u4E91\u5BA2\u6237\u7AEF\uFF0C\u968F\u65F6\u968F\u5730\u76F8\u518C\u5907\u4EFD\u3001\u8FDC\u7A0B\u8BBF\u95EE")],-1)),B2=P({props:{linkease:{type:Object}},setup(e){const a=e,o=R(()=>{var s;return`http://${location.hostname}:${(s=a.linkease)==null?void 0:s.port}`}),n=()=>{ca({setup:0})};return(s,c)=>{var f,p,d;return i(),r("ul",h2,[t("li",x2,[k2,t("div",w2,[(f=e.linkease)!=null&&f.enabel?(i(),r("span",y2,"\u5DF2\u914D\u7F6E")):(i(),r("span",{key:1,class:"configure enabel",onClick:c[0]||(c[0]=l=>n())},"\u672A\u914D\u7F6E"))])]),(p=e.linkease)!=null&&p.enabel?(i(),r(L,{key:0},[(d=e.linkease)!=null&&d.port?(i(),r("li",F2,[E2,t("div",C2,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,$2)])])):E("",!0)],64)):E("",!0),D2])}}});var Y2=Y(B2,[["__scopeId","data-v-edf68726"]]);const pa=e=>(O("data-v-8376a10e"),e=e(),N(),e),A2={class:"app-container"},S2={class:"app-container_title"},z2=pa(()=>t("span",null,"\u5B58\u50A8\u670D\u52A1",-1)),P2={class:"app-container_tool"},T2={class:"more_icon",title:"\u67E5\u770B\u5B58\u50A8\u670D\u52A1\u4FE1\u606F"},I2={class:"DeviceBlock"},L2=pa(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/services/samba4"},"SAMBA\u9AD8\u7EA7\u914D\u7F6E")],-1)),M2={class:"app-container_body"},O2={class:"app-container_nas-menu"},N2=P({setup(e){const a=y(!1),o=y("linkease"),n=y(),s=Qe();(()=>{S.Nas.Service.Status.GET().then(l=>{var u;if((u=l==null?void 0:l.data)!=null&&u.result){const m=l.data.result;n.value=m,m.webdav&&(s.webdav=m.webdav)}})})();const f=()=>{ca({setup:0})},p=()=>{a.value=!a.value},d=()=>{p(),ct.installAndGo("app-meta-gowebdav","GoWebDAV","/cgi-bin/luci/admin/nas/gowebdav")};return(l,u)=>{var b,g,v;const m=X("GlHelp");return i(),r("div",A2,[t("div",S2,[t("span",null,[z2,D(m,{type:"store"})]),t("div",P2,[t("div",{class:"app-container_configure",onClick:f},"\u5FEB\u901F\u914D\u7F6E"),t("span",T2,[D($t,{onClick:p})])]),z(t("div",I2,[t("div",{class:"menu_background",onClick:p}),t("ul",null,[L2,t("li",null,[t("a",{onClick:d},"WebDAV\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[wt,a.value]])]),t("div",M2,[t("ul",O2,[t("button",{onClick:u[0]||(u[0]=_=>o.value="linkease"),class:ot({on:o.value=="linkease"})},"\u6613\u6709\u4E91",2),t("button",{onClick:u[1]||(u[1]=_=>o.value="samba"),class:ot({on:o.value=="samba"})},"SAMBA",2),t("button",{onClick:u[2]||(u[2]=_=>o.value="webdav"),class:ot({on:o.value=="webdav"})},"WEBDAV",2)]),o.value=="samba"?(i(),M(c1,{key:0,sambas:(b=n.value)==null?void 0:b.sambas},null,8,["sambas"])):o.value=="webdav"?(i(),M($1,{key:1,webdav:(g=n.value)==null?void 0:g.webdav},null,8,["webdav"])):o.value=="linkease"?(i(),M(Y2,{key:2,linkease:(v=n.value)==null?void 0:v.linkease},null,8,["linkease"])):E("",!0)])])}}});var q2=Y(N2,[["__scopeId","data-v-8376a10e"]]);const ve=e=>(O("data-v-3fd3a42d"),e=e(),N(),e),V2={class:"app-container_docker"},G2={class:"docker-item"},j2=ve(()=>t("div",{class:"docker-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),R2={key:0,class:"docker-item_value"},U2=ve(()=>t("span",{class:"configure"},"\u672A\u5B89\u88C5",-1)),W2=[U2],H2={key:1,class:"docker-item_value"},Z2={class:"input-switch"},J2=["value","disabled"],X2=ve(()=>t("em",null,null,-1)),K2=[X2],Q2={key:0,class:"docker-item"},t6=ve(()=>t("div",{class:"docker-item_name"},[t("span",null,"Docker\u6839\u76EE\u5F55\uFF1A")],-1)),e6={class:"docker-item_value"},a6={class:"configure enabel"},o6={key:0},n6={class:"tooltip-trigger"},i6={class:"docker_tip"},r6={class:"tooltip-text tooltip-top"},s6={class:"docker_dir_tip"},d6=P({props:{docker:{type:Object}},setup(e){var c;const a=e,o=R(()=>{var f;return((f=a.docker)==null?void 0:f.status)!="not installed"}),n=it({enable:((c=a.docker)==null?void 0:c.status)=="running",disabled:!1}),s=()=>T(this,null,function*(){n.disabled=!0;try{const f=yield S.Guide.DockerSwitch.POST({enable:n.enable});if(f!=null&&f.data){const{success:p,error:d}=f.data;if(d)throw n.enable=!n.enable,d;(p||0)==0}}catch(f){F.Warning(`${f}`)}finally{n.disabled=!1}});return(f,p)=>{var d,l,u,m;return i(),r("ul",V2,[t("li",G2,[j2,(d=a.docker)!=null&&d.status?(i(),r(L,{key:0},[k(o)?(i(),r("div",H2,[t("label",Z2,[z(t("input",{type:"checkbox",hidden:"",value:!k(n).enable,"onUpdate:modelValue":p[0]||(p[0]=b=>k(n).enable=b),disabled:k(n).disabled,onChange:s},null,40,J2),[[Tt,k(n).enable]]),t("span",{class:ot(k(n).enable?"enable":"close")},K2,2)])])):(i(),r("div",R2,W2))],64)):E("",!0)]),((l=e.docker)==null?void 0:l.status)=="running"?(i(),r("li",Q2,[t6,t("div",e6,[t("span",a6,h((u=e.docker)==null?void 0:u.path),1),(m=e.docker)!=null&&m.errorInfo?(i(),r("span",o6,[t("span",n6,[t("span",i6,[D(gt)]),t("div",null,[t("div",r6,[t("span",s6,h(e.docker.errorInfo),1)])])])])):E("",!0)])])):E("",!0)])}}});var u6=Y(d6,[["__scopeId","data-v-3fd3a42d"]]);const l6={},c6={width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},p6=t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])],-1),f6=[p6];function m6(e,a){return i(),r("svg",c6,f6)}var b6=Y(l6,[["render",m6]]);const pt=e=>(O("data-v-308e4b48"),e=e(),N(),e),v6={key:0,class:"action"},g6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),_6=pt(()=>t("p",{class:"desc"},"\u5F53\u7CFB\u7EDF\u6839\u76EE\u5F55\u7A7A\u95F4\u4E0D\u8DB3\u65F6\uFF0C\u53EF\u5C06docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\uFF0C\u4EE5\u4FDD\u8BC1\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C:",-1)),h6={key:1,class:"action"},x6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),k6=pt(()=>t("p",{class:"desc"},"\u5F53\u7CFB\u7EDF\u6839\u76EE\u5F55\u7A7A\u95F4\u4E0D\u8DB3\u65F6\uFF0C\u53EF\u5C06docker\u6839\u76EE\u5F55\u8FC1\u79FB\u5230\u5916\u7F6E\u786C\u76D8\uFF0C\u4EE5\u4FDD\u8BC1\u7CFB\u7EDF\u7684\u6B63\u5E38\u8FD0\u884C:",-1)),w6={class:"roots"},y6=pt(()=>t("span",{class:"roots_tit"},"Docker\u6839\u76EE\u5F55\uFF1A",-1)),F6={class:"root"},E6={class:"move"},C6=pt(()=>t("span",{class:"roots_tit"},"\u8FC1\u79FB\u5230\uFF1A",-1)),$6={key:0},D6=["onSubmit"],B6={class:"select-editable"},Y6=pt(()=>t("option",{selected:"",value:null},"\u8BF7\u9009\u62E9\u8FC1\u79FB\u5730\u5740",-1)),A6=["value"],S6=pt(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),z6={key:1,class:"tips"},P6={class:"tips_content"},T6=pt(()=>t("span",{class:"tip"},"\u68C0\u6D4B\u5230\u60A8\u8FD8\u6CA1\u6709\u6302\u8F7D\u5916\u7F6E\u786C\u76D8\u6216\u5206\u533A\u5C0F\u4E8E8GB\uFF0C\u9700\u8981\u60A8\u63A5\u4E0A\u786C\u76D8\u5E76\u683C\u5F0F\u5316\u6216\u624B\u52A8\u6302\u8F7D\u786C\u76D8\u540E\uFF0C\u518D\u6267\u884CDocker\u8FC1\u79FB\u5411\u5BFC\uFF0C\u5C06Docker\u8FC1\u79FB\u5230\u76EE\u6807\u786C\u76D8\u3002",-1)),I6={key:0,class:"btns"},L6={key:1,class:"btns"},M6={key:2,class:"action docker_success"},O6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),N6={class:"finished"},q6=pt(()=>t("p",{class:"successed"},"\u8FC1\u79FB\u6210\u529F\uFF01",-1)),V6={key:3,class:"action docker_download"},G6=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),j6={class:"finished"},R6=pt(()=>t("p",{class:"successed"},"\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0D\u4E3A\u7A7A",-1)),U6={class:"docker_moves"},W6={class:"moves change"},H6=pt(()=>t("label",{for:"move"},"\u66F4\u6362\u76EE\u5F55\uFF08\u4E0D\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u4EC5\u5C06docker\u76EE\u5F55\u4FEE\u6539\u4E3A\u76EE\u6807\u8DEF\u5F84\uFF09",-1)),Z6={class:"moves"},J6=pt(()=>t("label",{for:"cover"},"\u8986\u76D6\u8FC1\u79FB\uFF08\u8986\u76D6\u76EE\u6807\u8DEF\u5F84\uFF0C\u7EE7\u7EED\u8FC1\u79FB\u4F1A\u6E05\u7A7A\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0B\u7684\u6587\u4EF6\uFF09",-1)),X6={class:"btns"},K6=P({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=y(),n=y(),s=y(0),c=y("null"),f=y(""),p=y(),d=y(!1),l=y("");(()=>{S.Nas.Disk.Status.GET().then(x=>{x!=null&&x.data.result&&(p.value=x==null?void 0:x.data.result)}),S.Guide.DockerStatus.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const A=x.data.result;o.value=A}}),S.Guide.DockerPartitionList.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const A=x.data.result;n.value=A}})})();const m=x=>{let C=c.value;if(C=="useInput"&&(C=f.value),C==null||C=="null"||C=="")return;const A=F.Loading("\u6B63\u5728\u8FC1\u79FB\u4E2D...");S.Guide.DockerTransfer.POST({path:C,force:x,overwriteDir:!!l.value}).then(B=>{var $;if(B!=null&&B.data){if((B.data.success||0)==0){if(($=B.data.result)!=null&&$.emptyPathWarning){d.value=!0,s.value=2;return}s.value=1;return}else if(B.data.error)throw B.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(B=>{F.Error(B)}).finally(()=>A.Close())},b=()=>{d.value=!1,m(!1)},g=x=>{x.preventDefault(),a.Close&&a.Close()},v=x=>{x.preventDefault(),location.reload()},_=x=>{x.preventDefault(),s.value=0},w=x=>{x.preventDefault(),m(!0)};return(x,C)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>{var A,B,$,q,H,G;return[s.value==-1?(i(),r("div",v6,[g6,_6,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:g},"\u53D6\u6D88")])])):s.value==0?(i(),r("div",h6,[x6,k6,t("div",w6,[y6,t("span",F6,h((A=o.value)==null?void 0:A.path),1)]),t("div",E6,[C6,($=(B=n.value)==null?void 0:B.partitionList)!=null&&$.length?(i(),r("div",$6,[t("form",{onSubmit:nt(b,["prevent"])},[t("label",null,[t("div",B6,[z(t("select",{"onUpdate:modelValue":C[0]||(C[0]=Z=>c.value=Z)},[Y6,(i(!0),r(L,null,j((q=n.value)==null?void 0:q.partitionList,(Z,ht)=>(i(),r("option",{value:Z,key:ht},h(Z),9,A6))),128)),S6],512),[[Q,c.value,void 0,{trim:!0}]]),c.value=="useInput"?z((i(),r("input",{key:0,type:"text","onUpdate:modelValue":C[1]||(C[1]=Z=>f.value=Z),required:"",placeholder:"\u8BF7\u8F93\u5165\u8FC1\u79FB\u5730\u5740"},null,512)),[[W,f.value,void 0,{trim:!0}]]):E("",!0)])])],40,D6)])):n.value?(i(),r("div",z6,[t("div",P6,[D(gt),T6])])):E("",!0)]),(G=(H=n.value)==null?void 0:H.partitionList)!=null&&G.length?(i(),r("div",I6,[t("button",{class:"cbi-button cbi-button-apply",onClick:b},"\u786E\u5B9A"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:g},"\u53D6\u6D88")])):(i(),r("div",L6,[t("button",{class:"cbi-button cbi-button-apply",onClick:g},"\u786E\u5B9A")]))])):s.value==1?(i(),r("div",M6,[O6,t("div",N6,[D(De)]),q6,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:v},"\u786E\u5B9A")])])):s.value==2?(i(),r("div",V6,[G6,t("div",j6,[D(b6)]),R6,t("div",U6,[t("div",W6,[z(t("input",{type:"radio",id:"move",name:"moves","onUpdate:modelValue":C[2]||(C[2]=Z=>l.value=Z),value:""},null,512),[[ft,l.value]]),H6]),t("div",Z6,[z(t("input",{type:"radio",id:"cover",name:"moves","onUpdate:modelValue":C[3]||(C[3]=Z=>l.value=Z),value:"true"},null,512),[[ft,l.value]]),J6])]),t("div",X6,[d.value?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:w},"\u786E\u5B9A")):E("",!0),t("button",{class:"cbi-button cbi-button-apply",onClick:_},"\u8FD4\u56DE"),d.value?E("",!0):(i(),r("button",{key:1,class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:v},"\u53D6\u6D88"))])])):E("",!0)]}),_:1},8,["Close"]))}});var Q6=Y(K6,[["__scopeId","data-v-308e4b48"]]);const t5=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Q6,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},fa=e=>(O("data-v-223bcc06"),e=e(),N(),e),e5={class:"app-container"},a5={class:"app-container_title"},o5=fa(()=>t("span",null,"Docker",-1)),n5={key:0,class:"app-container_tool"},i5={key:1,class:"more_icon",title:"\u67E5\u770BDocker\u4FE1\u606F"},r5={class:"DeviceBlock"},s5=fa(()=>t("ul",null,[t("li",null,[t("a",{href:"/cgi-bin/luci/admin/docker/overview"},"Docker\u9AD8\u7EA7\u914D\u7F6E")])],-1)),d5={key:1,class:"loading_placeholder"},u5=P({props:{docker:{type:Object}},setup(e){const a=y(!1),o=y(),n=y(!1),s=()=>{n.value=!n.value},c=()=>{t5()};return setTimeout(()=>{S.Guide.DockerStatus.GET().then(p=>{var d;if((d=p==null?void 0:p.data)!=null&&d.result){const l=p.data.result;o.value=l}}).finally(()=>{a.value=!0})},1100),(p,d)=>{var m,b;const l=X("GlHelp"),u=X("icon-loading");return i(),r("div",e5,[t("div",a5,[t("span",null,[o5,D(l,{type:"docker"})]),a.value?(i(),r("div",n5,[((m=o.value)==null?void 0:m.status)!="not installed"?(i(),r("div",{key:0,class:"app-container_configure",onClick:c},"\u5FEB\u901F\u914D\u7F6E ")):E("",!0),((b=o.value)==null?void 0:b.status)==="running"?(i(),r("span",i5,[D($t,{onClick:s})])):E("",!0)])):E("",!0),z(t("div",r5,[t("div",{class:"menu_background",onClick:s}),s5],512),[[wt,n.value]])]),t("div",null,[a.value?(i(),M(u6,{key:0,docker:o.value},null,8,["docker"])):(i(),r("div",d5,[D(u,{size:50,color:"currentColor"})]))])])}}});var l5=Y(u5,[["__scopeId","data-v-223bcc06"]]);const oe=e=>(O("data-v-dbe287b2"),e=e(),N(),e),c5={class:"app-container_aria2"},p5={class:"aria2-item"},f5=oe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),m5={class:"aria2-item_value"},b5={key:0,class:"configure"},v5={key:1,class:"configure enabel"},g5={class:"aria2-item"},_5=oe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u4E0B\u8F7D\u76EE\u5F55:")],-1)),h5={class:"aria2-item_value"},x5=["href"],k5={class:"aria2-item"},w5=oe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),y5={class:"aria2-item_value"},F5=["href"],E5={class:"aria2-item"},C5=oe(()=>t("div",{class:"aria2-item_name right"},[t("span",null,"\u8BA4\u8BC1\u5931\u8D25\uFF1F")],-1)),$5={class:"aria2-item_value"},D5=["href"],B5=oe(()=>t("div",{class:"use-url_app"},[t("a",{href:"https://doc.linkease.com/zh/guide/linkease_app/tutorial.html#%E8%BF%9C%E7%A8%8B%E4%B8%8B%E8%BD%BD",target:"_blank"},"\u4F7F\u7528\u6613\u6709\u4E91APP\uFF0C\u968F\u65F6\u968F\u5730\u8FDC\u7A0B\u4E0B\u8F7D")],-1)),Y5=P({props:{aria2:{type:Object}},setup(e){const a=e,o=R(()=>{var s;return`${location.origin}${(s=a.aria2)==null?void 0:s.webPath}`}),n=R(()=>{var f,p,d;let s=(f=a.aria2)==null?void 0:f.rpcToken;s&&(s=encodeURIComponent(btoa(s)));const c=encodeURIComponent(location.hostname);return`${location.origin}${(p=a.aria2)==null?void 0:p.webPath}/#!/settings/rpc/set/http/${c}/${(d=a.aria2)==null?void 0:d.rpcPort}/jsonrpc/${s}`});return(s,c)=>{var f,p,d,l;return i(),r("ul",c5,[t("li",p5,[f5,t("div",m5,[((f=e.aria2)==null?void 0:f.status)=="running"?(i(),r("span",b5,"\u5DF2\u542F\u52A8")):(i(),r("span",v5,"\u672A\u542F\u52A8"))])]),((p=e.aria2)==null?void 0:p.status)=="running"?(i(),r(L,{key:0},[t("li",g5,[_5,t("div",h5,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((d=e.aria2)==null?void 0:d.downloadPath)},h((l=e.aria2)==null?void 0:l.downloadPath),9,x5)])]),t("li",k5,[w5,t("div",y5,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,F5)])]),t("li",E5,[C5,t("div",$5,[t("a",{href:k(n),target:"_blank",rel:"noopener noreferrer"},"\u70B9\u6B64\u81EA\u52A8\u914D\u7F6E AriaNg",8,D5)])])],64)):E("",!0),B5])}}});var A5=Y(Y5,[["__scopeId","data-v-dbe287b2"]]);const ge=e=>(O("data-v-1af61e64"),e=e(),N(),e),S5={class:"app-container_qbittorrent"},z5={class:"qbittorrent-item"},P5=ge(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),T5={class:"qbittorrent-item_value"},I5={key:0,class:"configure"},L5={key:1,class:"configure enabel"},M5={class:"qbittorrent-item"},O5=ge(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u4E0B\u8F7D\u76EE\u5F55:")],-1)),N5={class:"qbittorrent-item_value"},q5=["href"],V5={class:"qbittorrent-item"},G5=ge(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),j5={class:"qbittorrent-item_value"},R5=["href"],U5=ge(()=>t("li",{class:"qbittorrent-item"},[t("div",{class:"qbittorrent-item_name right"},[t("span",null,"\u9ED8\u8BA4\u7528\u6237\u540D\uFF1Aadmin")]),t("div",{class:"qbittorrent-item_value"},[t("span",null,"\u9ED8\u8BA4\u5BC6\u7801\uFF1Aadminadmin")])],-1)),W5=P({props:{qbittorrent:{type:Object}},setup(e){const a=e,o=R(()=>{var n;return`http://${location.hostname}${(n=a.qbittorrent)==null?void 0:n.webPath}`});return(n,s)=>{var c,f,p,d;return i(),r("ul",S5,[t("li",z5,[P5,t("div",T5,[((c=e.qbittorrent)==null?void 0:c.status)=="running"?(i(),r("span",I5,"\u5DF2\u542F\u52A8")):(i(),r("span",L5,"\u672A\u542F\u52A8"))])]),((f=e.qbittorrent)==null?void 0:f.status)=="running"?(i(),r(L,{key:0},[t("li",M5,[O5,t("div",N5,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=e.qbittorrent)==null?void 0:p.downloadPath)},h((d=e.qbittorrent)==null?void 0:d.downloadPath),9,q5)])]),t("li",V5,[G5,t("div",j5,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,R5)])]),U5],64)):E("",!0)])}}});var H5=Y(W5,[["__scopeId","data-v-1af61e64"]]);const ze=e=>(O("data-v-31717210"),e=e(),N(),e),Z5={class:"app-container_transmission"},J5={class:"transmission-item"},X5=ze(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),K5={class:"transmission-item_value"},Q5={key:0,class:"configure"},t3={key:1,class:"configure enabel"},e3={class:"transmission-item"},a3=ze(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u4E0B\u8F7D\u76EE\u5F55:")],-1)),o3={class:"transmission-item_value"},n3=["href"],i3={class:"transmission-item"},r3=ze(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),s3={class:"transmission-item_value"},d3=["href"],u3=P({props:{transmission:{type:Object}},setup(e){const a=e,o=R(()=>{var n;return`http://${location.hostname}${(n=a.transmission)==null?void 0:n.webPath}`});return(n,s)=>{var c,f,p,d;return i(),r("ul",Z5,[t("li",J5,[X5,t("div",K5,[((c=e.transmission)==null?void 0:c.status)=="running"?(i(),r("span",Q5,"\u5DF2\u542F\u52A8")):(i(),r("span",t3,"\u672A\u542F\u52A8"))])]),((f=e.transmission)==null?void 0:f.status)=="running"?(i(),r(L,{key:0},[t("li",e3,[a3,t("div",o3,[t("a",{target:"_blank",href:"/cgi-bin/luci/admin/services/linkease/file/?path=/root"+((p=e.transmission)==null?void 0:p.downloadPath)},h((d=e.transmission)==null?void 0:d.downloadPath),9,n3)])]),t("li",i3,[r3,t("div",s3,[t("a",{href:k(o),target:"_blank",rel:"noopener noreferrer"},h(k(o)),9,d3)])])],64)):E("",!0)])}}});var l3=Y(u3,[["__scopeId","data-v-31717210"]]);const c3={},p3={width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},f3=t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6","fill-opacity":"0.65"},null,-1),m3=[f3];function b3(e,a){return i(),r("svg",p3,m3)}var zt=Y(c3,[["render",b3]]);const K=e=>(O("data-v-378dba8e"),e=e(),N(),e),v3={key:0,class:"action"},g3=K(()=>t("h2",{class:"title"},"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",-1)),_3={class:"load_service input_row"},h3=K(()=>t("div",{class:"left"},[t("span",null,"\u4E0B\u8F7D\u670D\u52A1\uFF1A")],-1)),x3={class:"radios"},k3=K(()=>t("label",{for:"Aria2"},"Aria2",-1)),w3={class:"radios"},y3=K(()=>t("label",{for:"qB"},"qBittorrent",-1)),F3={class:"radios"},E3=K(()=>t("label",{for:"Tr"},"Transmission",-1)),C3=["onSubmit"],$3={class:"input_row"},D3={class:"left"},B3={class:"tooltip-trigger"},Y3=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/aria2\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")])],-1)),A3=K(()=>t("span",null,"\u914D\u7F6E\u76EE\u5F55\uFF1A",-1)),S3={class:"myinput_wrap"},z3={class:"input_row"},P3={class:"left"},T3={class:"tooltip-trigger"},I3=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")])],-1)),L3=K(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),M3={class:"myinput_wrap"},O3={class:"input_row"},N3={class:"left"},q3={class:"tooltip-trigger"},V3=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-bottom"},[t("span",{class:"dowload_rpc_tip"},"\u7528\u4E8E\u8FDC\u7A0B\u8BBF\u95EE\u7684\u4EE4\u724C\u3002")])],-1)),G3=K(()=>t("span",null,"RPC \u4EE4\u724C\uFF1A",-1)),j3={class:"input_row"},R3=K(()=>t("div",{class:""},[t("span",null,"\u9644\u52A0\u7684 BT Tracker\uFF1A")],-1)),U3={class:"radios"},W3=K(()=>t("label",{for:"default"},"\u9ED8\u8BA4",-1)),H3={class:"radios"},Z3=K(()=>t("label",{for:"add"},"\u81EA\u5DF1\u6DFB\u52A0",-1)),J3={class:"input_row"},X3=K(()=>t("div",{class:"left"},null,-1)),K3={class:"myinput_wrap Tracker_input"},Q3=["onSubmit"],t4={class:"input_row"},e4={class:"left"},a4={class:"tooltip-trigger"},o4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/qb\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")])],-1)),n4=K(()=>t("span",null,"\u914D\u7F6E\u76EE\u5F55\uFF1A",-1)),i4={class:"myinput_wrap"},r4={class:"input_row"},s4={class:"left"},d4={class:"tooltip-trigger"},u4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")])],-1)),l4=K(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),c4={class:"myinput_wrap"},p4=["onSubmit"],f4={class:"input_row"},m4={class:"left"},b4={class:"tooltip-trigger"},v4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u914D\u7F6E\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/Configs/tr\uFF1B\u8BF7\u52FF\u4F7F\u7528 /tmp \u6216 /var \uFF0C\u4EE5\u514D\u91CD\u542F\u4EE5\u540E\u4EFB\u52A1\u4E22\u5931")])],-1)),g4=K(()=>t("span",null,"\u914D\u7F6E\u76EE\u5F55\uFF1A",-1)),_4={class:"myinput_wrap"},h4={class:"input_row"},x4={class:"left"},k4={class:"tooltip-trigger"},w4=K(()=>t("div",null,[t("div",{class:"tooltip-text tooltip-top"},[t("span",{class:"dowload_dir_tip"},"\u7528\u4E8E\u653E\u7F6E\u4E0B\u8F7D\u6587\u4EF6\u7684\u76EE\u5F55\u3002\u4F8B\u5982\uFF1A/mnt/sda1/download")])],-1)),y4=K(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),F4={class:"myinput_wrap"},E4={class:"btns"},C4={key:1,class:"action"},$4={class:"title"},D4={class:"finished"},B4=K(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),Y4=P({props:{services:{type:Object,required:!0},partitionList:{type:Array,required:!0},defaultTab:{type:String,required:!1},Close:Function},setup(e){const a=e,o=y(""),n=y(""),s=y(""),c=y(""),f=y("default"),p=y("Aria2"),d=y(""),l=y(""),u=y(""),m=y(""),b=y([]),g=y([]),v=y(0);Ft(()=>{var G,Z,ht,Ie,Le,Me,Oe,Ne,qe,Ve;switch(a.defaultTab){case"aria2":p.value="Aria2";break;case"qbittorrent":p.value="qBittorrent";break;case"transmission":p.value="Transmission";break}b.value=a.partitionList.map(Ht=>({key:Ht})),g.value=a.partitionList.filter(Ht=>Ht.startsWith("/mnt/")).map(Ht=>Ht.replace(/(\/mnt\/[^/]+).*/,"$1")),s.value=((G=a.services.aria2)==null?void 0:G.configPath)||"";const B=((Z=a.services.aria2)==null?void 0:Z.downloadPath)||((ht=a.services.qbittorrent)==null?void 0:ht.downloadPath)||((Ie=a.services.transmission)==null?void 0:Ie.downloadPath);B&&(c.value=B);const $=(Le=a.services.aria2)==null?void 0:Le.rpcToken;$&&(o.value=$),d.value=((Me=a.services.qbittorrent)==null?void 0:Me.configPath)||"";const q=((Oe=a.services.qbittorrent)==null?void 0:Oe.downloadPath)||B||((Ne=a.services.transmission)==null?void 0:Ne.downloadPath);q&&(l.value=q),u.value=((qe=a.services.transmission)==null?void 0:qe.configPath)||"";const H=((Ve=a.services.transmission)==null?void 0:Ve.downloadPath)||B||q;H&&(m.value=H)});const _=()=>{let B=s.value,$=c.value;B==null||B==""||$==null||$==""||T(this,null,function*(){if(yield ct.checkAndInstallApp("app-meta-aria2","Aria2")){const H=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.Aria2Init.POST({configPath:B,downloadPath:$,rpcToken:o.value,btTracker:f.value=="add"?n.value:""}).then(G=>{var Z;if(G!=null&&G.data){if((G.data.success||0)==0){v.value=1;return}else if((Z=G.data)!=null&&Z.error)throw G.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(G=>F.Error(G)).finally(()=>H.Close())}})},w=()=>{let B=d.value,$=l.value;B==null||B==""||$==null||$==""||T(this,null,function*(){if(yield ct.checkAndInstallApp("app-meta-qbittorrent","qBittorrent")){const H=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.qbitorrentInit.POST({configPath:B,downloadPath:$}).then(G=>{var Z;if(G!=null&&G.data){if((G.data.success||0)==0){v.value=1;return}else if((Z=G.data)!=null&&Z.error)throw G.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(G=>F.Error(G)).finally(()=>H.Close())}})},x=()=>{let B=u.value,$=m.value;B==null||B==""||$==null||$==""||T(this,null,function*(){if(yield ct.checkAndInstallApp("app-meta-transmission","Transmission")){const H=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.transmissionInit.POST({configPath:B,downloadPath:$}).then(G=>{var Z;if(G!=null&&G.data){if((G.data.success||0)==0){v.value=1;return}else if((Z=G.data)!=null&&Z.error)throw G.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(G=>F.Error(G)).finally(()=>H.Close())}})},C=B=>{B.preventDefault(),a.Close&&a.Close()},A=B=>{B.preventDefault(),location.reload()};return(B,$)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[v.value==0?(i(),r("div",v3,[g3,t("ul",null,[t("li",null,[t("div",_3,[h3,t("div",x3,[z(t("input",{type:"radio",value:"Aria2","onUpdate:modelValue":$[0]||($[0]=q=>p.value=q),name:"download",id:"Aria2"},null,512),[[ft,p.value]]),k3]),t("div",w3,[z(t("input",{type:"radio",value:"qBittorrent","onUpdate:modelValue":$[1]||($[1]=q=>p.value=q),name:"download",id:"qB"},null,512),[[ft,p.value]]),y3]),t("div",F3,[z(t("input",{type:"radio",value:"Transmission","onUpdate:modelValue":$[2]||($[2]=q=>p.value=q),name:"download",id:"Tr"},null,512),[[ft,p.value]]),E3])])])]),p.value=="Aria2"?(i(),r("form",{key:0,onSubmit:nt(_,["prevent"])},[t("ul",null,[t("li",null,[t("div",$3,[t("div",D3,[t("span",B3,[D(zt),Y3]),A3]),t("div",S3,[D(Pt,{modelValue:s.value,"onUpdate:modelValue":$[3]||($[3]=q=>s.value=q),modelModifiers:{trim:!0},title:"\u914D\u7F6E\u76EE\u5F55",options:g.value.concat("/root").map(q=>({key:q+"/Configs/aria2"}))},null,8,["modelValue","options"])])])]),t("li",null,[t("div",z3,[t("div",P3,[t("span",T3,[D(zt),I3]),L3]),t("div",M3,[D(Pt,{modelValue:c.value,"onUpdate:modelValue":$[4]||($[4]=q=>c.value=q),modelModifiers:{trim:!0},title:"\u4E0B\u8F7D\u76EE\u5F55",options:b.value},null,8,["modelValue","options"])])])]),t("li",null,[t("div",O3,[t("div",N3,[t("span",q3,[D(zt),V3]),G3]),z(t("input",{type:"text",class:"RPC_input",placeholder:"\u8BF7\u8F93\u5165RPC\u4EE4\u724C","onUpdate:modelValue":$[5]||($[5]=q=>o.value=q)},null,512),[[W,o.value,void 0,{trim:!0}]])])]),t("li",null,[t("div",j3,[R3,t("div",U3,[z(t("input",{type:"radio",value:"default",name:"BT",id:"default","onUpdate:modelValue":$[6]||($[6]=q=>f.value=q)},null,512),[[ft,f.value]]),W3]),t("div",H3,[z(t("input",{type:"radio",value:"add",name:"BT",id:"add","onUpdate:modelValue":$[7]||($[7]=q=>f.value=q)},null,512),[[ft,f.value]]),Z3])])]),t("li",null,[t("div",J3,[X3,t("div",K3,[f.value=="add"?z((i(),r("textarea",{key:0,"onUpdate:modelValue":$[8]||($[8]=q=>n.value=q),rows:"4",placeholder:"\u8BF7\u8F93\u5165BT Tracker\u670D\u52A1\u5668\u5730\u5740\uFF0C\u591A\u4E2A\u5730\u5740\u4F7F\u7528\u6362\u884C\u6216\u8005\u82F1\u6587\u9017\u53F7\u5206\u9694"},null,512)),[[W,n.value,void 0,{trim:!0}]]):E("",!0)])])])])],40,C3)):E("",!0),p.value=="qBittorrent"?(i(),r("form",{key:1,onSubmit:nt(w,["prevent"])},[t("ul",null,[t("li",null,[t("div",t4,[t("div",e4,[t("span",a4,[D(zt),o4]),n4]),t("div",i4,[D(Pt,{modelValue:d.value,"onUpdate:modelValue":$[9]||($[9]=q=>d.value=q),modelModifiers:{trim:!0},title:"\u914D\u7F6E\u76EE\u5F55",options:g.value.concat("/root").map(q=>({key:q+"/Configs/qb"}))},null,8,["modelValue","options"])])])]),t("li",null,[t("div",r4,[t("div",s4,[t("span",d4,[D(zt),u4]),l4]),t("div",c4,[D(Pt,{modelValue:l.value,"onUpdate:modelValue":$[10]||($[10]=q=>l.value=q),modelModifiers:{trim:!0},title:"\u4E0B\u8F7D\u76EE\u5F55",options:b.value},null,8,["modelValue","options"])])])])])],40,Q3)):E("",!0),p.value=="Transmission"?(i(),r("form",{key:2,onSubmit:nt(x,["prevent"])},[t("ul",null,[t("li",null,[t("div",f4,[t("div",m4,[t("span",b4,[D(zt),v4]),g4]),t("div",_4,[D(Pt,{modelValue:u.value,"onUpdate:modelValue":$[11]||($[11]=q=>u.value=q),modelModifiers:{trim:!0},title:"\u914D\u7F6E\u76EE\u5F55",options:g.value.concat("/root").map(q=>({key:q+"/Configs/transmission"}))},null,8,["modelValue","options"])])])]),t("li",null,[t("div",h4,[t("div",x4,[t("span",k4,[D(zt),w4]),y4]),t("div",F4,[D(Pt,{modelValue:m.value,"onUpdate:modelValue":$[12]||($[12]=q=>m.value=q),modelModifiers:{trim:!0},title:"\u4E0B\u8F7D\u76EE\u5F55",options:b.value},null,8,["modelValue","options"])])])])])],40,p4)):E("",!0),t("div",E4,[p.value=="Aria2"?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:_},"\u542F\u7528")):E("",!0),p.value=="qBittorrent"?(i(),r("button",{key:1,class:"cbi-button cbi-button-apply",onClick:w},"\u542F\u7528")):E("",!0),p.value=="Transmission"?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:x},"\u542F\u7528")):E("",!0),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:C},"\u53D6\u6D88")])])):v.value==1?(i(),r("div",C4,[t("h2",$4,h(p.value)+"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",1),t("div",D4,[D(De)]),B4,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:A},"\u786E\u5B9A")])])):E("",!0)]),_:1},8,["Close"]))}});var A4=Y(Y4,[["__scopeId","data-v-378dba8e"]]);const S4=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(A4,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},z4=e=>(O("data-v-23580536"),e=e(),N(),e),P4={class:"app-container"},T4={class:"app-container_title"},I4=z4(()=>t("span",null,"\u4E0B\u8F7D\u670D\u52A1",-1)),L4={class:"app-container_tool"},M4=["disabled"],O4={class:"more_icon",title:"\u67E5\u770B\u9AD8\u7EA7\u914D\u7F6E"},N4={class:"DeviceBlock"},q4={class:"app-container_body"},V4={class:"app-container_nas-menu"},G4=P({setup(e){y(!1);const a=y("aria2"),o=y();Qe(),setTimeout(()=>{S.Guide.DownloadService.Status.GET().then(b=>{var g;if((g=b==null?void 0:b.data)!=null&&g.result){const v=b.data.result;o.value=v}})},800);const s=y(!1),c=y(!1),f=()=>{c.value=!c.value},p=()=>{S.Guide.DownloadPartition.List.GET().then(b=>{var v,_;let g=[];(_=(v=b==null?void 0:b.data)==null?void 0:v.result)!=null&&_.partitionList&&(g=b.data.result.partitionList),S4({services:o.value,partitionList:g,defaultTab:a.value})})},d=(b,g,v)=>T(this,null,function*(){f(),ct.installAndGo(b,g,v)}),l=()=>{d("app-meta-aria2","Aria2","/cgi-bin/luci/admin/services/aria2")},u=()=>{d("app-meta-qbittorrent","qBittorrent","/cgi-bin/luci/admin/nas/qBittorrent")},m=()=>{d("app-meta-transmission","Transmission","/cgi-bin/luci/admin/services/transmission")};return(b,g)=>{var _,w,x;const v=X("GlHelp");return i(),r("div",P4,[t("div",T4,[t("span",null,[I4,D(v,{type:"download"})]),t("div",L4,[o.value?(i(),r("div",{key:0,class:"app-container_configure",onClick:p,disabled:s.value},"\u5FEB\u901F\u914D\u7F6E ",8,M4)):E("",!0),t("span",O4,[D($t,{onClick:f})])]),z(t("div",N4,[t("div",{class:"menu_background",onClick:f}),t("ul",null,[t("li",null,[t("a",{onClick:l},"Aria2\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:u},"qBittorrent\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:m},"Transmission\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[wt,c.value]])]),t("div",q4,[t("ul",V4,[t("button",{onClick:g[0]||(g[0]=C=>a.value="aria2"),class:ot({on:a.value=="aria2"})},"Aria2",2),t("button",{onClick:g[1]||(g[1]=C=>a.value="qbittorrent"),class:ot({on:a.value=="qbittorrent"})},"qBittorrent",2),t("button",{onClick:g[2]||(g[2]=C=>a.value="transmission"),class:ot({on:a.value=="transmission"})},"Transmission",2)]),a.value=="aria2"?(i(),M(A5,{key:0,aria2:(_=o.value)==null?void 0:_.aria2},null,8,["aria2"])):a.value=="qbittorrent"?(i(),M(H5,{key:1,qbittorrent:(w=o.value)==null?void 0:w.qbittorrent},null,8,["qbittorrent"])):a.value=="transmission"?(i(),M(l3,{key:2,transmission:(x=o.value)==null?void 0:x.transmission},null,8,["transmission"])):E("",!0)])])}}});var j4=Y(G4,[["__scopeId","data-v-23580536"]]);const Et=e=>(O("data-v-43beecef"),e=e(),N(),e),R4={class:"actioner-container"},U4=Et(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),W4={class:"actioner-container_body"},H4={class:"label-item"},Z4=Et(()=>t("span",null,"DDNSTO",-1)),J4=Et(()=>t("p",{class:"label_info"},"DDNSTO \u662F\u4E00\u4E2A\u4E0D\u9700\u8981\u516C\u7F51IP\u4E5F\u53EF\u4EE5\u5728\u5916\u7F51\u8BBF\u95EE\u7684\u7A7F\u900F\u57DF\u540D\u670D\u52A1\uFF0C\u4E00\u4E2A\u6D4F\u89C8\u5668\u641E\u5B9A\u5185\u7F51\u7A7F\u900F\uFF0C\u8FDC\u7A0B\u8BBF\u95EEOpenwrt\u3001\u8FDC\u7A0B\u7EC8\u7AEF\u3001\u8FDC\u7A0B\u684C\u9762...",-1)),X4={class:"label-item"},K4=Et(()=>t("span",null,"\u963F\u91CC\u4E91",-1)),Q4=Et(()=>t("p",{class:"label_info"}," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),t8={class:"label-item"},e8=Et(()=>t("span",null,"Dnspod",-1)),a8=Et(()=>t("p",{class:"label_info"}," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),o8={class:"label-item"},n8=Et(()=>t("span",null,"\u82B1\u751F\u58F3",-1)),i8=Et(()=>t("p",{class:"label_info"}," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),r8=P({props:{onSetup:{type:Function,required:!0},active:{type:String,default:"ddnsto"}},emits:["update:active"],setup(e,{emit:a}){const o=e,n=()=>{o.onSetup()},s=y(o.active),c=()=>{switch(a("update:active",s.value),s.value){case"ddnsto":o.onSetup("ddnsto");break;case"ali":o.onSetup("ddns-ali");break;case"dnspod":o.onSetup("ddns-dnspod");break;case"oray":o.onSetup("ddns-oray");break}};return(f,p)=>(i(),r("div",R4,[U4,t("div",W4,[t("div",H4,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[0]||(p[0]=d=>s.value=d),value:"ddnsto"},null,512),[[ft,s.value]]),Z4]),J4]),t("div",X4,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[1]||(p[1]=d=>s.value=d),value:"ali"},null,512),[[ft,s.value]]),K4]),Q4]),t("div",t8,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[2]||(p[2]=d=>s.value=d),value:"dnspod"},null,512),[[ft,s.value]]),e8]),a8]),t("div",o8,[t("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":p[3]||(p[3]=d=>s.value=d),value:"oray"},null,512),[[ft,s.value]]),n8]),i8])]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:n},"\u53D6\u6D88"),t("div",{class:"next",onClick:c},"\u4E0B\u4E00\u6B65")])]))}});var s8=Y(r8,[["__scopeId","data-v-43beecef"]]);const ne=e=>(O("data-v-43dd65a2"),e=e(),N(),e),d8={class:"actioner-container"},u8={class:"actioner-container_body"},l8=ne(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),c8=ne(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),p8=ne(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),f8={class:"body-info"},m8=ne(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),b8=["href"],v8=ne(()=>t("div",null,[t("span",null,"\u53EF\u524D\u5F80"),t("a",{href:"/cgi-bin/luci/admin/services/ddns",target:"_blank"},"\u670D\u52A1-\u52A8\u6001DNS"),t("span",null,"\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")],-1)),g8=P({props:{target:{type:String,required:!0},onSetup:{type:Function,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",d8,[t("div",u8,[l8,c8,p8,t("div",f8,[m8,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},h(e.target),9,b8)]),v8]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var _8=Y(g8,[["__scopeId","data-v-43dd65a2"]]);const ma=e=>(O("data-v-7790f1da"),e=e(),N(),e),h8={class:"actioner-container"},x8=ma(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),k8=ma(()=>t("div",{class:"actioner-container_body ddnsto-login"},[t("iframe",{src:"https://www.kooldns.cn/bind/#/auth?send=1&source=openwrt&callback=*"})],-1)),w8=P({props:{onSetup:{type:Function,required:!0},onDdnstoConfig:{type:Function,required:!0}},setup(e){const a=e,o=()=>{a.onSetup()},n=s=>{if(s.data.auth=="ddnsto"){const c=s.data.sign,f=s.data.token;c&&f&&(removeEventListener("message",n),a.onDdnstoConfig(c,f),a.onSetup("ddnsto-run"))}};return Ft(()=>{window.addEventListener("message",n)}),Gt(()=>{removeEventListener("message",n)}),(s,c)=>(i(),r("div",h8,[x8,k8,t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u53D6\u6D88")])]))}});var y8=Y(w8,[["__scopeId","data-v-7790f1da"]]);const F8=e=>(O("data-v-7b3ee72a"),e=e(),N(),e),E8={class:"actioner-container"},C8=F8(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),$8={class:"actioner-container_body ddnsto-bind"},D8=["src"],B8=P({props:{onSetup:{type:Function,required:!0},config:{type:Object,required:!0},domain:{type:String,required:!0}},emits:["update:domain"],setup(e,{emit:a}){const o=e,n=R(()=>{const{domain:f,token:p,sign:d,routerId:l,netaddr:u}=o.config,m=encodeURIComponent(f),b=encodeURIComponent(u);return`https://www.kooldns.cn/bind/#/domain?domain=${m}&sign=${d}&token=${p}&routerId=${l}&netaddr=${b}`}),s=f=>{if(f.data){const{auth:p,url:d}=f.data;p==="ddnsto"&&d&&c(d)}},c=f=>T(this,null,function*(){var p;try{const d=yield S.Guide.DdnstoAddress.POST({address:f});d!=null&&d.data&&(((p=d==null?void 0:d.data)==null?void 0:p.success)||0)==0&&(a("update:domain",f),o.onSetup("ddnsto-save"))}catch(d){}});return Ft(()=>{window.addEventListener("message",s)}),Gt(()=>{removeEventListener("message",s)}),(f,p)=>(i(),r("div",E8,[C8,t("div",$8,[t("iframe",{src:k(n)},null,8,D8)])]))}});var Y8=Y(B8,[["__scopeId","data-v-7b3ee72a"]]);const ie=e=>(O("data-v-7f5a8953"),e=e(),N(),e),A8={class:"actioner-container"},S8={class:"actioner-container_body"},z8=ie(()=>t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128","data-v-cda444e0":""},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063","data-v-cda444e0":""})],-1)),P8=ie(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),T8=ie(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),I8={class:"body-info"},L8=ie(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),M8=["href"],O8=ie(()=>t("div",null,[t("span",null,"\u53EF\u524D\u5F80"),t("a",{href:"https://www.ddnsto.com/app/#/devices",target:"_blank"},"DDNSTO\u63A7\u5236\u53F0"),t("span",null,"\u67E5\u770B\u66F4\u591A\u8BE6\u60C5")],-1)),N8=P({props:{onSetup:{type:Function,required:!0},target:{type:String,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",A8,[t("div",S8,[z8,P8,T8,t("div",I8,[L8,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},h(e.target),9,M8)]),O8]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var q8=Y(N8,[["__scopeId","data-v-7f5a8953"]]);const V8=e=>(O("data-v-d60389d6"),e=e(),N(),e),G8={class:"actioner-container"},j8=V8(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),R8={class:"actioner-container_body"},U8={class:"actioner-container_footer"},W8=P({props:{onSetup:{type:Function,required:!0}},setup(e){const a=e,o=()=>{a.onSetup()},n=()=>T(this,null,function*(){if(f.value)return;f.value=!0;const d=F.Loading("\u5B89\u88C5\u4E2D...");try{if(yield ct.installApp("app-meta-ddnsto",30)){a.onSetup("ddnsto-login");return}else s.value="\u5B89\u88C5\u5931\u8D25"}catch(l){s.value=l}finally{d.Close()}f.value=!1}),s=y("\u6B63\u5728\u68C0\u6D4B\u4E2D..."),c=y(!1),f=y(!1);return(()=>T(this,null,function*(){try{const d=yield S.App.Check.POST({name:"ddnsto"});if(d!=null&&d.data){const{result:l,error:u}=d.data;if(u){s.value=u;return}if(l){if(l.status=="installed"){a.onSetup("ddnsto-login");return}l.status=="uninstalled"&&(s.value="\u9700\u8981\u5B89\u88C5DDNSTO\u63D2\u4EF6\uFF0C\u70B9\u51FB\u201C\u786E\u5B9A\u201D\u5F00\u59CB\u5B89\u88C5")}}}catch(d){s.value=d}c.value=!0}))(),(d,l)=>(i(),r("div",G8,[j8,t("div",R8,[t("span",null,h(s.value),1)]),t("div",U8,[c.value?(i(),r(L,{key:0},[t("div",{class:"close",onClick:o},"\u53D6\u6D88"),t("div",{class:"next",onClick:n},"\u786E\u5B9A")],64)):E("",!0)])]))}});var H8=Y(W8,[["__scopeId","data-v-d60389d6"]]);const Z8=e=>(O("data-v-1e0ebd66"),e=e(),N(),e),J8={class:"actioner-container"},X8=Z8(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),K8={class:"actioner-container_body"},Q8=P({props:{onSetup:{type:Function,required:!0},token:{type:String,required:!0},onDdnstoLocalConfig:{type:Function,required:!0}},setup(e){const a=e,o=y("\u6B63\u5728\u68C0\u6D4B\u63D2\u4EF6\u662F\u5426\u5DF2\u542F\u52A8...");(d=>T(this,null,function*(){var l;try{const u=yield S.Guide.Ddnsto.POST({token:a.token});u!=null&&u.data&&(u.data.error&&(o.value=u.data.error),(((l=u==null?void 0:u.data)==null?void 0:l.success)||0)==0&&c())}catch(u){o.value=u}}))(a.token);const s=y(),c=()=>{const d=()=>T(this,null,function*(){if((yield f())===!0){p();return}s.value=window.setTimeout(d,2e3)});d()},f=()=>T(this,null,function*(){try{const d=yield S.App.Check.POST({name:"ddnsto",checkRunning:!0});if(d!=null&&d.data){d.data.error&&(o.value=d.data.error);const l=d.data.result;if((l==null?void 0:l.status)=="running")return!0}}catch(d){o.value=d}return!1});Gt(()=>{s.value&&clearInterval(s.value)});const p=()=>T(this,null,function*(){var d;try{const l=yield S.Guide.DdntoConfig.GET();if(l!=null&&l.data&&(l.data.error&&(o.value=l.data.error),(((d=l==null?void 0:l.data)==null?void 0:d.success)||0)==0&&l.data.result)){const u=l.data.result;a.onDdnstoLocalConfig(u.netAddr,u.deviceId),a.onSetup("ddnsto-bind")}}catch(l){o.value=l}});return(d,l)=>(i(),r("div",J8,[X8,t("div",K8,h(o.value),1)]))}});var tp=Y(Q8,[["__scopeId","data-v-1e0ebd66"]]);const ep={class:"action-main"},ap=P({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=y("ddnsto-install"),n=d=>{d!=null?o.value=d:s()},s=()=>{a.Close&&a.Close()},c=it({sign:"",token:"",domain:a.url,netaddr:"",routerId:""}),f=(d,l)=>{c.sign=d,c.token=l},p=(d,l)=>{c.netaddr=d,c.routerId=l};return(d,l)=>(i(),M(et,{type:1},{default:V(()=>[t("div",ep,[o.value=="ddnsto-install"?(i(),M(H8,{key:0,onSetup:n})):o.value=="ddnsto-login"?(i(),M(y8,{key:1,onSetup:n,onDdnstoConfig:f})):o.value=="ddnsto-run"?(i(),M(tp,{key:2,onSetup:n,token:k(c).token,onDdnstoLocalConfig:p},null,8,["token"])):o.value=="ddnsto-bind"?(i(),M(Y8,{key:3,onSetup:n,config:{token:k(c).token,sign:k(c).sign,domain:k(c).domain,netaddr:k(c).netaddr,routerId:k(c).routerId},domain:k(c).domain,"onUpdate:domain":l[0]||(l[0]=u=>k(c).domain=u)},null,8,["config","domain"])):o.value=="ddnsto-save"?(i(),M(q8,{key:4,onSetup:n,target:k(c).domain},null,8,["target"])):E("",!0)])]),_:1}))}});var op=Y(ap,[["__scopeId","data-v-7a6bd385"]]);const np=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(op,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},ip={class:"action"},rp={class:"action-header"},sp=["innerHTML"],dp={class:"action-footer"},up=P({props:{Close:Function,next:{type:Function},clear:{type:Function},continuer:{type:Function},nextTitle:{type:String,default:"\u786E\u5B9A"},clearTitle:{type:String,default:"\u8FD4\u56DE"},continuerTitle:{type:String,default:"\u7EE7\u7EED\u4FDD\u5B58"},title:{type:String,default:"\u63D0\u793A"},content:{type:String}},setup(e){const a=e,o=()=>{a.next&&a.next(),a.Close&&a.Close()},n=()=>{a.clear&&a.clear(),a.Close&&a.Close()},s=()=>{a.continuer&&a.continuer(),a.Close&&a.Close()};return(c,f)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[t("div",ip,[t("div",rp,h(e.title),1),t("div",{class:"action-body",innerHTML:e.content},null,8,sp),t("div",dp,[e.clear?(i(),r("div",{key:0,class:"clear",onClick:n},h(e.clearTitle),1)):E("",!0),t("div",{class:"next",onClick:o},h(e.nextTitle),1),e.continuer?(i(),r("div",{key:1,class:"next",onClick:s},h(e.continuerTitle),1)):E("",!0)])])]),_:1},8,["Close"]))}});var lp=Y(up,[["__scopeId","data-v-4358e88c"]]);const de=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(lp,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},rt=e=>(O("data-v-9435cfa6"),e=e(),N(),e),cp={class:"actioner-container"},pp=["onSubmit"],fp=rt(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),mp={key:0,class:"title_info"},bp=rt(()=>t("p",null," \u963F\u91CC\u4E91 ",-1)),vp=rt(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),gp=rt(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E9%98%BF%E9%87%8C%E4%BA%91",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),_p=[bp,vp,gp],hp={key:1,class:"title_info"},xp=rt(()=>t("p",null," dnspod ",-1)),kp=rt(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),wp=rt(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#dnspod",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),yp=[xp,kp,wp],Fp={key:2,class:"title_info"},Ep=rt(()=>t("p",null," \u82B1\u751F\u58F3 ",-1)),Cp=rt(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),$p=rt(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#%E8%8A%B1%E7%94%9F%E5%A3%B3",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),Dp=[Ep,Cp,$p],Bp={class:"label-item"},Yp=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u5730\u5740\u7248\u672C\uFF1A")],-1)),Ap={class:"label-item_value"},Sp=rt(()=>t("option",{value:"ipv4"},"IPv4\u5730\u5740",-1)),zp=rt(()=>t("option",{value:"ipv6"},"IPv6\u5730\u5740",-1)),Pp=[Sp,zp],Tp=rt(()=>t("div",{class:"label_tips"},[t("svg",{width:"14px",height:"14px",viewBox:"0 0 14 14",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_alert",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"14",height:"14"}),t("path",{d:"M7,0.875 C3.61757813,0.875 0.875,3.61757813 0.875,7 C0.875,10.3824219 3.61757813,13.125 7,13.125 C10.3824219,13.125 13.125,10.3824219 13.125,7 C13.125,3.61757813 10.3824219,0.875 7,0.875 Z M6.5625,4.046875 C6.5625,3.98671875 6.61171875,3.9375 6.671875,3.9375 L7.328125,3.9375 C7.38828125,3.9375 7.4375,3.98671875 7.4375,4.046875 L7.4375,7.765625 C7.4375,7.82578125 7.38828125,7.875 7.328125,7.875 L6.671875,7.875 C6.61171875,7.875 6.5625,7.82578125 6.5625,7.765625 L6.5625,4.046875 Z M7,10.0625 C6.63769531,10.0625 6.34375,9.76855469 6.34375,9.40625 C6.34375,9.04394531 6.63769531,8.75 7,8.75 C7.36230469,8.75 7.65625,9.04394531 7.65625,9.40625 C7.65625,9.76855469 7.36230469,10.0625 7,10.0625 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])]),t("span",{class:"info"},"\u8BBE\u5B9A\u54EA\u4E00\u4E2A IP \u5730\u5740\uFF08IPv4 \u6216 IPv6\uFF09\u4F1A\u88AB\u53D1\u9001\u7ED9 DDNS \u63D0\u4F9B\u5546")],-1)),Ip={class:"label-item"},Lp=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u57DF\u540D\uFF1A")],-1)),Mp={class:"label-item_value"},Op={class:"label-item"},Np=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D\uFF1A")],-1)),qp={class:"label-item_value"},Vp={class:"label-item"},Gp=rt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801\uFF1A")],-1)),jp={class:"label-item_value"},Rp={class:"actioner-container_footer"},Up=["disabled"],Wp=P({props:{name:{type:String,default:"ali"},onSetup:{type:Function,required:!0},target:{type:String,required:!0}},emits:["update:target"],setup(e,{emit:a}){const o=e,n=y("ipv4"),s=y(o.name),c=y(""),f=y(""),p=y(""),d=y(!1),l=()=>{o.onSetup("index")},u=()=>{d.value=!0;const v=F.Loading("\u68C0\u6D4B\u4E2D...");S.Network.CheckPublickNet.POST({ipVersion:n.value}).then(_=>{var w,x;if(_!=null&&_.data){if((w=_==null?void 0:_.data)!=null&&w.error){F.Warning(_==null?void 0:_.data.error);return}if((((x=_==null?void 0:_.data)==null?void 0:x.success)||0)==0){const C=_.data.result;C&&C.address?g():m();return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(_=>{F.Error(_)}).finally(()=>{v.Close(),d.value=!1})},m=()=>{de({title:"\u6E29\u99A8\u63D0\u793A",nextTitle:"\u4F7F\u7528DDNSTO",continuerTitle:"\u7EE7\u7EED\u4FDD\u5B58",content:"\u68C0\u6D4B\u5230\u60A8\u7684wan\u53E3\u6CA1\u6709\u516C\u7F51IP\u6216\u8005IPv6\u5730\u5740\uFF0C\u53EF\u4EE5\u4F7F\u7528DDNSTO\u914D\u7F6E\u8FDC\u7A0B\u57DF\u540D\u8BBF\u95EE",next(){b()},continuer(){g()},clear(){}})},b=()=>{o.onSetup("ddnsto")},g=()=>{d.value=!0;const v=F.Loading("\u914D\u7F6E\u4E2D...");S.Guide.PostDdns.POST({ipVersion:n.value,serviceName:s.value,domain:c.value,userName:f.value,password:p.value}).then(_=>{if(_!=null&&_.data){const{error:w,scope:x,success:C}=_.data;if(w=="-100"&&x=="guide.ddns"){de({title:"\u6E29\u99A8\u63D0\u793A",content:"\u68C0\u6D4B\u5230\u4F60\u6709\u672A\u4FDD\u5B58\u7684\u914D\u7F6E\uFF0C\u53EF\u524D\u5F80\u9875\u9762\u53F3\u4E0A\u89D2\u70B9\u51FB\u67E5\u770B\uFF0C\u4FDD\u5B58\u5E76\u5E94\u7528\u6216\u8005\u6062\u590D\u914D\u7F6E\u540E\u7EE7\u7EED",next(){}});return}if(w){F.Warning(w);return}if((C||0)==0){a("update:target",c.value),o.onSetup("ddns-success");return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(_=>{F.Error(_)}).finally(()=>{v.Close(),d.value=!1})};return(v,_)=>(i(),r("div",cp,[t("form",{class:"actioner-dns",onSubmit:nt(u,["prevent"])},[fp,t("div",{class:ot(["actioner-container_body",e.name])},[e.name=="ali"?(i(),r("div",mp,_p)):e.name=="dnspod"?(i(),r("div",hp,yp)):e.name=="oray"?(i(),r("div",Fp,Dp)):E("",!0),t("div",Bp,[Yp,t("div",Ap,[z(t("select",{name:"",id:"","onUpdate:modelValue":_[0]||(_[0]=w=>n.value=w)},Pp,512),[[Q,n.value]])]),Tp]),t("div",Ip,[Lp,t("div",Mp,[z(t("input",{type:"text",placeholder:"myhost.example.com","onUpdate:modelValue":_[1]||(_[1]=w=>c.value=w),required:""},null,512),[[W,c.value,void 0,{trim:!0}]])])]),t("div",Op,[Np,t("div",qp,[z(t("input",{type:"text","onUpdate:modelValue":_[2]||(_[2]=w=>f.value=w),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u540D",required:""},null,512),[[W,f.value,void 0,{trim:!0}]])])]),t("div",Vp,[Gp,t("div",jp,[z(t("input",{type:"password","onUpdate:modelValue":_[3]||(_[3]=w=>p.value=w),placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",required:""},null,512),[[W,p.value,void 0,{trim:!0}]])])])],2),t("div",Rp,[t("div",{class:"close",onClick:l,type:"button"},"\u8FD4\u56DE"),t("button",{class:"next save",type:"submit",disabled:d.value},"\u4FDD\u5B58",8,Up)])],40,pp)]))}});var ye=Y(Wp,[["__scopeId","data-v-9435cfa6"]]);const Hp={class:"action-main"},Zp=P({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=y(""),n=y("index"),s=d=>{if(d!=null){if(d=="ddnsto"){c();return}n.value=d}else f()},c=()=>{f(),np({url:a.url})},f=()=>{a.Close&&a.Close()},p=y("ddnsto");return(d,l)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[t("div",Hp,[n.value=="index"?(i(),M(s8,{key:0,onSetup:s,active:p.value,"onUpdate:active":l[0]||(l[0]=u=>p.value=u)},null,8,["active"])):n.value=="ddns-ali"?(i(),M(ye,{key:1,onSetup:s,target:o.value,"onUpdate:target":l[1]||(l[1]=u=>o.value=u),name:"ali"},null,8,["target"])):n.value=="ddns-dnspod"?(i(),M(ye,{key:2,onSetup:s,target:o.value,"onUpdate:target":l[2]||(l[2]=u=>o.value=u),name:"dnspod"},null,8,["target"])):n.value=="ddns-oray"?(i(),M(ye,{key:3,onSetup:s,target:o.value,"onUpdate:target":l[3]||(l[3]=u=>o.value=u),name:"oray"},null,8,["target"])):n.value=="ddns-success"?(i(),M(_8,{key:4,onSetup:s,target:o.value},null,8,["target"])):E("",!0)])]),_:1},8,["Close"]))}});var Jp=Y(Zp,[["__scopeId","data-v-6f1d92d9"]]);const Xp=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Jp,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},Ot=e=>(O("data-v-2d533925"),e=e(),N(),e),Kp={class:"app-container"},Qp={class:"app-container_title"},t7=Ot(()=>t("span",null,"\u8FDC\u7A0B\u57DF\u540D",-1)),e7={class:"app-container_domain"},a7={class:"domain-item"},o7=Ot(()=>t("div",{class:"domain-item_name"},[t("span",null,"DDNSTO\uFF1A")],-1)),n7={class:"domain-item_value"},i7=["href","title"],r7={key:1,class:"configure"},s7=Ot(()=>t("a",{class:"item_btn",href:"https://www.kooldns.cn/app/#/devices",target:"_blank"},"\u63A7\u5236\u53F0",-1)),d7={key:0,class:"domain-item"},u7=Ot(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv4\uFF1A")],-1)),l7={class:"domain-item_value"},c7={key:0},p7=["href"],f7={key:2,href:"/cgi-bin/luci/admin/services/ddns"},m7=Ot(()=>t("svg",{t:"1653625385794",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4476",width:"28",height:"28"},[t("path",{d:"M145.83060282785186 873.7309800675556h650.2280809434073c24.411293468444445 0 44.384169832296294-19.97287636385185 44.38416861866666-44.384169832296294V500.90395784533337c0-13.315251313777777-8.876834209185184-22.19208430933333-22.19208430933333-22.19208430933333s-22.19208430933333 8.876834209185184-22.19208430933333 22.19208430933333v326.22364444444446H145.83060282785186V179.1187305054815h616.9399532657777c13.315251313777777 0 22.19208430933333-8.876834209185184 22.19208552296296-22.19208552296296s-8.876834209185184-22.19208430933333-22.19208552296296-22.19208430933333H145.83060282785186c-24.411293468444445 0-44.384169832296294 19.97287636385185-44.38416861866666 44.384169832296294v650.2280797297777c0 24.411293468444445 19.97287636385185 44.384169832296294 44.38416861866666 44.384169832296294z",fill:"#666","p-id":"4477"}),t("path",{d:"M887.0462301677038 203.53002276029633l-488.225862087111 488.2258633007407c-8.876834209185184 8.876834209185184-8.876834209185184 22.19208430933333 0 31.06891851851852 4.438417104592592 4.438417104592592 11.096042154666666 6.657625050074073 15.53445925925926 6.657625050074073s11.096042154666666-2.2192079454814815 15.53445925925926-6.657625050074073l490.4450712462222-490.4450712462222c8.876834209185184-8.876834209185184 8.876834209185184-22.19208430933333 0-31.06891851851852s-24.411293468444445-6.657625050074073-33.288127677629625 2.2192079454814815z",fill:"#666","p-id":"4478"})],-1)),b7=[m7],v7={key:1,class:"domain-item"},g7=Ot(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv6\uFF1A")],-1)),_7={class:"domain-item_value"},h7={key:0},x7=["href"],k7={key:2,href:"/cgi-bin/luci/admin/services/ddns"},w7=Ot(()=>t("svg",{t:"1653625385794",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"4476",width:"28",height:"28"},[t("path",{d:"M145.83060282785186 873.7309800675556h650.2280809434073c24.411293468444445 0 44.384169832296294-19.97287636385185 44.38416861866666-44.384169832296294V500.90395784533337c0-13.315251313777777-8.876834209185184-22.19208430933333-22.19208430933333-22.19208430933333s-22.19208430933333 8.876834209185184-22.19208430933333 22.19208430933333v326.22364444444446H145.83060282785186V179.1187305054815h616.9399532657777c13.315251313777777 0 22.19208430933333-8.876834209185184 22.19208552296296-22.19208552296296s-8.876834209185184-22.19208430933333-22.19208552296296-22.19208430933333H145.83060282785186c-24.411293468444445 0-44.384169832296294 19.97287636385185-44.38416861866666 44.384169832296294v650.2280797297777c0 24.411293468444445 19.97287636385185 44.384169832296294 44.38416861866666 44.384169832296294z",fill:"#666","p-id":"4477"}),t("path",{d:"M887.0462301677038 203.53002276029633l-488.225862087111 488.2258633007407c-8.876834209185184 8.876834209185184-8.876834209185184 22.19208430933333 0 31.06891851851852 4.438417104592592 4.438417104592592 11.096042154666666 6.657625050074073 15.53445925925926 6.657625050074073s11.096042154666666-2.2192079454814815 15.53445925925926-6.657625050074073l490.4450712462222-490.4450712462222c8.876834209185184-8.876834209185184 8.876834209185184-22.19208430933333 0-31.06891851851852s-24.411293468444445-6.657625050074073-33.288127677629625 2.2192079454814815z",fill:"#666","p-id":"4478"})],-1)),y7=[w7],F7=P({setup(e){let a=!1,o;const n=y({}),s=function(){!a||S.Guide.GetDdns.GET().then(d=>{var l;d!=null&&d.data&&(((l=d==null?void 0:d.data)==null?void 0:l.success)||0)==0&&d.data.result&&(n.value=d.data.result)}).then(()=>{!a||(o=window.setTimeout(s,3e3))})};Ft(()=>{a=!0,o=window.setTimeout(s,1100)}),Gt(()=>{o!==void 0&&window.clearTimeout(o),a=!1});const c=()=>{Xp({url:n.value.ddnstoDomain})},f=R(()=>{const d=n.value.ipv4Domain;return!d||d=="Stopped"||d=="Disabled"?d:`http://${d}`}),p=R(()=>{const d=n.value.ipv6Domain;return!d||d=="Stopped"||d=="Disabled"?d:`http://${d}`});return(d,l)=>{var m,b,g,v;const u=X("GlHelp");return i(),r("div",Kp,[t("div",Qp,[t("span",null,[t7,D(u,{type:"ddns"})]),t("div",{class:"app-container_tool"},[t("div",{class:"app-container_configure",onClick:c},"\u5FEB\u901F\u914D\u7F6E")])]),t("ul",e7,[t("li",a7,[o7,t("div",n7,[(m=n.value)!=null&&m.ddnstoDomain?(i(),r("a",{key:0,class:"configure",href:(b=n.value)==null?void 0:b.ddnstoDomain,target:"_blank",rel:"noopener noreferrer",title:(g=n.value)==null?void 0:g.ddnstoDomain},h((v=n.value)==null?void 0:v.ddnstoDomain),9,i7)):(i(),r("span",r7,"\u672A\u5B89\u88C5\u6216\u672A\u914D\u7F6E")),s7])]),k(f)?(i(),r("li",d7,[u7,t("div",l7,[k(f)=="Stopped"||k(f)=="Disabled"?(i(),r("span",c7,h(k(f)),1)):(i(),r("a",{key:1,class:"configure",href:k(f),target:"_blank",rel:"noopener noreferrer"},h(k(f)),9,p7)),k(f)?(i(),r("a",f7,b7)):E("",!0)])])):E("",!0),k(p)?(i(),r("li",v7,[g7,t("div",_7,[k(p)=="Stopped"||k(p)=="Disabled"?(i(),r("span",h7,h(k(p)),1)):(i(),r("a",{key:1,class:"configure",href:k(p),target:"_blank",rel:"noopener noreferrer"},h(k(p)),9,x7)),k(p)?(i(),r("a",k7,y7)):E("",!0)])])):E("",!0)])])}}});var E7=Y(F7,[["__scopeId","data-v-2d533925"]]);const C7={class:"nas-container"},$7={class:"nas-container_card"},D7={class:"nas-container_card"},B7={key:0,class:"nas-container_card"},Y7={class:"nas-container_card"},A7={class:"nas-container_card"},S7=P({setup(e){return(a,o)=>(i(),r("div",C7,[t("div",$7,[D(t1)]),t("div",D7,[D(q2)]),k(qt)("dockerd")?(i(),r("div",B7,[D(l5)])):E("",!0),t("div",Y7,[D(j4)]),t("div",A7,[D(E7)])]))}});var z7=Y(S7,[["__scopeId","data-v-66cc4e33"]]);const _t=e=>(O("data-v-f3717996"),e=e(),N(),e),P7={class:"app-container"},T7={class:"app-container_title"},I7=_t(()=>t("span",null,"\u7CFB\u7EDF\u4FE1\u606F",-1)),L7={class:"more_icon",title:"\u67E5\u770B\u7CFB\u7EDF\u4FE1\u606F"},M7={class:"DeviceBlock"},O7=_t(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/flash"},"\u5907\u4EFD\u5347\u7EA7")],-1)),N7=_t(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/store/pages/maintance"},"\u63D2\u4EF6\u5907\u4EFD")],-1)),q7={class:"item-label"},V7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u6E29\u5EA6")],-1)),G7={class:"item-label_value"},j7={class:"item-label"},R7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u4F7F\u7528\u7387")],-1)),U7={class:"item-label_value"},W7={class:"item-label"},H7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u5B58\u4F7F\u7528\u7387")],-1)),Z7={class:"item-label_value"},J7={class:"item-label"},X7=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u8BBE\u5907\u578B\u53F7")],-1)),K7={class:"item-label_value"},Q7={class:"item-label"},tf=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u56FA\u4EF6\u7248\u672C")],-1)),ef={class:"item-label_value"},af={class:"item-label"},of=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u6838\u7248\u672C")],-1)),nf={class:"item-label_value"},rf={class:"item-label"},sf=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5DF2\u542F\u52A8")],-1)),df={class:"item-label_value"},uf={class:"item-label"},lf=_t(()=>t("div",{class:"item-label_key"},[t("span",null,"\u7CFB\u7EDF\u65F6\u95F4")],-1)),cf={class:"item-label_value"},pf=P({setup(e){const a=Ce(),o=R(()=>a.version),n=R(()=>a.systemStatus),s=y(!1),c=R(()=>{var m;return((m=n.value)==null?void 0:m.cpuUsage)||0}),f=R(()=>{var m;return((m=n.value)==null?void 0:m.cpuTemperature)||0}),p=R(()=>{var b;const m=((b=n.value)==null?void 0:b.memAvailablePercentage)||100;return 100-m}),d=yt.stampForm;Ft(()=>{});const l=()=>{s.value=!s.value},u=()=>{l(),ct.installAndGo("app-meta-netdata","NetData","/cgi-bin/luci/admin/status/netdata")};return(m,b)=>{var v,_,w,x,C;const g=X("progress-item");return i(),r("div",P7,[t("div",T7,[I7,t("span",L7,[D($t,{onClick:l})]),z(t("div",M7,[t("div",{class:"menu_background",onClick:l}),t("ul",null,[t("li",null,[t("a",{onClick:u},"\u7CFB\u7EDF\u76D1\u63A7")]),O7,N7])],512),[[wt,s.value]])]),t("div",q7,[V7,t("div",G7,[D(g,{value:k(f)/1.5,text:`${k(f)}\u2103`},null,8,["value","text"])])]),t("div",j7,[R7,t("div",U7,[D(g,{value:k(c),text:`${k(c)}%`},null,8,["value","text"])])]),t("div",W7,[H7,t("div",Z7,[D(g,{value:k(p),text:`${k(p)}%`},null,8,["value","text"])])]),t("div",J7,[X7,t("div",K7,[t("span",null,h((v=k(o))==null?void 0:v.model),1)])]),t("div",Q7,[tf,t("div",ef,[t("span",null,h((_=k(o))==null?void 0:_.firmwareVersion),1)])]),t("div",af,[of,t("div",nf,[t("span",null,h((w=k(o))==null?void 0:w.kernelVersion),1)])]),t("div",rf,[sf,t("div",df,[t("span",null,h(k(d)((x=k(n))==null?void 0:x.uptime)),1)])]),t("div",uf,[lf,t("div",cf,[t("span",null,h((C=k(n))==null?void 0:C.localtime),1)])])])}}});var ff=Y(pf,[["__scopeId","data-v-f3717996"]]);const ba=/\d+\.\d+\.\d+\.\d+/,mf=e=>ba.test(e)&&te.IPv4.isValid(e),Ct=e=>{const a=te.IPv4.parse(e).toByteArray();return a[0]<<24|a[1]<<16|a[2]<<8|a[3]},He=e=>te.fromByteArray([e>>24&255,e>>16&255,e>>8&255,e&255]).toString(),bf=e=>{if(!ba.test(e)||!te.IPv4.isIPv4(e))return!1;let a=0,o=Ct(e);for(let n=31;n>=0&&(o&1<{let s=Ct(e)&Ct(a),c=Ct(o),f=Ct(n),d=~Ct(a);return cs+1&&f{let o=Ct(a),n=Ct(e)&o,s=~o,c;return s>=105?(c=n|s-5,n=n|100):s>=3?(c=n|s-1,n=n|2):(n=n|1,c=n),[He(n),He(c)]},_f=e=>te.IPv4.subnetMaskFromPrefixLength(e).toString();var xt={isValidMask:bf,isValidIPv4:mf,isValidMaskRange:vf,calcMaskRange:gf,prefixToMask:_f};const mt=e=>(O("data-v-9cffddcc"),e=e(),N(),e),hf=["onSubmit"],xf=mt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u5185\u7F51\u914D\u7F6E")],-1)),kf={class:"actioner-dns_body"},wf={class:"label-item"},yf=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5730\u5740")],-1)),Ff={class:"label-item_value"},Ef={class:"label-item"},Cf=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5B50\u7F51\u63A9\u7801")],-1)),$f={class:"label-item_value"},Df={key:0,class:"chose_dhcp"},Bf={key:0,class:"dhcp_info"},Yf={key:1,class:"dhcp_info"},Af={class:"label-item"},Sf=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u8D77\u59CB\u5730\u5740")],-1)),zf={class:"label-item_value"},Pf={class:"label-item"},Tf=mt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u7ED3\u675F\u5730\u5740")],-1)),If={class:"label-item_value"},Lf={class:"actioner-dns_footer"},Mf=["disabled"],Of={key:1,class:"actioner-dns"},Nf=mt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u66F4\u6362\u914D\u7F6E")],-1)),qf={class:"actioner-dns_body"},Vf={key:0,class:"setting_status"},Gf=mt(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063181211",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5062",width:"128",height:"128"},[t("path",{d:"M512 85.333333c235.648 0 426.666667 191.018667 426.666667 426.666667s-191.018667 426.666667-426.666667 426.666667S85.333333 747.648 85.333333 512 276.352 85.333333 512 85.333333z m-74.965333 550.4L346.453333 545.152a42.666667 42.666667 0 1 0-60.330666 60.330667l120.704 120.704a42.666667 42.666667 0 0 0 60.330666 0l301.653334-301.696a42.666667 42.666667 0 1 0-60.288-60.330667l-271.530667 271.488z",fill:"#52C41A","p-id":"5063"})])],-1)),jf=mt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u6210\u529F",-1)),Rf=["href"],Uf={key:1,class:"setting_status"},Wf=mt(()=>t("div",{class:"success_icon"},[t("svg",{t:"1642063200324",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"5898",width:"128",height:"128"},[t("path",{d:"M549.044706 512l166.189176-166.249412a26.383059 26.383059 0 0 0 0-36.98447 26.383059 26.383059 0 0 0-37.044706 0L512 475.015529l-166.249412-166.249411a26.383059 26.383059 0 0 0-36.98447 0 26.383059 26.383059 0 0 0 0 37.044706L475.015529 512l-166.249411 166.249412a26.383059 26.383059 0 0 0 0 36.98447 26.383059 26.383059 0 0 0 37.044706 0L512 548.984471l166.249412 166.249411a26.383059 26.383059 0 0 0 36.98447 0 26.383059 26.383059 0 0 0 0-37.044706L548.984471 512zM512 1024a512 512 0 1 1 0-1024 512 512 0 0 1 0 1024z",fill:"#E84335","p-id":"5899"})])],-1)),Hf=mt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u5931\u8D25",-1)),Zf=mt(()=>t("p",null,"\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E",-1)),Jf={key:2,class:"setting_status"},Xf=mt(()=>t("div",{class:"success_icon"},[t("svg",{width:"128px",height:"128px",viewBox:"0 0 128 128",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},[t("g",{id:"icon_yellow",stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},[t("g",{id:"Icon/Warning"},[t("rect",{id:"\u77E9\u5F62",fill:"#000000","fill-rule":"nonzero",opacity:"0",x:"0",y:"0",width:"128",height:"128"}),t("path",{d:"M64,8 C33.075,8 8,33.075 8,64 C8,94.925 33.075,120 64,120 C94.925,120 120,94.925 120,64 C120,33.075 94.925,8 64,8 Z M60,37 C60,36.45 60.45,36 61,36 L67,36 C67.55,36 68,36.45 68,37 L68,71 C68,71.55 67.55,72 67,72 L61,72 C60.45,72 60,71.55 60,71 L60,37 Z M64,92 C60.6875,92 58,89.3125 58,86 C58,82.6875 60.6875,80 64,80 C67.3125,80 70,82.6875 70,86 C70,89.3125 67.3125,92 64,92 Z",id:"\u5F62\u72B6",fill:"#FAAD14"})])])])],-1)),Kf=mt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u8D85\u65F6",-1)),Qf=mt(()=>t("p",null,"\u8DEF\u7531\u5668 IP \u53EF\u80FD\u5DF2\u7ECF\u4FEE\u6539\u6210\u529F\u3002\u82E5\u5237\u65B0\u9875\u9762\u5931\u8D25\uFF0C\u8BF7\u91CD\u65B0\u8FDE\u63A5\u8DEF\u7531\u5668\uFF0C\u5426\u5219\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E\u3002",-1)),tm=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y({lanIp:"",netMask:"255.255.255.0",enableDhcp:!1,dhcpStart:"",dhcpEnd:""});y("");const s=y(!1);y(!0),y(!1);const c=y(""),f=y(2),p=y(!1),d=y("timeout");let l=!0;(()=>{S.Guide.GetLan.GET().then(_=>{_.data.result&&(p.value=_.data.result.enableDhcp||!1,_.data.result.enableDhcp=!1,n.value=_.data.result,_.data.result.lanIp!==location.hostname&&(l=!1))})})();const m=()=>{const _=n.value;if(!xt.isValidIPv4(_.lanIp)){F.Warning("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!xt.isValidMask(_.netMask)){F.Warning("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}const w=xt.calcMaskRange(_.lanIp,_.netMask);_.dhcpStart=w[0],_.dhcpEnd=w[1],n.value=_},b=()=>{const _=n.value;if(!xt.isValidIPv4(_.lanIp)){F.Warning("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!xt.isValidMask(_.netMask)){F.Warning("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}if(_.enableDhcp&&!(xt.isValidIPv4(_.dhcpStart)&&xt.isValidIPv4(_.dhcpEnd)&&xt.isValidMaskRange(_.lanIp,_.netMask,_.dhcpStart,_.dhcpEnd))){F.Warning("DHCP\u7684IP\u6C60\u683C\u5F0F\u9519\u8BEF\u6216\u8D85\u51FA\u5B50\u7F51\u8303\u56F4");return}const w=F.Loading("\u6B63\u5728\u914D\u7F6E\u2026\u8BF7\u7A0D\u7B49",30);let x=0;const C=B=>{d.value=B,o.value=1,x=1,w.Close()},A=()=>{const B=new Date().getTime()+3e4,$=l?location.protocol+"//"+_.lanIp+(location.port?":"+location.port:""):location.origin,q=$+"/luci-static/resources/icons/loading.gif",H=()=>{x==0&&(new Date().getTime()>B?C("timeout"):window.setTimeout(Z,2e3))},G=()=>{x==0&&(c.value=$+location.pathname,C("success"),window.setTimeout(()=>{f.value=1},1e3),window.setTimeout(()=>{location.href=c.value},2e3))},Z=()=>{if(x!=0)return;console.log("check online ",q);const ht=new Image;ht.onload=G,ht.onerror=H,ht.src=q};window.setTimeout(Z,5e3)};S.Guide.LanIp.POST(_).then(B=>{var $;if(B!=null&&B.data){if((B.data.success||0)==0)return;if(($=B.data)!=null&&$.error)throw B.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(B=>{x==0&&(C("fail"),F.Error(B))}),A(),window.setTimeout(()=>{x==0&&C("timeout")},3e4)},g=_=>{_.preventDefault(),a.Close&&a.Close()},v=_=>{location.reload()};return(_,w)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(b,["prevent"])},[xf,t("div",kf,[t("div",wf,[yf,t("div",Ff,[z(t("input",{type:"text",placeholder:"192.168.100.1",required:"","onUpdate:modelValue":w[0]||(w[0]=x=>n.value.lanIp=x),onChange:m},null,544),[[W,n.value.lanIp,void 0,{trim:!0}]])])]),t("div",Ef,[Cf,t("div",$f,[z(t("input",{type:"text",placeholder:"255.255.255.0",required:"","onUpdate:modelValue":w[1]||(w[1]=x=>n.value.netMask=x),onChange:m},null,544),[[W,n.value.netMask,void 0,{trim:!0}]])])]),p.value?(i(),r("div",Df,[D(ea,{modelValue:n.value.enableDhcp,"onUpdate:modelValue":w[2]||(w[2]=x=>n.value.enableDhcp=x)},{default:V(()=>[n.value.enableDhcp?(i(),r("span",Bf,"\u4FEE\u6539DHCP\u670D\u52A1")):(i(),r("span",Yf,"\u4FDD\u6301DHCP\u670D\u52A1\u8BBE\u7F6E"))]),_:1},8,["modelValue"])])):E("",!0),n.value.enableDhcp?(i(),r(L,{key:1},[t("div",Af,[Sf,t("div",zf,[z(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":w[3]||(w[3]=x=>n.value.dhcpStart=x)},null,512),[[W,n.value.dhcpStart,void 0,{trim:!0}]])])]),t("div",Pf,[Tf,t("div",If,[z(t("input",{type:"text",placeholder:"192.168.100.100",required:"","onUpdate:modelValue":w[4]||(w[4]=x=>n.value.dhcpEnd=x)},null,512),[[W,n.value.dhcpEnd,void 0,{trim:!0}]])])])],64)):E("",!0)]),t("div",Lf,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:s.value},"\u786E\u8BA4",8,Mf),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])],40,hf)):o.value==1?(i(),r("div",Of,[Nf,t("div",qf,[d.value=="success"?(i(),r("div",Vf,[Gf,jf,t("a",{href:c.value,class:"NewAdress"},h(f.value)+"s\u540E \u8DF3\u8F6C\u65B0\u5730\u5740",9,Rf)])):d.value=="fail"?(i(),r("div",Uf,[Wf,Hf,Zf,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:v},"\u6211\u77E5\u9053\u4E86")])):d.value=="timeout"?(i(),r("div",Jf,[Xf,Kf,Qf,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:v},"\u5237\u65B0\u9875\u9762")])):E("",!0)])])):E("",!0)]),_:1},8,["Close"]))}});var em=Y(tm,[["__scopeId","data-v-9cffddcc"]]);const am=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(em,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},bt=e=>(O("data-v-0384f3ac"),e=e(),N(),e),om={key:0,class:"actioner-dns"},nm=bt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),im={class:"actioner-dns_body"},rm=bt(()=>t("p",{class:"sandbox_info"},"\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4Docker\u548C\u786C\u76D8\u7684\u6570\u636E",-1)),sm={key:0,class:"disk_loading_icon"},dm=bt(()=>t("span",{class:"disk_loading_info"},"\u6B63\u5728\u52A0\u8F7D\u4E2D...",-1)),um={key:1,class:"disk_tips"},lm=bt(()=>t("span",null,"\u68C0\u6D4B\u4E0D\u5230\u6302\u8F7D\u7684\u78C1\u76D8\u4FE1\u606F\uFF0C\u8BF7\u5148\u63D2\u4E0A\u78C1\u76D8\uFF0C\u5EFA\u8BAE\u4F7F\u7528U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378",-1)),cm={class:"label-item"},pm=bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u78C1\u76D8\uFF08\u5EFA\u8BAE\u9009\u62E9U\u76D8\u6216\u8005\u79FB\u52A8\u786C\u76D8\uFF0C\u65B9\u4FBF\u88C5\u5378\uFF09")],-1)),fm={class:"label-item_value"},mm=bt(()=>t("option",{value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u78C1\u76D8",-1)),bm=["value"],vm={class:"label-item"},gm=bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A\uFF08\u5206\u533A\u5927\u5C0F\u987B\u5927\u4E8E2G\uFF0C\u5C06\u6B64\u5206\u533A\u4F5C\u4E3A\u5916\u90E8 overlay \u4F7F\u7528\uFF09")],-1)),_m={class:"label-item_value"},hm=bt(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u5206\u533A",-1)),xm=["value","disabled"],km={class:"sandbox_tips"},wm=bt(()=>t("span",null,"\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E",-1)),ym={class:"sandbox_info timeout"},Fm=U("\u5373\u5C06\u91CD\u542F\u8BBE\u5907 "),Em=bt(()=>t("p",{class:"sandbox_roboot_tips"},[U("\u7B49\u5F85\u8BBE\u5907\u91CD\u542F\uFF0C\u91CD\u542F\u5B8C\u6210\u540E"),t("span",{class:"sandbox_roboot_refresh"},"\u8BF7\u5237\u65B0\u754C\u9762")],-1)),Cm={key:0,class:"actioner-dns_footer"},$m=["disabled"],Dm={key:1,class:"actioner-tips"},Bm=bt(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u6E29\u99A8\u63D0\u793A")],-1)),Ym=bt(()=>t("div",{class:"actioner-tips_body"},[t("p",{class:"sandbox_info"},"\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E\uFF0C\u5E76\u683C\u5F0F\u5316\u6210EXT4\uFF0C\u968F\u540E\u81EA\u52A8\u91CD\u542F\u8FDB\u5165\u6C99\u7BB1\u6A21\u5F0F\uFF0C\u662F\u5426\u7EE7\u7EED\uFF1F")],-1)),Am={key:2,class:"actioner-tips"},Sm=bt(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u9519\u8BEF")],-1)),zm={class:"actioner-tips_body"},Pm={class:"sandbox_info"},Tm=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0);y("disk");const n=y(""),s=y(3),c=y(""),f=y([]),p=y(""),d=y(null);(()=>{S.Nas.SandboxDisks.GET().then(x=>{var C;if(x!=null&&x.data&&(C=x.data)!=null&&C.result){d.value=x.data.result;return}throw"\u52A0\u8F7D\u78C1\u76D8\u4FE1\u606F\u5931\u8D25"}).catch(x=>{n.value=x,o.value=3})})();const u=()=>S.System.Reboot.POST({name:c.value,path:p.value}).then(x=>{var C;if(!(x!=null&&x.data&&(((C=x==null?void 0:x.data)==null?void 0:C.success)||0)==0))throw"\u672A\u77E5\u9519\u8BEF"}),m=x=>{var C,A;p.value="",f.value=c.value&&((A=(C=d.value)==null?void 0:C.disks.find(B=>B.path==c.value))==null?void 0:A.childrens)||[]},b=()=>{s.value>0&&(s.value-=1,window.setTimeout(b,1e3))},g=x=>{x.preventDefault(),a.Close&&a.Close()},v=()=>{new Promise((x,C)=>{const A="/luci-static/resources/icons/loading.gif",B=()=>{window.setTimeout($,2e3)},$=()=>{const q=new Image;q.onload=x,q.onerror=B,q.src=A};window.setTimeout($,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},_=x=>{const C=F.Loading("\u914D\u7F6E\u6C99\u7BB1\u91CD\u542F\u4E2D...");S.Nas.Sandbox.POST({path:p.value}).then(A=>{var B;if(A!=null&&A.data){if((A.data.success||0)==0)return o.value=2,window.setTimeout(b,1e3),u();if((B=A.data)!=null&&B.error)throw A.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).then(v).catch(A=>F.Warning(A)).finally(()=>C.Close())},w=()=>{o.value=0};return(x,C)=>{const A=X("icon-loading");return i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0||o.value==2?(i(),r("div",om,[nm,t("div",im,[rm,o.value==0?(i(),r(L,{key:0},[d.value?E("",!0):(i(),r("div",sm,[D(A,{size:38,color:"currentColor"}),dm])),d.value&&d.value.disks.length==0?(i(),r("div",um,[D(gt),lm])):E("",!0),d.value&&d.value.disks.length>0?(i(),r(L,{key:2},[t("div",cm,[pm,t("div",fm,[z(t("select",{name:"",id:"",onChange:m,"onUpdate:modelValue":C[0]||(C[0]=B=>c.value=B)},[mm,(i(!0),r(L,null,j(d.value.disks,(B,$)=>(i(),r("option",{value:B.path,key:$},h(B.venderModel)+"\uFF08"+h(B.size)+"\uFF09 ",9,bm))),128))],544),[[Q,c.value]])])]),t("div",vm,[gm,t("div",_m,[z(t("select",{name:"",id:"","onUpdate:modelValue":C[1]||(C[1]=B=>p.value=B)},[hm,(i(!0),r(L,null,j(f.value,(B,$)=>(i(),r("option",{value:B.path,key:$,disabled:B.sizeInt<(1<<30)*1||B.isSystemRoot},h(B.name)+"\uFF08"+h(B.filesystem||"\u672A\u683C\u5F0F\u5316")+"\uFF09"+h(B.total),9,xm))),128))],512),[[Q,p.value]])])]),t("div",km,[D(gt),wm])],64)):E("",!0)],64)):E("",!0),o.value==2?(i(),r(L,{key:1},[t("p",ym,[Fm,t("span",null,"\uFF08"+h(s.value)+"s\uFF09",1)]),Em],64)):E("",!0)]),o.value==0?(i(),r("div",Cm,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:!p.value,onClick:C[2]||(C[2]=B=>o.value=1)},"\u5F00\u542F\u6C99\u7BB1",8,$m),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])):E("",!0)])):E("",!0),o.value==1?(i(),r("div",Dm,[Bm,Ym,t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:_},"\u7EE7\u7EED"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},"\u53D6\u6D88")])])):E("",!0),o.value==3?(i(),r("div",Am,[Sm,t("div",zm,[t("p",Pm,h(n.value),1)]),t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:w},"\u53D6\u6D88")])])):E("",!0)]),_:1},8,["Close"])}}});var Im=Y(Tm,[["__scopeId","data-v-0384f3ac"]]);const Lm=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Im,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},va=e=>(O("data-v-4db2efb4"),e=e(),N(),e),Mm={key:0,class:"actioner-dns"},Om=va(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),Nm=va(()=>t("div",{class:"actioner-dns_body"},[t("p",{class:"sandbox_info"},"\u4E00\u4E2A\u7B80\u6613\u6C99\u7BB1\uFF0C\u65B9\u4FBF\u7528\u6765\u5B9E\u9A8C\u7CFB\u7EDF\u914D\u7F6E\u548C\u7A0B\u5E8F\uFF0C\u65B9\u4FBF\u5F00\u53D1\u672A\u5B8C\u6210\u7684\u8F6F\u4EF6\uFF0C\u4F46\u4E0D\u4FDD\u62A4 Docker \u548C\u786C\u76D8\u7684\u6570\u636E"),t("div",{class:"sandbox_environment"},[t("p",null,"\u5F53\u524D\u5904\u4E8E\u6C99\u7BB1\u73AF\u5883\uFF1A"),t("p",null,"1\u3001\u70B9\u51FB\u201C\u63D0\u4EA4\u201D\u53EF\u5C06\u53D8\u66F4\u5408\u5E76\u5230\u975E\u6C99\u7BB1\u73AF\u5883"),t("p",null,"2\u3001\u70B9\u51FB\u201C\u91CD\u7F6E\u201D\u53EF\u5C06\u6C99\u7BB1\u6062\u590D\u5230\u521D\u59CB\u72B6\u6001"),t("p",null,"3\u3001\u70B9\u51FB\u201C\u9000\u51FA\u201D\u53EF\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u5E76\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E")]),t("div",{class:"sandbox_environment_info"},[U("\u4EE5\u4E0A\u64CD\u4F5C\u90FD\u5C06\u91CD\u542F\u8BBE\u5907\uFF0C\u8BBE\u5907\u91CD\u542F\u5B8C\u6210\u540E\u4F1A\u81EA\u52A8\u5237\u65B0\u9875\u9762\u3002\u5982\u679C IP \u53D8\u5316\u53EF\u80FD\u9700\u8981"),t("span",{class:"sandbox_environment_reboot"},"\u624B\u52A8\u5728\u5730\u5740\u680F\u8F93\u5165\u5730\u5740"),t("p",{class:"sandbox_environment_tex"},[U(" \u5982\u9700"),t("b",null,"\u4E34\u65F6"),U("\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\uFF0C\u8BF7\u5C06\u8BBE\u5907\u5173\u673A\u540E\u62D4\u51FA\u76F8\u5173\u78C1\u76D8\uFF0C\u542F\u52A8\u524D\u63D2\u5165\u76F8\u5173\u78C1\u76D8\u53EF\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u3002"),t("br"),U(" \u6CE8\u610F\u4E34\u65F6\u9000\u51FA\u6C99\u7BB1\u73AF\u5883\u4EE5\u540E\u5347\u7EA7\u56FA\u4EF6\u4F1A\u5BFC\u81F4\u4E4B\u524D\u7684\u6C99\u7BB1\u6570\u636E\u65E0\u6548 ")])])],-1)),qm={class:"actioner-dns_footer"},Vm=["disabled"],Gm=["disabled"],jm=["disabled"],Rm=P({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y(!1),s=()=>{new Promise((l,u)=>{const m="/luci-static/resources/icons/loading.gif",b=()=>{window.setTimeout(g,2e3)},g=()=>{const v=new Image;v.onload=l,v.onerror=b,v.src=m};window.setTimeout(g,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},c=()=>{n.value=!0;const l=F.Loading("\u63D0\u4EA4\u4E2D...");S.Nas.SandboxCommit.POST().then(u=>{var m,b;if(u!=null&&u.data)if((((m=u==null?void 0:u.data)==null?void 0:m.success)||0)==0){F.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D...");return}else(b=u==null?void 0:u.data)!=null&&b.error&&alert(u.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(u=>{F.Error(u),n.value=!1}).finally(()=>l.Close())},f=()=>{n.value=!0;const l=F.Loading("\u91CD\u7F6E\u4E2D...");S.Nas.SandboxReset.POST().then(u=>{var m,b;if(u!=null&&u.data)if((((m=u==null?void 0:u.data)==null?void 0:m.success)||0)==0){F.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740");return}else(b=u==null?void 0:u.data)!=null&&b.error&&alert(u.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(u=>{F.Error(u),n.value=!1}).finally(()=>l.Close())},p=()=>{if(!confirm("\u786E\u5B9A\u653E\u5F03\u6C99\u7BB1\u4E2D\u7684\u6570\u636E\uFF1F\u518D\u6B21\u8FDB\u5165\u6C99\u7BB1\u9700\u8981\u91CD\u65B0\u683C\u5F0F\u5316\u76F8\u5E94\u78C1\u76D8\u5206\u533A"))return;n.value=!0;const l=F.Loading("\u6267\u884C\u4E2D...");S.Nas.SandboxExit.POST().then(u=>{var m,b;if(u!=null&&u.data)if((((m=u==null?void 0:u.data)==null?void 0:m.success)||0)==0){F.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D... \u82E5\u9875\u9762\u957F\u65F6\u95F4\u672A\u5237\u65B0\u53EF\u80FD\u9700\u8981\u624B\u52A8\u586B\u5199\u5730\u5740");return}else(b=u==null?void 0:u.data)!=null&&b.error&&alert(u.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(u=>{F.Error(u),n.value=!1}).finally(()=>l.Close())},d=l=>{l.preventDefault(),a.Close&&a.Close()};return(l,u)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[o.value==0?(i(),r("div",Mm,[Om,Nm,t("div",qm,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:c,disabled:n.value},"\u63D0\u4EA4",8,Vm),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:f,disabled:n.value},"\u91CD\u7F6E",8,Gm),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:p,disabled:n.value},"\u9000\u51FA",8,jm),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u53D6\u6D88")])])):E("",!0)]),_:1},8,["Close"]))}});var Um=Y(Rm,[["__scopeId","data-v-4db2efb4"]]);const Wm=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Um,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},Hm={class:"nav-container"},Zm=["onClick"],Jm={key:1,class:"btn_styles color3 app-update-button",onclick:"window.location.href='/cgi-bin/luci/admin/system/ota'"},Xm=U(" \u56FA\u4EF6\u66F4\u65B0 "),Km={key:0,style:{display:"inline-block"}},Qm={key:1},t9=["disabled"],e9=U(" DNS\u914D\u7F6E "),a9={key:0,style:{display:"inline-block"}},o9=P({setup(e){const a=Ce(),o=le(),n=R(()=>o.status);y(!1),y(!0);const s=y(),c=()=>{oa()},f=()=>{Lm()},p=()=>{Wm()},d=()=>{alert("\u8BE5\u56FA\u4EF6\u4E0D\u652F\u6301\u6C99\u7BB1\u6A21\u5F0F")},l=()=>{am()},u=()=>{ra()},m=()=>{var b,g,v,_;window.open(`${(g=(b=window.quickstart_configs)==null?void 0:b.ttyd)!=null&&g.ssl?"https":"http"}://${window.location.hostname}:${((_=(v=window.quickstart_configs)==null?void 0:v.ttyd)==null?void 0:_.port)||7681}/`,"_blank")};return qt("sandbox")&&S.Nas.GetSandbox.GET().then(g=>{var v,_,w;g!=null&&g.data&&((((v=g==null?void 0:g.data)==null?void 0:v.success)||0)==0?(_=g==null?void 0:g.data)!=null&&_.result&&(s.value=g.data.result):(w=g==null?void 0:g.data)!=null&&w.error&&alert(g.data.error))}).catch(g=>F.Warning(g)),(b,g)=>{var w,x,C,A,B,$;const v=X("router-link"),_=X("icon-loading");return i(),r("div",Hm,[D(v,{to:"/network",custom:""},{default:V(({navigate:q})=>[t("button",{class:"btn_styles color1",onClick:q},"\u7F51\u7EDC\u5411\u5BFC",8,Zm)]),_:1}),k(qt)("ttyd")?(i(),r("button",{key:0,class:"btn_styles color2 app-btn-ttyd",onClick:m},"\u7EC8\u7AEF")):E("",!0),k(qt)("ota")?(i(),r("button",Jm,[Xm,k(a).checkUpdate==null?(i(),r("span",Km,[D(_,{size:"0.8em",color:"currentColor"})])):(w=k(a).checkUpdate)!=null&&w.needUpdate?(i(),r("i",Qm)):E("",!0)])):E("",!0),t("button",{class:"btn_styles color4",onClick:l},"\u5185\u7F51\u914D\u7F6E"),t("button",{class:"btn_styles color5",onClick:c,disabled:!((x=k(n))!=null&&x.proto)},[e9,(C=k(n))!=null&&C.proto?E("",!0):(i(),r("span",a9,[D(_,{size:"0.8em",color:"currentColor"})]))],8,t9),t("button",{class:"btn_styles color1",onClick:u},"\u8F6F\u4EF6\u6E90\u914D\u7F6E"),k(qt)("sandbox")?(i(),r(L,{key:2},[((A=s.value)==null?void 0:A.status)=="unsupport"?(i(),r("button",{key:0,class:"btn_styles color2",onClick:d},"\u5F00\u542F\u6C99\u7BB1")):((B=s.value)==null?void 0:B.status)=="stopped"?(i(),r("button",{key:1,class:"btn_styles color3",onClick:f},"\u5F00\u542F\u6C99\u7BB1")):(($=s.value)==null?void 0:$.status)=="running"?(i(),r("button",{key:2,class:"btn_styles color4",onClick:p},"\u6C99\u7BB1\u5DF2\u5F00\u542F")):E("",!0)],64)):E("",!0)])}}});var n9=Y(o9,[["__scopeId","data-v-0d223b54"]]);const _e=e=>(O("data-v-08ce2a3e"),e=e(),N(),e),i9={id:"page"},r9=_e(()=>t("div",{style:{height:"48px","text-align":"right"}},[t("a",{onclick:"void(0)",href:"https://www.istoreos.com/",target:"_blank",style:{"text-decoration":"none",color:"white","line-height":"1.5em"}},"iStoreOS\u5B98\u7F51")],-1)),s9=_e(()=>t("em",null,null,-1)),d9=_e(()=>t("em",null,null,-1)),u9=_e(()=>t("em",null,null,-1)),l9=P({setup(e){return to(),(a,o)=>(i(),r("div",i9,[r9,D(t0),s9,D(n9),D(z7),d9,D(ff),u9]))}});var c9=Y(l9,[["__scopeId","data-v-08ce2a3e"]]);const p9={};function f9(e,a){const o=X("router-view");return i(),M(o)}var m9=Y(p9,[["render",f9]]);const b9={},v9={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},g9=It('icon_router',3),_9=[g9];function h9(e,a){return i(),r("svg",v9,_9)}var x9=Y(b9,[["render",h9]]);const k9={},w9={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},y9=It('icon_dial',3),F9=[y9];function E9(e,a){return i(),r("svg",w9,F9)}var C9=Y(k9,[["render",E9]]);const $9={},D9={width:"136px",height:"136px",viewBox:"0 0 136 136",version:"1.1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"},B9=It('icon_side router',3),Y9=[B9];function A9(e,a){return i(),r("svg",D9,Y9)}var S9=Y($9,[["render",A9]]);const Wt=e=>(O("data-v-082ffcaf"),e=e(),N(),e),z9={id:"page"},P9=Wt(()=>t("div",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528\u7F51\u7EDC\u914D\u7F6E\u5411\u5BFC",-1)),T9=Wt(()=>t("div",{class:"desc"},"\u9009\u62E9\u4E00\u79CD\u8FDE\u63A5\u65B9\u5F0F\u4EE5\u5F00\u59CB",-1)),I9={class:"network-containers"},L9={class:"network-container_item"},M9={class:"cover"},O9={class:"thumbnail"},N9=Wt(()=>t("span",null,"\u5BBD\u5E26\u62E8\u53F7\u8FDE\u63A5",-1)),q9={class:"network-container_item"},V9={class:"cover"},G9={class:"thumbnail"},j9=Wt(()=>t("span",null,"\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668",-1)),R9={class:"network-container_item"},U9={class:"cover"},W9={class:"thumbnail"},H9=Wt(()=>t("span",null,"\u914D\u7F6E\u4E3A\u65C1\u8DEF\u7531",-1)),Z9=Wt(()=>t("div",{class:"info"},[U(" \u6CA1\u627E\u5230\u60F3\u8981\u7684\u914D\u7F6E\uFF1F\u8BF7\u4F7F\u7528 "),t("a",{href:"/cgi-bin/luci/admin/network/network"},"\u9AD8\u7EA7\u6A21\u5F0F")],-1)),J9=P({setup(e){return(a,o)=>{const n=X("router-link");return i(),r("div",z9,[P9,T9,t("div",I9,[t("div",L9,[D(n,{to:"/network/pppoe"},{default:V(()=>[t("div",M9,[t("div",O9,[D(C9),N9])])]),_:1})]),t("div",q9,[D(n,{to:"/network/dhcp"},{default:V(()=>[t("div",V9,[t("div",G9,[D(x9),j9])])]),_:1})]),t("div",R9,[D(n,{to:"/network/gateway"},{default:V(()=>[t("div",U9,[t("div",W9,[D(S9),H9])])]),_:1})])]),Z9])}}});var X9=Y(J9,[["__scopeId","data-v-082ffcaf"]]);const At=e=>(O("data-v-16746f19"),e=e(),N(),e),K9={key:0,id:"page"},Q9=At(()=>t("h2",{class:"title"},"\u914D\u7F6E\u5BBD\u5E26\u8D26\u53F7",-1)),tb=At(()=>t("h3",{class:"desc"},"\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u5149\u732B",-1)),eb={class:"network-message"},ab={key:0},ob=U(" \u56E0\u4E3A\u60A8\u7684\u8BBE\u5907"),nb=At(()=>t("span",null,"\u6CA1\u6709 WAN \u53E3",-1)),ib=U("\uFF0C\u65E0\u6CD5\u8D70\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B "),rb=At(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/question.html#%E7%BD%91%E7%BB%9C",target:"_blank",rel:"noopener noreferrer"},"\u94FE\u63A5",-1)),sb=[ob,nb,ib,rb],db=["onSubmit"],ub=At(()=>t("div",{class:"label-key"},[t("span",null,"\u5BBD\u5E26\u8D26\u53F7")],-1)),lb=["disabled"],cb=At(()=>t("div",{class:"label-key"},[t("span",null,"\u5BC6\u7801")],-1)),pb=["disabled"],fb={key:0,class:"chose_dhcp"},mb=At(()=>t("span",{class:"dhcp_info"},"\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09",-1)),bb={key:1,class:"msg"},vb={class:"btns"},gb=["disabled"],_b=["onClick"],hb={key:1,id:"page"},xb=At(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),kb={class:"btns"},wb=["onClick"],yb=["onClick"],Fb=P({setup(e){const a=y(0),o=y({}),n=y(""),s=y(!1),c=y(0),f=y(!1);(()=>T(this,null,function*(){var l,u;s.value=!0;try{const m=yield Promise.all([S.Guide.Pppoe.GET(),S.Guide.GetLan.GET()]);if(m[0].data){const{success:b,error:g,result:v}=m[0].data;v&&(v.enableLanDhcp=!1,o.value=v),b==-1011&&(s.value=!0,c.value=b)}(l=m[1].data)!=null&&l.result&&(((u=m[1].data)==null?void 0:u.result).enableDhcp||(f.value=!0,o.value.enableLanDhcp=!0))}catch(m){n.value=m}c.value==0&&(s.value=!1)}))();const d=()=>T(this,null,function*(){const l=o.value.account||"",u=o.value.password||"";if(l==""){n.value="\u8D26\u53F7\u4E0D\u80FD\u4E3A\u7A7A";return}if(u==""){n.value="\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A";return}s.value=!0;const m=F.Loading("\u914D\u7F6E\u4E2D...");try{const b=yield S.Guide.Pppoe.POST({account:l,password:u});if(b!=null&&b.data){const{error:g,success:v}=b.data;g&&(n.value=g),(v==null||v==0)&&(F.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(b){n.value=b}s.value=!1,m.Close()});return(l,u)=>{const m=X("switch-box"),b=X("router-link");return a.value==0?(i(),r("div",K9,[Q9,tb,t("div",eb,[c.value==-1011?(i(),r("li",ab,sb)):E("",!0)]),t("form",{onSubmit:nt(d,["prevent"])},[t("label",null,[ub,z(t("input",{type:"text","onUpdate:modelValue":u[0]||(u[0]=g=>o.value.account=g),placeholder:"\u5BBD\u5E26\u8D26\u53F7",required:"",disabled:s.value},null,8,lb),[[W,o.value.account,void 0,{trim:!0}]])]),t("label",null,[cb,z(t("input",{type:"password","onUpdate:modelValue":u[1]||(u[1]=g=>o.value.password=g),placeholder:"\u5BBD\u5E26\u5BC6\u7801",required:"",disabled:s.value},null,8,pb),[[W,o.value.password,void 0,{trim:!0}]])]),f.value?(i(),r("div",fb,[D(m,{modelValue:o.value.enableLanDhcp,"onUpdate:modelValue":u[2]||(u[2]=g=>o.value.enableLanDhcp=g)},{default:V(()=>[mb]),_:1},8,["modelValue"])])):E("",!0),n.value?(i(),r("div",bb,h(n.value),1)):E("",!0),t("div",vb,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},"\u4FDD\u5B58\u914D\u7F6E",8,gb),D(b,{to:"/network",custom:""},{default:V(({navigate:g})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u8FD4\u56DE",8,_b)]),_:1})])],40,db)])):a.value==1?(i(),r("div",hb,[xb,t("div",kb,[D(b,{to:"/",custom:""},{default:V(({navigate:g})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:g},"\u8FDB\u5165\u63A7\u5236\u53F0",8,wb)]),_:1}),D(b,{to:"/network",custom:""},{default:V(({navigate:g})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u8FD4\u56DE",8,yb)]),_:1})])])):E("",!0)}}});var Eb=Y(Fb,[["__scopeId","data-v-16746f19"]]);const st=e=>(O("data-v-0d3a64fa"),e=e(),N(),e),Cb={key:0,id:"page"},$b=st(()=>t("h2",{class:"title"},"\u914D\u7F6E\u4E92\u8054\u7F51",-1)),Db=st(()=>t("h3",{class:"desc"},"\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u4E0A\u7EA7\u8DEF\u7531\u5C40\u57DF\u7F51\uFF08 LAN \uFF09\u63A5\u53E3",-1)),Bb={class:"network-message"},Yb={key:0},Ab=U(" \u56E0\u4E3A\u60A8\u7684\u8BBE\u5907"),Sb=st(()=>t("span",null,"\u6CA1\u6709 WAN \u53E3",-1)),zb=U("\uFF0C\u65E0\u6CD5\u4F7F\u7528\u672C\u8BBE\u7F6E\u5411\u5BFC\uFF0C\u5177\u4F53\u8BF7\u770B "),Pb=st(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/question.html#%E7%BD%91%E7%BB%9C",target:"_blank",rel:"noopener noreferrer"},"\u94FE\u63A5",-1)),Tb=[Ab,Sb,zb,Pb],Ib=["onSubmit"],Lb=st(()=>t("div",{class:"label-key"},[t("span",null,"WAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),Mb=st(()=>t("option",{value:"dhcp"},"\u81EA\u52A8\u83B7\u53D6IP\u5730\u5740\uFF08DHCP\uFF09",-1)),Ob=st(()=>t("option",{value:"static"},"\u9759\u6001IP\u5730\u5740",-1)),Nb=[Mb,Ob],qb=st(()=>t("div",{class:"label-key"},[t("span",null,"IP\u5730\u5740")],-1)),Vb=["disabled"],Gb={key:0,class:"msg"},jb=st(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),Rb=["disabled"],Ub={key:1,class:"msg"},Wb=st(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),Hb=["disabled"],Zb=st(()=>t("div",{class:"label-key"},[t("span",null,"DNS \u914D\u7F6E\u65B9\u5F0F")],-1)),Jb=["disabled"],Xb=st(()=>t("option",{value:"manual"},"\u624B\u5DE5\u914D\u7F6E",-1)),Kb=st(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),Qb=["onUpdate:modelValue","disabled"],tv=st(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),ev=["disabled"],av=st(()=>t("div",{class:"label-key"},"\u5907\u7528DNS\u670D\u52A1\u5668",-1)),ov=["disabled"],nv={key:2,class:"chose_dhcp"},iv=st(()=>t("span",{class:"dhcp_info"},"\u542F\u7528LAN\u53E3DHCP\u670D\u52A1\uFF08\u7528\u4E8E\u4ECE\u65C1\u8DEF\u7531\u6A21\u5F0F\u6062\u590D\u6210\u9ED8\u8BA4\u72B6\u6001\uFF09",-1)),rv={key:3,class:"msgs"},sv={class:"btns"},dv=["disabled"],uv=["onClick"],lv={key:1,id:"page"},cv=st(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),pv={class:"btns"},fv=["onClick"],mv=["onClick"],bv=P({setup(e){const a=y(0),o=y({}),n=y(""),s=y(""),c=y(""),f=y(!1),p=y(""),d=y(""),l=y(0),u=yt.checkIsIP,m=y(!1);(()=>T(this,null,function*(){var x,C;f.value=!0;try{const A=yield Promise.all([S.Guide.ClientModel.GET(),S.Guide.GetLan.GET()]);if(A[0]){const B=A[0];if(B.data){const{success:$,error:q,result:H}=B.data;H&&(H.wanProto!="dhcp"&&H.wanProto!="static"&&(H.wanProto="dhcp",H.dnsProto="auto"),H.enableLanDhcp=!1,o.value=H),$==-1011&&(l.value=$,f.value=!0)}}(x=A[1].data)!=null&&x.result&&(((C=A[1].data)==null?void 0:C.result).enableDhcp||(m.value=!0,o.value.enableLanDhcp=!0))}catch(A){n.value=A}l.value==0&&(f.value=!1)}))();const g=x=>{x.target.value=="static"?((o.value.staticIp==null||o.value.staticIp=="")&&(o.value.staticIp="192.168.1.100"),(o.value.subnetMask==null||o.value.subnetMask=="")&&(o.value.subnetMask="255.255.255.0"),o.value.dnsProto=="auto"&&setTimeout(()=>o.value.dnsProto="manual",0)):o.value.dnsProto=="manual"&&setTimeout(()=>o.value.dnsProto="auto",0)},v=x=>{const C=x.target;if(C.value==""){p.value="";return}u(C.value)?p.value="":p.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684IP\u5730\u5740"},_=x=>{const C=x.target;if(C.value==""){d.value="";return}u(C.value)?d.value="":d.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684\u5730\u5740"},w=()=>T(this,null,function*(){const x={};switch(o.value.wanProto){case"dhcp":break;case"static":x.staticIp=o.value.staticIp,x.subnetMask=o.value.subnetMask,x.gateway=o.value.gateway;break}switch(o.value.dnsProto){case"auto":break;case"manual":x.manualDnsIp=[],o.value.manualDnsIp!=null&&o.value.manualDnsIp.length>0?x.manualDnsIp=o.value.manualDnsIp:(x.manualDnsIp.push(s.value),c.value&&x.manualDnsIp.push(c.value));break}x.dnsProto=o.value.dnsProto,x.wanProto=o.value.wanProto,x.enableLanDhcp=o.value.enableLanDhcp;const C=F.Loading("\u914D\u7F6E\u4E2D....");f.value=!0;try{const A=yield S.Guide.ClientModel.POST(x);if(A!=null&&A.data){const{success:B,error:$}=A==null?void 0:A.data;$&&(n.value=$),(B==null||B==0)&&(F.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(A){n.value=A}f.value=!1,C.Close()});return(x,C)=>{const A=X("switch-box"),B=X("router-link");return a.value==0?(i(),r("div",Cb,[$b,Db,t("div",Bb,[l.value==-1011?(i(),r("li",Yb,Tb)):E("",!0)]),t("form",{onSubmit:nt(w,["prevent"])},[t("label",null,[Lb,z(t("select",{"onUpdate:modelValue":C[0]||(C[0]=$=>o.value.wanProto=$),onInput:g},Nb,544),[[Q,o.value.wanProto]])]),o.value.wanProto=="static"?(i(),r(L,{key:0},[t("label",null,[qb,z(t("input",{type:"text","onUpdate:modelValue":C[1]||(C[1]=$=>o.value.staticIp=$),placeholder:"\u9759\u6001IP\u5730\u5740",required:"",disabled:f.value,onInput:v},null,40,Vb),[[W,o.value.staticIp,void 0,{trim:!0}]])]),p.value?(i(),r("p",Gb,h(p.value),1)):E("",!0),t("label",null,[jb,z(t("input",{type:"text","onUpdate:modelValue":C[2]||(C[2]=$=>o.value.subnetMask=$),placeholder:"\u5B50\u7F51\u63A9\u7801",required:"",disabled:f.value,onInput:_},null,40,Rb),[[W,o.value.subnetMask,void 0,{trim:!0}]])]),d.value?(i(),r("p",Ub,h(d.value),1)):E("",!0),t("label",null,[Wb,z(t("input",{type:"text","onUpdate:modelValue":C[3]||(C[3]=$=>o.value.gateway=$),placeholder:"\u7F51\u5173\u5730\u5740",required:"",disabled:f.value},null,8,Hb),[[W,o.value.gateway,void 0,{trim:!0}]])])],64)):E("",!0),t("label",null,[Zb,z(t("select",{"onUpdate:modelValue":C[4]||(C[4]=$=>o.value.dnsProto=$)},[t("option",{value:"auto",disabled:o.value.wanProto=="static"},"\u81EA\u52A8\u83B7\u53D6\uFF08DHCP\uFF09",8,Jb),Xb],512),[[Q,o.value.dnsProto]])]),o.value.dnsProto=="manual"?(i(),r(L,{key:1},[o.value.manualDnsIp!=null&&o.value.manualDnsIp.length>0?(i(!0),r(L,{key:0},j(o.value.manualDnsIp,($,q)=>(i(),r("label",null,[Kb,z(t("input",{type:"text","onUpdate:modelValue":H=>o.value.manualDnsIp[q]=H,placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:f.value},null,8,Qb),[[W,o.value.manualDnsIp[q],void 0,{trim:!0}]])]))),256)):(i(),r(L,{key:1},[t("label",null,[tv,z(t("input",{type:"text","onUpdate:modelValue":C[5]||(C[5]=$=>s.value=$),placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:f.value},null,8,ev),[[W,s.value,void 0,{trim:!0}]])]),t("label",null,[av,z(t("input",{type:"text","onUpdate:modelValue":C[6]||(C[6]=$=>c.value=$),placeholder:"\u5907\u7528DNS\u670D\u52A1\u5668",disabled:f.value},null,8,ov),[[W,c.value,void 0,{trim:!0}]])])],64))],64)):E("",!0),m.value?(i(),r("div",nv,[D(A,{modelValue:o.value.enableLanDhcp,"onUpdate:modelValue":C[7]||(C[7]=$=>o.value.enableLanDhcp=$)},{default:V(()=>[iv]),_:1},8,["modelValue"])])):E("",!0),n.value?(i(),r("div",rv,h(n.value),1)):E("",!0),t("div",sv,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:f.value},"\u4FDD\u5B58\u914D\u7F6E",8,dv),D(B,{to:"/network",custom:""},{default:V(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,uv)]),_:1})])],40,Ib)])):a.value==1?(i(),r("div",lv,[cv,t("div",pv,[D(B,{to:"/",custom:""},{default:V(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:$},"\u8FDB\u5165\u63A7\u5236\u53F0",8,fv)]),_:1}),D(B,{to:"/network",custom:""},{default:V(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,mv)]),_:1})])])):E("",!0)}}});var vv=Y(bv,[["__scopeId","data-v-0d3a64fa"]]);const dt=e=>(O("data-v-f4dbbdaa"),e=e(),N(),e),gv={key:0,id:"page"},_v=dt(()=>t("h2",{class:"title"},"\u65C1\u8DEF\u7531\u914D\u7F6E\u524D\u7684\u51C6\u5907\u5DE5\u4F5C",-1)),hv=dt(()=>t("code",null,[U(" \u65C1\u8DEF\u7531\u6A21\u5F0F\uFF0C\u4E5F\u53EB\u5355\u81C2\u8DEF\u7531\u6A21\u5F0F\u3002 "),t("br"),U("\u60A8\u53EF\u4EE5\u7528\u4E0A\u4E00\u7EA7\u8DEF\u7531\uFF08\u4E3B\u8DEF\u7531\uFF09\u62E8\u53F7\uFF0C\u7136\u540E\u7528\u672C\u8DEF\u7531\u6765\u5B9E\u73B0\u4E00\u4E9B\u9AD8\u7EA7\u529F\u80FD\u3002 "),t("br"),U("\u672C\u5411\u5BFC\u652F\u6301\u81EA\u52A8\u6216\u624B\u52A8\u914D\u7F6E\uFF1A "),t("br"),U("\u70B9\u51FB\u201C\u81EA\u52A8\u914D\u7F6E\u201D\u6309\u94AE\u5F00\u59CB\u81EA\u52A8\u914D\u7F6E\u5411\u5BFC\uFF1B "),t("br"),U("\u624B\u52A8\u914D\u7F6E\u5219\u9700\u81EA\u884C\u83B7\u53D6\u4E3B\u8DEF\u7531\u5668\u7684IP\u5730\u5740\uFF08\u4F8B\u5982 192.168.2.1 \uFF09\u548C\u5B50\u7F51\u63A9\u7801\uFF0C\u8BB0\u5F55\u4EE5\u5907\u540E\u7EED\u586B\u5199\uFF0C\u70B9\u51FB\u201C\u624B\u52A8\u914D\u7F6E\u201D\u6309\u94AE\uFF0C\u5207\u6362\u5230\u53C2\u6570\u914D\u7F6E\u9875\uFF0C\u6309\u5B9E\u9645\u60C5\u51B5\u81EA\u884C\u586B\u5199\u3002 ")],-1)),xv={class:"btns"},kv=["onClick"],wv={key:1,id:"page"},yv=dt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u65C1\u8DEF\u7531\u7F51\u7EDC",-1)),Fv=dt(()=>t("h3",{class:"desc"},"\u73B0\u5728\uFF0C\u8BF7\u4F60\u914D\u7F6E\u65C1\u8DEF\u7531\u4FE1\u606F",-1)),Ev=["onSubmit"],Cv=dt(()=>t("div",{class:"label-key"},[t("span",null,"LAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),$v={class:"label-value"},Dv=dt(()=>t("option",null,"\u65C1\u8DEF\u7531\u6A21\u5F0F\u4EC5\u652F\u6301\u9759\u6001IP\u5730\u5740",-1)),Bv=[Dv],Yv=dt(()=>t("div",{class:"label-key"},[t("span",null,"IP \u5730\u5740")],-1)),Av=dt(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),Sv=dt(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),zv=dt(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),Pv={key:0,class:"msgs"},Tv={class:"switch_inline"},Iv={key:0,class:"switch_info"},Lv={key:1,class:"switch_info"},Mv={class:"switch_inline"},Ov=dt(()=>t("span",{class:"switch_info"},"\u81EA\u52A8\u83B7\u53D6 IPV6\uFF08\u5373\u5F00\u542F DHCPv6 \u5BA2\u6237\u7AEF\uFF09",-1)),Nv={class:"switch_inline"},qv=dt(()=>t("span",{class:"switch_info"},"\u5F00\u542F NAT\uFF08\u53EF\u4FEE\u590D\u67D0\u4E9B\u65E0\u7EBF\u70ED\u70B9\u4E0D\u80FD\u8BBF\u95EE\u5916\u7F51\u95EE\u9898\uFF09",-1)),Vv={class:"btns"},Gv=dt(()=>t("button",{class:"cbi-button cbi-button-apply app-btn app-next"},"\u4FDD\u5B58\u914D\u7F6E",-1)),jv=["onClick"],Rv={key:2,id:"page"},Uv=dt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),Wv=dt(()=>t("h3",{class:"desc"},"\u73B0\u5728\uFF0C\u5C06\u672C\u8DEF\u7531WAN\u53E3\u65AD\u5F00\uFF0C\u5C06\u5176\u4E2D\u4E00\u4E2ALAN\u53E3\u4E0E\u4E3B\u8DEF\u7531\u8FDE\u63A5\uFF0C\u5E76\u5C06\u5F53\u524D\u6D4F\u89C8\u5668\u8BBE\u5907\u8FDE\u63A5\u5230\u4E3B\u8DEF\u7531\u3002\u70B9\u51FB\u201C\u8FDB\u5165\u63A7\u5236\u53F0\u201D\u6D4F\u89C8\u5668\u5C06\u8DF3\u8F6C\u5230\u65B0\u7684\u8DEF\u7531IP",-1)),Hv={key:3,id:"page"},Zv=dt(()=>t("h2",{class:"title"},"\u65C1\u8DEF\u7531\u81EA\u52A8\u914D\u7F6E",-1)),Jv=dt(()=>t("code",null," \u9996\u5148\u786E\u8BA4\u4E3B\u8DEF\u7531\u5F00\u542F\u4E86 DHCP \u670D\u52A1\uFF0C\u786E\u8BA4\u672C\u8DEF\u7531 WAN \u53E3\u662F DHCP \u5BA2\u6237\u7AEF\u6A21\u5F0F\uFF08\u9ED8\u8BA4\u5373\u662F\uFF0C\u5982\u679C\u4E0D\u662F\u53EF\u4F7F\u7528\u201C\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668\u201D\u5411\u5BFC\u6539\u6210 DHCP \u5BA2\u6237\u7AEF\uFF09\uFF0C\u7136\u540E\u5C06\u672C\u8DEF\u7531 WAN \u53E3\u4E0E\u4E3B\u8DEF\u7531\u7684 LAN \u8FDE\u63A5\uFF0C\u4EE5\u81EA\u52A8\u83B7\u53D6\u914D\u7F6E\u3002 ",-1)),Xv=U(" 1. \u6EE1\u8DB3\u4E0A\u8FF0\u6761\u4EF6\u4EE5\u540E\uFF0C\u70B9\u51FB\u201C\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\u201D\u4EE5\u5237\u65B0\u5F53\u524D\u8FDE\u63A5\u4FE1\u606F\uFF0C\u6210\u529F\u4EE5\u540E\uFF0C\u201C\u81EA\u52A8\u586B\u5199\u201D\u6309\u94AE\u5C06\u88AB\u6FC0\u6D3B\u3002(\u5931\u8D25\u53EF\u518D\u6B21\u70B9\u51FB) "),Kv=["disabled"],Qv=U("\u5F53\u524D IPv4 \u4E0A\u6E38\u4FE1\u606F\uFF08\u70B9\u6B64\u5237\u65B0\uFF09 "),tg={style:{"text-align":"left"}},eg=U(" 2. \u70B9\u51FB\u201C\u81EA\u52A8\u586B\u5199\u201D\uFF0C\u5C06\u5207\u6362\u5230\u53C2\u6570\u9875\u5E76\u81EA\u52A8\u586B\u5199\u3002\u6B64\u65F6\u4F9D\u7136\u53EF\u4EE5\u81EA\u884C\u8C03\u6574\u53C2\u6570\u3002 "),ag={class:"btns"},og=["disabled"],ng=["onClick"],ig=P({setup(e){const a=y(0),o=y(""),n=y(!1),s=R(()=>{var m,b,g;return!(((m=f.value)==null?void 0:m.ipv4addr)&&((b=f.value)==null?void 0:b.ipv4mask)&&((g=f.value)==null?void 0:g.gateway))}),c=y({subnetMask:"255.255.255.0",staticDnsIp:"223.5.5.5",staticLanIp:"",gateway:"",enableDhcp:!0,dhcp6c:!1,enableNat:!1}),f=y(),p=()=>{n.value=!0,S.Network.Status.GET().then(m=>{if(m!=null&&m.data){const{result:b}=m==null?void 0:m.data;b&&(f.value=b)}}).finally(()=>{n.value=!1})},d=m=>{var b,g,v,_,w;m&&(c.value.staticLanIp=((b=f.value)==null?void 0:b.ipv4addr)||"",c.value.subnetMask=((g=f.value)==null?void 0:g.ipv4mask)&&xt.prefixToMask(f.value.ipv4mask)||"",c.value.gateway=((v=f.value)==null?void 0:v.gateway)||"",c.value.staticDnsIp=((_=f.value)==null?void 0:_.dnsList)&&((w=f.value)==null?void 0:w.dnsList[0])||"223.5.5.5"),a.value=1},l=m=>{window.location.href=location.protocol+"//"+c.value.staticLanIp+(location.port?":"+location.port:"")},u=()=>T(this,null,function*(){const m=c.value,b=F.Loading("\u914D\u7F6E\u4E2D...");try{const g=yield S.Guide.GatewayRouter.POST(m);if(g!=null&&g.data){const{success:v,error:_}=g==null?void 0:g.data;if(_&&(o.value=_),v==null||v==0){setTimeout(()=>{a.value=2,b.Close()},5e3);return}}}catch(g){o.value=g}b.Close()});return(m,b)=>{var _,w,x,C;const g=X("router-link"),v=X("switch-box");return a.value==0?(i(),r("div",gv,[_v,hv,t("div",xv,[t("button",{class:"cbi-button cbi-button-success app-btn app-next",onClick:b[0]||(b[0]=A=>a.value=3)},"\u81EA\u52A8\u914D\u7F6E..."),t("button",{class:"cbi-button cbi-button-neutral app-btn app-next",onClick:b[1]||(b[1]=A=>d(!1))},"\u624B\u52A8\u914D\u7F6E..."),D(g,{to:"/network",custom:""},{default:V(({navigate:A})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:A},"\u8FD4\u56DE",8,kv)]),_:1})])])):a.value==1?(i(),r("div",wv,[yv,Fv,t("form",{onSubmit:nt(u,["prevent"])},[t("label",null,[Cv,t("div",$v,[t("select",{disabled:"",style:Vt({backgroundColor:"rgba(215, 215, 215, 1)",color:"#333"})},Bv,4)])]),t("label",null,[Yv,z(t("input",{type:"text","onUpdate:modelValue":b[2]||(b[2]=A=>c.value.staticLanIp=A),placeholder:"IP\u5730\u5740",required:""},null,512),[[W,c.value.staticLanIp,void 0,{trim:!0}]])]),t("label",null,[Av,z(t("input",{type:"text","onUpdate:modelValue":b[3]||(b[3]=A=>c.value.subnetMask=A),placeholder:"\u5B50\u7F51\u63A9\u7801",required:""},null,512),[[W,c.value.subnetMask,void 0,{trim:!0}]])]),t("label",null,[Sv,z(t("input",{type:"text","onUpdate:modelValue":b[4]||(b[4]=A=>c.value.gateway=A),placeholder:"\u7F51\u5173\u5730\u5740",required:""},null,512),[[W,c.value.gateway,void 0,{trim:!0}]])]),t("label",null,[zv,z(t("input",{type:"text","onUpdate:modelValue":b[5]||(b[5]=A=>c.value.staticDnsIp=A),placeholder:"223.5.5.5",required:""},null,512),[[W,c.value.staticDnsIp,void 0,{trim:!0}]])]),o.value?(i(),r("div",Pv,h(o.value),1)):E("",!0),t("div",Tv,[D(v,{modelValue:c.value.enableDhcp,"onUpdate:modelValue":b[6]||(b[6]=A=>c.value.enableDhcp=A)},{default:V(()=>[c.value.enableDhcp?(i(),r("span",Iv,"\u63D0\u4F9B DHCPv4 \u670D\u52A1\uFF08\u9700\u8981\u5173\u95ED\u4E3B\u8DEF\u7531 DHCP \u670D\u52A1\uFF09")):(i(),r("span",Lv,"\u63D0\u4F9B DHCPv4 \u670D\u52A1"))]),_:1},8,["modelValue"])]),t("div",Mv,[D(v,{modelValue:c.value.dhcp6c,"onUpdate:modelValue":b[7]||(b[7]=A=>c.value.dhcp6c=A)},{default:V(()=>[Ov]),_:1},8,["modelValue"])]),t("div",Nv,[D(v,{modelValue:c.value.enableNat,"onUpdate:modelValue":b[8]||(b[8]=A=>c.value.enableNat=A)},{default:V(()=>[qv]),_:1},8,["modelValue"])]),t("div",Vv,[Gv,D(g,{to:"/network",custom:""},{default:V(({navigate:A})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:A},"\u8FD4\u56DE",8,jv)]),_:1})])],40,Ev)])):a.value==2?(i(),r("div",Rv,[Uv,Wv,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:l},"\u8FDB\u5165\u63A7\u5236\u53F0")])])):a.value==3?(i(),r("div",Hv,[Zv,Jv,Xv,t("button",{class:ot(["cbi-button cbi-button-neutral",k(s)?"cbi-button-neutral":"cbi-button-success"]),disabled:n.value,onClick:p},[Qv,t("p",tg,[t("ul",null,[t("li",null,"IP \u5730\u5740: "+h((_=f.value)==null?void 0:_.ipv4addr),1),t("li",null,"\u5B50\u7F51\u63A9\u7801: "+h(((w=f.value)==null?void 0:w.ipv4mask)&&k(xt).prefixToMask(f.value.ipv4mask)),1),t("li",null,"\u7F51\u5173\u5730\u5740: "+h((x=f.value)==null?void 0:x.gateway),1),t("li",null,"DNS\u670D\u52A1\u5668: "+h(((C=f.value)==null?void 0:C.dnsList)&&f.value.dnsList[0]||(k(s)?"":"\uFF08\u65E0DNS\u670D\u52A1\u5668\uFF0C\u8BF7\u4E4B\u540E\u81EA\u884C\u586B\u5199\u516C\u5171DNS\u670D\u52A1\u5668\uFF0C\u4F8B\u5982 223.5.5.5\uFF09")),1)])])],10,Kv),eg,t("div",ag,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:k(s),onClick:b[9]||(b[9]=A=>d(!0))},"\u81EA\u52A8\u586B\u5199..."+h(k(s)?"\uFF08\u8BF7\u5148\u83B7\u53D6IPv4\u4E0A\u6E38\u4FE1\u606F\uFF09":""),9,og),D(g,{to:"/network",custom:""},{default:V(({navigate:A})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:A},"\u8FD4\u56DE",8,ng)]),_:1})])])):E("",!0)}}});var rg=Y(ig,[["__scopeId","data-v-f4dbbdaa"]]);const St=e=>(O("data-v-7fc91c6d"),e=e(),N(),e),sg={class:"actioner-container"},dg=St(()=>t("div",{class:"actioner-container_header"},[t("span",null,"RAID\u521B\u5EFA\u5411\u5BFC")],-1)),ug={class:"actioner-container_body"},lg=St(()=>t("p",null,"RAID\u78C1\u76D8\u9635\u5217\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C \u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002",-1)),cg={class:"label-item"},pg=St(()=>t("div",{class:"label-item_key"},[t("span",null,"RAID\u7EA7\u522B\uFF1A")],-1)),fg={class:"label-item_value"},mg=["value"],bg={class:"label-item_tips"},vg={class:"label-item"},gg=St(()=>t("div",{class:"label-item_key"},[t("span",null,"\u78C1\u76D8\u9635\u5217\u6210\u5458\uFF1A")],-1)),_g={key:0,class:"label-item_value"},hg=St(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),xg=[hg],kg={key:1,class:"label-item_value"},wg=["value"],yg={key:1,class:"msg-warning"},Fg={class:"label-item_tips"},Eg=U(" \u9009\u62E9\u5C06\u8981\u7528\u4E8E\u521B\u5EFA RAID \u7684\u786C\u76D8\uFF0C\u901A\u8FC7 USB \u63A5\u5165\u7684\u8BBE\u5907\u4E0D\u4F1A\u5728\u5217\u8868\u4E2D\u663E\u793A\uFF08USB\u63A5\u5165\u4E0D\u7A33\u5B9A\uFF09\u3002 "),Cg={class:"actioner-container_footer"},$g=["disabled"],Dg=["disabled"],Bg={key:1,class:"actioner-container_body setup-loading"},Yg=St(()=>t("span",null,"\u6B63\u5728\u521B\u5EFA\u4E2D...",-1)),Ag={class:"actioner-container_body setup-error"},Sg={class:"actioner-container_footer"},zg=["disabled"],Pg={class:"actioner-container_body setup-success"},Tg=St(()=>t("div",{class:"body-title"},"\u521B\u5EFA\u6210\u529F",-1)),Ig=St(()=>t("div",{class:"body-info"},[t("span",null," \u5982\u9700\u5BF9raid\u8BBE\u5907\u8FDB\u884C\u8BFB\u5199\u64CD\u4F5C\uFF0C\u9700\u8981\u5BF9raid\u8BBE\u5907\u683C\u5F0F\u5316\u5E76\u6302\u8F7D\u6587\u4EF6\u7CFB\u7EDF "),t("br"),t("span",null,[U(" \u53EF\u524D\u5F80 "),t("a",{href:"/cgi-bin/luci/",target:"_blank",rel:"noopener noreferrer"},"\u9996\u9875-\u78C1\u76D8\u4FE1\u606F"),U(" \u8FDB\u884C\u6302\u8F7D ")])],-1)),Lg=P({props:{Close:{type:Function,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=y("init"),c=y(""),f=[{name:"jbod",title:"JBOD (\u7EBF\u6027)",info:"\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u5C06\u591A\u4E2A\u786C\u76D8\u5408\u5E76\u4E3A\u5355\u4E2A\u5B58\u50A8\u7A7A\u95F4\uFF0C\u5176\u5BB9\u91CF\u7B49\u4E8E\u6240\u6709\u786C\u76D8\u5BB9\u91CF\u7684\u603B\u548C\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002",select:2},{name:"raid0",title:"RAID 0 (\u6761\u5E26)",info:"\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u201C\u533A\u5757\u5EF6\u5C55\u201D\u529F\u80FD\u662F\u5C06\u6570\u636E\u5206\u6210\u591A\u4E2A\u5757\uFF0C\u5E76\u5C06\u6570\u636E\u5757\u5206\u6563\u5230\u7EC4\u6210\u7684\u591A\u4E2A\u786C\u76D8\u4E0A\u4EE5\u63D0\u9AD8\u6027\u80FD\u7684\u8FC7\u7A0B\u3002\u4E0D\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002",select:2},{name:"raid1",title:"RAID 1 (\u955C\u50CF)",info:"\u81F3\u5C11\u9700\u89812\u5757\u786C\u76D8\uFF0C\u540C\u65F6\u5411\u6240\u6709\u786C\u76D8\u5199\u5165\u76F8\u540C\u7684\u6570\u636E\u3002\u63D0\u4F9B\u6570\u636E\u5197\u4F59\u3002",select:2},{name:"raid5",title:"RAID 5 ",info:"\u81F3\u5C11\u9700\u89813\u5757\u786C\u76D8\uFF0C\u6267\u884C\u6BB5\u843D\u5206\u5757\u5EF6\u5C55\uFF0C\u5E76\u5BF9\u5206\u5E03\u5230\u6240\u6709\u7EC4\u6210\u786C\u76D8\u4E0A\u7684\u6570\u636E\u6267\u884C\u5947\u5076\u6821\u9A8C\uFF0C\u4ECE\u800C\u63D0\u4F9B\u6BD4 RAID 1 \u66F4\u6709\u6548\u7684\u6570\u636E\u5197\u4F59\u3002",select:3},{name:"raid6",title:"RAID 6 ",info:"\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u6267\u884C\u4E24\u4E2A\u5C42\u7EA7\u7684\u6570\u636E\u5947\u5076\u6821\u9A8C\u4EE5\u5B58\u50A8\u7B49\u4E8E 2 \u4E2A\u786C\u76D8\u5BB9\u91CF\u7684\u5197\u4F59\u6570\u636E\uFF0C\u63D0\u4F9B\u6BD4 RAID 5 \u66F4\u5927\u7A0B\u5EA6\u7684\u6570\u636E\u5197\u4F59\u3002",select:4},{name:"raid10",title:"RAID 10",info:"\u81F3\u5C11\u9700\u89814\u5757\u786C\u76D8\uFF0C\u63D0\u4F9B RAID 0 \u7684\u6027\u80FD\u548C RAID 1 \u7684\u6570\u636E\u4FDD\u62A4\u7EA7\u522B\uFF0C\u5C06\u786C\u76D8\u7EC4\u5408\u8FDB\u955C\u50CF\u6570\u636E\u7684\u7531\u4E24\u4E2A\u786C\u76D8\u7EC4\u6210\u7684\u7EC4\u3002",select:4}],p=y("raid5"),d=y([]),l=_=>{let w="";return f.forEach(x=>{x.name===_&&(w=x.info)}),w},u=y(!1),m=it({loading:!1,members:[]}),b=_=>{};(()=>T(this,null,function*(){m.loading=!0;try{const _=yield S.Raid.CreateList.GET();if(_!=null&&_.data){const{success:w,error:x,result:C}=_.data;if(C&&(m.members=C.members||[]),x)throw x}}catch(_){console.log(_)}finally{m.loading=!1}}))();const v=()=>T(this,null,function*(){const _=f.filter(x=>x.name===p.value)[0],w=d.value;if(!_){F.Warning("\u8BF7\u9009\u62E9raid\u7C7B\u578B");return}if(w.length==0){F.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}if(_.select>w.length){F.Warning("\u8BF7\u9009\u62E9\u81F3\u5C11"+_.select+"\u5757\u78C1\u76D8");return}if(!!confirm(`\u662F\u5426\u7ACB\u5373\u521B\u5EFA ${_.name}\uFF1F\u9009\u62E9\u7684\u786C\u76D8\u6240\u6709\u5206\u533A\u5C06\u4F1A\u88AB\u6E05\u9664\uFF0C\u6B64\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u786C\u76D8\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002`)&&!!confirm(`\u786E\u5B9A\u521B\u5EFA ${_.name}\uFF1F\u8BE5\u64CD\u4F5C\u4E0D\u53EF\u9006,\u8BF7\u8C28\u614E\u64CD\u4F5C`)){u.value=!0,s.value="loading";try{const x=yield S.Raid.Create.POST({level:_.name,devicePaths:w});if(x.data){const{success:C,error:A,result:B}=x.data;if(A)throw A;(C||0)==0&&(s.value="success",n())}}catch(x){c.value=x,s.value="error"}finally{u.value=!1}}});return(_,w)=>{const x=X("icon-loading"),C=X("icon-error"),A=X("icon-success");return i(),r("div",sg,[dg,s.value=="init"?(i(),r(L,{key:0},[t("div",ug,[lg,t("div",cg,[pg,t("div",fg,[z(t("select",{"onUpdate:modelValue":w[0]||(w[0]=B=>p.value=B),onChange:b},[(i(),r(L,null,j(f,B=>t("option",{value:B.name},h(B.title),9,mg)),64))],544),[[Q,p.value]])]),t("div",bg,[D(gt),U(" "+h(l(p.value)),1)])]),t("div",vg,[gg,k(m).loading?(i(),r("div",_g,xg)):(i(),r("div",kg,[k(m).members.length>0?(i(!0),r(L,{key:0},j(k(m).members,B=>(i(),r("label",null,[z(t("input",{type:"checkbox","onUpdate:modelValue":w[1]||(w[1]=$=>d.value=$),value:B.path},null,8,wg),[[Tt,d.value]]),U(" \u3010"+h(B.model)+"\u3011"+h(B.name)+" "+h(B.path)+" ["+h(B.sizeStr)+"] ",1)]))),256)):(i(),r("span",yg," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))])),t("div",Fg,[D(gt),Eg])])]),t("div",Cg,[t("div",{class:"close",onClick:o,disabled:u.value},"\u53D6\u6D88",8,$g),t("div",{class:"next",onClick:v,disabled:u.value},"\u521B\u5EFA",8,Dg)])],64)):s.value=="loading"?(i(),r("div",Bg,[D(x,{size:60,color:"#666"}),Yg])):s.value=="error"?(i(),r(L,{key:2},[t("div",Ag,[D(C),t("span",null,h(c.value),1)]),t("div",Sg,[t("div",{class:"close",onClick:o},"\u5173\u95ED"),t("div",{class:"next",onClick:v,disabled:u.value},"\u91CD\u65B0\u521B\u5EFA",8,zg)])],64)):s.value=="success"?(i(),r(L,{key:3},[t("div",Pg,[D(A),Tg,Ig]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])],64)):E("",!0)])}}});var Mg=Y(Lg,[["__scopeId","data-v-7fc91c6d"]]);const Og={class:"actioner-container"},Ng={class:"actioner-container_body"},qg=["value"],Vg=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0}},setup(e){const a=e,o=()=>{a.Close()},n=y("");return(()=>{S.Raid.Detail.POST({path:a.raid.path}).then(c=>{if(c.data){const{result:f,error:p}=c.data;p?n.value=p:n.value=(f==null?void 0:f.detail)||""}}).catch(c=>{n.value=c.message})})(),(c,f)=>(i(),r("div",Og,[t("div",Ng,[t("textarea",{value:n.value},null,8,qg)]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])]))}});var Gg=Y(Vg,[["__scopeId","data-v-51f9d7a2"]]);const Pe=e=>(O("data-v-c07c8244"),e=e(),N(),e),jg={class:"actioner-container"},Rg={class:"actioner-container_header"},Ug={class:"actioner-container_body"},Wg={class:"label-item"},Hg=Pe(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),Zg={class:"label-item_value"},Jg={disabled:""},Xg={class:"label-item"},Kg=Pe(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u88AB\u6DFB\u52A0\u5230RAID\u7684\u786C\u76D8\uFF09\uFF1A ",-1)),Qg={key:0,class:"label-item_value"},t_=Pe(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),e_=[t_],a_={key:1,class:"label-item_value"},o_=["value"],n_={key:1,class:"msg-warning"},i_={class:"actioner-container_footer"},r_=["disabled"],s_=["disabled"],d_=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=()=>T(this,null,function*(){const l=p.value;if(l==""){F.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}f.value=!0;const u=F.Loading("\u4FDD\u5B58\u4E2D...");try{const m=yield S.Raid.Add.POST({path:a.raid.path,memberPath:l});if(m.data){const{error:b,success:g}=m.data;if(b)throw b;(g||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(m){F.Error(`${m}`)}finally{f.value=!1,u.Close()}}),c=it({loading:!1,members:[]}),f=y(!1),p=y("");return(()=>T(this,null,function*(){c.loading=!0,f.value=!0;try{const l=yield S.Raid.CreateList.GET();if(l!=null&&l.data){const{success:u,error:m,result:b}=l.data;if(b&&(c.members=b.members||[]),m)throw m}}catch(l){console.log(l)}finally{f.value=!1,c.loading=!1}}))(),(l,u)=>(i(),r("div",jg,[t("div",Rg,[t("span",null,"RAID - "+h(e.raid.name)+" \u4FEE\u6539",1)]),t("div",Ug,[t("div",Wg,[Hg,t("div",Zg,[t("select",Jg,[t("option",null,h(e.raid.name)+"_"+h(e.raid.venderModel)+" ("+h(e.raid.path)+"\uFF0C"+h(e.raid.level)+"\uFF0C"+h(e.raid.size)+") ",1)])])]),t("div",Xg,[Kg,k(c).loading?(i(),r("div",Qg,e_)):(i(),r("div",a_,[k(c).members.length>0?(i(!0),r(L,{key:0},j(k(c).members,m=>(i(),r("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":u[0]||(u[0]=b=>p.value=b),value:m.path},null,8,o_),[[ft,p.value]]),U(" \u3010"+h(m.model)+"\u3011"+h(m.name)+" "+h(m.path)+" ["+h(m.sizeStr)+"] ",1)]))),256)):(i(),r("span",n_," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",i_,[t("div",{class:"close",onClick:o,disabled:f.value},"\u53D6\u6D88",8,r_),t("div",{class:"next",onClick:s,disabled:f.value},"\u4FDD\u5B58",8,s_)])]))}});var u_=Y(d_,[["__scopeId","data-v-c07c8244"]]);const ga=e=>(O("data-v-13dc2cd6"),e=e(),N(),e),l_={class:"actioner-container"},c_={class:"actioner-container_header"},p_={class:"actioner-container_body"},f_={class:"label-item"},m_=ga(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),b_={class:"label-item_value"},v_={disabled:""},g_={class:"label-item"},__=ga(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u8981\u4ECERAID\u9635\u5217\u4E2D\u5220\u9664\u7684\u786C\u76D8\uFF09\uFF1A ",-1)),h_={class:"label-item_value"},x_=["value"],k_={class:"actioner-container_footer"},w_=["disabled"],y_=["disabled"],F_=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=()=>T(this,null,function*(){const p=f.value;if(p==""){F.Warning("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u786C\u76D8");return}c.value=!0;const d=F.Loading("\u4FDD\u5B58\u4E2D...");try{const l=yield S.Raid.Remove.POST({path:a.raid.path,memberPath:p});if(l.data){const{error:u,success:m}=l.data;if(u)throw u;(m||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(l){F.Error(`${l}`)}finally{c.value=!1,d.Close()}}),c=y(!1),f=y("");return(p,d)=>(i(),r("div",l_,[t("div",c_,[t("span",null,"RAID - "+h(e.raid.name)+" \u79FB\u9664",1)]),t("div",p_,[t("div",f_,[m_,t("div",b_,[t("select",v_,[t("option",null,h(e.raid.name)+"_"+h(e.raid.venderModel)+" ("+h(e.raid.path)+"\uFF0C"+h(e.raid.level)+"\uFF0C"+h(e.raid.size)+") ",1)])])]),t("div",g_,[__,t("div",h_,[(i(!0),r(L,null,j(e.raid.members,l=>(i(),r("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":d[0]||(d[0]=u=>f.value=u),value:l},null,8,x_),[[ft,f.value]]),U(" "+h(l),1)]))),256))])])]),t("div",k_,[t("div",{class:"close",onClick:o,disabled:c.value},"\u53D6\u6D88",8,w_),t("div",{class:"next",onClick:s,disabled:c.value},"\u4FDD\u5B58",8,y_)])]))}});var E_=Y(F_,[["__scopeId","data-v-13dc2cd6"]]);const Te=e=>(O("data-v-5643983d"),e=e(),N(),e),C_={class:"actioner-container"},$_={class:"actioner-container_header"},D_={class:"actioner-container_body"},B_={class:"label-item"},Y_=Te(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),A_={class:"label-item_value"},S_={disabled:""},z_={class:"label-item"},P_=Te(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u7A7A\u95F2\u7684\u786C\u76D8\u6062\u590DRAID\u8BBE\u5907\uFF09\uFF1A ",-1)),T_={key:0,class:"label-item_value"},I_=Te(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),L_=[I_],M_={key:1,class:"label-item_value"},O_=["value"],N_={key:1,class:"msg-warning"},q_={class:"actioner-container_footer"},V_=["disabled"],G_=["disabled"],j_=P({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=()=>T(this,null,function*(){const l=p.value;if(l==""){F.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}f.value=!0;const u=F.Loading("\u4FDD\u5B58\u4E2D...");try{const m=yield S.Raid.Recover.POST({path:a.raid.path,memberPath:l});if(m.data){const{error:b,success:g}=m.data;if(b)throw b;(g||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(m){F.Error(`${m}`)}finally{f.value=!1,u.Close()}}),c=it({loading:!1,members:[]}),f=y(!1),p=y("");return(()=>T(this,null,function*(){c.loading=!0,f.value=!0;try{const l=yield S.Raid.CreateList.GET();if(l!=null&&l.data){const{success:u,error:m,result:b}=l.data;if(b&&(c.members=b.members||[]),m)throw m}}catch(l){console.log(l)}finally{f.value=!1,c.loading=!1}}))(),(l,u)=>(i(),r("div",C_,[t("div",$_,[t("span",null,"RAID - "+h(e.raid.name)+" \u6062\u590D",1)]),t("div",D_,[t("div",B_,[Y_,t("div",A_,[t("select",S_,[t("option",null,h(e.raid.name)+"_"+h(e.raid.venderModel)+" ("+h(e.raid.path)+"\uFF0C"+h(e.raid.level)+"\uFF0C"+h(e.raid.size)+") ",1)])])]),t("div",z_,[P_,k(c).loading?(i(),r("div",T_,L_)):(i(),r("div",M_,[k(c).members.length>0?(i(!0),r(L,{key:0},j(k(c).members,m=>(i(),r("label",null,[z(t("input",{type:"radio","onUpdate:modelValue":u[0]||(u[0]=b=>p.value=b),value:m.path},null,8,O_),[[ft,p.value]]),U(" \u3010"+h(m.model)+"\u3011"+h(m.name)+" "+h(m.path)+" ["+h(m.sizeStr)+"] ",1)]))),256)):(i(),r("span",N_," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",q_,[t("div",{class:"close",onClick:o,disabled:f.value},"\u53D6\u6D88",8,V_),t("div",{class:"next",onClick:s,disabled:f.value},"\u4FDD\u5B58",8,G_)])]))}});var R_=Y(j_,[["__scopeId","data-v-5643983d"]]);const U_={class:"action-main"},W_=P({props:{Close:{type:Function,required:!0},setup:{type:String,default:"create"},raid:{type:Object},success:{type:Function}},setup(e){return(a,o)=>(i(),M(et,{type:2},{default:V(()=>[t("div",U_,[e.setup=="create"?(i(),M(Mg,{key:0,Close:e.Close},null,8,["Close"])):e.setup=="info"&&e.raid!=null?(i(),M(Gg,{key:1,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="edit"&&e.raid!=null?(i(),M(u_,{key:2,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="remove"&&e.raid!=null?(i(),M(E_,{key:3,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="recover"&&e.raid!=null?(i(),M(R_,{key:4,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):E("",!0)])]),_:1}))}});var H_=Y(W_,[["__scopeId","data-v-6ef94d02"]]);const Jt=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(H_,at(J({},e),{Close:()=>{n()}}));o.use(aa),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},re=e=>(O("data-v-535a673b"),e=e(),N(),e),Z_={id:"page"},J_=re(()=>t("h2",{name:"content"}," RAID\u7BA1\u7406",-1)),X_=re(()=>t("div",{class:"cbi-map-descr"},[t("p",null," RAID \uFF08 Redundant Array of Independent Disks \uFF09\u5373\u72EC\u7ACB\u78C1\u76D8\u5197\u4F59\u9635\u5217\uFF0C\u7B80\u79F0\u4E3A\u300C\u78C1\u76D8\u9635\u5217\u300D\uFF0C \u5C31\u662F\u7528\u591A\u4E2A\u72EC\u7ACB\u7684\u78C1\u76D8\u7EC4\u6210\u5728\u4E00\u8D77\u5F62\u6210\u4E00\u4E2A\u5927\u7684\u78C1\u76D8\u7CFB\u7EDF\uFF0C\u4ECE\u800C\u5B9E\u73B0\u6BD4\u5355\u5757\u78C1\u76D8\u66F4\u597D\u7684\u5B58\u50A8\u6027\u80FD\u548C\u66F4\u9AD8\u7684\u53EF\u9760\u6027\u3002 "),t("p",{style:{color:"#f5365b","margin-top":"10px"}}," * RAID\u529F\u80FD\u6B63\u5728\u516C\u6D4B\u4E2D\uFF0C\u4F7F\u7528\u8FC7\u7A0B\u4E2D\u5982\u9020\u6210\u6570\u636E\u4E22\u5931\u7B49\u95EE\u9898\uFF0C\u6982\u4E0D\u8D1F\u8D23\uFF0C\u8BF7\u8C28\u614E\u4F7F\u7528\u3002 "),t("p",{style:{color:"#f5365b","margin-top":"10px"}}," * \u5982\u679C\u7531\u4E8E\u7CFB\u7EDF\u91CD\u7F6E\u6216\u91CD\u542F\u5BFC\u81F4\u7684RAID\u8BBE\u5907\u4E22\u5931\u53EF\u4EE5\u5C1D\u8BD5\u901A\u8FC7\u4E0B\u65B9'\u626B\u63CF\u6062\u590DRAID'\u6309\u94AE\u6062\u590D ")],-1)),K_={class:"btns"},Q_=["disabled"],th={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},eh={class:"table cbi-section-table"},ah={style:{}},oh=re(()=>t("tr",{class:"tr cbi-section-table-titles anonymous"},[t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u540D\u79F0"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8BBE\u5907"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u72B6\u6001"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u7EA7\u522B"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5BB9\u91CF"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u6210\u5458"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u6302\u8F7D\u4FE1\u606F"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u64CD\u4F5C")],-1)),nh={class:"tr cbi-section-table-row"},ih={class:"td cbi-value-field"},rh={class:"td cbi-value-field"},sh=["title"],dh={class:"item-status"},uh={key:0,class:"item-status item-status-detail"},lh={class:"td cbi-value-field"},ch={class:"td cbi-value-field"},ph={class:"td cbi-value-field"},fh=re(()=>t("br",null,null,-1)),mh={class:"td cbi-value-field"},bh=re(()=>t("br",null,null,-1)),vh={key:1,href:"/cgi-bin/luci/admin/quickstart/"},gh={class:"td cbi-section-table-cell nowrap cbi-section-actions"},_h=["disabled","onClick"],hh=["disabled","onClick"],xh=["onClick"],kh=["onClick"],wh=["onClick"],yh=P({setup(e){const a=it({disksList:[]}),o=()=>T(this,null,function*(){try{const v=yield S.Raid.List.GET();if(v!=null&&v.data){const{success:_,error:w,result:x}=v.data;if(x&&(a.disksList=x.disks||[]),w)throw w}}catch(v){console.log(v)}}),n=yt.easyInterval(o,5e3);Fe(()=>{n()});const s=v=>{switch(v.level){case"raid0":case"jbod":return!0}return v.status.indexOf("degraded")!=-1||v.status.indexOf("resyncing(")!=-1},c=v=>{let _=[];return v.childrens&&v.childrens.forEach(w=>{w.mountPoint&&_.push(`${w.name}(${w.mountPoint})`)}),_},f=()=>T(this,null,function*(){Jt({setup:"create",success:()=>{o()}})}),p=v=>{Jt({setup:"info",raid:v})},d=v=>T(this,null,function*(){if(v.childrens&&v.childrens.length>0&&v.childrens.filter(x=>x.mountPoint).length>0){de({content:"\u5220\u9664 RAID \u8BBE\u5907\u4E4B\u524D\u8BF7\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF",nextTitle:"\u53BB\u5378\u8F7D",next:()=>{location.href="/cgi-bin/luci/admin/system/mounts"},clearTitle:"\u53D6\u6D88",clear:()=>{}});return}if(!confirm(`\u786E\u5B9A\u8981\u5220\u9664 ${v.name} \u8BE5\u78C1\u76D8\u9635\u5217\u5417\uFF1F\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002\u5220\u9664\u6210\u529F\u540E\uFF0C\u5982\u9700\u53E6\u5916\u7EC4RAID\uFF0C\u5EFA\u8BAE\u7A0D\u7B49\u51E0\u5206\u949F\u540E\u518D\u8BD5\u3002`)||!confirm(`\u786E\u5B9A\u8981\u5220\u9664 ${v.name} \u5417?`))return;const _=F.Loading("\u5220\u9664\u4E2D...");try{const w=yield S.Raid.Delete.POST({path:v.path,members:v.members});if(w.data){const{success:x,error:C}=w.data;if(C)throw C;(x||0)==0&&(F.Success("\u5220\u9664\u6210\u529F"),o())}}catch(w){F.Error(`${w}`)}finally{_.Close()}}),l=v=>{Jt({setup:"edit",raid:v,success:()=>{o()}})},u=v=>{Jt({setup:"remove",raid:v,success:()=>{o()}})},m=v=>{Jt({setup:"recover",raid:v,success:()=>{o()}})},b=y(!1),g=()=>{de({content:"\u5C06\u626B\u63CF\u78C1\u76D8\u91CC RAID \u7684\u78C1\u76D8\u9635\u5217\u914D\u7F6E\u5E76\u6062\u590D\uFF0C\u786E\u5B9A\u8981\u6062\u590D RAID \u78C1\u76D8\u9635\u5217\u5417\uFF1F",nextTitle:"\u786E\u5B9A",next:()=>T(this,null,function*(){b.value=!0;const v=F.Loading("\u626B\u63CF\u4E2D...");try{const _=yield S.Raid.Autofix.GET();if(_.data){const{error:w,success:x}=_.data;if(w)throw w;(x||0)==0&&(F.Success("\u6062\u590D\u5B8C\u6210"),o())}}catch(_){F.Error(`${_}`)}finally{v.Close(),b.value=!1}}),clearTitle:"\u53D6\u6D88",clear:()=>{}})};return(v,_)=>(i(),r("div",Z_,[J_,X_,t("div",K_,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:_[0]||(_[0]=w=>f())},"\u521B\u5EFARAID"),t("button",{class:"btn cbi-button cbi-button-apply",onClick:_[1]||(_[1]=w=>g()),disabled:b.value},"\u626B\u63CF\u6062\u590DRAID",8,Q_)]),t("div",null,[t("div",th,[t("table",eh,[t("tbody",ah,[oh,(i(!0),r(L,null,j(k(a).disksList,w=>(i(),r("tr",nh,[t("td",ih,[t("b",null,h(w.name),1)]),t("td",rh,[t("b",null,h(w.path),1)]),t("td",{class:"td cbi-value-field",title:w.status+(w.rebuildStatus||"")},[t("b",dh,h(w.status),1),w.rebuildStatus?(i(),r("b",uh," \u2026 ")):E("",!0)],8,sh),t("td",lh,[t("b",null,h(w.level),1)]),t("td",ch,[t("b",null,h(w.size),1)]),t("td",ph,[(i(!0),r(L,null,j(w.members,x=>(i(),r("b",null,[U(h(x)+" ",1),fh]))),256))]),t("td",mh,[c(w).length>0?(i(!0),r(L,{key:0},j(c(w),x=>(i(),r("b",null,[U(h(x)+" ",1),bh]))),256)):(i(),r("a",vh,"\u53BB\u6302\u8F7D"))]),t("td",gh,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6269\u5145",disabled:s(w),onClick:x=>l(w)},"\u6269\u5145",8,_h),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u79FB\u9664",disabled:s(w),onClick:x=>u(w)},"\u79FB\u9664",8,hh),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6062\u590D",onClick:x=>m(w)},"\u6062\u590D",8,xh),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:x=>p(w)},"\u8BE6\u60C5",8,kh),t("button",{class:"cbi-button cbi-button-remove",title:"\u5982\u679C\u60A8\u5728RAID\u78C1\u76D8\u9635\u5217\u4E2D\u521B\u5EFA\u4E86\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u5148\u5378\u8F7D\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u540E\u5220\u9664\u6587\u4EF6\u7CFB\u7EDF\u5220\u9664\u64CD\u4F5C\u53EF\u80FD\u4F1A\u5BFC\u81F4\u6570\u636E\u4E22\u5931\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\u3002",onClick:x=>d(w)},"\u5220\u9664",8,wh)])]))),256))])])])])]))}});var Fh=Y(yh,[["__scopeId","data-v-535a673b"]]);const _a=e=>(O("data-v-2bc40d1c"),e=e(),N(),e),Eh={id:"page"},Ch=_a(()=>t("h2",{name:"content"},"S.M.A.R.T.",-1)),$h=_a(()=>t("div",{class:"cbi-map-descr"},[t("p",null," S.M.A.R.T.\uFF0C\u5168\u79F0\u4E3A\u201CSelf-Monitoring Analysis and Reporting Technology\u201D\uFF0C\u5373\u201C\u81EA\u6211\u76D1\u6D4B\u3001\u5206\u6790\u53CA\u62A5\u544A\u6280\u672F\u201D\uFF0C "),t("p",null," \u662F\u4E00\u79CD\u81EA\u52A8\u7684\u786C\u76D8\u72B6\u6001\u68C0\u6D4B\u4E0E\u9884\u8B66\u7CFB\u7EDF\u548C\u89C4\u8303\u3002\u901A\u8FC7\u5728\u786C\u76D8\u786C\u4EF6\u5185\u7684\u68C0\u6D4B\u6307\u4EE4\u5BF9\u786C\u76D8\u7684\u786C\u4EF6\u5982\u78C1\u5934\u3001\u76D8\u7247\u3001\u9A6C\u8FBE\u3001 "),t("p",null," \u7535\u8DEF\u7684\u8FD0\u884C\u60C5\u51B5\u8FDB\u884C\u76D1\u63A7\u3001\u8BB0\u5F55\u5E76\u4E0E\u5382\u5546\u6240\u8BBE\u5B9A\u7684\u9884\u8BBE\u5B89\u5168\u503C\u8FDB\u884C\u6BD4\u8F83\uFF0C\u82E5\u76D1\u63A7\u60C5\u51B5\u5C06\u8981\u6216\u5DF2\u8D85\u51FA\u9884\u8BBE\u5B89\u5168\u503C\u7684\u5B89\u5168\u8303\u56F4\uFF0C "),t("p",null," \u5C31\u53EF\u4EE5\u901A\u8FC7\u4E3B\u673A\u7684\u76D1\u63A7\u786C\u4EF6\u6216\u8F6F\u4EF6\u81EA\u52A8\u5411\u7528\u6237\u4F5C\u51FA\u8B66\u544A\u5E76\u8FDB\u884C\u8F7B\u5FAE\u7684\u81EA\u52A8\u4FEE\u590D\uFF0C\u4EE5\u63D0\u524D\u4FDD\u969C\u786C\u76D8\u6570\u636E\u7684\u5B89\u5168\u3002 ")],-1)),Dh={class:"tabs"},Bh=["href","onClick"],Yh=P({setup(e){const a=[{to:"/smart",name:"\u5E38\u89C4\u8BBE\u7F6E"},{to:"/smart/task",name:"\u8BA1\u5212\u4EFB\u52A1"},{to:"/smart/log",name:"\u67E5\u770B\u65E5\u5FD7"}],o=y(!1),n=it({global:{enable:!1,powermode:"never",tmpDiff:0,tmpMax:0},devices:[],tasks:[]}),s=p=>{const{global:d,devices:l,tasks:u}=p;d&&(n.global.enable=d.enable||!1,n.global.powermode=d.powermode||"never"),n.devices=l||[],n.tasks=u||[]};(()=>T(this,null,function*(){try{const p=yield S.Smart.Config.GET();if(p.data){const{result:d}=p.data;d&&s(d)}}catch(p){}finally{o.value=!0}}))();const f=p=>T(this,null,function*(){const d=F.Loading("\u4FDD\u5B58\u4E2D...");try{const l=yield S.Smart.Config.POST(p);if(l.data){console.log(l.data);const{success:u,error:m,result:b}=l.data;if(m)throw m;(u||0)==0&&(F.Success("\u4FDD\u5B58\u6210\u529F"),b&&s(b))}}catch(l){F.Error(`${l}`)}finally{d.Close()}});return(p,d)=>{const l=X("router-link"),u=X("router-view");return i(),r("div",Eh,[Ch,$h,t("ul",Dh,[(i(),r(L,null,j(a,m=>D(l,{to:m.to,custom:"",key:m.to},{default:V(({route:b,href:g,navigate:v,isActive:_,isExactActive:w})=>[t("li",{class:ot({"active cbi-tab":_&&w})},[t("a",{href:g,onClick:v},h(m.name),9,Bh)],2)]),_:2},1032,["to"])),64))]),o.value?(i(),M(u,{key:0,name:"default"},{default:V(({Component:m,route:b})=>[(i(),M(La,null,{default:V(()=>[(i(),M(Ma(m),{key:b.path,config:k(n),saveData:f},null,8,["config"]))]),_:2},1024))]),_:1})):E("",!0)])}}});var Ah=Y(Yh,[["__scopeId","data-v-2bc40d1c"]]);const Sh={class:"action-main"},zh=P({setup(e){return(a,o)=>(i(),M(et,{type:2},{default:V(()=>[t("div",Sh,[Dt(a.$slots,"default",{},void 0,!0)])]),_:3}))}});var he=Y(zh,[["__scopeId","data-v-742230ae"]]);const Ph={class:"actioner-container"},Th={class:"actioner-container_header"},Ih={class:"actioner-container_body"},Lh={class:"cbi-value"},Mh=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),Oh={class:"cbi-value-field"},Nh={class:"cbi-value-description"},qh={class:"cbi-value"},Vh=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),Gh={class:"cbi-value-field"},jh={class:"cbi-checkbox"},Rh=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),Uh=t("option",{value:0},"\u7981\u7528",-1),Wh=["value"],Hh=t("div",{class:"cbi-value-description"}," \u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A. ",-1),Zh={class:"cbi-value"},Jh=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),Xh={class:"cbi-value-field"},Kh={class:"cbi-checkbox"},Qh=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),tx=t("option",{value:0},"\u7981\u7528",-1),ex=["value"],ax=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),ox={class:"actioner-container_footer"},nx=["disabled"],ix=["disabled"],rx=P({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0},device:{type:Object},next:{type:Function,required:!0}},setup(e){var f,p,d;const a=e;console.log(a.device);const o=y(!1),n=it({tmpDiff:((f=a.device)==null?void 0:f.tmpDiff)||0,tmpMax:((p=a.device)==null?void 0:p.tmpMax)||0,devicePath:((d=a.device)==null?void 0:d.devicePath)||""}),s=()=>{o.value=!0,a.close()},c=()=>T(this,null,function*(){o.value=!0;try{yield a.next({tmpDiff:n.tmpDiff,tmpMax:n.tmpMax,devicePath:n.devicePath}),o.value=!1,s()}catch(l){}});return(l,u)=>(i(),M(he,null,{default:V(()=>[t("div",Ph,[t("div",Th,[t("span",null," S.M.A.R.T. \xBB \u8BBE\u5907 \xBB "+h(e.disk.path),1)]),t("div",Ih,[t("div",Lh,[Mh,t("div",Oh,[t("div",Nh,h(e.disk.model)+" [ "+h(e.disk.path)+"\uFF0C"+h(e.disk.sizeStr)+" ] ",1)])]),t("div",qh,[Vh,t("div",Gh,[t("div",jh,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[0]||(u[0]=m=>k(n).tmpDiff=m)},[Rh,Uh,(i(),r(L,null,j(20,m=>t("option",{value:m},h(m)+"\xB0C",9,Wh)),64))],512),[[Q,k(n).tmpDiff,void 0,{number:!0}]])]),Hh])]),t("div",Zh,[Jh,t("div",Xh,[t("div",Kh,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[1]||(u[1]=m=>k(n).tmpMax=m)},[Qh,tx,(i(),r(L,null,j(20,m=>t("option",{value:m*5},h(m*5)+"\xB0C",9,ex)),64))],512),[[Q,k(n).tmpMax,void 0,{number:!0}]])]),ax])])]),t("div",ox,[t("button",{class:"close",onClick:s,disabled:o.value},"\u53D6\u6D88",8,nx),t("button",{class:"next",onClick:c,disabled:o.value},"\u4FDD\u5B58",8,ix)])])]),_:1}))}}),sx={class:"actioner-container"},dx=t("div",{class:"actioner-container_header"},[t("span",null," \u521B\u5EFA\u8BA1\u5212\u4EFB\u52A1 ")],-1),ux={class:"actioner-container_body"},lx={class:"cbi-value"},cx=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),px={class:"cbi-value-field"},fx={class:"cbi-checkbox"},mx=t("option",{value:""},"\u9009\u62E9\u78C1\u76D8",-1),bx=["value"],vx={class:"cbi-value"},gx=t("label",{class:"cbi-value-title"}," \u7C7B\u578B ",-1),_x={class:"cbi-value-field"},hx={class:"cbi-checkbox"},xx=t("option",{value:"short"},"\u77ED\u6682\u81EA\u68C0",-1),kx=t("option",{value:"long"},"\u957F\u65F6\u81EA\u68C0",-1),wx=t("option",{value:"conveyance"},"\u4F20\u8F93\u65F6\u81EA\u68C0",-1),yx=t("option",{value:"offline"},"\u79BB\u7EBF\u65F6\u81EA\u68C0",-1),Fx=[xx,kx,wx,yx],Ex={class:"cbi-value"},Cx=t("label",{class:"cbi-value-title"}," \u5C0F\u65F6 ",-1),$x={class:"cbi-value-field"},Dx={class:"cbi-checkbox"},Bx=t("option",{value:"*"},"*",-1),Yx=["value"],Ax=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5C0F\u65F6 ",-1),Sx={class:"cbi-value"},zx=t("label",{class:"cbi-value-title"}," \u5929 ",-1),Px={class:"cbi-value-field"},Tx={class:"cbi-checkbox"},Ix=t("option",{value:"*"},"*",-1),Lx=["value"],Mx=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5929 ",-1),Ox={class:"cbi-value"},Nx=t("label",{class:"cbi-value-title"}," \u6708 ",-1),qx={class:"cbi-value-field"},Vx={class:"cbi-checkbox"},Gx=t("option",{value:"*"},"*",-1),jx=["value"],Rx=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u6708 ",-1),Ux={class:"actioner-container_footer"},Wx=["disabled"],Hx=["disabled"],Zx=P({props:{close:{type:Function,required:!0},config:{type:Object,required:!0},next:{type:Function,required:!0}},setup(e){const a=e,o=y(!1),n=it({type:"short",devicePath:"",month:"*",dayPerMonth:"*",hour:"*"}),s=y([]);(()=>T(this,null,function*(){try{const d=yield S.Smart.List.GET();if(d.data){const{result:l,error:u}=d.data;l&&l.disks&&(s.value=l.disks)}}catch(d){}}))();const f=()=>{o.value=!0,a.close()},p=()=>T(this,null,function*(){if(n.devicePath==""){F.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}o.value=!0;try{yield a.next(n),f()}catch(d){}finally{o.value=!1}});return(d,l)=>(i(),M(he,null,{default:V(()=>[t("div",sx,[dx,t("div",ux,[t("div",lx,[cx,t("div",px,[t("div",fx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[0]||(l[0]=u=>k(n).devicePath=u)},[mx,(i(!0),r(L,null,j(s.value,u=>(i(),r("option",{value:u.path},h(u.model)+" [ "+h(u.path)+"\uFF0C"+h(u.sizeStr)+" ] ",9,bx))),256))],512),[[Q,k(n).devicePath,void 0,{trim:!0}]])])])]),t("div",vx,[gx,t("div",_x,[t("div",hx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[1]||(l[1]=u=>k(n).type=u)},Fx,512),[[Q,k(n).type,void 0,{trim:!0}]])])])]),t("div",Ex,[Cx,t("div",$x,[t("div",Dx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[2]||(l[2]=u=>k(n).hour=u)},[Bx,(i(),r(L,null,j(24,(u,m)=>t("option",{value:`${m}`},h(m),9,Yx)),64))],512),[[Q,k(n).hour,void 0,{trim:!0}]])]),Ax])]),t("div",Sx,[zx,t("div",Px,[t("div",Tx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[3]||(l[3]=u=>k(n).dayPerMonth=u)},[Ix,(i(),r(L,null,j(31,u=>t("option",{value:`${u}`},h(u),9,Lx)),64))],512),[[Q,k(n).dayPerMonth,void 0,{trim:!0}]])]),Mx])]),t("div",Ox,[Nx,t("div",qx,[t("div",Vx,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":l[4]||(l[4]=u=>k(n).month=u)},[Gx,(i(),r(L,null,j(12,(u,m)=>t("option",{value:`${u}`},h(u),9,jx)),64))],512),[[Q,k(n).month,void 0,{trim:!0}]])]),Rx])])]),t("div",Ux,[t("button",{class:"close",onClick:f,disabled:o.value},"\u53D6\u6D88",8,Wx),t("button",{class:"next",onClick:p,disabled:o.value},"\u4FDD\u5B58",8,Hx)])])]),_:1}))}}),Jx=e=>(O("data-v-3f7c551e"),e=e(),N(),e),Xx={class:"actioner-container"},Kx=Jx(()=>t("div",{class:"actioner-container_header"},[t("span",null," \u8FD0\u884C\u8C03\u8BD5 ")],-1)),Qx={class:"actioner-container_body"},tk=["value"],ek={class:"actioner-container_footer"},ak=["disabled"],ok=["disabled"],nk=P({props:{close:{type:Function,required:!0},task:{type:Object,required:!0}},setup(e){const a=e,o=y(!1),n=y(""),s=y(""),c=y(""),f=()=>T(this,null,function*(){n.value+=".";try{const u=yield S.Smart.Test.Result.POST({type:"selftest",devicePath:a.task.devicePath||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(c.value=m.result),b&&(c.value=b)}}catch(u){u&&(c.value=u)}}),p=yt.easyInterval(f,5e3);Fe(()=>{p()});const d=()=>{o.value=!0,p(),a.close()},l=()=>T(this,null,function*(){o.value=!0;try{const u=yield S.Smart.Test.POST({type:a.task.type||"short",devicePath:a.task.devicePath||""});if(u.data){const{success:m,error:b,result:g}=u.data;b&&(s.value=b),g&&g.result&&(s.value=g.result)}}catch(u){s.value=u}finally{}});return(u,m)=>(i(),M(he,null,{default:V(()=>[t("div",Xx,[Kx,t("div",Qx,[t("textarea",{value:s.value+` `+c.value+` -`+n.value,disabled:""},null,8,Xx)]),t("div",Kx,[t("div",{class:"close",onClick:d,disabled:o.value},"\u5173\u95ED",8,Qx),o.value?E("",!0):(i(),r("div",{key:0,class:"next",onClick:l,disabled:o.value},"\u8FD0\u884C",8,tk))])])]),_:1}))}});var ak=Y(ek,[["__scopeId","data-v-3f7c551e"]]);const qt=e=>(O("data-v-7d3ebf99"),e=e(),N(),e),ok={class:"actioner-container"},nk={class:"actioner-container_header"},ik={class:"tabs"},rk=qt(()=>t("a",null,"\u8BBE\u5907\u4FE1\u606F",-1)),sk=[rk],dk=qt(()=>t("a",null,"\u5C5E\u6027",-1)),uk=[dk],lk=qt(()=>t("a",null,"\u81EA\u68C0\u65E5\u5FD7",-1)),ck=[lk],pk=qt(()=>t("a",null,"\u6269\u5C55\u4FE1\u606F",-1)),fk=[pk],mk={class:"actioner-container_body"},bk={key:0,class:"table"},vk={class:"tr"},gk=qt(()=>t("td",{class:"td left"},"\u8BBE\u5907",-1)),_k={class:"td left"},hk={class:"tr"},xk=qt(()=>t("td",{class:"td left"},"\u578B\u53F7",-1)),kk={class:"td left"},wk={class:"tr"},yk=qt(()=>t("td",{class:"td left"},"\u5E8F\u53F7",-1)),Fk={class:"td left"},Ek=["value"],Ck=["value"],$k=["value"],Dk={class:"actioner-container_footer"},Bk=["disabled"],Yk=P({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=y(!1),n=y("info"),s=u=>{switch(n.value=u,u){case"info":break;case"attribute":d();break;case"log":p();break;case"extend":l();break}},c=()=>{o.value=!0,a.close()},f=it({log:"",attribute:"",extend:""}),p=()=>T(this,null,function*(){try{const u=yield S.Smart.Test.Result.POST({type:"selftest",devicePath:a.disk.path||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(f.log=m.result),b&&(f.log=b)}}catch(u){f.log=u}}),d=()=>T(this,null,function*(){try{const u=yield S.Smart.Attribute.Result.POST({devicePath:a.disk.path||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(f.attribute=m.result),b&&(f.attribute=b)}}catch(u){f.attribute=u}}),l=()=>T(this,null,function*(){try{const u=yield S.Smart.Extend.Result.POST({devicePath:a.disk.path||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(f.extend=m.result),b&&(f.extend=b)}}catch(u){f.extend=u}});return(u,m)=>(i(),M(he,null,{default:V(()=>[t("div",ok,[t("div",nk,[t("ul",ik,[t("li",{class:ot({"active cbi-tab":n.value=="info"}),onClick:m[0]||(m[0]=b=>s("info"))},sk,2),t("li",{class:ot({"active cbi-tab":n.value=="attribute"}),onClick:m[1]||(m[1]=b=>s("attribute"))},uk,2),t("li",{class:ot({"active cbi-tab":n.value=="log"}),onClick:m[2]||(m[2]=b=>s("log"))},ck,2),t("li",{class:ot({"active cbi-tab":n.value=="extend"}),onClick:m[3]||(m[3]=b=>s("extend"))},fk,2)])]),t("div",mk,[n.value=="info"?(i(),r("table",bk,[t("tr",vk,[gk,t("td",_k,h(e.disk.path),1)]),t("tr",hk,[xk,t("td",kk,h(e.disk.model),1)]),t("tr",wk,[yk,t("td",Fk,h(e.disk.serial),1)])])):n.value=="attribute"?(i(),r("textarea",{key:1,disabled:"",value:k(f).attribute},null,8,Ek)):n.value=="log"?(i(),r("textarea",{key:2,disabled:"",value:k(f).log},null,8,Ck)):n.value=="extend"?(i(),r("textarea",{key:3,disabled:"",value:k(f).extend},null,8,$k)):E("",!0)]),t("div",Dk,[t("div",{class:"close",onClick:c,disabled:o.value},"\u5173\u95ED",8,Bk)])])]),_:1}))}});var Ak=Y(Yk,[["__scopeId","data-v-7d3ebf99"]]);const Sk=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(ox,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},zk=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(Ux,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},Pk=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(ak,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},Tk=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(Ak,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},Ik={class:"cbi-section"},Lk={class:"cbi-value"},Mk=t("label",{class:"cbi-value-title"}," \u542F\u7528 ",-1),Ok={class:"cbi-value-field"},Nk={class:"cbi-checkbox"},qk=["value"],Vk={class:"cbi-value"},Gk=t("label",{class:"cbi-value-title"}," \u7535\u6E90\u6A21\u5F0F ",-1),jk={class:"cbi-value-field"},Rk={class:"cbi-checkbox"},Uk=t("option",{value:"never"},"\u6C38\u4E0D",-1),Wk=t("option",{value:"sleep"},"\u7761\u7720",-1),Hk=t("option",{value:"standby"},"\u5F85\u673A",-1),Zk=t("option",{value:"idle"},"\u95F2\u7F6E",-1),Jk=[Uk,Wk,Hk,Zk],Xk=t("div",{class:"cbi-value-description"},[t("span",null," \u6D4B\u8BD5\u65F6\u78C1\u76D8\u4F1A\u8F6C\u52A8\uFF0C\u8BF7\u9009\u62E9\u5408\u9002\u7684\u6A21\u5F0F\u6765\u63A7\u5236\u78C1\u76D8\u8F6C\u52A8\u3002"),t("br"),t("span",null,".\u6C38\u8FDC-\u65E0\u8BBA\u662F\u4EC0\u4E48\u529F\u8017\u6A21\u5F0F\u4E0B\u90FD\u6D4B\u8BD5(\u68C0\u67E5)\u78C1\u76D8\uFF0C\u5F53\u68C0\u67E5\u65F6\uFF0C\u8FD9\u53EF\u80FD\u4F1A\u4F7F\u505C\u8F6C\u7684\u78C1\u76D8\u5F00\u59CB\u8F6C\u52A8\u3002"),t("br"),t("span",null,".\u7761\u7720-\u5904\u4E8E\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002"),t("br"),t("span",null,".\u5F85\u673A-\u5904\u4E8E\u5F85\u673A\u548C\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002\u6B64\u6A21\u5F0F\u4E0B\u78C1\u76D8\u4E00\u822C\u4E0D\u65CB\u8F6C\uFF0C\u5982\u679C\u4F60\u4E0D\u60F3\u6BCF\u6B21\u68C0\u67E5\u90FD\u8F6C\u52A8\u78C1\u76D8\uFF0C\u90A3\u4E48\u8FD9\u4E2A\u6A21\u5F0F\u6BD4\u8F83\u9002\u5408\u3002"),t("br"),t("span",null,".\u95F2\u7F6E-\u5904\u4E8E\u5F85\u673A\u3001\u7761\u7720\u3001\u95F2\u7F6E\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\uFF0C\u5728\u95F2\u7F6E\u72B6\u6001\u4E0B\uFF0C\u5927\u591A\u6570\u78C1\u76D8\u8FD8\u5728\u8F6C\u52A8\uFF0C\u6240\u4EE5\u8FD9\u53EF\u80FD\u4E0D\u9002\u5408\u4F60\u3002")],-1),Kk={class:"cbi-value"},Qk=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),tw={class:"cbi-value-field"},ew={class:"cbi-checkbox"},aw=t("option",{value:0},"\u7981\u7528",-1),ow=["value"],nw=t("div",{class:"cbi-value-description"}," \u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A. ",-1),iw={class:"cbi-value"},rw=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),sw={class:"cbi-value-field"},dw={class:"cbi-checkbox"},uw=t("option",{value:0},"\u7981\u7528",-1),lw=["value"],cw=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),pw={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},fw={class:"table cbi-section-table"},mw=t("thead",null,[t("tr",{class:"tr cbi-section-table-titles anonymous"},[t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8BBE\u5907"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u578B\u53F7"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5E8F\u53F7"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5BB9\u91CF"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u6E29\u5EA6"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u72B6\u6001"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5065\u5EB7"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u64CD\u4F5C")])],-1),bw={class:"tr cbi-section-table-row"},vw={class:"td cbi-value-field"},gw={class:"td cbi-value-field"},_w={class:"td cbi-value-field"},hw={class:"td cbi-value-field"},xw={class:"td cbi-value-field"},kw={class:"td cbi-value-field"},ww={class:"td cbi-value-field"},yw={class:"td cbi-value-field"},Fw=["onClick"],Ew=["onClick"],Cw=P({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(e){const a=e,o=it(a.config),n=()=>{o.global.tmpDiff=a.config.global.tmpDiff||0,o.global.tmpMax=a.config.global.tmpMax||0,o.global.enable=a.config.global.enable||!1,o.global.powermode=a.config.global.powermode||"never",o.devices=a.config.devices||[],o.tasks=a.config.tasks||[]},s=y([]),c=()=>T(this,null,function*(){try{const u=yield S.Smart.List.GET();if(u.data){const{result:m,error:b}=u.data;m&&m.disks&&(s.value=m.disks||[])}}catch(u){}}),f=yt.easyInterval(c,5e3);Fe(()=>{f()});const p=()=>T(this,null,function*(){yield a.saveData({global:o.global,devices:a.config.devices,tasks:a.config.tasks}),n()}),d=u=>{Tk({disk:u})},l=(u,m)=>T(this,null,function*(){let b=null,g=-1;if(o.devices){for(let v=0;vT(this,null,function*(){v.tmpDiff==-1&&(v.tmpDiff=o.global.tmpDiff),v.tmpMax==-1&&(v.tmpMax=o.global.tmpMax),v.devicePath==""&&(v.devicePath=u.path);let _=[...o.devices];g>=0&&(_[g]=v);const w=new Map;_.forEach(x=>{x.devicePath!=null&&w.set(x.devicePath,null)});for(let x=0;x(i(),r(L,null,[t("fieldset",Ik,[t("div",Lk,[Mk,t("div",Ok,[t("div",Nk,[z(t("input",{type:"checkbox","onUpdate:modelValue":m[0]||(m[0]=b=>k(o).global.enable=b),value:!k(o).global.enable},null,8,qk),[[It,k(o).global.enable]])])])]),t("div",Vk,[Gk,t("div",jk,[t("div",Rk,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[1]||(m[1]=b=>k(o).global.powermode=b)},Jk,512),[[Q,k(o).global.powermode,void 0,{trim:!0}]])]),Xk])]),t("div",Kk,[Qk,t("div",tw,[t("div",ew,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[2]||(m[2]=b=>k(o).global.tmpDiff=b)},[aw,(i(),r(L,null,j(15,b=>t("option",{value:b},h(b)+"\xB0C",9,ow)),64))],512),[[Q,k(o).global.tmpDiff,void 0,{number:!0}]])]),nw])]),t("div",iw,[rw,t("div",sw,[t("div",dw,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[3]||(m[3]=b=>k(o).global.tmpMax=b)},[uw,(i(),r(L,null,j(20,b=>t("option",{value:b*5},h(b*5)+"\xB0C",9,lw)),64))],512),[[Q,k(o).global.tmpMax,void 0,{number:!0}]])]),cw])])]),t("div",pw,[t("table",fw,[mw,t("tbody",null,[(i(!0),r(L,null,j(s.value,(b,g)=>(i(),r("tr",bw,[t("td",vw,[t("b",null,h(b.path),1)]),t("td",gw,[t("b",null,h(b.model),1)]),t("td",_w,[t("b",null,h(b.serial),1)]),t("td",hw,[t("b",null,h(b.sizeStr),1)]),t("td",xw,[t("b",null,h(b.temp),1)]),t("td",kw,[t("b",null,h(b.status),1)]),t("td",ww,[t("b",null,h(b.health),1)]),t("td",yw,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:v=>l(b)},"\u7F16\u8F91",8,Fw),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:v=>d(b)},"\u8BE6\u60C5",8,Ew)])]))),256))])])]),t("span",{class:"cbi-page-actions control-group"},[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:"\u4FDD\u5B58\u5E76\u5E94\u7528",onClick:p})])],64))}}),$w={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Dw={class:"table cbi-section-table"},Bw=t("thead",null,[t("tr",{class:"tr cbi-section-table-titles anonymous"},[t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8BBE\u5907"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u7C7B\u578B"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8C03\u5EA6"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u529F\u80FD")])],-1),Yw={class:"tr cbi-section-table-row"},Aw={class:"td cbi-value-field"},Sw={class:"td cbi-value-field"},zw={class:"td cbi-value-field"},Pw={class:"td cbi-value-field"},Tw=["onClick"],Iw=["onClick"],Lw=P({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(e){const a=e,o=it(a.config),n=p=>{switch(p){case"short":return"\u77ED\u6682\u81EA\u68C0";case"long":return"\u957F\u65F6\u81EA\u68C0";case"conveyance":return"\u4F20\u8F93\u65F6\u81EA\u68C0";case"offline":return"\u79BB\u7EBF\u65F6\u81EA\u68C0";default:return"\u672A\u77E5"}},s=()=>{zk({config:a.config,disks:[],next:p=>T(this,null,function*(){yield a.saveData({tasks:[...o.tasks,p],global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]})})},c=p=>T(this,null,function*(){const d=[...o.tasks];d.splice(p,1),yield a.saveData({tasks:d,global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]}),f=p=>{Pk({task:p})};return(p,d)=>(i(),r(L,null,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:d[0]||(d[0]=l=>s())},"\u65B0\u5EFA"),t("div",$w,[t("table",Dw,[Bw,t("tbody",null,[(i(!0),r(L,null,j(k(o).tasks,(l,u)=>(i(),r("tr",Yw,[t("td",Aw,[t("b",null,h(l.devicePath),1)]),t("td",Sw,[t("b",null,h(n(l.type)),1)]),t("td",zw,[t("b",null,h(l.month)+"/"+h(l.dayPerMonth)+"/"+h(l.hour),1)]),t("td",Pw,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8C03\u8BD5",onClick:m=>f(l)},"\u9884\u89C8",8,Tw),t("button",{class:"cbi-button cbi-button-remove",title:"\u5220\u9664",onClick:m=>c(u)},"\u5220\u9664",8,Iw)])]))),256))])])])],64))}}),Mw={class:"cbi-section"},Ow=["value"],Nw=P({setup(e){return T(this,null,function*(){let a,o;const n=y(""),s=()=>T(this,null,function*(){try{const c=yield S.Smart.Log.GET();if(c.data){const{result:f,error:p}=c.data;f&&f.result&&(n.value=f.result),p&&(n.value=p)}}catch(c){n.value=c}});return[a,o]=Oa(()=>s()),yield a,o(),(c,f)=>(i(),r("fieldset",Mw,[t("textarea",{value:n.value,disabled:""},null,8,Ow)]))})}});var qw=Y(Nw,[["__scopeId","data-v-76197cba"]]);const Vw={},Gw={t:"1659511092204",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2332","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"200",height:"200"},jw=t("path",{d:"M514.048 62.464q93.184 0 175.616 35.328t143.872 96.768 96.768 143.872 35.328 175.616q0 94.208-35.328 176.128t-96.768 143.36-143.872 96.768-175.616 35.328q-94.208 0-176.64-35.328t-143.872-96.768-96.768-143.36-35.328-176.128q0-93.184 35.328-175.616t96.768-143.872 143.872-96.768 176.64-35.328zM772.096 576.512q26.624 0 45.056-18.944t18.432-45.568-18.432-45.056-45.056-18.432l-192.512 0 0-192.512q0-26.624-18.944-45.568t-45.568-18.944-45.056 18.944-18.432 45.568l0 192.512-192.512 0q-26.624 0-45.056 18.432t-18.432 45.056 18.432 45.568 45.056 18.944l192.512 0 0 191.488q0 26.624 18.432 45.568t45.056 18.944 45.568-18.944 18.944-45.568l0-191.488 192.512 0z","p-id":"2333"},null,-1),Rw=[jw];function Uw(e,a){return i(),r("svg",Gw,Rw)}var Ze=Y(Vw,[["render",Uw]]);const xe=e=>(O("data-v-2f7b866f"),e=e(),N(),e),Ww=["onSubmit"],Hw={class:"actioner-dns_header"},Zw={key:0},Jw={key:1},Xw={class:"actioner-dns_body"},Kw={class:"label-item"},Qw=xe(()=>t("div",{class:"label-item_key"},[t("span",null,"\u540D\u79F0")],-1)),ty={class:"label-item_value"},ey={class:"label-item"},ay=xe(()=>t("div",{class:"label-item_key"},[t("span",null,"\u534F\u8BAE\uFF08\u7F51\u7EDC\u83B7\u53D6\u65B9\u5F0F\uFF09")],-1)),oy={class:"label-item_value"},ny=xe(()=>t("option",{value:"dhcp"},"DHCP\u5BA2\u6237\u7AEF",-1)),iy={key:0,value:"pppoe"},ry=xe(()=>t("option",{value:"static"},"\u9759\u6001\u5730\u5740",-1)),sy={class:"actioner-dns_footer"},dy=["disabled"],uy=P({props:{Close:{type:Function,required:!0},e:{type:String,required:!0},name:{type:String,required:!0},inface:{type:Object,required:!0},next:{type:Function,required:!0}},setup(e){const a=e,o=y(!1),n=y(a.inface),s=()=>T(this,null,function*(){F.Loading("\u914D\u7F6E\u4E2D...").Close(),a.next(n.value),c()}),c=()=>{a.Close&&a.Close()};return(f,p)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[t("form",{class:"actioner-dns",onSubmit:nt(s,["prevent"])},[t("div",Hw,[e.name=="wan"?(i(),r("span",Zw,h(e.e=="edit"?"\u7F16\u8F91WAN":"\u6DFB\u52A0WAN"),1)):(i(),r("span",Jw,h(e.e=="edit"?"\u7F16\u8F91LAN":"\u6DFB\u52A0LAN"),1))]),t("div",Xw,[t("div",Kw,[Qw,t("div",ty,[t("span",null,h(n.value.name.toLocaleUpperCase()),1)])]),t("div",ey,[ay,t("div",oy,[z(t("select",{"onUpdate:modelValue":p[0]||(p[0]=d=>n.value.proto=d)},[ny,e.name=="wan"?(i(),r("option",iy,"PPPoE")):E("",!0),ry],512),[[Q,n.value.proto]])])])]),t("div",sy,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:o.value},"\u4FDD\u5B58",8,dy),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:c},"\u53D6\u6D88")])],40,Ww)]),_:1},8,["Close"]))}});var ly=Y(uy,[["__scopeId","data-v-2f7b866f"]]);const Je=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(ly,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()}},vt=e=>(O("data-v-589588f0"),e=e(),N(),e),cy={id:"page"},py=vt(()=>t("h2",{name:"content"}," \u7F51\u53E3\u914D\u7F6E",-1)),fy={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},my={class:"table cbi-section-table"},by={width:"200"},vy=vt(()=>t("col",null,null,-1)),gy=vt(()=>t("col",null,null,-1)),_y=vt(()=>t("col",{width:"200"},null,-1)),hy={class:"tr cbi-section-table-cell"},xy={class:"th cbi-section-table-cell interface-device","data-widget":"value"},ky={class:"interface-device-flex"},wy=vt(()=>t("th",{style:{width:"10px"}},null,-1)),yy=vt(()=>t("th",{style:{width:"32px"}},null,-1)),Fy=vt(()=>t("th",null,null,-1)),Ey={class:"tr cbi-section-table-row cbi-rowstyle-1"},Cy={class:"td cbi-value-field interface-device info"},$y=["name","value","onUpdate:modelValue","onInput"],Dy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),By={class:"td cbi-value-field"},Yy={class:"td cbi-value-field btns"},Ay=["onClick"],Sy=["onClick"],zy={class:"tr cbi-section-table-row cbi-rowstyle-1"},Py={class:"td cbi-value-field"},Ty=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Iy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Ly={class:"tr cbi-section-table-row cbi-rowstyle-1"},My={class:"td cbi-value-field interface-device info","data-widget":"value"},Oy=["name","value","onUpdate:modelValue","onInput"],Ny=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),qy={class:"td cbi-value-field"},Vy={class:"td cbi-value-field btns"},Gy=["onClick"],jy=["onClick"],Ry={class:"tr cbi-section-table-row cbi-rowstyle-1"},Uy={class:"td cbi-value-field"},Wy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Hy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Zy={class:"cbi-page-actions control-group"},Jy=["disabled"],Xy=P({setup(e){const a=it({devices:[],interfaces:[]}),o=y(!1),n=it({lan:[],wan:[]});(()=>{S.Network.GetInterfaceConfig.GET().then(m=>{if(m.data){const{result:b}=m.data;if(b){a.devices=b.devices||[],a.interfaces=b.interfaces||[];for(let g=0;g{m=="wan"?n.wan.splice(b,1):m=="lan"&&n.lan.splice(b,1)},f=(m,b)=>{if(b==null){let g=m=="wan"?n.wan.length:n.lan.length;g==6&&m=="wan"&&g++,Je({e:"add",name:m,inface:{name:m+`${g}`,proto:"dhcp",ipv4Addr:"",ipv6Addr:"",portName:"",deviceNames:[],ports:[],firewallType:m},next:v=>{m=="wan"?n.wan.push(v):n.lan.push(v),F.Message("\u8BF7\u5728\u4FDD\u5B58\u4EE5\u540E\u524D\u5F80'\u7F51\u7EDC-\u63A5\u53E3'\u9875\u9762\u914D\u7F6E\u63A5\u53E3\u8BE6\u7EC6\u53C2\u6570")}})}else Je({e:"edit",name:m,inface:m=="wan"?n.wan[b]:n.lan[b],next:g=>{m=="wan"?n.wan[b]=g:n.lan[b]=g}})},p=(m,b)=>m?m.indexOf(b):-1,d=(m,b)=>{const v=m.target.value;for(let w=0;w{const v=m.target.value;for(let _=0;_T(this,null,function*(){o.value=!0;const m=[];for(let g=0;g(i(),r("div",cy,[py,t("div",null,[t("div",fy,[t("table",my,[t("colgroup",null,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("col",by))),256)),vy,gy,_y]),t("thead",null,[t("tr",hy,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("th",xy,[t("div",ky,[D(na,{item:g},null,8,["item"])])]))),256)),wy,yy,Fy])]),t("tbody",null,[(i(!0),r(L,null,j(k(n).lan,(g,v)=>(i(),r("tr",Ey,[(i(!0),r(L,null,j(k(a).devices,_=>(i(),r("td",Cy,[z(t("input",{type:"checkbox",name:_.name,value:_.name,"onUpdate:modelValue":w=>g.deviceNames=w,onInput:w=>d(w,v)},null,40,$y),[[It,g.deviceNames]])]))),256)),Dy,t("td",By,[t("b",null,h(g.name),1)]),t("td",Yy,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:_=>f("lan",v)},"\u7F16\u8F91",8,Ay),v!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:_=>c("lan",v)},"\u5220\u9664 ",8,Sy)):E("",!0)])]))),256)),t("tr",zy,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("td",Py))),256)),Ty,Iy,t("td",{class:"td cbi-value-field btns",onClick:b[0]||(b[0]=g=>f("lan"))},[D(Ze,{class:"icon"})])]),(i(!0),r(L,null,j(k(n).wan,(g,v)=>(i(),r("tr",Ly,[(i(!0),r(L,null,j(k(a).devices,_=>(i(),r("td",My,[z(t("input",{type:"checkbox",name:_.name,value:_.name,"onUpdate:modelValue":w=>g.deviceNames=w,onInput:w=>l(w,v)},null,40,Oy),[[It,g.deviceNames]])]))),256)),Ny,t("td",qy,[t("b",null,h(g.name),1)]),t("td",Vy,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:_=>f("wan",v)},"\u7F16\u8F91",8,Gy),v!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:_=>c("wan",v)},"\u5220\u9664",8,jy)):E("",!0)])]))),256)),t("tr",Ry,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("td",Uy))),256)),Wy,Hy,t("td",{class:"td cbi-value-field btns",onClick:b[1]||(b[1]=g=>f("wan"))},[D(Ze,{class:"icon"})])])])])]),t("div",Zy,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:"\u4FDD\u5B58\u5E76\u5E94\u7528",onClick:u,disabled:o.value},null,8,Jy)])])]))}});var Ky=Y(Xy,[["__scopeId","data-v-589588f0"]]);const Qy=()=>window.vue_base||"/cgi-bin/luci/admin/quickstart",ha=Na({history:qa(Qy()),routes:[{name:"IndexPage",path:"/",meta:{title:"\u63A7\u5236\u53F0"},component:l9},{name:"NetworkPage",path:"/network",meta:{title:"\u7F51\u7EDC\u8BBE\u7F6E\u5411\u5BFC"},component:f9,children:[{path:"",component:J9},{path:"pppoe",component:Fb},{path:"dhcp",component:bv},{path:"gateway",component:og}]},{name:"RaidPage",path:"/raid",meta:{title:"raid\u5411\u5BFC"},component:kh},{name:"SmartPage",path:"/smart",meta:{title:"smart\u68C0\u6D4B"},component:Dh,children:[{path:"",component:Cw},{path:"task",component:Lw},{path:"log",component:qw}]},{path:"/interfaceconfig",component:Ky}]});ha.beforeEach((e,a)=>(e.meta.title,!0));const dt=tt(io);dt.component("svg-menu",fo);dt.component("svg-system",ho);dt.component("svg-download",Eo);dt.component("svg-store",zo);dt.component("svg-info",Oo);dt.component("svg-disk",ln);dt.component("svg-nav",vn);dt.component("progress-item",ta);dt.component("svg-view-show",On);dt.component("svg-view-hidden",Rn);dt.component("article-item",Kn);dt.component("switch-box",ea);dt.component("editable-select",Pt);dt.use(aa);dt.use(ha);dt.use(Va());dt.mount("#app")});export default tF(); +`+n.value,disabled:""},null,8,tk)]),t("div",ek,[t("div",{class:"close",onClick:d,disabled:o.value},"\u5173\u95ED",8,ak),o.value?E("",!0):(i(),r("div",{key:0,class:"next",onClick:l,disabled:o.value},"\u8FD0\u884C",8,ok))])])]),_:1}))}});var ik=Y(nk,[["__scopeId","data-v-3f7c551e"]]);const Nt=e=>(O("data-v-7d3ebf99"),e=e(),N(),e),rk={class:"actioner-container"},sk={class:"actioner-container_header"},dk={class:"tabs"},uk=Nt(()=>t("a",null,"\u8BBE\u5907\u4FE1\u606F",-1)),lk=[uk],ck=Nt(()=>t("a",null,"\u5C5E\u6027",-1)),pk=[ck],fk=Nt(()=>t("a",null,"\u81EA\u68C0\u65E5\u5FD7",-1)),mk=[fk],bk=Nt(()=>t("a",null,"\u6269\u5C55\u4FE1\u606F",-1)),vk=[bk],gk={class:"actioner-container_body"},_k={key:0,class:"table"},hk={class:"tr"},xk=Nt(()=>t("td",{class:"td left"},"\u8BBE\u5907",-1)),kk={class:"td left"},wk={class:"tr"},yk=Nt(()=>t("td",{class:"td left"},"\u578B\u53F7",-1)),Fk={class:"td left"},Ek={class:"tr"},Ck=Nt(()=>t("td",{class:"td left"},"\u5E8F\u53F7",-1)),$k={class:"td left"},Dk=["value"],Bk=["value"],Yk=["value"],Ak={class:"actioner-container_footer"},Sk=["disabled"],zk=P({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=y(!1),n=y("info"),s=u=>{switch(n.value=u,u){case"info":break;case"attribute":d();break;case"log":p();break;case"extend":l();break}},c=()=>{o.value=!0,a.close()},f=it({log:"",attribute:"",extend:""}),p=()=>T(this,null,function*(){try{const u=yield S.Smart.Test.Result.POST({type:"selftest",devicePath:a.disk.path||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(f.log=m.result),b&&(f.log=b)}}catch(u){f.log=u}}),d=()=>T(this,null,function*(){try{const u=yield S.Smart.Attribute.Result.POST({devicePath:a.disk.path||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(f.attribute=m.result),b&&(f.attribute=b)}}catch(u){f.attribute=u}}),l=()=>T(this,null,function*(){try{const u=yield S.Smart.Extend.Result.POST({devicePath:a.disk.path||""});if(u.data){const{result:m,error:b}=u.data;m&&m.result&&(f.extend=m.result),b&&(f.extend=b)}}catch(u){f.extend=u}});return(u,m)=>(i(),M(he,null,{default:V(()=>[t("div",rk,[t("div",sk,[t("ul",dk,[t("li",{class:ot({"active cbi-tab":n.value=="info"}),onClick:m[0]||(m[0]=b=>s("info"))},lk,2),t("li",{class:ot({"active cbi-tab":n.value=="attribute"}),onClick:m[1]||(m[1]=b=>s("attribute"))},pk,2),t("li",{class:ot({"active cbi-tab":n.value=="log"}),onClick:m[2]||(m[2]=b=>s("log"))},mk,2),t("li",{class:ot({"active cbi-tab":n.value=="extend"}),onClick:m[3]||(m[3]=b=>s("extend"))},vk,2)])]),t("div",gk,[n.value=="info"?(i(),r("table",_k,[t("tr",hk,[xk,t("td",kk,h(e.disk.path),1)]),t("tr",wk,[yk,t("td",Fk,h(e.disk.model),1)]),t("tr",Ek,[Ck,t("td",$k,h(e.disk.serial),1)])])):n.value=="attribute"?(i(),r("textarea",{key:1,disabled:"",value:k(f).attribute},null,8,Dk)):n.value=="log"?(i(),r("textarea",{key:2,disabled:"",value:k(f).log},null,8,Bk)):n.value=="extend"?(i(),r("textarea",{key:3,disabled:"",value:k(f).extend},null,8,Yk)):E("",!0)]),t("div",Ak,[t("div",{class:"close",onClick:c,disabled:o.value},"\u5173\u95ED",8,Sk)])])]),_:1}))}});var Pk=Y(zk,[["__scopeId","data-v-7d3ebf99"]]);const Tk=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(rx,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},Ik=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(Zx,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},Lk=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(ik,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},Mk=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=D(Pk,at(J({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},Ok={class:"cbi-section"},Nk={class:"cbi-value"},qk=t("label",{class:"cbi-value-title"}," \u542F\u7528 ",-1),Vk={class:"cbi-value-field"},Gk={class:"cbi-checkbox"},jk=["value"],Rk={class:"cbi-value"},Uk=t("label",{class:"cbi-value-title"}," \u7535\u6E90\u6A21\u5F0F ",-1),Wk={class:"cbi-value-field"},Hk={class:"cbi-checkbox"},Zk=t("option",{value:"never"},"\u6C38\u4E0D",-1),Jk=t("option",{value:"sleep"},"\u7761\u7720",-1),Xk=t("option",{value:"standby"},"\u5F85\u673A",-1),Kk=t("option",{value:"idle"},"\u95F2\u7F6E",-1),Qk=[Zk,Jk,Xk,Kk],tw=t("div",{class:"cbi-value-description"},[t("span",null," \u6D4B\u8BD5\u65F6\u78C1\u76D8\u4F1A\u8F6C\u52A8\uFF0C\u8BF7\u9009\u62E9\u5408\u9002\u7684\u6A21\u5F0F\u6765\u63A7\u5236\u78C1\u76D8\u8F6C\u52A8\u3002"),t("br"),t("span",null,".\u6C38\u8FDC-\u65E0\u8BBA\u662F\u4EC0\u4E48\u529F\u8017\u6A21\u5F0F\u4E0B\u90FD\u6D4B\u8BD5(\u68C0\u67E5)\u78C1\u76D8\uFF0C\u5F53\u68C0\u67E5\u65F6\uFF0C\u8FD9\u53EF\u80FD\u4F1A\u4F7F\u505C\u8F6C\u7684\u78C1\u76D8\u5F00\u59CB\u8F6C\u52A8\u3002"),t("br"),t("span",null,".\u7761\u7720-\u5904\u4E8E\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002"),t("br"),t("span",null,".\u5F85\u673A-\u5904\u4E8E\u5F85\u673A\u548C\u7761\u7720\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\u3002\u6B64\u6A21\u5F0F\u4E0B\u78C1\u76D8\u4E00\u822C\u4E0D\u65CB\u8F6C\uFF0C\u5982\u679C\u4F60\u4E0D\u60F3\u6BCF\u6B21\u68C0\u67E5\u90FD\u8F6C\u52A8\u78C1\u76D8\uFF0C\u90A3\u4E48\u8FD9\u4E2A\u6A21\u5F0F\u6BD4\u8F83\u9002\u5408\u3002"),t("br"),t("span",null,".\u95F2\u7F6E-\u5904\u4E8E\u5F85\u673A\u3001\u7761\u7720\u3001\u95F2\u7F6E\u6A21\u5F0F\u4E0B\u4E0D\u68C0\u67E5\u8BBE\u5907\uFF0C\u5728\u95F2\u7F6E\u72B6\u6001\u4E0B\uFF0C\u5927\u591A\u6570\u78C1\u76D8\u8FD8\u5728\u8F6C\u52A8\uFF0C\u6240\u4EE5\u8FD9\u53EF\u80FD\u4E0D\u9002\u5408\u4F60\u3002")],-1),ew={class:"cbi-value"},aw=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),ow={class:"cbi-value-field"},nw={class:"cbi-checkbox"},iw=t("option",{value:0},"\u7981\u7528",-1),rw=["value"],sw=t("div",{class:"cbi-value-description"}," \u81EA\u4E0A\u6B21\u62A5\u544A\u4EE5\u6765\u6E29\u5EA6\u53D8\u5316\u81F3\u5C11 N \u5EA6\uFF0C\u5219\u9700\u62A5\u544A. ",-1),dw={class:"cbi-value"},uw=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),lw={class:"cbi-value-field"},cw={class:"cbi-checkbox"},pw=t("option",{value:0},"\u7981\u7528",-1),fw=["value"],mw=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),bw={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},vw={class:"table cbi-section-table"},gw=t("thead",null,[t("tr",{class:"tr cbi-section-table-titles anonymous"},[t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8BBE\u5907"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u578B\u53F7"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5E8F\u53F7"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5BB9\u91CF"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u6E29\u5EA6"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u72B6\u6001"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u5065\u5EB7"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u64CD\u4F5C")])],-1),_w={class:"tr cbi-section-table-row"},hw={class:"td cbi-value-field"},xw={class:"td cbi-value-field"},kw={class:"td cbi-value-field"},ww={class:"td cbi-value-field"},yw={class:"td cbi-value-field"},Fw={class:"td cbi-value-field"},Ew={class:"td cbi-value-field"},Cw={class:"td cbi-value-field"},$w=["onClick"],Dw=["onClick"],Bw=P({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(e){const a=e,o=it(a.config),n=()=>{o.global.tmpDiff=a.config.global.tmpDiff||0,o.global.tmpMax=a.config.global.tmpMax||0,o.global.enable=a.config.global.enable||!1,o.global.powermode=a.config.global.powermode||"never",o.devices=a.config.devices||[],o.tasks=a.config.tasks||[]},s=y([]),c=()=>T(this,null,function*(){try{const u=yield S.Smart.List.GET();if(u.data){const{result:m,error:b}=u.data;m&&m.disks&&(s.value=m.disks||[])}}catch(u){}}),f=yt.easyInterval(c,5e3);Fe(()=>{f()});const p=()=>T(this,null,function*(){yield a.saveData({global:o.global,devices:a.config.devices,tasks:a.config.tasks}),n()}),d=u=>{Mk({disk:u})},l=(u,m)=>T(this,null,function*(){let b=null,g=-1;if(o.devices){for(let v=0;vT(this,null,function*(){v.tmpDiff==-1&&(v.tmpDiff=o.global.tmpDiff),v.tmpMax==-1&&(v.tmpMax=o.global.tmpMax),v.devicePath==""&&(v.devicePath=u.path);let _=[...o.devices];g>=0&&(_[g]=v);const w=new Map;_.forEach(x=>{x.devicePath!=null&&w.set(x.devicePath,null)});for(let x=0;x(i(),r(L,null,[t("fieldset",Ok,[t("div",Nk,[qk,t("div",Vk,[t("div",Gk,[z(t("input",{type:"checkbox","onUpdate:modelValue":m[0]||(m[0]=b=>k(o).global.enable=b),value:!k(o).global.enable},null,8,jk),[[Tt,k(o).global.enable]])])])]),t("div",Rk,[Uk,t("div",Wk,[t("div",Hk,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[1]||(m[1]=b=>k(o).global.powermode=b)},Qk,512),[[Q,k(o).global.powermode,void 0,{trim:!0}]])]),tw])]),t("div",ew,[aw,t("div",ow,[t("div",nw,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[2]||(m[2]=b=>k(o).global.tmpDiff=b)},[iw,(i(),r(L,null,j(15,b=>t("option",{value:b},h(b)+"\xB0C",9,rw)),64))],512),[[Q,k(o).global.tmpDiff,void 0,{number:!0}]])]),sw])]),t("div",dw,[uw,t("div",lw,[t("div",cw,[z(t("select",{class:"cbi-input-select","onUpdate:modelValue":m[3]||(m[3]=b=>k(o).global.tmpMax=b)},[pw,(i(),r(L,null,j(20,b=>t("option",{value:b*5},h(b*5)+"\xB0C",9,fw)),64))],512),[[Q,k(o).global.tmpMax,void 0,{number:!0}]])]),mw])])]),t("div",bw,[t("table",vw,[gw,t("tbody",null,[(i(!0),r(L,null,j(s.value,(b,g)=>(i(),r("tr",_w,[t("td",hw,[t("b",null,h(b.path),1)]),t("td",xw,[t("b",null,h(b.model),1)]),t("td",kw,[t("b",null,h(b.serial),1)]),t("td",ww,[t("b",null,h(b.sizeStr),1)]),t("td",yw,[t("b",null,h(b.temp),1)]),t("td",Fw,[t("b",null,h(b.status),1)]),t("td",Ew,[t("b",null,h(b.health),1)]),t("td",Cw,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:v=>l(b)},"\u7F16\u8F91",8,$w),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:v=>d(b)},"\u8BE6\u60C5",8,Dw)])]))),256))])])]),t("span",{class:"cbi-page-actions control-group"},[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:"\u4FDD\u5B58\u5E76\u5E94\u7528",onClick:p})])],64))}}),Yw={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Aw={class:"table cbi-section-table"},Sw=t("thead",null,[t("tr",{class:"tr cbi-section-table-titles anonymous"},[t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8BBE\u5907"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u7C7B\u578B"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u8C03\u5EA6"),t("th",{class:"th cbi-section-table-cell","data-widget":"value"},"\u529F\u80FD")])],-1),zw={class:"tr cbi-section-table-row"},Pw={class:"td cbi-value-field"},Tw={class:"td cbi-value-field"},Iw={class:"td cbi-value-field"},Lw={class:"td cbi-value-field"},Mw=["onClick"],Ow=["onClick"],Nw=P({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(e){const a=e,o=it(a.config),n=p=>{switch(p){case"short":return"\u77ED\u6682\u81EA\u68C0";case"long":return"\u957F\u65F6\u81EA\u68C0";case"conveyance":return"\u4F20\u8F93\u65F6\u81EA\u68C0";case"offline":return"\u79BB\u7EBF\u65F6\u81EA\u68C0";default:return"\u672A\u77E5"}},s=()=>{Ik({config:a.config,disks:[],next:p=>T(this,null,function*(){yield a.saveData({tasks:[...o.tasks,p],global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]})})},c=p=>T(this,null,function*(){const d=[...o.tasks];d.splice(p,1),yield a.saveData({tasks:d,global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]}),f=p=>{Lk({task:p})};return(p,d)=>(i(),r(L,null,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:d[0]||(d[0]=l=>s())},"\u65B0\u5EFA"),t("div",Yw,[t("table",Aw,[Sw,t("tbody",null,[(i(!0),r(L,null,j(k(o).tasks,(l,u)=>(i(),r("tr",zw,[t("td",Pw,[t("b",null,h(l.devicePath),1)]),t("td",Tw,[t("b",null,h(n(l.type)),1)]),t("td",Iw,[t("b",null,h(l.month)+"/"+h(l.dayPerMonth)+"/"+h(l.hour),1)]),t("td",Lw,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8C03\u8BD5",onClick:m=>f(l)},"\u9884\u89C8",8,Mw),t("button",{class:"cbi-button cbi-button-remove",title:"\u5220\u9664",onClick:m=>c(u)},"\u5220\u9664",8,Ow)])]))),256))])])])],64))}}),qw={class:"cbi-section"},Vw=["value"],Gw=P({setup(e){return T(this,null,function*(){let a,o;const n=y(""),s=()=>T(this,null,function*(){try{const c=yield S.Smart.Log.GET();if(c.data){const{result:f,error:p}=c.data;f&&f.result&&(n.value=f.result),p&&(n.value=p)}}catch(c){n.value=c}});return[a,o]=Oa(()=>s()),yield a,o(),(c,f)=>(i(),r("fieldset",qw,[t("textarea",{value:n.value,disabled:""},null,8,Vw)]))})}});var jw=Y(Gw,[["__scopeId","data-v-76197cba"]]);const Rw={},Uw={t:"1659511092204",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2332","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"200",height:"200"},Ww=t("path",{d:"M514.048 62.464q93.184 0 175.616 35.328t143.872 96.768 96.768 143.872 35.328 175.616q0 94.208-35.328 176.128t-96.768 143.36-143.872 96.768-175.616 35.328q-94.208 0-176.64-35.328t-143.872-96.768-96.768-143.36-35.328-176.128q0-93.184 35.328-175.616t96.768-143.872 143.872-96.768 176.64-35.328zM772.096 576.512q26.624 0 45.056-18.944t18.432-45.568-18.432-45.056-45.056-18.432l-192.512 0 0-192.512q0-26.624-18.944-45.568t-45.568-18.944-45.056 18.944-18.432 45.568l0 192.512-192.512 0q-26.624 0-45.056 18.432t-18.432 45.056 18.432 45.568 45.056 18.944l192.512 0 0 191.488q0 26.624 18.432 45.568t45.056 18.944 45.568-18.944 18.944-45.568l0-191.488 192.512 0z","p-id":"2333"},null,-1),Hw=[Ww];function Zw(e,a){return i(),r("svg",Uw,Hw)}var Ze=Y(Rw,[["render",Zw]]);const xe=e=>(O("data-v-2f7b866f"),e=e(),N(),e),Jw=["onSubmit"],Xw={class:"actioner-dns_header"},Kw={key:0},Qw={key:1},ty={class:"actioner-dns_body"},ey={class:"label-item"},ay=xe(()=>t("div",{class:"label-item_key"},[t("span",null,"\u540D\u79F0")],-1)),oy={class:"label-item_value"},ny={class:"label-item"},iy=xe(()=>t("div",{class:"label-item_key"},[t("span",null,"\u534F\u8BAE\uFF08\u7F51\u7EDC\u83B7\u53D6\u65B9\u5F0F\uFF09")],-1)),ry={class:"label-item_value"},sy=xe(()=>t("option",{value:"dhcp"},"DHCP\u5BA2\u6237\u7AEF",-1)),dy={key:0,value:"pppoe"},uy=xe(()=>t("option",{value:"static"},"\u9759\u6001\u5730\u5740",-1)),ly={class:"actioner-dns_footer"},cy=["disabled"],py=P({props:{Close:{type:Function,required:!0},e:{type:String,required:!0},name:{type:String,required:!0},inface:{type:Object,required:!0},next:{type:Function,required:!0}},setup(e){const a=e,o=y(!1),n=y(a.inface),s=()=>T(this,null,function*(){F.Loading("\u914D\u7F6E\u4E2D...").Close(),a.next(n.value),c()}),c=()=>{a.Close&&a.Close()};return(f,p)=>(i(),M(et,{Close:e.Close,type:1},{default:V(()=>[t("form",{class:"actioner-dns",onSubmit:nt(s,["prevent"])},[t("div",Xw,[e.name=="wan"?(i(),r("span",Kw,h(e.e=="edit"?"\u7F16\u8F91WAN":"\u6DFB\u52A0WAN"),1)):(i(),r("span",Qw,h(e.e=="edit"?"\u7F16\u8F91LAN":"\u6DFB\u52A0LAN"),1))]),t("div",ty,[t("div",ey,[ay,t("div",oy,[t("span",null,h(n.value.name.toLocaleUpperCase()),1)])]),t("div",ny,[iy,t("div",ry,[z(t("select",{"onUpdate:modelValue":p[0]||(p[0]=d=>n.value.proto=d)},[sy,e.name=="wan"?(i(),r("option",dy,"PPPoE")):E("",!0),uy],512),[[Q,n.value.proto]])])])]),t("div",ly,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:o.value},"\u4FDD\u5B58",8,cy),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:c},"\u53D6\u6D88")])],40,Jw)]),_:1},8,["Close"]))}});var fy=Y(py,[["__scopeId","data-v-2f7b866f"]]);const Je=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(fy,at(J({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()}},vt=e=>(O("data-v-589588f0"),e=e(),N(),e),my={id:"page"},by=vt(()=>t("h2",{name:"content"}," \u7F51\u53E3\u914D\u7F6E",-1)),vy={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},gy={class:"table cbi-section-table"},_y={width:"200"},hy=vt(()=>t("col",null,null,-1)),xy=vt(()=>t("col",null,null,-1)),ky=vt(()=>t("col",{width:"200"},null,-1)),wy={class:"tr cbi-section-table-cell"},yy={class:"th cbi-section-table-cell interface-device","data-widget":"value"},Fy={class:"interface-device-flex"},Ey=vt(()=>t("th",{style:{width:"10px"}},null,-1)),Cy=vt(()=>t("th",{style:{width:"32px"}},null,-1)),$y=vt(()=>t("th",null,null,-1)),Dy={class:"tr cbi-section-table-row cbi-rowstyle-1"},By={class:"td cbi-value-field interface-device info"},Yy=["name","value","onUpdate:modelValue","onInput"],Ay=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Sy={class:"td cbi-value-field"},zy={class:"td cbi-value-field btns"},Py=["onClick"],Ty=["onClick"],Iy={class:"tr cbi-section-table-row cbi-rowstyle-1"},Ly={class:"td cbi-value-field"},My=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Oy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Ny={class:"tr cbi-section-table-row cbi-rowstyle-1"},qy={class:"td cbi-value-field interface-device info","data-widget":"value"},Vy=["name","value","onUpdate:modelValue","onInput"],Gy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),jy={class:"td cbi-value-field"},Ry={class:"td cbi-value-field btns"},Uy=["onClick"],Wy=["onClick"],Hy={class:"tr cbi-section-table-row cbi-rowstyle-1"},Zy={class:"td cbi-value-field"},Jy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Xy=vt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Ky={class:"cbi-page-actions control-group"},Qy=["disabled"],tF=P({setup(e){const a=it({devices:[],interfaces:[]}),o=y(!1),n=it({lan:[],wan:[]});(()=>{S.Network.GetInterfaceConfig.GET().then(m=>{if(m.data){const{result:b}=m.data;if(b){a.devices=b.devices||[],a.interfaces=b.interfaces||[];for(let g=0;g{m=="wan"?n.wan.splice(b,1):m=="lan"&&n.lan.splice(b,1)},f=(m,b)=>{if(b==null){let g=m=="wan"?n.wan.length:n.lan.length;g==6&&m=="wan"&&g++,Je({e:"add",name:m,inface:{name:m+`${g}`,proto:"dhcp",ipv4Addr:"",ipv6Addr:"",portName:"",deviceNames:[],ports:[],firewallType:m},next:v=>{m=="wan"?n.wan.push(v):n.lan.push(v),F.Message("\u8BF7\u5728\u4FDD\u5B58\u4EE5\u540E\u524D\u5F80'\u7F51\u7EDC-\u63A5\u53E3'\u9875\u9762\u914D\u7F6E\u63A5\u53E3\u8BE6\u7EC6\u53C2\u6570")}})}else Je({e:"edit",name:m,inface:m=="wan"?n.wan[b]:n.lan[b],next:g=>{m=="wan"?n.wan[b]=g:n.lan[b]=g}})},p=(m,b)=>m?m.indexOf(b):-1,d=(m,b)=>{const v=m.target.value;for(let w=0;w{const v=m.target.value;for(let _=0;_T(this,null,function*(){o.value=!0;const m=[];for(let g=0;g(i(),r("div",my,[by,t("div",null,[t("div",vy,[t("table",gy,[t("colgroup",null,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("col",_y))),256)),hy,xy,ky]),t("thead",null,[t("tr",wy,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("th",yy,[t("div",Fy,[D(na,{item:g},null,8,["item"])])]))),256)),Ey,Cy,$y])]),t("tbody",null,[(i(!0),r(L,null,j(k(n).lan,(g,v)=>(i(),r("tr",Dy,[(i(!0),r(L,null,j(k(a).devices,_=>(i(),r("td",By,[z(t("input",{type:"checkbox",name:_.name,value:_.name,"onUpdate:modelValue":w=>g.deviceNames=w,onInput:w=>d(w,v)},null,40,Yy),[[Tt,g.deviceNames]])]))),256)),Ay,t("td",Sy,[t("b",null,h(g.name),1)]),t("td",zy,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:_=>f("lan",v)},"\u7F16\u8F91",8,Py),v!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:_=>c("lan",v)},"\u5220\u9664 ",8,Ty)):E("",!0)])]))),256)),t("tr",Iy,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("td",Ly))),256)),My,Oy,t("td",{class:"td cbi-value-field btns",onClick:b[0]||(b[0]=g=>f("lan"))},[D(Ze,{class:"icon"})])]),(i(!0),r(L,null,j(k(n).wan,(g,v)=>(i(),r("tr",Ny,[(i(!0),r(L,null,j(k(a).devices,_=>(i(),r("td",qy,[z(t("input",{type:"checkbox",name:_.name,value:_.name,"onUpdate:modelValue":w=>g.deviceNames=w,onInput:w=>l(w,v)},null,40,Vy),[[Tt,g.deviceNames]])]))),256)),Gy,t("td",jy,[t("b",null,h(g.name),1)]),t("td",Ry,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:_=>f("wan",v)},"\u7F16\u8F91",8,Uy),v!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:_=>c("wan",v)},"\u5220\u9664",8,Wy)):E("",!0)])]))),256)),t("tr",Hy,[(i(!0),r(L,null,j(k(a).devices,g=>(i(),r("td",Zy))),256)),Jy,Xy,t("td",{class:"td cbi-value-field btns",onClick:b[1]||(b[1]=g=>f("wan"))},[D(Ze,{class:"icon"})])])])])]),t("div",Ky,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:"\u4FDD\u5B58\u5E76\u5E94\u7528",onClick:u,disabled:o.value},null,8,Qy)])])]))}});var eF=Y(tF,[["__scopeId","data-v-589588f0"]]);const aF=()=>window.vue_base||"/cgi-bin/luci/admin/quickstart",ha=Na({history:qa(aF()),routes:[{name:"IndexPage",path:"/",meta:{title:"\u63A7\u5236\u53F0"},component:c9},{name:"NetworkPage",path:"/network",meta:{title:"\u7F51\u7EDC\u8BBE\u7F6E\u5411\u5BFC"},component:m9,children:[{path:"",component:X9},{path:"pppoe",component:Eb},{path:"dhcp",component:vv},{path:"gateway",component:rg}]},{name:"RaidPage",path:"/raid",meta:{title:"raid\u5411\u5BFC"},component:Fh},{name:"SmartPage",path:"/smart",meta:{title:"smart\u68C0\u6D4B"},component:Ah,children:[{path:"",component:Bw},{path:"task",component:Nw},{path:"log",component:jw}]},{path:"/interfaceconfig",component:eF}]});ha.beforeEach((e,a)=>(e.meta.title,!0));const ut=tt(io);ut.component("svg-menu",fo);ut.component("svg-system",ho);ut.component("svg-download",Eo);ut.component("svg-store",zo);ut.component("svg-info",Oo);ut.component("svg-disk",ln);ut.component("svg-nav",vn);ut.component("progress-item",ta);ut.component("svg-view-show",Nn);ut.component("svg-view-hidden",Un);ut.component("article-item",Qn);ut.component("switch-box",ea);ut.component("editable-select",Pt);ut.use(aa);ut.use(ha);ut.use(Va());ut.mount("#app")});export default oF(); diff --git a/luci-app-quickstart/htdocs/luci-static/quickstart/style.css b/luci-app-quickstart/htdocs/luci-static/quickstart/style.css index 15bf1dda9..75b65020f 100644 --- a/luci-app-quickstart/htdocs/luci-static/quickstart/style.css +++ b/luci-app-quickstart/htdocs/luci-static/quickstart/style.css @@ -1 +1 @@ -@keyframes bganimation-57f1326f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-57f1326f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-57f1326f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-57f1326f]{animation:rotateEnter-57f1326f .7s;position:relative}.rotate-leave-active[data-v-57f1326f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-57f1326f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.disk-item-tooltip[data-v-57f1326f]{position:fixed;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;font-size:1em;min-width:200px;line-height:24px}.disk-item-tooltip[data-v-57f1326f]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#main .app-btn,#actioner .app-btn{min-height:36px}@keyframes bganimation-9bc295c2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9bc295c2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9bc295c2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9bc295c2]{animation:rotateEnter-9bc295c2 .7s;position:relative}.rotate-leave-active[data-v-9bc295c2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9bc295c2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#main[data-v-9bc295c2]{width:100%}#main[data-v-9bc295c2],#main[data-v-9bc295c2] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}@keyframes bganimation-733828e1{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-733828e1{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-733828e1{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-733828e1]{animation:rotateEnter-733828e1 .7s;position:relative}.rotate-leave-active[data-v-733828e1]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-733828e1]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.progress[data-v-733828e1]{width:100%;display:block;position:relative;background-color:#eee;border-radius:4px;height:18px;line-height:18px;overflow:hidden}.progress .progress-value[data-v-733828e1]{transition:.5s;position:absolute;left:0;top:0;bottom:0;height:100%;text-align:center;color:#fff;vertical-align:middle;font-size:12px}@keyframes bganimation-20f08566{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-20f08566{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-20f08566{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-20f08566]{animation:rotateEnter-20f08566 .7s;position:relative}.rotate-leave-active[data-v-20f08566]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-20f08566]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}label.checkbox_switch[data-v-20f08566]{cursor:pointer;display:flex!important;width:initial!important}label.checkbox_switch input[type=checkbox][data-v-20f08566]{display:none!important}label.checkbox_switch .checkbox_switch_on[data-v-20f08566],label.checkbox_switch .checkbox_switch_off[data-v-20f08566]{flex:none}label.checkbox_switch .checkbox_switch_on[data-v-20f08566]{display:none!important}label.checkbox_switch .checkbox_switch_off[data-v-20f08566]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_on[data-v-20f08566]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_off[data-v-20f08566]{display:none!important}article[data-v-bd286d4e]{flex:0 0 100%;max-width:20%;position:relative;border-radius:4px;padding:10px}@media screen and (max-width: 1080px){article[data-v-bd286d4e]{max-width:33.333%}}@keyframes bganimation-bd286d4e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-bd286d4e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-bd286d4e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-bd286d4e]{animation:rotateEnter-bd286d4e .7s;position:relative}.rotate-leave-active[data-v-bd286d4e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-bd286d4e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){article[data-v-bd286d4e]{max-width:50%}}@keyframes bganimation-123deb20{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-123deb20{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-123deb20{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-123deb20]{animation:rotateEnter-123deb20 .7s;position:relative}.rotate-leave-active[data-v-123deb20]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-123deb20]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}a[data-v-123deb20]{position:relative;display:block;width:100%;transition:.4s;cursor:pointer}a[data-v-123deb20]:hover{transform:scale(1.07);transition:.4s;position:relative}a:hover .cover .thumbnail[data-v-123deb20]{box-shadow:0 6px 40px #1c67f2}a .cover[data-v-123deb20]{position:relative;padding-top:130%;z-index:1}a .cover[data-v-123deb20] .thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:6px;overflow:hidden;z-index:1;background-color:#2dc8fd;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}a .cover[data-v-123deb20] .thumbnail i{display:block;font-size:100px;color:#eee}a .cover[data-v-123deb20] .thumbnail span{display:block;text-align:center;width:100%;color:#eeee;font-size:28px;margin:1rem 0}article:nth-child(9n+1) a .cover .thumbnail[data-v-123deb20]{background-color:#ff9100}article:nth-child(9n+2) a .cover .thumbnail[data-v-123deb20]{background-color:#2dc8fd}article:nth-child(9n+3) a .cover .thumbnail[data-v-123deb20]{background-color:#f66a2c}article:nth-child(9n+4) a .cover .thumbnail[data-v-123deb20]{background-color:#9b58de}article:nth-child(9n+5) a .cover .thumbnail[data-v-123deb20]{background-color:#297ff3}article:nth-child(9n+6) a .cover .thumbnail[data-v-123deb20]{background-color:#27aa8f}article:nth-child(9n+7) a .cover .thumbnail[data-v-123deb20]{background-color:#f15a4a}article:nth-child(9n+8) a .cover .thumbnail[data-v-123deb20]{background-color:#439c07}@keyframes bganimation-169d5b59{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-169d5b59{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-169d5b59{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-169d5b59]{animation:rotateEnter-169d5b59 .7s;position:relative}.rotate-leave-active[data-v-169d5b59]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-169d5b59]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.select-editable[data-v-169d5b59]{position:relative;line-height:1.5rem;padding:.5rem .75rem;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-169d5b59],.select-editable input[data-v-169d5b59]{height:100%;padding:0;border:none;margin:0}.select-editable select[data-v-169d5b59]{position:relative;width:100%}.select-editable input[data-v-169d5b59]{position:absolute;top:0;left:.75rem;width:88%}.select-editable select[data-v-169d5b59]:focus,.select-editable input[data-v-169d5b59]:focus{outline:none;box-shadow:none}@keyframes bganimation-0ec4e762{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ec4e762{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ec4e762{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ec4e762]{animation:rotateEnter-0ec4e762 .7s;position:relative}.rotate-leave-active[data-v-0ec4e762]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ec4e762]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-0ec4e762{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.quick-loading[data-v-0ec4e762]{animation:turn-0ec4e762 1s steps(12,end) infinite;margin:0!important;padding:0!important;background:none!important;display:flex!important}.quick-loading svg[data-v-0ec4e762]{width:100%;height:100%}.quick-loading svg path[data-v-0ec4e762]{fill:#fff}@keyframes bganimation-7fc1a08c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7fc1a08c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7fc1a08c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7fc1a08c]{animation:rotateEnter-7fc1a08c .7s;position:relative}.rotate-leave-active[data-v-7fc1a08c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7fc1a08c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}a[data-v-7fc1a08c]{margin-left:4px;width:20px;vertical-align:middle}a svg[data-v-7fc1a08c]{width:22px;height:22px}a:hover svg path[data-v-7fc1a08c]{fill:#3688ff}@keyframes bganimation-e8f7c118{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-e8f7c118{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-e8f7c118{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-e8f7c118]{animation:rotateEnter-e8f7c118 .7s;position:relative}.rotate-leave-active[data-v-e8f7c118]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-e8f7c118]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.flow[data-v-e8f7c118]{position:relative;height:460px}.flow .echart[data-v-e8f7c118]{width:100%;height:100%}.flow .flow-data[data-v-e8f7c118]{position:absolute;right:10px;top:10px}.flow .flow-data span[data-v-e8f7c118]{display:block;color:#0009;font-size:12px;margin-bottom:5px;font-weight:600;font-family:PingFangSC-Semibold,PingFang SC}@media screen and (max-width: 600px){.flow[data-v-e8f7c118]{height:76.6vw}}@keyframes bganimation-6935a479{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6935a479{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6935a479{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6935a479]{animation:rotateEnter-6935a479 .7s;position:relative}.rotate-leave-active[data-v-6935a479]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6935a479]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-6935a479{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.toast[data-v-6935a479]{position:fixed;top:50%;left:50%;display:flex;flex-direction:column;align-items:center;justify-content:space-around;box-sizing:content-box;width:100px;max-width:70%;padding:16px;color:#fff;font-size:14px;text-align:center;background-color:#000000b3;border-radius:8px;transform:translate3d(-50%,-50%,0);z-index:9999;transition:.3s;cursor:pointer}.toast div.icon[data-v-6935a479]{width:50px;height:50px;margin:15px 0;background:none!important}.toast div.icon svg[data-v-6935a479]{width:100%;height:100%}.toast div.icon svg path[data-v-6935a479]{fill:#fff}.toast .loading[data-v-6935a479]{animation:turn-6935a479 1s steps(12,end) infinite}.toast .message[data-v-6935a479]{display:block;width:100%;flex:0 0 100%;word-wrap:break-word}[lock-scroll=true]{overflow:hidden!important;height:100vh}@keyframes bganimation-428d873e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-428d873e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-428d873e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-428d873e]{animation:rotateEnter-428d873e .7s;position:relative}.rotate-leave-active[data-v-428d873e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-428d873e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.bg[data-v-428d873e]{position:fixed;inset:0;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:999}#actioner[data-v-428d873e]{position:fixed;z-index:1000;width:100%;height:100%;inset:0;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;overflow:auto}#actioner[data-v-428d873e],#actioner[data-v-428d873e] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}.action-container[data-v-428d873e]{width:100%;height:100%;background-color:#fff;position:fixed;z-index:9999;inset:0;margin:auto;overflow:auto}.action-container .action-container_header[data-v-428d873e]{width:100%;height:36px;line-height:36px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:0 .625rem;position:absolute;top:0;left:0;right:0;border-bottom:1px solid #1e1e1e;background-color:#252526}.action-container .action-container_header .title[data-v-428d873e]{color:#eee;font-size:16px}.action-container .action-container_header button.close[data-v-428d873e]{width:36px;height:36px;margin:0;padding:10px;background:none;border:none;cursor:pointer;opacity:1}.action-container .action-container_header button.close[data-v-428d873e] svg.icon{width:100%;height:100%}.action-container .action-container_header button.close[data-v-428d873e] svg.icon path{fill:#eee}.action-container .action-container_header button.close[data-v-428d873e]:hover{opacity:.9}.action-container .action-container_body[data-v-428d873e]{width:100%;height:100%;padding-top:36px}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes dialogEnter{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes dialogLeave{0%{transform:scale(1)}to{transform:scale(0)}}.dialog-enter-active{animation:dialogEnter .3s linear forwards}.dialog-leave-active{animation:dialogLeave .3s linear forwards}.actioner-dns[data-v-2a4078c6]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2a4078c6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2a4078c6]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2a4078c6]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2a4078c6]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2a4078c6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2a4078c6]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2a4078c6]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2a4078c6],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2a4078c6]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2a4078c6]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2a4078c6]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2a4078c6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2a4078c6]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-2a4078c6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2a4078c6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2a4078c6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2a4078c6]{animation:rotateEnter-2a4078c6 .7s;position:relative}.rotate-leave-active[data-v-2a4078c6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2a4078c6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2a4078c6]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-2a4078c6]{width:100%}}.action[data-v-0ae97e7e]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-0ae97e7e]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-0ae97e7e]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-0ae97e7e]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-0ae97e7e]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-0ae97e7e]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-0ae97e7e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ae97e7e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ae97e7e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ae97e7e]{animation:rotateEnter-0ae97e7e .7s;position:relative}.rotate-leave-active[data-v-0ae97e7e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ae97e7e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@keyframes bganimation-39248365{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-39248365{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-39248365{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-39248365]{animation:rotateEnter-39248365 .7s;position:relative}.rotate-leave-active[data-v-39248365]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-39248365]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container_status-label_bg[data-v-39248365]{flex:0 0 230px;width:230px;height:80px;display:flex;background:#f3f3f3;align-items:center;padding:10px;margin-right:10px;transition:.3s}.app-container_status-label_bg .app-container_status-label_text[data-v-39248365]{margin-left:6px;font-size:14px;line-height:22px;text-align:left}.app-container_status-label_bg .app-container_status-label_text .text_status[data-v-39248365]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_style[data-v-39248365]{margin:6px 0}.app-container_status-label_bg .app-container_status-label_text .text_style.close[data-v-39248365]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_info[data-v-39248365]{font-weight:700;font-size:14px}@keyframes bganimation-3470ca08{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3470ca08{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3470ca08{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3470ca08]{animation:rotateEnter-3470ca08 .7s;position:relative}.rotate-leave-active[data-v-3470ca08]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3470ca08]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-interfaces[data-v-3470ca08]{width:100%;height:80px;display:flex;flex-wrap:nowrap;overflow:hidden}.app-interfaces a[data-v-3470ca08]{list-style:none;text-decoration:none}.app-interfaces a.btn-f[data-v-3470ca08]{position:absolute;width:50px;height:80px;left:0;line-height:80px;text-align:center;color:#fff;font-size:26px;cursor:pointer;background-color:#00000059;opacity:0;transition:.3s;z-index:1}.app-interfaces a.btn-f[data-v-3470ca08]:hover{opacity:1;transition:.3s}.app-interfaces a.btn-r[data-v-3470ca08]{position:absolute;right:0;width:50px;line-height:80px;text-align:center;color:#fff;font-size:26px;cursor:pointer;background-color:#00000059;opacity:0;transition:.3s;z-index:1}.app-interfaces a.btn-r[data-v-3470ca08]:hover{opacity:1;transition:.3s}.actioner-dns[data-v-1e29113c]{width:800px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-1e29113c]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-1e29113c]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-1e29113c]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-1e29113c]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29113c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29113c]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-1e29113c]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-1e29113c],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-1e29113c]{height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-1e29113c]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-1e29113c]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-1e29113c]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-1e29113c]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-dns .select-editable[data-v-1e29113c]{position:relative;border:solid grey 1px;width:100%}.actioner-dns .select-editable select[data-v-1e29113c]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.actioner-dns .select-editable input[data-v-1e29113c]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.actioner-dns .select-editable select[data-v-1e29113c]:focus,.actioner-dns .select-editable input[data-v-1e29113c]:focus{outline:none}.actioner-dns[data-v-1e29113c] ::placeholder{color:#999}.successed[data-v-1e29113c]{text-align:center;font-size:14px;margin-bottom:104px}.finished[data-v-1e29113c]{display:flex;justify-content:center;margin:80px 80px 28px}.docker_moves[data-v-1e29113c]{text-align:center}.docker_moves .moves[data-v-1e29113c]{margin-top:10px}.docker_moves .moves input[data-v-1e29113c]{cursor:pointer}.docker_moves .moves label[data-v-1e29113c]{margin-left:10px;cursor:pointer}.btns[data-v-1e29113c]{text-align:center}.item_info[data-v-1e29113c]{margin-left:10px}.softsource_tit[data-v-1e29113c]{margin:0 auto}.softsource_successed[data-v-1e29113c]{width:20%!important}@keyframes bganimation-1e29113c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e29113c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e29113c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e29113c]{animation:rotateEnter-1e29113c .7s;position:relative}.rotate-leave-active[data-v-1e29113c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e29113c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-1e29113c]{min-height:34vh}}@media screen and (max-width: 860px){.actioner-dns[data-v-1e29113c]{width:100%}}@keyframes bganimation-fd7a24a6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-fd7a24a6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-fd7a24a6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-fd7a24a6]{animation:rotateEnter-fd7a24a6 .7s;position:relative}.rotate-leave-active[data-v-fd7a24a6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-fd7a24a6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}em[data-v-fd7a24a6]{display:block;margin:.5rem 0;width:100%}.app-container_status-container[data-v-fd7a24a6]{width:100%;background-color:#fff;padding:10px 30px;border-radius:6px;position:relative}.app-container_status-container .more_icon[data-v-fd7a24a6]{position:absolute;right:22px;cursor:pointer}.app-container_status-container .more_icon svg[data-v-fd7a24a6]{position:relative;z-index:9999}.app-container_status-container .DeviceBlock[data-v-fd7a24a6]{position:absolute;z-index:999;width:60%;right:22px}.app-container_status-container .DeviceBlock ul[data-v-fd7a24a6]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:0;right:0;text-align:center;position:absolute;word-break:keep-all;margin-top:24px}.app-container_status-container .DeviceBlock ul li[data-v-fd7a24a6]{line-height:28px}.app-container_status-container .DeviceBlock ul li a[data-v-fd7a24a6]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;margin:0 20px;display:block}.app-container_status-container .DeviceBlock ul li .domain[data-v-fd7a24a6]{cursor:pointer}.app-container_status-container .DeviceBlock ul li[data-v-fd7a24a6]:hover{background-color:#eee}.app-container_status-container .DeviceBlock li[data-v-fd7a24a6]:last-child{margin-top:5px}.app-container_status-container span.container_success[data-v-fd7a24a6]{display:block;font-size:15px;font-family:PingFangSC-Medium,PingFang SC}.app-container_status-container span.container_failure[data-v-fd7a24a6]{display:block;font-size:1.2em}.app-container_status-container .container_configure[data-v-fd7a24a6]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;line-height:20px;cursor:pointer}.app-container_status-container span.container_title[data-v-fd7a24a6]{font-size:1.25rem;color:#333;display:block}.app-container_status-container span.container_content[data-v-fd7a24a6]{font-size:1.25rem;color:#666}.app-container_status-container .devise[data-v-fd7a24a6]{display:block;font-size:12px;color:#727272}.app-container_status-container span.container_time[data-v-fd7a24a6]{font-size:12px;color:#727272;margin-top:3px;display:block}.app-container_status-label[data-v-fd7a24a6]{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.app-container_status-label .app-container_status-label_item[data-v-fd7a24a6]{flex:0 0 50%;max-width:50%}.app-container_status-label_block[data-v-fd7a24a6]{display:block;color:#000;margin:10px 0 8px}.app-container_status-container_body[data-v-fd7a24a6]{width:100%;height:100%;text-align:center;display:flex;align-items:center;align-content:center}.app-container_status-container_body svg[data-v-fd7a24a6]{min-width:32px}.app-container_status-container_body .app-container_status-info[data-v-fd7a24a6]{margin-left:10px;text-align:left;margin-right:10px;min-width:57px}.app-container_status-container_body svg[data-v-fd7a24a6]{width:50px;height:50px}.app-container_status-container_body span[data-v-fd7a24a6]{width:100%;margin:5px 0}.menu_background[data-v-fd7a24a6]{position:fixed;inset:0}.app-container_body[data-v-fd7a24a6]{width:100%}.network-container[data-v-6cd42792]{width:100%;display:flex;flex-wrap:wrap}.network-container .network-container_flow[data-v-6cd42792]{flex:0 0 100%;max-width:60%;padding-right:10px}.network-container .network-container_flow .network-container_flow-container[data-v-6cd42792]{border-radius:6px;overflow:hidden;position:relative;background-color:#fff;box-shadow:0 0 10px 1px #373f6924}.network-container .network-container_status[data-v-6cd42792]{flex:0 0 100%;max-width:40%;padding-left:10px;display:flex;flex-wrap:wrap}@keyframes bganimation-6cd42792{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6cd42792{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6cd42792{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6cd42792]{animation:rotateEnter-6cd42792 .7s;position:relative}.rotate-leave-active[data-v-6cd42792]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6cd42792]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 992px){.network-container[data-v-6cd42792]{width:100%}.network-container .network-container_flow[data-v-6cd42792]{flex:0 0 100%;max-width:100%;padding-right:0}.network-container .network-container_status[data-v-6cd42792]{flex:0 0 100%;max-width:100%;padding-left:0;margin-top:1rem}}.action .action-footer button[data-v-3a0bca4c]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3a0bca4c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3a0bca4c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3a0bca4c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3a0bca4c]{animation:rotateEnter-3a0bca4c .7s;position:relative}.rotate-leave-active[data-v-3a0bca4c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3a0bca4c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-3a0bca4c]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-3a0bca4c]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-3a0bca4c]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-3a0bca4c]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-3a0bca4c]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-3a0bca4c]{flex:auto}.action.format .disk-list[data-v-3a0bca4c]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-3a0bca4c]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-3a0bca4c]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-3a0bca4c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-3a0bca4c]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-3a0bca4c]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-3a0bca4c],.action.format .label-item .label-item_value input[data-v-3a0bca4c]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-3a0bca4c]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-3a0bca4c]{flex:auto}.action.format p.msg[data-v-3a0bca4c]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-3a0bca4c]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-3a0bca4c]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-3a0bca4c]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-3a0bca4c]{margin:1rem 0;font-size:1.5em;color:#333}.action.result[data-v-3a0bca4c]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-3a0bca4c]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-3a0bca4c]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-3a0bca4c]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-3a0bca4c]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-3a0bca4c]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-3a0bca4c]{color:#0000fb}.action.result .btns[data-v-3a0bca4c]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-3a0bca4c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3a0bca4c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3a0bca4c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3a0bca4c]{animation:rotateEnter-3a0bca4c .7s;position:relative}.rotate-leave-active[data-v-3a0bca4c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3a0bca4c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format[data-v-3a0bca4c]{width:168%}}@media screen and (max-width: 900px){.action.format[data-v-3a0bca4c]{width:146%}}@media screen and (max-width: 800px){.action.format[data-v-3a0bca4c]{width:136%}}@media screen and (max-width: 700px){.action.format[data-v-3a0bca4c]{width:116%}}@media screen and (max-width: 500px){.action.format[data-v-3a0bca4c]{width:100%}}.action .action-footer button[data-v-57d4812a]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-57d4812a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-57d4812a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-57d4812a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-57d4812a]{animation:rotateEnter-57d4812a .7s;position:relative}.rotate-leave-active[data-v-57d4812a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-57d4812a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-57d4812a]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-57d4812a]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-57d4812a]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-57d4812a]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-57d4812a]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-57d4812a]{flex:auto}.action.format .disk-list[data-v-57d4812a]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-57d4812a]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-57d4812a]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-57d4812a]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-57d4812a]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-57d4812a]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-57d4812a],.action.format .label-item .label-item_value input[data-v-57d4812a]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-57d4812a]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-57d4812a]{flex:auto}.action.format p.msg[data-v-57d4812a]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-57d4812a]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-57d4812a]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-57d4812a]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-57d4812a]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-57d4812a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-57d4812a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-57d4812a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-57d4812a]{animation:rotateEnter-57d4812a .7s;position:relative}.rotate-leave-active[data-v-57d4812a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-57d4812a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-57d4812a]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-57d4812a]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-57d4812a]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-57d4812a]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-57d4812a]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-57d4812a]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-57d4812a]{color:#0000fb}.action.result .btns[data-v-57d4812a]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-31be4af0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31be4af0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-31be4af0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-31be4af0]{animation:rotateEnter-31be4af0 .7s;position:relative}.rotate-leave-active[data-v-31be4af0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31be4af0]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-31be4af0]{color:red}.disk-content[data-v-31be4af0]{padding:1rem;border:1px solid #cfcfcf;margin:16px 0}.disk-content li.disk-item[data-v-31be4af0]{width:100%;display:flex;align-items:center}.disk-content li.disk-item .disk-item_name[data-v-31be4af0]{flex:0 0 50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.disk-content li.disk-item .disk_value[data-v-31be4af0]{flex:0 0 50%;display:flex;justify-content:space-between;align-items:center}.disk-content li.disk-item .disk_value .cbi-button[data-v-31be4af0]{margin-left:10px}.disk-content li.disk-item .disk_value .disk-item_value[data-v-31be4af0]{flex:auto;padding-left:10px;position:relative}.disk-content li.disk-item .disk_value .disk-item_value .value-data[data-v-31be4af0]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%;color:#297ff3;cursor:default}.disk-content li.disk-item .disk_value .disk-item_value .value-data button[data-v-31be4af0]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.disk-content li.disk-item .disk_value .disk-item_value .value-data button[data-v-31be4af0]:hover{opacity:.7}.disk-content li.disk-item .disk_value .disk-item_value .value-data.buttondiv[data-v-31be4af0]{cursor:pointer}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-31be4af0]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:10px;right:0;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-31be4af0]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}.disk-content li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-31be4af0]{visibility:visible;transition:.7s;opacity:1}.disk-content .disk_status[data-v-31be4af0]{display:flex;text-align:left;padding-left:10px;font-size:12px;padding-top:6px}.disk-content .disk_status .disk_status_item[data-v-31be4af0]{display:flex;margin-right:20px}.disk-content .disk_status .disk_status_item .disk_tip[data-v-31be4af0]{display:flex;align-items:center}.disk_infoicon[data-v-31be4af0]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-31be4af0]{flex:none}.tooltip-trigger[data-v-31be4af0]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-31be4af0]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-31be4af0]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-31be4af0]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-31be4af0]{visibility:visible;opacity:1}.tooltip-top[data-v-31be4af0]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-31be4af0]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-31be4af0]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-31be4af0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31be4af0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-31be4af0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-31be4af0]{animation:rotateEnter-31be4af0 .7s;position:relative}.rotate-leave-active[data-v-31be4af0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31be4af0]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.disk-content li.disk-item .disk_value[data-v-31be4af0]{display:block}.disk-content .disk_status[data-v-31be4af0]{flex-wrap:wrap}}.action[data-v-5fa713aa]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:3rem;border-radius:6px;display:flex;flex-direction:column;flex-wrap:nowrap}.action ul[data-v-5fa713aa]{overflow:auto}.action ul .app-container_info[data-v-5fa713aa]{display:flex;justify-content:space-between;max-width:56%;margin-top:18px;font-weight:600}.action ul .app-container_body[data-v-5fa713aa]{width:100%;height:100%}.action .action-footer[data-v-5fa713aa]{text-align:center;margin-top:46px}.action .action-footer button[data-v-5fa713aa]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-5fa713aa{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5fa713aa{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5fa713aa{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5fa713aa]{animation:rotateEnter-5fa713aa .7s;position:relative}.rotate-leave-active[data-v-5fa713aa]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5fa713aa]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action[data-v-5fa713aa]{width:160%}}@media screen and (max-width: 800px){.action[data-v-5fa713aa]{width:138%}}@media screen and (max-width: 700px){.action[data-v-5fa713aa]{width:132%}}@media screen and (max-width: 600px){.action[data-v-5fa713aa]{width:116%}}@media screen and (max-width: 500px){.action[data-v-5fa713aa]{width:100%}}@media screen and (max-width: 400px){.action[data-v-5fa713aa]{width:90%}}@media screen and (max-width: 300px){.action[data-v-5fa713aa]{width:100%}}@keyframes bganimation-eb0dbbd8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-eb0dbbd8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-eb0dbbd8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-eb0dbbd8]{animation:rotateEnter-eb0dbbd8 .7s;position:relative}.rotate-leave-active[data-v-eb0dbbd8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-eb0dbbd8]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-eb0dbbd8]{color:red}li.disk-item[data-v-eb0dbbd8]{width:100%;display:flex;margin:1rem 0;align-items:center}li.disk-item .disk-item_name[data-v-eb0dbbd8]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.disk-item .disk_icon[data-v-eb0dbbd8]{padding-left:1rem;align-self:center;align-items:center;flex:none;display:flex}li.disk-item .disk_value[data-v-eb0dbbd8]{display:flex;justify-content:flex-end;width:50%}li.disk-item .disk_value .disk-item_value[data-v-eb0dbbd8]{flex:auto;padding-left:10px;position:relative;cursor:help}li.disk-item .disk_value .disk-item_value .value-data[data-v-eb0dbbd8]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%}li.disk-item .disk_value .disk-item_value .value-data button[data-v-eb0dbbd8]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer;padding:0;margin:0;line-height:normal}li.disk-item .disk_value .disk-item_value .value-data button[data-v-eb0dbbd8]:hover{opacity:.7}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-eb0dbbd8]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:10px;right:0;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-eb0dbbd8]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-eb0dbbd8]{visibility:visible;transition:.7s;opacity:1}.disk_infoicon[data-v-eb0dbbd8]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-eb0dbbd8]{flex:none;cursor:help}.tooltip-trigger[data-v-eb0dbbd8]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-eb0dbbd8]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-eb0dbbd8]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-eb0dbbd8]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-eb0dbbd8]{visibility:visible;opacity:1}.tooltip-top[data-v-eb0dbbd8]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-eb0dbbd8]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-eb0dbbd8]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-40555016{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-40555016{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-40555016{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-40555016]{animation:rotateEnter-40555016 .7s;position:relative}.rotate-leave-active[data-v-40555016]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-40555016]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-40555016]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%}.app-container ul[data-v-40555016]{flex:0 0 100%;width:100%}.app-container ul .app-container_title[data-v-40555016]{display:flex;justify-content:space-between;align-items:center}.app-container ul .app-container_title .more_icon[data-v-40555016]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container ul .app-container_title .more_icon[data-v-40555016] svg path{fill:#553afe}.app-container ul .app-container_title .DeviceBlock[data-v-40555016]{position:absolute;z-index:999;width:30%;right:22px}.app-container ul .app-container_title .DeviceBlock ul[data-v-40555016]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:8px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container ul .app-container_title .DeviceBlock ul li[data-v-40555016]{margin:6px 0;cursor:pointer;line-height:28px}.app-container ul .app-container_title .DeviceBlock ul li a[data-v-40555016]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.app-container ul .app-container_title .DeviceBlock ul li[data-v-40555016]:hover{background-color:#eee}.app-container ul .app-container_title .app-container_tool[data-v-40555016]{display:flex;flex-wrap:wrap;align-items:center}.app-container ul .app-container_title .app-container_tool .app-container_configure[data-v-40555016]{height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;justify-content:center;align-items:center}.app-container ul .app-container_title .app-container_tool .more_icon[data-v-40555016]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container ul .app-container_title .app-container_tool .more_icon[data-v-40555016] svg path{fill:#553afe}.app-container ul .disk_loading_icon[data-v-40555016]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.app-container ul .disk_loading_icon .disk_loading_info[data-v-40555016]{margin-top:5px}.refresh[data-v-40555016]{margin-left:20px}.app-container_info[data-v-40555016]{font-size:14px;font-weight:700;height:31px;line-height:52px}.app-container_body[data-v-40555016]{width:100%;height:100%}.menu_background[data-v-40555016]{position:fixed;inset:0}@keyframes bganimation-13ca629c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-13ca629c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-13ca629c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-13ca629c]{animation:rotateEnter-13ca629c .7s;position:relative}.rotate-leave-active[data-v-13ca629c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-13ca629c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.sambas-item[data-v-13ca629c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.sambas-item .sambas-item_name[data-v-13ca629c]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.sambas-item .sambas-item_value[data-v-13ca629c]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-container_samba li.samba-item[data-v-13ca629c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}.app-container_samba li.samba-item .samba-item_name[data-v-13ca629c]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.app-container_samba li.samba-item .samba-item_value[data-v-13ca629c]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-container_samba li.samba-item .samba-item_value button[data-v-13ca629c]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.app-container_samba li.samba-item .samba-item_value button[data-v-13ca629c]:hover{opacity:.7}.tit[data-v-13ca629c]{color:#1e1e1e;font-weight:700;font-size:16px}@keyframes bganimation-b4608492{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b4608492{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b4608492{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b4608492]{animation:rotateEnter-b4608492 .7s;position:relative}.rotate-leave-active[data-v-b4608492]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b4608492]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.webdav-item[data-v-b4608492]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.webdav-item .webdav-item_name[data-v-b4608492]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.webdav-item .webdav-item_value[data-v-b4608492]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes bganimation-4a3b6e0a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4a3b6e0a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4a3b6e0a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4a3b6e0a]{animation:rotateEnter-4a3b6e0a .7s;position:relative}.rotate-leave-active[data-v-4a3b6e0a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4a3b6e0a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}ul.disk-item[data-v-4a3b6e0a]{width:100%;margin-bottom:10px}ul.disk-item .auto[data-v-4a3b6e0a]{flex:auto}ul.disk-item .disk-item_icon[data-v-4a3b6e0a]{width:24px;height:24px;margin-right:.5rem}ul.disk-item .disk-item_icon svg[data-v-4a3b6e0a]{width:100%;height:100%}ul.disk-item li.disk-info[data-v-4a3b6e0a]{display:flex;flex-wrap:nowrap;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;padding:5px 1rem;height:50px;cursor:pointer;color:#666;font-size:12px;border-left:3px solid #89897f}ul.disk-item li.disk-info[data-v-4a3b6e0a]:hover{background-color:#ecf5ff}ul.disk-item li.disk-info .disk-item_icon svg path[data-v-4a3b6e0a]{fill:#09aaff}ul.disk-item li.disk-info .disk-item_f[data-v-4a3b6e0a]{display:flex;flex-wrap:wrap}ul.disk-item li.disk-info .disk-item_f .disk-item_venderModel[data-v-4a3b6e0a],ul.disk-item li.disk-info .disk-item_f .disk-item_used[data-v-4a3b6e0a]{width:100%}ul.disk-item li.disk-info.on[data-v-4a3b6e0a]{border-left:3px solid #ff9c08}ul.disk-item li.disk-info.on.nopoint[data-v-4a3b6e0a]{background-color:#ecf5ff}ul.disk-item .disk-children[data-v-4a3b6e0a]{width:100%;color:#666}ul.disk-item .disk-children li.disk-children_item[data-v-4a3b6e0a]{width:100%;height:40px;line-height:40px;padding-left:2rem;font-size:12px;cursor:pointer;display:flex;flex-wrap:nowrap;align-items:center;border-left:3px solid #89897f;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}ul.disk-item .disk-children li.disk-children_item[data-v-4a3b6e0a]:hover{background-color:#ecf5ff}ul.disk-item .disk-children li.disk-children_item span[data-v-4a3b6e0a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}ul.disk-item .disk-children li.disk-children_item.on.on[data-v-4a3b6e0a]{border-left:3px solid #ff9c08;background-color:#ecf5ff}.action .action-footer button[data-v-12d0f96b]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.list[data-v-12d0f96b]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.list .action-header[data-v-12d0f96b]{width:100%;height:70px;line-height:70px}.action.list .action-header .action-header_title[data-v-12d0f96b]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.list .action-body[data-v-12d0f96b]{width:100%;height:calc(100% - 176px)}.action.list .action-msg[data-v-12d0f96b]{width:100%;height:36px;line-height:36px;text-align:center}.action.list .action-footer[data-v-12d0f96b]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.list .action-footer .auto[data-v-12d0f96b]{flex:auto}.action.list .disk-list[data-v-12d0f96b]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-12d0f96b]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-12d0f96b]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-12d0f96b]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-12d0f96b]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-12d0f96b]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-12d0f96b]{flex:auto}.action.format .disk-list[data-v-12d0f96b]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-12d0f96b]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-12d0f96b]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-12d0f96b]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-12d0f96b]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-12d0f96b]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-12d0f96b],.action.format .label-item .label-item_value input[data-v-12d0f96b]{width:100%;height:36px}.action.format .auto[data-v-12d0f96b]{flex:auto}.action.format p.msg[data-v-12d0f96b]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-12d0f96b]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-12d0f96b]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-12d0f96b]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-12d0f96b]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-12d0f96b]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-header[data-v-12d0f96b]{width:100%;height:70px;line-height:70px}.action.result .action-header .action-header_title[data-v-12d0f96b]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.result .action-body[data-v-12d0f96b]{width:100%;height:calc(100% - 140px);overflow:auto}.action.result .action-body .format-result[data-v-12d0f96b]{width:100%;text-align:center;font-size:2em;color:#333;margin:1rem 0}.action.result .action-body .format-info[data-v-12d0f96b]{width:100%;text-align:center;font-size:1.3em}.action.result .action-body .format-info a[data-v-12d0f96b]{color:#f70324}.action.result .action-footer[data-v-12d0f96b]{width:100%;height:70px;line-height:70px;color:#333}.action.result .auto[data-v-12d0f96b]{flex:auto}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.list[data-v-12d0f96b]{width:136%}}@media screen and (max-width: 900px){.action.list[data-v-12d0f96b]{width:126%}}@media screen and (max-width: 800px){.action.list[data-v-12d0f96b]{width:112%}}@media screen and (max-width: 700px){.action.list[data-v-12d0f96b]{width:100%}}@media screen and (max-width: 500px){.action.list[data-v-12d0f96b]{width:80%}}@keyframes bganimation-67a63e8f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-67a63e8f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-67a63e8f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-67a63e8f]{animation:rotateEnter-67a63e8f .7s;position:relative}.rotate-leave-active[data-v-67a63e8f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-67a63e8f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-67a63e8f]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-67a63e8f]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-67a63e8f]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-67a63e8f]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-67a63e8f]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-67a63e8f]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-67a63e8f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-67a63e8f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-67a63e8f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-67a63e8f]{animation:rotateEnter-67a63e8f .7s;position:relative}.rotate-leave-active[data-v-67a63e8f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-67a63e8f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@keyframes bganimation-30ef6ccb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-30ef6ccb{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-30ef6ccb{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-30ef6ccb]{animation:rotateEnter-30ef6ccb .7s;position:relative}.rotate-leave-active[data-v-30ef6ccb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-30ef6ccb]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-30ef6ccb]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-30ef6ccb]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-30ef6ccb]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-30ef6ccb]{width:100%;height:calc(100% - 140px);overflow:auto}.action .action-body .label-item[data-v-30ef6ccb]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-30ef6ccb]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-30ef6ccb]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-30ef6ccb]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-30ef6ccb]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-30ef6ccb],.action .action-body .label-item .label-item_value input[data-v-30ef6ccb]{width:100%;height:36px}.action .action-footer[data-v-30ef6ccb]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action .action-footer .auto[data-v-30ef6ccb]{flex:auto}.action .action-footer button[data-v-30ef6ccb]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3ef9e48f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3ef9e48f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3ef9e48f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3ef9e48f]{animation:rotateEnter-3ef9e48f .7s;position:relative}.rotate-leave-active[data-v-3ef9e48f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3ef9e48f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-3ef9e48f]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-3ef9e48f]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-3ef9e48f]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-3ef9e48f]{width:100%;height:calc(100% - 140px)}.action .action-body .label-item[data-v-3ef9e48f]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-3ef9e48f]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-3ef9e48f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-3ef9e48f]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-3ef9e48f]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-3ef9e48f],.action .action-body .label-item .label-item_value input[data-v-3ef9e48f]{width:100%;height:36px}.action .action-body .samba-item[data-v-3ef9e48f]{margin-top:-18px;font-size:12px}.action .action-body .samba-item .samba-item_allow[data-v-3ef9e48f]{display:flex;align-items:flex-end}.action .action-body .samba-item .samba-item_allow .samba-allow[data-v-3ef9e48f]{padding-left:10px;cursor:pointer}.action .action-body .samba-item .samba-item_tips[data-v-3ef9e48f]{margin-top:10px}.action .action-body .samba-item .samba-item_tips .tooltip-trigger[data-v-3ef9e48f]{display:flex}.action .action-body .samba-item .samba-item_tips .samba_dir_tip[data-v-3ef9e48f]{margin-left:10px}.action .action-footer[data-v-3ef9e48f]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center;padding-bottom:30px}.action .action-footer .auto[data-v-3ef9e48f]{flex:auto}.action .action-footer button[data-v-3ef9e48f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-650e3bd4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-650e3bd4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-650e3bd4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-650e3bd4]{animation:rotateEnter-650e3bd4 .7s;position:relative}.rotate-leave-active[data-v-650e3bd4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-650e3bd4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-650e3bd4]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-650e3bd4]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action h3.desc[data-v-650e3bd4]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:1rem 0;text-align:center}.action form[data-v-650e3bd4]{width:100%;display:block;padding:2rem 0}.action form label[data-v-650e3bd4]{width:100%;display:block;margin:1rem 0}.action form label input[data-v-650e3bd4],.action form label select[data-v-650e3bd4]{width:100%;display:block;height:42px}.action .btns[data-v-650e3bd4]{width:100%;margin-top:3rem}.action .btns button[data-v-650e3bd4]{display:block;width:100%!important;margin:.5rem 0}.action li.disk-item[data-v-650e3bd4]{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;width:100%;padding:5px 1rem;border-bottom:1px solid #eee;cursor:pointer}.action li.disk-item[data-v-650e3bd4]:hover{background-color:#eee}.action li.disk-item .disk-item_f[data-v-650e3bd4]{display:flex;flex-wrap:wrap}.action li.disk-item .disk-item_f .disk-item_venderModel[data-v-650e3bd4],.action li.disk-item .disk-item_f .disk-item_used[data-v-650e3bd4]{width:100%}.action .tips[data-v-650e3bd4]{float:right;font-size:.8em}@keyframes bganimation-650e3bd4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-650e3bd4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-650e3bd4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-650e3bd4]{animation:rotateEnter-650e3bd4 .7s;position:relative}.rotate-leave-active[data-v-650e3bd4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-650e3bd4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action h2.title[data-v-650e3bd4]{font-size:2em}}@keyframes bganimation-edf68726{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-edf68726{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-edf68726{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-edf68726]{animation:rotateEnter-edf68726 .7s;position:relative}.rotate-leave-active[data-v-edf68726]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-edf68726]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.linkease-item[data-v-edf68726]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.linkease-item .linkease-item_name[data-v-edf68726]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.linkease-item .linkease-item_value[data-v-edf68726]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.linkease-item .linkease-item_value .configure[data-v-edf68726]{color:#297ff3;padding:3px}li.linkease-item .linkease-item_value .configure.enabel[data-v-edf68726]{cursor:pointer}a[data-v-edf68726]{text-decoration:none;color:#297ff3}@keyframes bganimation-8376a10e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8376a10e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-8376a10e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-8376a10e]{animation:rotateEnter-8376a10e .7s;position:relative}.rotate-leave-active[data-v-8376a10e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8376a10e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-8376a10e]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-8376a10e]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-8376a10e]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-8376a10e]{height:30px;line-height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;align-items:center;justify-content:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-8376a10e]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-8376a10e] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-8376a10e]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-8376a10e]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:15px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-8376a10e]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-8376a10e]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-8376a10e]:hover{background-color:#eee}.app-container .app-container_title button[data-v-8376a10e]{margin-left:10px}.app-container .app-container_body[data-v-8376a10e]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-8376a10e]{width:100%;display:flex!important;flex-wrap:wrap!important;align-items:center!important;justify-content:space-between!important;margin-top:20px}.app-container ul.app-container_nas-menu button[data-v-8376a10e]{flex:0 0 100%!important;max-width:33.333%!important;height:30px;background:none;border:none!important;background-color:#eee;color:#333;cursor:pointer;margin:0!important;padding:5px 0!important;border-radius:0!important;line-height:20px;font-size:16px}.app-container ul.app-container_nas-menu button.on[data-v-8376a10e],.app-container ul.app-container_nas-menu button[data-v-8376a10e]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-8376a10e]{position:fixed;inset:0}@keyframes bganimation-3fd3a42d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3fd3a42d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3fd3a42d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3fd3a42d]{animation:rotateEnter-3fd3a42d .7s;position:relative}.rotate-leave-active[data-v-3fd3a42d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3fd3a42d]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.docker-item[data-v-3fd3a42d]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0}li.docker-item .docker-item_name[data-v-3fd3a42d]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.docker-item .docker-item_value[data-v-3fd3a42d]{flex:0 0 100%;max-width:50%;padding-left:10px;float:left;display:flex}li.docker-item .docker-item_value .configure[data-v-3fd3a42d]{color:#297ff3;overflow:hidden;white-space:nowrap;padding:3px;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_value .configure.enabel[data-v-3fd3a42d]{color:#888;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_root[data-v-3fd3a42d]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.docker_tip svg[data-v-3fd3a42d]{vertical-align:bottom;margin-left:22px}.tooltip-trigger[data-v-3fd3a42d]{position:relative;display:inline-block;cursor:help;margin-right:6px}.tooltip-trigger .tooltip-text[data-v-3fd3a42d]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-3fd3a42d]{color:#fff}.tooltip-trigger .tooltip-text .docker_dir_tip[data-v-3fd3a42d]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-3fd3a42d]{visibility:visible;opacity:1}.tooltip-top[data-v-3fd3a42d]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.tooltip-right[data-v-3fd3a42d]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.tooltip-left[data-v-3fd3a42d]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.tooltip-top[data-v-3fd3a42d]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-3fd3a42d]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.input-switch[data-v-3fd3a42d]{display:inline-block;cursor:pointer;position:relative}.input-switch span[data-v-3fd3a42d]{display:block;position:relative;width:50px;height:20px;border-radius:10px;padding:2px}.input-switch span em[data-v-3fd3a42d]{display:block;width:16px;height:16px;background-color:#fff;border-radius:10px}.input-switch span.enable[data-v-3fd3a42d]{background-color:#297ff3;transition:.3s}.input-switch span.enable em[data-v-3fd3a42d]{transform:translate(30px);transition:.3s}.input-switch span.close[data-v-3fd3a42d]{background-color:#cecece;transition:.3s}.input-switch span.close em[data-v-3fd3a42d]{transform:translate(0);transition:.3s}@keyframes bganimation-308e4b48{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-308e4b48{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-308e4b48{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-308e4b48]{animation:rotateEnter-308e4b48 .7s;position:relative}.rotate-leave-active[data-v-308e4b48]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-308e4b48]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-308e4b48]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-308e4b48]{width:100%;display:block;color:#1e1e1e;font-size:22px;padding:0;margin:0;text-align:center}.action .roots[data-v-308e4b48]{display:flex;max-width:342px;align-items:center;margin-top:32px;margin-bottom:16px}.action .roots .root[data-v-308e4b48]{color:#000000d4;font-size:14px;text-align:center}.action .move[data-v-308e4b48]{display:flex;justify-content:left;align-items:center}.action .change[data-v-308e4b48]{width:678px}.action .desc[data-v-308e4b48]{width:100%;display:block;font-size:1.2em;padding:0;margin:1rem 0;margin-top:32px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4}.action form[data-v-308e4b48]{width:100%;display:block}.action .tips[data-v-308e4b48]{width:477px}.action .tips .tip[data-v-308e4b48]{color:#faad14;padding-left:6px}.action .btns[data-v-308e4b48]{width:100%;margin:104px auto 0}.action .btns button[data-v-308e4b48]{display:block;width:100%!important;margin-left:0;margin-right:0}.action .roots_tit[data-v-308e4b48]{color:#000000d4;font-size:14px;font-weight:700;width:118px;text-align:right;flex:none}.action .successed[data-v-308e4b48]{text-align:center;font-size:14px}.action .finished[data-v-308e4b48]{display:flex;justify-content:center;margin:80px 80px 28px}.action .docker_moves[data-v-308e4b48]{text-align:center}.action .docker_moves .moves[data-v-308e4b48]{margin-top:10px}.action .docker_moves .moves input[data-v-308e4b48]{cursor:pointer}.action .docker_moves .moves label[data-v-308e4b48]{margin-left:10px;cursor:pointer}.select-editable[data-v-308e4b48]{position:relative;border:solid grey 1px;width:438px;height:34px}.select-editable select[data-v-308e4b48]{position:absolute;top:0;left:0;font-size:14px;border:none;width:100%;height:100%;margin:0}.select-editable input[data-v-308e4b48]{position:absolute;top:0;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-308e4b48]:focus,.select-editable input[data-v-308e4b48]:focus{outline:none}[data-v-308e4b48]::placeholder{color:#999}@keyframes bganimation-308e4b48{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-308e4b48{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-308e4b48{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-308e4b48]{animation:rotateEnter-308e4b48 .7s;position:relative}.rotate-leave-active[data-v-308e4b48]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-308e4b48]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action[data-v-308e4b48]{width:100%}.docker_download[data-v-308e4b48]{width:80%}}@keyframes bganimation-223bcc06{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-223bcc06{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-223bcc06{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-223bcc06]{animation:rotateEnter-223bcc06 .7s;position:relative}.rotate-leave-active[data-v-223bcc06]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-223bcc06]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-223bcc06]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container .app-container_title[data-v-223bcc06]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-223bcc06]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-223bcc06]{height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;justify-content:center;align-items:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-223bcc06]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-223bcc06] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-223bcc06]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-223bcc06]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:15px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-223bcc06]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-223bcc06]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-223bcc06]:hover{background-color:#eee}.app-container button[data-v-223bcc06],.app-container .refresh[data-v-223bcc06]{margin-left:20px}.app-container .app-container_body[data-v-223bcc06]{width:100%;height:100%}.app-container .loading_placeholder[data-v-223bcc06]{display:flex;flex-direction:column;align-items:center}.menu_background[data-v-223bcc06]{position:fixed;inset:0}@keyframes bganimation-dbe287b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-dbe287b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-dbe287b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-dbe287b2]{animation:rotateEnter-dbe287b2 .7s;position:relative}.rotate-leave-active[data-v-dbe287b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-dbe287b2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.aria2-item[data-v-dbe287b2]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.aria2-item .aria2-item_name[data-v-dbe287b2]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.aria2-item .aria2-item_value[data-v-dbe287b2]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.aria2-item .aria2-item_value .configure[data-v-dbe287b2]{color:#297ff3;padding:3px}li.aria2-item .aria2-item_value .configure.enabel[data-v-dbe287b2]{color:#888}.use-url_app[data-v-dbe287b2]{padding-bottom:14px}.use-url_app a[data-v-dbe287b2]{text-decoration:none;color:#297ff3}@keyframes bganimation-1af61e64{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1af61e64{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1af61e64{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1af61e64]{animation:rotateEnter-1af61e64 .7s;position:relative}.rotate-leave-active[data-v-1af61e64]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1af61e64]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.qbittorrent-item[data-v-1af61e64]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.qbittorrent-item .qbittorrent-item_name[data-v-1af61e64]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.qbittorrent-item .qbittorrent-item_value[data-v-1af61e64]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.qbittorrent-item .qbittorrent-item_value .configure[data-v-1af61e64]{color:#297ff3;padding:3px}li.qbittorrent-item .qbittorrent-item_value .configure.enabel[data-v-1af61e64]{color:#888}a[data-v-1af61e64]{text-decoration:none;color:#297ff3}@keyframes bganimation-31717210{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31717210{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-31717210{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-31717210]{animation:rotateEnter-31717210 .7s;position:relative}.rotate-leave-active[data-v-31717210]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31717210]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.transmission-item[data-v-31717210]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.transmission-item .transmission-item_name[data-v-31717210]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.transmission-item .transmission-item_value[data-v-31717210]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.transmission-item .transmission-item_value .configure[data-v-31717210]{color:#297ff3;padding:3px}li.transmission-item .transmission-item_value .configure.enabel[data-v-31717210]{color:#888}a[data-v-31717210]{text-decoration:none;color:#297ff3}@keyframes bganimation-378dba8e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-378dba8e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-378dba8e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-378dba8e]{animation:rotateEnter-378dba8e .7s;position:relative}.rotate-leave-active[data-v-378dba8e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-378dba8e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-378dba8e]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:1rem 87px;border-radius:6px}.action p[data-v-378dba8e]{color:#999;font-size:14px}.action input[data-v-378dba8e]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC}.action h2.title[data-v-378dba8e]{width:100%;color:#1e1e1e;font-size:22px;font-family:PingFangSC-Medium,PingFang SC;padding:0;margin:0;text-align:center}.action span[data-v-378dba8e]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4;font-weight:700}.action form label[data-v-378dba8e]{width:100%}.action form label input[data-v-378dba8e],.action form label select[data-v-378dba8e]{height:100%;font-size:14px}.action .myinput_wrap[data-v-378dba8e],.action .RPC_input[data-v-378dba8e]{width:85%}.action .myinput_wrap textarea[data-v-378dba8e]{width:100%;padding:2px 3px;border:1px solid #dee2e6;border-radius:.25rem}.action .input_row[data-v-378dba8e]{margin:16px 0;display:flex;justify-content:left;align-items:center}.action .input_row .radios[data-v-378dba8e]{margin-right:10px}.action .input_row .radios input[data-v-378dba8e],.action .input_row .radios label[data-v-378dba8e]{cursor:pointer}.action .Tracker label[data-v-378dba8e]{margin-right:10px;cursor:pointer}.action .Tracker_input[data-v-378dba8e]{padding:6px 2px}.action .btns[data-v-378dba8e]{width:100%;margin:42px auto 0}.action .btns button[data-v-378dba8e]{display:block;width:100%!important;margin:.5rem 0}.action .tooltip-trigger[data-v-378dba8e]{position:relative;display:inline-block;cursor:help;margin-right:6px}.action .tooltip-trigger .tooltip-text[data-v-378dba8e]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.action .tooltip-trigger .tooltip-text span[data-v-378dba8e]{color:#fff}.action .tooltip-trigger .tooltip-text .dowload_dir_tip[data-v-378dba8e]{min-width:14rem;display:inline-block}.action .tooltip-trigger:hover .tooltip-text[data-v-378dba8e]{visibility:visible;opacity:1}.action .tooltip-top[data-v-378dba8e]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.action .tooltip-bottom[data-v-378dba8e]{top:100%;left:50%;margin-top:5px;transform:translate(-50%)}.action .tooltip-bottom .dowload_rpc_tip[data-v-378dba8e]{min-width:10rem;display:inline-block}.action .tooltip-right[data-v-378dba8e]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.action .tooltip-left[data-v-378dba8e]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.action .tooltip-top[data-v-378dba8e]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.action .tooltip-bottom[data-v-378dba8e]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.action .successed[data-v-378dba8e]{text-align:center;font-size:14px}.action .finished[data-v-378dba8e]{display:flex;justify-content:center;margin:80px 80px 28px}.left[data-v-378dba8e]{display:flex;align-items:center;justify-content:flex-start;width:110px;flex:none}.select-editable[data-v-378dba8e]{position:relative;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-378dba8e]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.select-editable input[data-v-378dba8e]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-378dba8e]:focus,.select-editable input[data-v-378dba8e]:focus{outline:none}[data-v-378dba8e]::placeholder{color:#999}@keyframes bganimation-378dba8e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-378dba8e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-378dba8e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-378dba8e]{animation:rotateEnter-378dba8e .7s;position:relative}.rotate-leave-active[data-v-378dba8e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-378dba8e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action[data-v-378dba8e]{width:100%}.action .input_row[data-v-378dba8e]{display:block}.action .input_row .myinput_wrap[data-v-378dba8e],.action .input_row .RPC_input[data-v-378dba8e]{width:100%}}@keyframes bganimation-23580536{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-23580536{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-23580536{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-23580536]{animation:rotateEnter-23580536 .7s;position:relative}.rotate-leave-active[data-v-23580536]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-23580536]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-23580536]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-23580536]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-23580536]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-23580536]{height:30px;line-height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;align-items:center;justify-content:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-23580536]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-23580536] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-23580536]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-23580536]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:15px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-23580536]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-23580536]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-23580536]:hover{background-color:#eee}.app-container .app-container_title button[data-v-23580536]{margin-left:10px}.app-container .app-container_body[data-v-23580536]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-23580536]{width:100%;display:flex!important;flex-wrap:wrap!important;align-items:center!important;justify-content:space-between!important;margin-top:20px}.app-container ul.app-container_nas-menu button[data-v-23580536]{flex:0 0 100%!important;max-width:33.333%!important;height:30px;background:none;border:none!important;background-color:#eee;color:#333;cursor:pointer;margin:0!important;padding:5px 0!important;border-radius:0!important;line-height:20px;font-size:16px}.app-container ul.app-container_nas-menu button.on[data-v-23580536],.app-container ul.app-container_nas-menu button[data-v-23580536]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-23580536]{position:fixed;inset:0}@keyframes bganimation-43beecef{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-43beecef{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-43beecef{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-43beecef]{animation:rotateEnter-43beecef .7s;position:relative}.rotate-leave-active[data-v-43beecef]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-43beecef]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}h3[data-v-43beecef]{text-align:center;margin-bottom:20px}.label-item[data-v-43beecef]{display:flex;align-items:center;flex-wrap:wrap;margin:1rem 0;padding:0 30px}.label-item label[data-v-43beecef]{display:flex;flex-wrap:wrap;align-items:center;width:100%;height:26px;line-height:26px;cursor:pointer}.label-item label input[type=radio][data-v-43beecef]{top:0;right:0;vertical-align:middle}.label-item label span[data-v-43beecef]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#000000d4;display:inline-block;margin-left:10px}.label-item p.label_info[data-v-43beecef]{color:#999;font-size:12px;padding-left:24px;line-height:20px}.label-item .label-item_key[data-v-43beecef]{display:flex;flex-wrap:wrap;align-items:center}.label-item .label-item_key .ddnsto_serve[data-v-43beecef]{flex:0 0 100%;display:flex;justify-content:space-between;margin-bottom:14px}.label-item .label-item_key .ddnsto_serve_item[data-v-43beecef]{flex:0 0 100%;display:flex;justify-content:space-between}@keyframes bganimation-43dd65a2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-43dd65a2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-43dd65a2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-43dd65a2]{animation:rotateEnter-43dd65a2 .7s;position:relative}.rotate-leave-active[data-v-43dd65a2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-43dd65a2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-43dd65a2]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-43dd65a2]{width:100px;height:100px}.actioner-container_body .body-title[data-v-43dd65a2]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-tips[data-v-43dd65a2]{text-align:center}.actioner-container_body .body-info[data-v-43dd65a2]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body .body-tips[data-v-43dd65a2]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-43dd65a2]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-43dd65a2]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-7790f1da{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7790f1da{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7790f1da{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7790f1da]{animation:rotateEnter-7790f1da .7s;position:relative}.rotate-leave-active[data-v-7790f1da]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7790f1da]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-7790f1da]{width:100%;height:100%;border:none}@keyframes bganimation-7b3ee72a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7b3ee72a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7b3ee72a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7b3ee72a]{animation:rotateEnter-7b3ee72a .7s;position:relative}.rotate-leave-active[data-v-7b3ee72a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7b3ee72a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-7b3ee72a]{width:100%;height:100%;border:none}@keyframes bganimation-7f5a8953{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7f5a8953{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7f5a8953{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7f5a8953]{animation:rotateEnter-7f5a8953 .7s;position:relative}.rotate-leave-active[data-v-7f5a8953]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7f5a8953]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-7f5a8953]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-7f5a8953]{width:100px;height:100px}.actioner-container_body .body-title[data-v-7f5a8953]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-info[data-v-7f5a8953]{color:#666;font-size:1.3em;margin:1rem 0;width:100%}.actioner-container_body .body-tips[data-v-7f5a8953]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-7f5a8953]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-7f5a8953]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-d60389d6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d60389d6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d60389d6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d60389d6]{animation:rotateEnter-d60389d6 .7s;position:relative}.rotate-leave-active[data-v-d60389d6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d60389d6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-d60389d6]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-1e0ebd66{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e0ebd66{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e0ebd66{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e0ebd66]{animation:rotateEnter-1e0ebd66 .7s;position:relative}.rotate-leave-active[data-v-1e0ebd66]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e0ebd66]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-1e0ebd66]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-7a6bd385{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7a6bd385{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7a6bd385{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7a6bd385]{animation:rotateEnter-7a6bd385 .7s;position:relative}.rotate-leave-active[data-v-7a6bd385]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7a6bd385]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-7a6bd385]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-7a6bd385] .actioner-container{width:100%}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;color:#0060ff;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_body{padding:1rem;text-align:center;width:100%;height:400px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_body.ddnsto-bind{height:280px}@keyframes bganimation-7a6bd385{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7a6bd385{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7a6bd385{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7a6bd385]{animation:rotateEnter-7a6bd385 .7s;position:relative}.rotate-leave-active[data-v-7a6bd385]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7a6bd385]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-7a6bd385]{width:90%}}@keyframes bganimation-4358e88c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4358e88c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4358e88c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4358e88c]{animation:rotateEnter-4358e88c .7s;position:relative}.rotate-leave-active[data-v-4358e88c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4358e88c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-4358e88c]{width:500px;max-height:90%;background-color:#fff;position:relative;z-index:99999;margin:auto;border-radius:4px;padding:10px 0}.action .action-header[data-v-4358e88c]{width:100%;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;padding-left:1rem;padding-right:1rem;text-align:left;font-size:18px;line-height:1;color:#303133}.action .action-body[data-v-4358e88c]{display:block;margin:2rem 0;line-height:24px;padding:0 15px;color:#606266;font-size:14px}.action .action-footer[data-v-4358e88c]{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action .next[data-v-4358e88c]{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:120px;height:32px;background:#553AFE;border-radius:2px}.action .next[data-v-4358e88c]:hover{opacity:.8}.action .clear[data-v-4358e88c]{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action .clear[data-v-4358e88c]:hover{opacity:.8}@keyframes bganimation-9435cfa6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9435cfa6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9435cfa6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9435cfa6]{animation:rotateEnter-9435cfa6 .7s;position:relative}.rotate-leave-active[data-v-9435cfa6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9435cfa6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.title_info[data-v-9435cfa6]{display:block;width:100%;text-align:center}.title_info p[data-v-9435cfa6]{font-size:20px;margin-bottom:10px}.label-item[data-v-9435cfa6]{width:100%;margin:1rem 0}.label-item .label-item_key[data-v-9435cfa6]{width:100%;font-size:12px;color:#666}.label-item .label-item_key span[data-v-9435cfa6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-9435cfa6]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-9435cfa6]{width:100%;margin-top:5px}.label-item .label-item_value select[data-v-9435cfa6],.label-item .label-item_value input[data-v-9435cfa6]{width:100%;height:36px;color:#000}.label-item .label-item_value input[data-v-9435cfa6]::placeholder{color:#999;font-size:12PX}.label-item .label_tips[data-v-9435cfa6]{display:flex;margin-top:6px}.label-item .label_tips .info[data-v-9435cfa6]{margin-left:8px}.label-message[data-v-9435cfa6]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}@keyframes bganimation-6f1d92d9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f1d92d9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f1d92d9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f1d92d9]{animation:rotateEnter-6f1d92d9 .7s;position:relative}.rotate-leave-active[data-v-6f1d92d9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f1d92d9]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-6f1d92d9]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-6f1d92d9] .actioner-container{width:100%}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body{padding:1rem;width:100%;height:400px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body.ali,.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body.dnspod,.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body.oray{height:451px}@keyframes bganimation-6f1d92d9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f1d92d9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f1d92d9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f1d92d9]{animation:rotateEnter-6f1d92d9 .7s;position:relative}.rotate-leave-active[data-v-6f1d92d9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f1d92d9]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-6f1d92d9]{width:90%}}@keyframes bganimation-2d533925{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2d533925{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2d533925{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2d533925]{animation:rotateEnter-2d533925 .7s;position:relative}.rotate-leave-active[data-v-2d533925]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2d533925]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-2d533925]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container a[data-v-2d533925]{text-decoration:none}.app-container .app-container_title[data-v-2d533925]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-2d533925]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-2d533925]{height:30px;border-radius:4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;align-items:center;justify-content:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-2d533925]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-2d533925] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-2d533925]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-2d533925]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:0;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-2d533925]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-2d533925]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-2d533925]:hover{background-color:#eee}.app-container button[data-v-2d533925],.app-container .refresh[data-v-2d533925]{margin-left:20px}.app-container .app-container_body[data-v-2d533925]{width:100%;height:100%}.menu_background[data-v-2d533925]{position:fixed;inset:0}.app-container_domain li.domain-item[data-v-2d533925]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0;align-items:center}.app-container_domain li.domain-item .domain-item_name[data-v-2d533925]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.app-container_domain li.domain-item .domain-item_value[data-v-2d533925]{flex:0 0 100%;max-width:50%;padding-left:10px;float:left;display:flex;align-items:center;justify-content:space-between}.app-container_domain li.domain-item .domain-item_value .configure[data-v-2d533925]{overflow:hidden;white-space:nowrap;padding:3px;overflow-x:hidden;text-overflow:ellipsis}.app-container_domain li.domain-item .domain-item_value .item_btn[data-v-2d533925]{border:1px solid #553afb;border-radius:4px;font-size:12px;padding:7px;color:#553afb;text-align:center;min-width:60px}.app-container_domain li.domain-item .domain-item_value .configure.enabel[data-v-2d533925]{color:#888;overflow-x:hidden;text-overflow:ellipsis}.app-container_domain li.domain-item .domain-item_root[data-v-2d533925]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.app-container_domain .domain_tip svg[data-v-2d533925]{vertical-align:bottom;margin-left:22px}.app-container_domain .tooltip-trigger[data-v-2d533925]{position:relative;display:inline-block;cursor:help;margin-right:6px}.app-container_domain .tooltip-trigger .tooltip-text[data-v-2d533925]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.app-container_domain .tooltip-trigger .tooltip-text span[data-v-2d533925]{color:#fff}.app-container_domain .tooltip-trigger .tooltip-text .domain_dir_tip[data-v-2d533925]{min-width:15rem;display:inline-block}.app-container_domain .tooltip-trigger:hover .tooltip-text[data-v-2d533925]{visibility:visible;opacity:1}.app-container_domain .tooltip-top[data-v-2d533925]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.app-container_domain .tooltip-right[data-v-2d533925]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.app-container_domain .tooltip-left[data-v-2d533925]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.app-container_domain .tooltip-top[data-v-2d533925]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.app-container_domain .tooltip-bottom[data-v-2d533925]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-66cc4e33{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-66cc4e33{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-66cc4e33{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-66cc4e33]{animation:rotateEnter-66cc4e33 .7s;position:relative}.rotate-leave-active[data-v-66cc4e33]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-66cc4e33]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.nas-container[data-v-66cc4e33]{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.nas-container .nas-container_card[data-v-66cc4e33]{flex:0 0 49%;max-width:49%;margin-bottom:1.5vw}@keyframes bganimation-66cc4e33{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-66cc4e33{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-66cc4e33{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-66cc4e33]{animation:rotateEnter-66cc4e33 .7s;position:relative}.rotate-leave-active[data-v-66cc4e33]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-66cc4e33]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 992px){.nas-container .nas-container_card[data-v-66cc4e33]{flex:0 0 100%;max-width:100%;padding-right:0;margin-bottom:.8rem}}@keyframes bganimation-f3717996{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f3717996{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f3717996{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f3717996]{animation:rotateEnter-f3717996 .7s;position:relative}.rotate-leave-active[data-v-f3717996]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f3717996]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container_title .more_icon[data-v-f3717996]{position:absolute;right:22px;cursor:pointer}.app-container_title .DeviceBlock[data-v-f3717996]{position:absolute;z-index:999;width:10%;right:22px;margin-top:14px}.app-container_title .DeviceBlock ul[data-v-f3717996]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:0;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container_title .DeviceBlock ul li[data-v-f3717996]{margin:6px 0;line-height:28px;cursor:pointer}.app-container_title .DeviceBlock ul li a[data-v-f3717996]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;margin:0 20px;display:block}.app-container_title .DeviceBlock ul li[data-v-f3717996]:hover{background-color:#eee}.item-label[data-v-f3717996]{display:flex;flex-wrap:wrap;align-items:flex-start;align-content:flex-start;width:100%;margin:1rem 0}.item-label .item-label_key[data-v-f3717996]{flex:0 0 100%;max-width:100px;text-align:left}.item-label .item-label_key span[data-v-f3717996]{font-size:14px;color:#333}.item-label .item-label_value[data-v-f3717996]{flex:1;text-align:left}.item-label .item-label_value span[data-v-f3717996]{font-size:14px;color:#333}.item-title span[data-v-f3717996]{font-size:16px;font-weight:550;color:#555}.item-flex[data-v-f3717996]{width:100%;display:flex;flex-wrap:wrap}.item-flex .auto[data-v-f3717996]{flex:auto}.item-flex button.app-editor[data-v-f3717996]{padding:8px 1.3rem}.menu_background[data-v-f3717996]{position:fixed;inset:0}@keyframes bganimation-9cffddcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9cffddcc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9cffddcc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9cffddcc]{animation:rotateEnter-9cffddcc .7s;position:relative}.rotate-leave-active[data-v-9cffddcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9cffddcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-9cffddcc]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-9cffddcc]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-9cffddcc]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-9cffddcc]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-9cffddcc]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-9cffddcc]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-9cffddcc]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-9cffddcc]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-9cffddcc],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-9cffddcc]{width:100%;height:36px}.actioner-dns .actioner-dns_body .chose_dhcp[data-v-9cffddcc]{height:1em;font-size:1.3em}.actioner-dns .actioner-dns_body .chose_dhcp .dhcp_info[data-v-9cffddcc]{margin-left:10px;user-select:none}.actioner-dns .actioner-dns_body .label-message[data-v-9cffddcc]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-9cffddcc]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-9cffddcc]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-9cffddcc]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.setting_status[data-v-9cffddcc]{text-align:center}.setting_status p[data-v-9cffddcc]{margin:10px 0}.setting_status a[data-v-9cffddcc]{text-align:center;display:block;text-decoration:none}.NewAdress[data-v-9cffddcc]{margin-top:10px}@keyframes bganimation-9cffddcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9cffddcc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9cffddcc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9cffddcc]{animation:rotateEnter-9cffddcc .7s;position:relative}.rotate-leave-active[data-v-9cffddcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9cffddcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-9cffddcc]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-9cffddcc]{width:100%}}@keyframes bganimation-0384f3ac{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0384f3ac{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0384f3ac{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0384f3ac]{animation:rotateEnter-0384f3ac .7s;position:relative}.rotate-leave-active[data-v-0384f3ac]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0384f3ac]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-0384f3ac]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-0384f3ac]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-0384f3ac]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_roboot_tips[data-v-0384f3ac]{margin-top:24px;text-align:center}.actioner-dns .actioner-dns_body .disk_loading_icon[data-v-0384f3ac]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.actioner-dns .actioner-dns_body .disk_loading_icon .disk_loading_info[data-v-0384f3ac]{margin-top:5px}.actioner-dns .actioner-dns_body .disk_tips[data-v-0384f3ac]{text-align:center;font-size:16px;margin-top:159px;color:#f9ad1e}.actioner-dns .actioner-dns_body .disk_tips svg[data-v-0384f3ac]{vertical-align:middle}.actioner-dns .actioner-dns_body .disk_tips span[data-v-0384f3ac]{margin-left:6px}.actioner-dns .actioner-dns_body .sandbox_info[data-v-0384f3ac]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .label-item[data-v-0384f3ac]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0384f3ac]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0384f3ac]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0384f3ac]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-0384f3ac]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-0384f3ac],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-0384f3ac]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-0384f3ac]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .actioner-dns_body .sandbox_tips svg[data-v-0384f3ac]{vertical-align:middle}.actioner-dns .actioner-dns_body .sandbox_tips span[data-v-0384f3ac]{font-size:12px;margin-left:4px}.actioner-dns .config-message[data-v-0384f3ac]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-0384f3ac]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-0384f3ac]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-0384f3ac]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-0384f3ac]{margin-top:114px}.timeout span[data-v-0384f3ac],.sandbox_roboot_refresh[data-v-0384f3ac]{color:#5e72e4}option[data-v-0384f3ac]:disabled{background-color:#e0e0e0}@keyframes bganimation-0384f3ac{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0384f3ac{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0384f3ac{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0384f3ac]{animation:rotateEnter-0384f3ac .7s;position:relative}.rotate-leave-active[data-v-0384f3ac]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0384f3ac]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-0384f3ac]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-0384f3ac]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-0384f3ac]{min-height:42vh}.actioner-tips[data-v-0384f3ac]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-0384f3ac]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-0384f3ac]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-0384f3ac]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-0384f3ac]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0384f3ac]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0384f3ac]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_footer button[data-v-0384f3ac]{width:100%!important;margin-bottom:10px}.actioner-tips .sandbox_info[data-v-0384f3ac]{padding:3px 10px}}@keyframes bganimation-4db2efb4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4db2efb4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4db2efb4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4db2efb4]{animation:rotateEnter-4db2efb4 .7s;position:relative}.rotate-leave-active[data-v-4db2efb4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4db2efb4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-4db2efb4]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-4db2efb4]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-4db2efb4]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_info[data-v-4db2efb4]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-4db2efb4]{font-size:16px;line-height:28px;margin:20px 0}.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-4db2efb4]{font-size:16px;line-height:28px}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_reboot[data-v-4db2efb4]{color:#5e72e4}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_tex[data-v-4db2efb4]{color:red;font-size:.9em}.actioner-dns .actioner-dns_footer[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-4db2efb4]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-4db2efb4]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-4db2efb4]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-4db2efb4]{margin-top:114px}.timeout span[data-v-4db2efb4]{color:#5e72e4}@keyframes bganimation-4db2efb4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4db2efb4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4db2efb4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4db2efb4]{animation:rotateEnter-4db2efb4 .7s;position:relative}.rotate-leave-active[data-v-4db2efb4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4db2efb4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-4db2efb4]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-4db2efb4]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-4db2efb4]{min-height:42vh}.actioner-dns .actioner-dns_footer button[data-v-4db2efb4]{width:100%!important;margin-bottom:10px}.actioner-tips[data-v-4db2efb4]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-4db2efb4]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-4db2efb4]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-4db2efb4]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-4db2efb4]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-4db2efb4]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-4db2efb4]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .sandbox_info[data-v-4db2efb4]{font-size:10px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-4db2efb4],.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-4db2efb4]{font-size:12px}.actioner-tips .sandbox_info[data-v-4db2efb4]{padding:3px 10px}}@keyframes bganimation-0d223b54{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d223b54{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d223b54{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d223b54]{animation:rotateEnter-0d223b54 .7s;position:relative}.rotate-leave-active[data-v-0d223b54]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d223b54]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.nav-container[data-v-0d223b54]{width:100%;margin-bottom:8px}.nav-container .btn_styles[data-v-0d223b54]{width:132px;height:52px;border-radius:8px;margin-right:8px}.nav-container .app-update-button[data-v-0d223b54]{position:relative}.nav-container .app-update-button i[data-v-0d223b54]{display:inline-block;padding:3px;background-color:red;border-radius:50%}.nav-container .cover-buttob[data-v-0d223b54]{margin-left:0;margin-right:5px}.nav-container a[data-v-0d223b54]{padding:12px 1rem;margin-right:1rem;margin-bottom:1rem;display:inline-block;min-width:100px;text-align:center}.nav-container a[data-v-0d223b54]:hover{box-shadow:0 0 10px 1px #c5c5c5;transition:.3s;transform:scale(1.1)}.nav-container .app-btn-ttyd[data-v-0d223b54]:before{content:"\276f "}.nav-container .MoreMenu[data-v-0d223b54]{cursor:pointer;color:#297ff3;margin-left:20px;font-size:16px;font-weight:600}.nav-container[data-v-0d223b54]{display:flex;justify-content:start;align-items:center;flex-wrap:wrap;width:100%}.nav-container button[data-v-0d223b54]{cursor:pointer;margin-bottom:10px}.nav-container button[data-v-0d223b54]:hover{box-shadow:0 0 2px #0000001f,0 2px 2px #0003}.update[data-v-0d223b54]{visibility:hidden}.color1[data-v-0d223b54]{border:1px solid #553AFE;color:#533afe;background:rgba(85,58,254,.16)}.color2[data-v-0d223b54]{background:#2b2b2b;border:#444;color:#fff}.color3[data-v-0d223b54]{border:1px solid #FF6A67;background:rgba(255,107,103,.16);color:#ff6a67}.color4[data-v-0d223b54]{border:1px solid #3688FF;background:rgba(51,134,255,.16);color:#3688ff}.color5[data-v-0d223b54]{border:1px solid #FE3ACC;background:rgba(254,58,204,.16);color:#fe3acc}@keyframes bganimation-08ce2a3e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-08ce2a3e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-08ce2a3e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-08ce2a3e]{animation:rotateEnter-08ce2a3e .7s;position:relative}.rotate-leave-active[data-v-08ce2a3e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-08ce2a3e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}em[data-v-08ce2a3e]{margin:.3125rem 0;width:100%;display:block;height:1px;background-color:#eeeeee2e}[data-v-08ce2a3e] .app-container_title{width:100%;height:34px;display:flex;flex-wrap:wrap;align-items:center;color:#1e1e1e;font-size:1.5em}[data-v-08ce2a3e] .more_icon{z-index:0}@keyframes bganimation-082ffcaf{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-082ffcaf{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-082ffcaf{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-082ffcaf]{animation:rotateEnter-082ffcaf .7s;position:relative}.rotate-leave-active[data-v-082ffcaf]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-082ffcaf]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-082ffcaf]{width:100%;padding:1rem;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;align-content:center;max-width:800px;height:100vh;overflow:overlay}#page .title[data-v-082ffcaf]{width:100%;display:block;text-align:center;font-size:32px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#000c;line-height:45px}#page .desc[data-v-082ffcaf]{width:100%;display:block;font-size:24px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#0009;line-height:33px;text-align:center;margin-top:10px}#page div.info[data-v-082ffcaf]{width:100%;display:block;font-size:1.6em;font-size:16px;margin-left:34px}#page .network-containers[data-v-082ffcaf]{width:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;margin:3rem 0 1rem}#page .network-containers .network-container_item[data-v-082ffcaf]{flex:0 0 100%;position:relative;border-radius:4px;padding:10px;cursor:pointer;max-width:240px;width:240px;height:308px}#page .network-containers .network-container_item a[data-v-082ffcaf]{position:relative;display:block;width:100%}#page .network-containers .network-container_item a .cover[data-v-082ffcaf]{position:relative;padding-top:130%;z-index:1}#page .network-containers .network-container_item a .cover .thumbnail[data-v-082ffcaf]{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:8px;overflow:hidden;z-index:1;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;background-color:#2dc8fd}#page .network-containers .network-container_item a .cover .thumbnail i[data-v-082ffcaf]{display:block;font-size:100px;color:#eee}#page .network-containers .network-container_item a .cover .thumbnail span[data-v-082ffcaf]{display:block;text-align:center;width:100%;color:#eeee;font-size:2em;line-height:1.5;font-size:22px;font-family:PingFangSC-Semibold,PingFang SC;color:#fff;line-height:40px}#page .network-containers .network-container_item:nth-child(9n+1) a .cover .thumbnail[data-v-082ffcaf]{background:linear-gradient(138deg,#FF6E6B 0%,#FF6966 100%)}#page .network-containers .network-container_item:nth-child(9n+2) a .cover .thumbnail[data-v-082ffcaf]{background:linear-gradient(145deg,#37D5A9 0%,#42D8B0 100%)}#page .network-containers .network-container_item:nth-child(9n+3) a .cover .thumbnail[data-v-082ffcaf]{background:linear-gradient(145deg,#549AFF 0%,#2C82FF 100%)}#page .network-containers .network-container_item:nth-child(9n+4) a .cover .thumbnail[data-v-082ffcaf]{background-color:#9b58de}#page .network-containers .network-container_item:nth-child(9n+5) a .cover .thumbnail[data-v-082ffcaf]{background-color:#297ff3}#page .network-containers .network-container_item:nth-child(9n+6) a .cover .thumbnail[data-v-082ffcaf]{background-color:#27aa8f}#page .network-containers .network-container_item:nth-child(9n+7) a .cover .thumbnail[data-v-082ffcaf]{background-color:#f15a4a}#page .network-containers .network-container_item:nth-child(9n+8) a .cover .thumbnail[data-v-082ffcaf]{background-color:#439c07}@keyframes bganimation-082ffcaf{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-082ffcaf{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-082ffcaf{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-082ffcaf]{animation:rotateEnter-082ffcaf .7s;position:relative}.rotate-leave-active[data-v-082ffcaf]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-082ffcaf]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-16746f19{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-16746f19{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-16746f19{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-16746f19]{animation:rotateEnter-16746f19 .7s;position:relative}.rotate-leave-active[data-v-16746f19]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-16746f19]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-16746f19]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-16746f19]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-16746f19]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-16746f19]{margin:.5rem 0}#page .network-message li[data-v-16746f19]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-16746f19]{color:red}#page .network-message li a[data-v-16746f19]{color:#00f}#page form[data-v-16746f19]{display:block;width:100%;margin:3rem 0}#page form label[data-v-16746f19]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-16746f19]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-16746f19]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-16746f19]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-16746f19]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-16746f19]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-16746f19]{margin-left:10px;user-select:none}#page .msg[data-v-16746f19]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page .btns[data-v-16746f19]{width:100%;margin-top:3rem}#page .btns button[data-v-16746f19]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-0d3a64fa{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d3a64fa{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d3a64fa{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d3a64fa]{animation:rotateEnter-0d3a64fa .7s;position:relative}.rotate-leave-active[data-v-0d3a64fa]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d3a64fa]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-0d3a64fa]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-0d3a64fa]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-0d3a64fa]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-0d3a64fa]{margin:.5rem 0}#page .network-message li[data-v-0d3a64fa]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-0d3a64fa]{color:red}#page .network-message li a[data-v-0d3a64fa]{color:#00f}#page form[data-v-0d3a64fa]{display:block;width:100%;margin:3rem 0}#page form label[data-v-0d3a64fa]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-0d3a64fa]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-0d3a64fa]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-0d3a64fa]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-0d3a64fa],#page form label select[data-v-0d3a64fa]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-0d3a64fa]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-0d3a64fa]{margin-left:10px;user-select:none}#page .msgs[data-v-0d3a64fa]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-0d3a64fa]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-0d3a64fa]{width:100%;margin-top:3rem}#page .btns button[data-v-0d3a64fa]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-1c3f186c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1c3f186c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1c3f186c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1c3f186c]{animation:rotateEnter-1c3f186c .7s;position:relative}.rotate-leave-active[data-v-1c3f186c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1c3f186c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-1c3f186c]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-1c3f186c]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-1c3f186c]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page code[data-v-1c3f186c]{background-color:#eee;display:block;width:100%;font-size:1.3em;padding:1rem;line-height:2;margin:2rem 0}#page div.info[data-v-1c3f186c]{width:100%;display:block;margin:1rem 0;font-size:1.3em;text-align:left}#page .msgs[data-v-1c3f186c]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-1c3f186c]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-1c3f186c]{width:100%;display:block;margin-top:3rem}#page .btns button[data-v-1c3f186c]{display:block;width:100%!important;margin:.5rem 0}#page form[data-v-1c3f186c]{display:block;width:100%;margin:3rem 0}#page form label[data-v-1c3f186c]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-1c3f186c]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-1c3f186c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-1c3f186c]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-1c3f186c],#page form label select[data-v-1c3f186c]{width:100%;display:block;height:42px}.switch_inline[data-v-1c3f186c]{height:1em;font-size:1.3em}.switch_inline .switch_info[data-v-1c3f186c]{margin-left:10px;user-select:none}@keyframes bganimation-7fc91c6d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7fc91c6d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7fc91c6d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7fc91c6d]{animation:rotateEnter-7fc91c6d .7s;position:relative}.rotate-leave-active[data-v-7fc91c6d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7fc91c6d]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}p[data-v-7fc91c6d]{line-height:22px;font-size:14px}.label-item[data-v-7fc91c6d]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-7fc91c6d]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-7fc91c6d]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-7fc91c6d]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-7fc91c6d]{width:100%;margin:10px 0}.label-item .label-item_value select[data-v-7fc91c6d],.label-item .label-item_value input[data-v-7fc91c6d]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value input[data-v-7fc91c6d]::placeholder{color:#999;font-size:12PX}.label-item .label-item_value label[data-v-7fc91c6d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=checkbox][data-v-7fc91c6d]{top:0}.label-item .label-item_tips[data-v-7fc91c6d]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-7fc91c6d]{vertical-align:top}span.msg-warning[data-v-7fc91c6d]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}.label-message[data-v-7fc91c6d]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-container_body.setup-loading[data-v-7fc91c6d]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-loading span[data-v-7fc91c6d]{width:100%;display:block;font-size:1.2em;margin-top:1rem;color:#666}.actioner-container_body.setup-error[data-v-7fc91c6d]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-error svg.icon[data-v-7fc91c6d]{width:100px;height:100px}.actioner-container_body.setup-error span[data-v-7fc91c6d]{width:100%;display:block;font-size:1.4em;color:#ff6b6b}.actioner-container_body.setup-success[data-v-7fc91c6d]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body.setup-success svg.icon[data-v-7fc91c6d]{width:100px;height:100px}.actioner-container_body.setup-success .body-title[data-v-7fc91c6d]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body.setup-success .body-tips[data-v-7fc91c6d]{text-align:center}.actioner-container_body.setup-success .body-info[data-v-7fc91c6d]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body.setup-success .body-info span[data-v-7fc91c6d]{display:block}.actioner-container_body.setup-success .body-tips[data-v-7fc91c6d]{margin:1rem 0;display:block;width:100%}.actioner-container_body.setup-success .body-btns[data-v-7fc91c6d]{width:100%;margin-top:3rem}.actioner-container_body.setup-success .body-btns button[data-v-7fc91c6d]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-51f9d7a2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-51f9d7a2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-51f9d7a2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-51f9d7a2]{animation:rotateEnter-51f9d7a2 .7s;position:relative}.rotate-leave-active[data-v-51f9d7a2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-51f9d7a2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-51f9d7a2]{display:block;width:100%;height:100%;border:none;resize:none}@keyframes bganimation-c07c8244{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-c07c8244{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-c07c8244{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-c07c8244]{animation:rotateEnter-c07c8244 .7s;position:relative}.rotate-leave-active[data-v-c07c8244]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-c07c8244]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-c07c8244]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-c07c8244]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-c07c8244]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-c07c8244]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-c07c8244]{width:100%}.label-item .label-item_value select[data-v-c07c8244]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-c07c8244]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-c07c8244]{top:0;margin:0}.label-item .label-item_tips[data-v-c07c8244]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-c07c8244]{vertical-align:top}span.msg-warning[data-v-c07c8244]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-13dc2cd6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-13dc2cd6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-13dc2cd6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-13dc2cd6]{animation:rotateEnter-13dc2cd6 .7s;position:relative}.rotate-leave-active[data-v-13dc2cd6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-13dc2cd6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-13dc2cd6]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-13dc2cd6]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-13dc2cd6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-13dc2cd6]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-13dc2cd6]{width:100%}.label-item .label-item_value select[data-v-13dc2cd6]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-13dc2cd6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-13dc2cd6]{top:0;margin:0}.label-item .label-item_tips[data-v-13dc2cd6]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-13dc2cd6]{vertical-align:top}span.msg-warning[data-v-13dc2cd6]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-5643983d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5643983d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5643983d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5643983d]{animation:rotateEnter-5643983d .7s;position:relative}.rotate-leave-active[data-v-5643983d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5643983d]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-5643983d]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-5643983d]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-5643983d]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-5643983d]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-5643983d]{width:100%}.label-item .label-item_value select[data-v-5643983d]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-5643983d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-5643983d]{top:0;margin:0}.label-item .label-item_tips[data-v-5643983d]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-5643983d]{vertical-align:top}span.msg-warning[data-v-5643983d]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-6ef94d02{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6ef94d02{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6ef94d02{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6ef94d02]{animation:rotateEnter-6ef94d02 .7s;position:relative}.rotate-leave-active[data-v-6ef94d02]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6ef94d02]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-6ef94d02]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-6ef94d02] .actioner-container{width:100%}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_body{padding:20px;width:100%;height:400px}@keyframes bganimation-6ef94d02{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6ef94d02{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6ef94d02{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6ef94d02]{animation:rotateEnter-6ef94d02 .7s;position:relative}.rotate-leave-active[data-v-6ef94d02]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6ef94d02]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-6ef94d02]{width:90%}}@keyframes bganimation-535a673b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-535a673b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-535a673b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-535a673b]{animation:rotateEnter-535a673b .7s;position:relative}.rotate-leave-active[data-v-535a673b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-535a673b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.cbi-map-descr[data-v-535a673b]{margin-bottom:32px}.item-status[data-v-535a673b]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.item-status-detail[data-v-535a673b]{text-decoration:underline;cursor:help}@keyframes bganimation-2bc40d1c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2bc40d1c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2bc40d1c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2bc40d1c]{animation:rotateEnter-2bc40d1c .7s;position:relative}.rotate-leave-active[data-v-2bc40d1c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2bc40d1c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page .cbi-map-descr[data-v-2bc40d1c]{margin-bottom:1rem}#page[data-v-2bc40d1c] .cbi-section{padding:1rem}#page[data-v-2bc40d1c] span.cbi-page-actions.control-group{width:100%;display:block}@keyframes bganimation-742230ae{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-742230ae{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-742230ae{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-742230ae]{animation:rotateEnter-742230ae .7s;position:relative}.rotate-leave-active[data-v-742230ae]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-742230ae]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-742230ae]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-742230ae] .actioner-container{width:100%}.action-main[data-v-742230ae] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:16px;border-bottom:1px solid #eee;justify-content:flex-start;padding:0 1rem;color:#525f7f}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem;padding:0;border:none}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-742230ae] .actioner-container .actioner-container_body{padding:20px;width:100%;min-height:400px}.action-main[data-v-742230ae] .actioner-container .actioner-container_body label.cbi-value-title{width:150px!important}@keyframes bganimation-742230ae{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-742230ae{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-742230ae{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-742230ae]{animation:rotateEnter-742230ae .7s;position:relative}.rotate-leave-active[data-v-742230ae]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-742230ae]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-742230ae]{width:90%}}@keyframes bganimation-3f7c551e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3f7c551e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3f7c551e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3f7c551e]{animation:rotateEnter-3f7c551e .7s;position:relative}.rotate-leave-active[data-v-3f7c551e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3f7c551e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-3f7c551e]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-7d3ebf99{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7d3ebf99{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7d3ebf99{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7d3ebf99]{animation:rotateEnter-7d3ebf99 .7s;position:relative}.rotate-leave-active[data-v-7d3ebf99]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7d3ebf99]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-7d3ebf99]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-76197cba{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-76197cba{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-76197cba{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-76197cba]{animation:rotateEnter-76197cba .7s;position:relative}.rotate-leave-active[data-v-76197cba]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-76197cba]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-76197cba]{display:block;width:100%;height:500px;padding:1rem;font-size:14px;resize:none;border:1px solid #999;border-radius:3px}.actioner-dns[data-v-2f7b866f]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2f7b866f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2f7b866f]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2f7b866f]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2f7b866f]{width:100%;font-size:16px;color:#666;margin-bottom:10px}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2f7b866f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2f7b866f]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2f7b866f]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2f7b866f],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2f7b866f]{width:100%;min-height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2f7b866f]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2f7b866f]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2f7b866f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2f7b866f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-2f7b866f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2f7b866f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2f7b866f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2f7b866f]{animation:rotateEnter-2f7b866f .7s;position:relative}.rotate-leave-active[data-v-2f7b866f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2f7b866f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2f7b866f]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-2f7b866f]{width:100%}}@keyframes bganimation-589588f0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-589588f0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-589588f0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-589588f0]{animation:rotateEnter-589588f0 .7s;position:relative}.rotate-leave-active[data-v-589588f0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-589588f0]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-589588f0]{width:48px;height:100%;cursor:pointer}.interface-device-flex[data-v-589588f0]{display:flex;justify-content:center}.interface-device-flex .app-container_status-label_bg[data-v-589588f0]{width:0;min-width:130px;max-width:230px;overflow-y:hidden;flex:1 0 160px}.cbi-section-table-row .td.btns[data-v-589588f0]{text-align:left!important} +@keyframes bganimation-57f1326f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-57f1326f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-57f1326f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-57f1326f]{animation:rotateEnter-57f1326f .7s;position:relative}.rotate-leave-active[data-v-57f1326f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-57f1326f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.disk-item-tooltip[data-v-57f1326f]{position:fixed;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;font-size:1em;min-width:200px;line-height:24px}.disk-item-tooltip[data-v-57f1326f]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#main .app-btn,#actioner .app-btn{min-height:36px}@keyframes bganimation-9bc295c2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9bc295c2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9bc295c2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9bc295c2]{animation:rotateEnter-9bc295c2 .7s;position:relative}.rotate-leave-active[data-v-9bc295c2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9bc295c2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#main[data-v-9bc295c2]{width:100%}#main[data-v-9bc295c2],#main[data-v-9bc295c2] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}@keyframes bganimation-733828e1{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-733828e1{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-733828e1{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-733828e1]{animation:rotateEnter-733828e1 .7s;position:relative}.rotate-leave-active[data-v-733828e1]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-733828e1]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.progress[data-v-733828e1]{width:100%;display:block;position:relative;background-color:#eee;border-radius:4px;height:18px;line-height:18px;overflow:hidden}.progress .progress-value[data-v-733828e1]{transition:.5s;position:absolute;left:0;top:0;bottom:0;height:100%;text-align:center;color:#fff;vertical-align:middle;font-size:12px}@keyframes bganimation-4457c24d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4457c24d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4457c24d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4457c24d]{animation:rotateEnter-4457c24d .7s;position:relative}.rotate-leave-active[data-v-4457c24d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4457c24d]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}label.checkbox_switch[data-v-4457c24d]{cursor:pointer;display:flex!important;width:initial!important}label.checkbox_switch input[type=checkbox][data-v-4457c24d]{display:none!important}label.checkbox_switch .checkbox_switch_on[data-v-4457c24d],label.checkbox_switch .checkbox_switch_off[data-v-4457c24d]{flex:none}label.checkbox_switch .checkbox_switch_on[data-v-4457c24d]{display:none!important}label.checkbox_switch .checkbox_switch_off[data-v-4457c24d]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_on[data-v-4457c24d]{display:inline-flex!important}label.checkbox_switch input[type=checkbox]:checked~.checkbox_switch_off[data-v-4457c24d]{display:none!important}label.checkbox_switch svg[data-v-4457c24d]{height:1em;width:2em}article[data-v-bd286d4e]{flex:0 0 100%;max-width:20%;position:relative;border-radius:4px;padding:10px}@media screen and (max-width: 1080px){article[data-v-bd286d4e]{max-width:33.333%}}@keyframes bganimation-bd286d4e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-bd286d4e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-bd286d4e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-bd286d4e]{animation:rotateEnter-bd286d4e .7s;position:relative}.rotate-leave-active[data-v-bd286d4e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-bd286d4e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 768px){article[data-v-bd286d4e]{max-width:50%}}@keyframes bganimation-123deb20{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-123deb20{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-123deb20{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-123deb20]{animation:rotateEnter-123deb20 .7s;position:relative}.rotate-leave-active[data-v-123deb20]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-123deb20]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}a[data-v-123deb20]{position:relative;display:block;width:100%;transition:.4s;cursor:pointer}a[data-v-123deb20]:hover{transform:scale(1.07);transition:.4s;position:relative}a:hover .cover .thumbnail[data-v-123deb20]{box-shadow:0 6px 40px #1c67f2}a .cover[data-v-123deb20]{position:relative;padding-top:130%;z-index:1}a .cover[data-v-123deb20] .thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:6px;overflow:hidden;z-index:1;background-color:#2dc8fd;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}a .cover[data-v-123deb20] .thumbnail i{display:block;font-size:100px;color:#eee}a .cover[data-v-123deb20] .thumbnail span{display:block;text-align:center;width:100%;color:#eeee;font-size:28px;margin:1rem 0}article:nth-child(9n+1) a .cover .thumbnail[data-v-123deb20]{background-color:#ff9100}article:nth-child(9n+2) a .cover .thumbnail[data-v-123deb20]{background-color:#2dc8fd}article:nth-child(9n+3) a .cover .thumbnail[data-v-123deb20]{background-color:#f66a2c}article:nth-child(9n+4) a .cover .thumbnail[data-v-123deb20]{background-color:#9b58de}article:nth-child(9n+5) a .cover .thumbnail[data-v-123deb20]{background-color:#297ff3}article:nth-child(9n+6) a .cover .thumbnail[data-v-123deb20]{background-color:#27aa8f}article:nth-child(9n+7) a .cover .thumbnail[data-v-123deb20]{background-color:#f15a4a}article:nth-child(9n+8) a .cover .thumbnail[data-v-123deb20]{background-color:#439c07}@keyframes bganimation-169d5b59{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-169d5b59{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-169d5b59{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-169d5b59]{animation:rotateEnter-169d5b59 .7s;position:relative}.rotate-leave-active[data-v-169d5b59]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-169d5b59]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.select-editable[data-v-169d5b59]{position:relative;line-height:1.5rem;padding:.5rem .75rem;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-169d5b59],.select-editable input[data-v-169d5b59]{height:100%;padding:0;border:none;margin:0}.select-editable select[data-v-169d5b59]{position:relative;width:100%}.select-editable input[data-v-169d5b59]{position:absolute;top:0;left:.75rem;width:88%}.select-editable select[data-v-169d5b59]:focus,.select-editable input[data-v-169d5b59]:focus{outline:none;box-shadow:none}@keyframes bganimation-0ec4e762{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ec4e762{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ec4e762{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ec4e762]{animation:rotateEnter-0ec4e762 .7s;position:relative}.rotate-leave-active[data-v-0ec4e762]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ec4e762]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-0ec4e762{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.quick-loading[data-v-0ec4e762]{animation:turn-0ec4e762 1s steps(12,end) infinite;margin:0!important;padding:0!important;background:none!important;display:flex!important}.quick-loading svg[data-v-0ec4e762]{width:100%;height:100%}.quick-loading svg path[data-v-0ec4e762]{fill:#fff}@keyframes bganimation-7fc1a08c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7fc1a08c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7fc1a08c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7fc1a08c]{animation:rotateEnter-7fc1a08c .7s;position:relative}.rotate-leave-active[data-v-7fc1a08c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7fc1a08c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}a[data-v-7fc1a08c]{margin-left:4px;width:20px;vertical-align:middle}a svg[data-v-7fc1a08c]{width:22px;height:22px}a:hover svg path[data-v-7fc1a08c]{fill:#3688ff}@keyframes bganimation-e8f7c118{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-e8f7c118{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-e8f7c118{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-e8f7c118]{animation:rotateEnter-e8f7c118 .7s;position:relative}.rotate-leave-active[data-v-e8f7c118]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-e8f7c118]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.flow[data-v-e8f7c118]{position:relative;height:460px}.flow .echart[data-v-e8f7c118]{width:100%;height:100%}.flow .flow-data[data-v-e8f7c118]{position:absolute;right:10px;top:10px}.flow .flow-data span[data-v-e8f7c118]{display:block;color:#0009;font-size:12px;margin-bottom:5px;font-weight:600;font-family:PingFangSC-Semibold,PingFang SC}@media screen and (max-width: 600px){.flow[data-v-e8f7c118]{height:76.6vw}}@keyframes bganimation-6935a479{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6935a479{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6935a479{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6935a479]{animation:rotateEnter-6935a479 .7s;position:relative}.rotate-leave-active[data-v-6935a479]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6935a479]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-6935a479{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}.toast[data-v-6935a479]{position:fixed;top:50%;left:50%;display:flex;flex-direction:column;align-items:center;justify-content:space-around;box-sizing:content-box;width:100px;max-width:70%;padding:16px;color:#fff;font-size:14px;text-align:center;background-color:#000000b3;border-radius:8px;transform:translate3d(-50%,-50%,0);z-index:9999;transition:.3s;cursor:pointer}.toast div.icon[data-v-6935a479]{width:50px;height:50px;margin:15px 0;background:none!important}.toast div.icon svg[data-v-6935a479]{width:100%;height:100%}.toast div.icon svg path[data-v-6935a479]{fill:#fff}.toast .loading[data-v-6935a479]{animation:turn-6935a479 1s steps(12,end) infinite}.toast .message[data-v-6935a479]{display:block;width:100%;flex:0 0 100%;word-wrap:break-word}[lock-scroll=true]{overflow:hidden!important;height:100vh}@keyframes bganimation-428d873e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-428d873e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-428d873e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-428d873e]{animation:rotateEnter-428d873e .7s;position:relative}.rotate-leave-active[data-v-428d873e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-428d873e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.bg[data-v-428d873e]{position:fixed;inset:0;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:999}#actioner[data-v-428d873e]{position:fixed;z-index:1000;width:100%;height:100%;inset:0;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;overflow:auto}#actioner[data-v-428d873e],#actioner[data-v-428d873e] *{-webkit-box-sizing:border-box;-webkit-tap-highlight-color:transparent;box-sizing:border-box;word-wrap:break-word;outline:none}.action-container[data-v-428d873e]{width:100%;height:100%;background-color:#fff;position:fixed;z-index:9999;inset:0;margin:auto;overflow:auto}.action-container .action-container_header[data-v-428d873e]{width:100%;height:36px;line-height:36px;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:0 .625rem;position:absolute;top:0;left:0;right:0;border-bottom:1px solid #1e1e1e;background-color:#252526}.action-container .action-container_header .title[data-v-428d873e]{color:#eee;font-size:16px}.action-container .action-container_header button.close[data-v-428d873e]{width:36px;height:36px;margin:0;padding:10px;background:none;border:none;cursor:pointer;opacity:1}.action-container .action-container_header button.close[data-v-428d873e] svg.icon{width:100%;height:100%}.action-container .action-container_header button.close[data-v-428d873e] svg.icon path{fill:#eee}.action-container .action-container_header button.close[data-v-428d873e]:hover{opacity:.9}.action-container .action-container_body[data-v-428d873e]{width:100%;height:100%;padding-top:36px}@keyframes bganimation{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active{animation:rotateEnter .7s;position:relative}.rotate-leave-active{opacity:0;display:none;position:relative;z-index:-999}.app-container{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes dialogEnter{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes dialogLeave{0%{transform:scale(1)}to{transform:scale(0)}}.dialog-enter-active{animation:dialogEnter .3s linear forwards}.dialog-leave-active{animation:dialogLeave .3s linear forwards}.actioner-dns[data-v-2a4078c6]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2a4078c6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2a4078c6]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2a4078c6]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2a4078c6]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2a4078c6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2a4078c6]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2a4078c6]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2a4078c6],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2a4078c6]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2a4078c6]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2a4078c6]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2a4078c6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2a4078c6]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-2a4078c6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2a4078c6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2a4078c6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2a4078c6]{animation:rotateEnter-2a4078c6 .7s;position:relative}.rotate-leave-active[data-v-2a4078c6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2a4078c6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2a4078c6]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-2a4078c6]{width:100%}}.action[data-v-0ae97e7e]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-0ae97e7e]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-0ae97e7e]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-0ae97e7e]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-0ae97e7e]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-0ae97e7e]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-0ae97e7e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0ae97e7e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0ae97e7e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0ae97e7e]{animation:rotateEnter-0ae97e7e .7s;position:relative}.rotate-leave-active[data-v-0ae97e7e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0ae97e7e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-0ae97e7e]{font-size:20px}}@keyframes bganimation-39248365{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-39248365{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-39248365{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-39248365]{animation:rotateEnter-39248365 .7s;position:relative}.rotate-leave-active[data-v-39248365]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-39248365]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container_status-label_bg[data-v-39248365]{flex:0 0 230px;width:230px;height:80px;display:flex;background:#f3f3f3;align-items:center;padding:10px;margin-right:10px;transition:.3s}.app-container_status-label_bg .app-container_status-label_text[data-v-39248365]{margin-left:6px;font-size:14px;line-height:22px;text-align:left}.app-container_status-label_bg .app-container_status-label_text .text_status[data-v-39248365]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_style[data-v-39248365]{margin:6px 0}.app-container_status-label_bg .app-container_status-label_text .text_style.close[data-v-39248365]{color:#999}.app-container_status-label_bg .app-container_status-label_text .text_info[data-v-39248365]{font-weight:700;font-size:14px}@keyframes bganimation-3470ca08{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3470ca08{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3470ca08{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3470ca08]{animation:rotateEnter-3470ca08 .7s;position:relative}.rotate-leave-active[data-v-3470ca08]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3470ca08]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-interfaces[data-v-3470ca08]{width:100%;height:80px;display:flex;flex-wrap:nowrap;overflow:hidden}.app-interfaces a[data-v-3470ca08]{list-style:none;text-decoration:none}.app-interfaces a.btn-f[data-v-3470ca08]{position:absolute;width:50px;height:80px;left:0;line-height:80px;text-align:center;color:#fff;font-size:26px;cursor:pointer;background-color:#00000059;opacity:0;transition:.3s;z-index:1}.app-interfaces a.btn-f[data-v-3470ca08]:hover{opacity:1;transition:.3s}.app-interfaces a.btn-r[data-v-3470ca08]{position:absolute;right:0;width:50px;line-height:80px;text-align:center;color:#fff;font-size:26px;cursor:pointer;background-color:#00000059;opacity:0;transition:.3s;z-index:1}.app-interfaces a.btn-r[data-v-3470ca08]:hover{opacity:1;transition:.3s}.actioner-dns[data-v-1e29113c]{width:800px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-1e29113c]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-1e29113c]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-1e29113c]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-1e29113c]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29113c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29113c]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-1e29113c]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-1e29113c],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-1e29113c]{height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-1e29113c]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-1e29113c]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-1e29113c]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-1e29113c]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-dns .select-editable[data-v-1e29113c]{position:relative;border:solid grey 1px;width:100%}.actioner-dns .select-editable select[data-v-1e29113c]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.actioner-dns .select-editable input[data-v-1e29113c]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.actioner-dns .select-editable select[data-v-1e29113c]:focus,.actioner-dns .select-editable input[data-v-1e29113c]:focus{outline:none}.actioner-dns[data-v-1e29113c] ::placeholder{color:#999}.successed[data-v-1e29113c]{text-align:center;font-size:14px;margin-bottom:104px}.finished[data-v-1e29113c]{display:flex;justify-content:center;margin:80px 80px 28px}.docker_moves[data-v-1e29113c]{text-align:center}.docker_moves .moves[data-v-1e29113c]{margin-top:10px}.docker_moves .moves input[data-v-1e29113c]{cursor:pointer}.docker_moves .moves label[data-v-1e29113c]{margin-left:10px;cursor:pointer}.btns[data-v-1e29113c]{text-align:center}.item_info[data-v-1e29113c]{margin-left:10px}.softsource_tit[data-v-1e29113c]{margin:0 auto}.softsource_successed[data-v-1e29113c]{width:20%!important}@keyframes bganimation-1e29113c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e29113c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e29113c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e29113c]{animation:rotateEnter-1e29113c .7s;position:relative}.rotate-leave-active[data-v-1e29113c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e29113c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-1e29113c]{min-height:34vh}}@media screen and (max-width: 860px){.actioner-dns[data-v-1e29113c]{width:100%}}@keyframes bganimation-fd7a24a6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-fd7a24a6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-fd7a24a6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-fd7a24a6]{animation:rotateEnter-fd7a24a6 .7s;position:relative}.rotate-leave-active[data-v-fd7a24a6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-fd7a24a6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}em[data-v-fd7a24a6]{display:block;margin:.5rem 0;width:100%}.app-container_status-container[data-v-fd7a24a6]{width:100%;background-color:#fff;padding:10px 30px;border-radius:6px;position:relative}.app-container_status-container .more_icon[data-v-fd7a24a6]{position:absolute;right:22px;cursor:pointer}.app-container_status-container .more_icon svg[data-v-fd7a24a6]{position:relative;z-index:9999}.app-container_status-container .DeviceBlock[data-v-fd7a24a6]{position:absolute;z-index:999;width:60%;right:22px}.app-container_status-container .DeviceBlock ul[data-v-fd7a24a6]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:0;right:0;text-align:center;position:absolute;word-break:keep-all;margin-top:24px}.app-container_status-container .DeviceBlock ul li[data-v-fd7a24a6]{line-height:28px}.app-container_status-container .DeviceBlock ul li a[data-v-fd7a24a6]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;margin:0 20px;display:block}.app-container_status-container .DeviceBlock ul li .domain[data-v-fd7a24a6]{cursor:pointer}.app-container_status-container .DeviceBlock ul li[data-v-fd7a24a6]:hover{background-color:#eee}.app-container_status-container .DeviceBlock li[data-v-fd7a24a6]:last-child{margin-top:5px}.app-container_status-container span.container_success[data-v-fd7a24a6]{display:block;font-size:15px;font-family:PingFangSC-Medium,PingFang SC}.app-container_status-container span.container_failure[data-v-fd7a24a6]{display:block;font-size:1.2em}.app-container_status-container .container_configure[data-v-fd7a24a6]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;line-height:20px;cursor:pointer}.app-container_status-container span.container_title[data-v-fd7a24a6]{font-size:1.25rem;color:#333;display:block}.app-container_status-container span.container_content[data-v-fd7a24a6]{font-size:1.25rem;color:#666}.app-container_status-container .devise[data-v-fd7a24a6]{display:block;font-size:12px;color:#727272}.app-container_status-container span.container_time[data-v-fd7a24a6]{font-size:12px;color:#727272;margin-top:3px;display:block}.app-container_status-label[data-v-fd7a24a6]{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.app-container_status-label .app-container_status-label_item[data-v-fd7a24a6]{flex:0 0 50%;max-width:50%}.app-container_status-label_block[data-v-fd7a24a6]{display:block;color:#000;margin:10px 0 8px}.app-container_status-container_body[data-v-fd7a24a6]{width:100%;height:100%;text-align:center;display:flex;align-items:center;align-content:center}.app-container_status-container_body svg[data-v-fd7a24a6]{min-width:32px}.app-container_status-container_body .app-container_status-info[data-v-fd7a24a6]{margin-left:10px;text-align:left;margin-right:10px;min-width:57px}.app-container_status-container_body svg[data-v-fd7a24a6]{width:50px;height:50px}.app-container_status-container_body span[data-v-fd7a24a6]{width:100%;margin:5px 0}.menu_background[data-v-fd7a24a6]{position:fixed;inset:0}.app-container_body[data-v-fd7a24a6]{width:100%}.network-container[data-v-6cd42792]{width:100%;display:flex;flex-wrap:wrap}.network-container .network-container_flow[data-v-6cd42792]{flex:0 0 100%;max-width:60%;padding-right:10px}.network-container .network-container_flow .network-container_flow-container[data-v-6cd42792]{border-radius:6px;overflow:hidden;position:relative;background-color:#fff;box-shadow:0 0 10px 1px #373f6924}.network-container .network-container_status[data-v-6cd42792]{flex:0 0 100%;max-width:40%;padding-left:10px;display:flex;flex-wrap:wrap}@keyframes bganimation-6cd42792{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6cd42792{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6cd42792{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6cd42792]{animation:rotateEnter-6cd42792 .7s;position:relative}.rotate-leave-active[data-v-6cd42792]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6cd42792]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 992px){.network-container[data-v-6cd42792]{width:100%}.network-container .network-container_flow[data-v-6cd42792]{flex:0 0 100%;max-width:100%;padding-right:0}.network-container .network-container_status[data-v-6cd42792]{flex:0 0 100%;max-width:100%;padding-left:0;margin-top:1rem}}.action .action-footer button[data-v-3a0bca4c]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3a0bca4c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3a0bca4c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3a0bca4c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3a0bca4c]{animation:rotateEnter-3a0bca4c .7s;position:relative}.rotate-leave-active[data-v-3a0bca4c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3a0bca4c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-3a0bca4c]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-3a0bca4c]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-3a0bca4c]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-3a0bca4c]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-3a0bca4c]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-3a0bca4c]{flex:auto}.action.format .disk-list[data-v-3a0bca4c]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-3a0bca4c]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-3a0bca4c]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-3a0bca4c]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-3a0bca4c]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-3a0bca4c]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-3a0bca4c],.action.format .label-item .label-item_value input[data-v-3a0bca4c]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-3a0bca4c]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-3a0bca4c]{flex:auto}.action.format p.msg[data-v-3a0bca4c]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-3a0bca4c]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-3a0bca4c]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-3a0bca4c]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-3a0bca4c]{margin:1rem 0;font-size:1.5em;color:#333}.action.result[data-v-3a0bca4c]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-3a0bca4c]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-3a0bca4c]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-3a0bca4c]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-3a0bca4c]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-3a0bca4c]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-3a0bca4c]{color:#0000fb}.action.result .btns[data-v-3a0bca4c]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-3a0bca4c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3a0bca4c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3a0bca4c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3a0bca4c]{animation:rotateEnter-3a0bca4c .7s;position:relative}.rotate-leave-active[data-v-3a0bca4c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3a0bca4c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format[data-v-3a0bca4c]{width:168%}}@media screen and (max-width: 900px){.action.format[data-v-3a0bca4c]{width:146%}}@media screen and (max-width: 800px){.action.format[data-v-3a0bca4c]{width:136%}}@media screen and (max-width: 700px){.action.format[data-v-3a0bca4c]{width:116%}}@media screen and (max-width: 500px){.action.format[data-v-3a0bca4c]{width:100%}}.action .action-footer button[data-v-57d4812a]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-57d4812a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-57d4812a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-57d4812a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-57d4812a]{animation:rotateEnter-57d4812a .7s;position:relative}.rotate-leave-active[data-v-57d4812a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-57d4812a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-57d4812a]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-57d4812a]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-57d4812a]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-57d4812a]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-57d4812a]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-57d4812a]{flex:auto}.action.format .disk-list[data-v-57d4812a]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-57d4812a]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-57d4812a]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-57d4812a]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-57d4812a]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-57d4812a]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-57d4812a],.action.format .label-item .label-item_value input[data-v-57d4812a]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-57d4812a]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-57d4812a]{flex:auto}.action.format p.msg[data-v-57d4812a]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-57d4812a]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-57d4812a]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-57d4812a]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-57d4812a]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-57d4812a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-57d4812a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-57d4812a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-57d4812a]{animation:rotateEnter-57d4812a .7s;position:relative}.rotate-leave-active[data-v-57d4812a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-57d4812a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-57d4812a]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-body[data-v-57d4812a]{width:100%;height:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.action.result .action-body .action-body_icon[data-v-57d4812a]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-57d4812a]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-57d4812a]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-57d4812a]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-57d4812a]{color:#0000fb}.action.result .btns[data-v-57d4812a]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-31be4af0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31be4af0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-31be4af0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-31be4af0]{animation:rotateEnter-31be4af0 .7s;position:relative}.rotate-leave-active[data-v-31be4af0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31be4af0]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-31be4af0]{color:red}.disk-content[data-v-31be4af0]{padding:1rem;border:1px solid #cfcfcf;margin:16px 0}.disk-content li.disk-item[data-v-31be4af0]{width:100%;display:flex;align-items:center}.disk-content li.disk-item .disk-item_name[data-v-31be4af0]{flex:0 0 50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.disk-content li.disk-item .disk_value[data-v-31be4af0]{flex:0 0 50%;display:flex;justify-content:space-between;align-items:center}.disk-content li.disk-item .disk_value .cbi-button[data-v-31be4af0]{margin-left:10px}.disk-content li.disk-item .disk_value .disk-item_value[data-v-31be4af0]{flex:auto;padding-left:10px;position:relative}.disk-content li.disk-item .disk_value .disk-item_value .value-data[data-v-31be4af0]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%;color:#297ff3;cursor:default}.disk-content li.disk-item .disk_value .disk-item_value .value-data button[data-v-31be4af0]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.disk-content li.disk-item .disk_value .disk-item_value .value-data button[data-v-31be4af0]:hover{opacity:.7}.disk-content li.disk-item .disk_value .disk-item_value .value-data.buttondiv[data-v-31be4af0]{cursor:pointer}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-31be4af0]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:10px;right:0;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-31be4af0]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}.disk-content li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-31be4af0]{visibility:visible;transition:.7s;opacity:1}.disk-content .disk_status[data-v-31be4af0]{display:flex;text-align:left;padding-left:10px;font-size:12px;padding-top:6px}.disk-content .disk_status .disk_status_item[data-v-31be4af0]{display:flex;margin-right:20px}.disk-content .disk_status .disk_status_item .disk_tip[data-v-31be4af0]{display:flex;align-items:center}.disk_infoicon[data-v-31be4af0]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-31be4af0]{flex:none}.tooltip-trigger[data-v-31be4af0]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-31be4af0]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-31be4af0]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-31be4af0]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-31be4af0]{visibility:visible;opacity:1}.tooltip-top[data-v-31be4af0]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-31be4af0]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-31be4af0]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-31be4af0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31be4af0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-31be4af0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-31be4af0]{animation:rotateEnter-31be4af0 .7s;position:relative}.rotate-leave-active[data-v-31be4af0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31be4af0]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.disk-content li.disk-item .disk_value[data-v-31be4af0]{display:block}.disk-content .disk_status[data-v-31be4af0]{flex-wrap:wrap}}.action[data-v-5fa713aa]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:3rem;border-radius:6px;display:flex;flex-direction:column;flex-wrap:nowrap}.action ul[data-v-5fa713aa]{overflow:auto}.action ul .app-container_info[data-v-5fa713aa]{display:flex;justify-content:space-between;max-width:56%;margin-top:18px;font-weight:600}.action ul .app-container_body[data-v-5fa713aa]{width:100%;height:100%}.action .action-footer[data-v-5fa713aa]{text-align:center;margin-top:46px}.action .action-footer button[data-v-5fa713aa]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-5fa713aa{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5fa713aa{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5fa713aa{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5fa713aa]{animation:rotateEnter-5fa713aa .7s;position:relative}.rotate-leave-active[data-v-5fa713aa]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5fa713aa]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action[data-v-5fa713aa]{width:160%}}@media screen and (max-width: 800px){.action[data-v-5fa713aa]{width:138%}}@media screen and (max-width: 700px){.action[data-v-5fa713aa]{width:132%}}@media screen and (max-width: 600px){.action[data-v-5fa713aa]{width:116%}}@media screen and (max-width: 500px){.action[data-v-5fa713aa]{width:100%}}@media screen and (max-width: 400px){.action[data-v-5fa713aa]{width:90%}}@media screen and (max-width: 300px){.action[data-v-5fa713aa]{width:100%}}@keyframes bganimation-eb0dbbd8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-eb0dbbd8{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-eb0dbbd8{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-eb0dbbd8]{animation:rotateEnter-eb0dbbd8 .7s;position:relative}.rotate-leave-active[data-v-eb0dbbd8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-eb0dbbd8]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.disk-item.error[data-v-eb0dbbd8]{color:red}li.disk-item[data-v-eb0dbbd8]{width:100%;display:flex;margin:1rem 0;align-items:center}li.disk-item .disk-item_name[data-v-eb0dbbd8]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.disk-item .disk_icon[data-v-eb0dbbd8]{padding-left:1rem;align-self:center;align-items:center;flex:none;display:flex}li.disk-item .disk_value[data-v-eb0dbbd8]{display:flex;justify-content:flex-end;width:50%}li.disk-item .disk_value .disk-item_value[data-v-eb0dbbd8]{flex:auto;padding-left:10px;position:relative;cursor:help}li.disk-item .disk_value .disk-item_value .value-data[data-v-eb0dbbd8]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%}li.disk-item .disk_value .disk-item_value .value-data button[data-v-eb0dbbd8]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer;padding:0;margin:0;line-height:normal}li.disk-item .disk_value .disk-item_value .value-data button[data-v-eb0dbbd8]:hover{opacity:.7}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-eb0dbbd8]{position:absolute;background:rgba(0,0,0,.7);z-index:10111;color:#fff;padding:.5rem 1rem;left:10px;right:0;bottom:100%;margin-bottom:6px;text-align:center;font-size:1em;visibility:hidden;opacity:0}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-eb0dbbd8]:after{content:"";position:absolute;bottom:-6px;border-color:#4c4c4c rgba(0,0,0,0) rgba(0,0,0,0);left:0;right:0;text-align:center;width:0;margin:0 auto;border-width:6px 8px 0;border-style:solid}li.disk-item .disk_value .disk-item_value:hover .disk-item-tooltip[data-v-eb0dbbd8]{visibility:visible;transition:.7s;opacity:1}.disk_infoicon[data-v-eb0dbbd8]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-eb0dbbd8]{flex:none;cursor:help}.tooltip-trigger[data-v-eb0dbbd8]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-eb0dbbd8]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-eb0dbbd8]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-eb0dbbd8]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-eb0dbbd8]{visibility:visible;opacity:1}.tooltip-top[data-v-eb0dbbd8]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-eb0dbbd8]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-eb0dbbd8]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-40555016{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-40555016{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-40555016{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-40555016]{animation:rotateEnter-40555016 .7s;position:relative}.rotate-leave-active[data-v-40555016]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-40555016]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-40555016]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%}.app-container ul[data-v-40555016]{flex:0 0 100%;width:100%}.app-container ul .app-container_title[data-v-40555016]{display:flex;justify-content:space-between;align-items:center}.app-container ul .app-container_title .more_icon[data-v-40555016]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container ul .app-container_title .more_icon[data-v-40555016] svg path{fill:#553afe}.app-container ul .app-container_title .DeviceBlock[data-v-40555016]{position:absolute;z-index:999;width:30%;right:22px}.app-container ul .app-container_title .DeviceBlock ul[data-v-40555016]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:8px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container ul .app-container_title .DeviceBlock ul li[data-v-40555016]{margin:6px 0;cursor:pointer;line-height:28px}.app-container ul .app-container_title .DeviceBlock ul li a[data-v-40555016]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.app-container ul .app-container_title .DeviceBlock ul li[data-v-40555016]:hover{background-color:#eee}.app-container ul .app-container_title .app-container_tool[data-v-40555016]{display:flex;flex-wrap:wrap;align-items:center}.app-container ul .app-container_title .app-container_tool .app-container_configure[data-v-40555016]{height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;justify-content:center;align-items:center}.app-container ul .app-container_title .app-container_tool .more_icon[data-v-40555016]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container ul .app-container_title .app-container_tool .more_icon[data-v-40555016] svg path{fill:#553afe}.app-container ul .disk_loading_icon[data-v-40555016]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.app-container ul .disk_loading_icon .disk_loading_info[data-v-40555016]{margin-top:5px}.refresh[data-v-40555016]{margin-left:20px}.app-container_info[data-v-40555016]{font-size:14px;font-weight:700;height:31px;line-height:52px}.app-container_body[data-v-40555016]{width:100%;height:100%}.menu_background[data-v-40555016]{position:fixed;inset:0}@keyframes bganimation-13ca629c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-13ca629c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-13ca629c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-13ca629c]{animation:rotateEnter-13ca629c .7s;position:relative}.rotate-leave-active[data-v-13ca629c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-13ca629c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.sambas-item[data-v-13ca629c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.sambas-item .sambas-item_name[data-v-13ca629c]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.sambas-item .sambas-item_value[data-v-13ca629c]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-container_samba li.samba-item[data-v-13ca629c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}.app-container_samba li.samba-item .samba-item_name[data-v-13ca629c]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.app-container_samba li.samba-item .samba-item_value[data-v-13ca629c]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.app-container_samba li.samba-item .samba-item_value button[data-v-13ca629c]{background:none;border:none;width:100%;text-align:right;color:#297ff3;cursor:pointer}.app-container_samba li.samba-item .samba-item_value button[data-v-13ca629c]:hover{opacity:.7}.tit[data-v-13ca629c]{color:#1e1e1e;font-weight:700;font-size:16px}@keyframes bganimation-b4608492{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b4608492{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-b4608492{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-b4608492]{animation:rotateEnter-b4608492 .7s;position:relative}.rotate-leave-active[data-v-b4608492]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b4608492]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.webdav-item[data-v-b4608492]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.webdav-item .webdav-item_name[data-v-b4608492]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.webdav-item .webdav-item_value[data-v-b4608492]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@keyframes bganimation-4a3b6e0a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4a3b6e0a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4a3b6e0a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4a3b6e0a]{animation:rotateEnter-4a3b6e0a .7s;position:relative}.rotate-leave-active[data-v-4a3b6e0a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4a3b6e0a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}ul.disk-item[data-v-4a3b6e0a]{width:100%;margin-bottom:10px}ul.disk-item .auto[data-v-4a3b6e0a]{flex:auto}ul.disk-item .disk-item_icon[data-v-4a3b6e0a]{width:24px;height:24px;margin-right:.5rem}ul.disk-item .disk-item_icon svg[data-v-4a3b6e0a]{width:100%;height:100%}ul.disk-item li.disk-info[data-v-4a3b6e0a]{display:flex;flex-wrap:nowrap;align-items:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;padding:5px 1rem;height:50px;cursor:pointer;color:#666;font-size:12px;border-left:3px solid #89897f}ul.disk-item li.disk-info[data-v-4a3b6e0a]:hover{background-color:#ecf5ff}ul.disk-item li.disk-info .disk-item_icon svg path[data-v-4a3b6e0a]{fill:#09aaff}ul.disk-item li.disk-info .disk-item_f[data-v-4a3b6e0a]{display:flex;flex-wrap:wrap}ul.disk-item li.disk-info .disk-item_f .disk-item_venderModel[data-v-4a3b6e0a],ul.disk-item li.disk-info .disk-item_f .disk-item_used[data-v-4a3b6e0a]{width:100%}ul.disk-item li.disk-info.on[data-v-4a3b6e0a]{border-left:3px solid #ff9c08}ul.disk-item li.disk-info.on.nopoint[data-v-4a3b6e0a]{background-color:#ecf5ff}ul.disk-item .disk-children[data-v-4a3b6e0a]{width:100%;color:#666}ul.disk-item .disk-children li.disk-children_item[data-v-4a3b6e0a]{width:100%;height:40px;line-height:40px;padding-left:2rem;font-size:12px;cursor:pointer;display:flex;flex-wrap:nowrap;align-items:center;border-left:3px solid #89897f;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}ul.disk-item .disk-children li.disk-children_item[data-v-4a3b6e0a]:hover{background-color:#ecf5ff}ul.disk-item .disk-children li.disk-children_item span[data-v-4a3b6e0a]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:inline-block}ul.disk-item .disk-children li.disk-children_item.on.on[data-v-4a3b6e0a]{border-left:3px solid #ff9c08;background-color:#ecf5ff}.action .action-footer button[data-v-12d0f96b]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.list[data-v-12d0f96b]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.list .action-header[data-v-12d0f96b]{width:100%;height:70px;line-height:70px}.action.list .action-header .action-header_title[data-v-12d0f96b]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.list .action-body[data-v-12d0f96b]{width:100%;height:calc(100% - 176px)}.action.list .action-msg[data-v-12d0f96b]{width:100%;height:36px;line-height:36px;text-align:center}.action.list .action-footer[data-v-12d0f96b]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.list .action-footer .auto[data-v-12d0f96b]{flex:auto}.action.list .disk-list[data-v-12d0f96b]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-12d0f96b]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.format .action-header[data-v-12d0f96b]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-12d0f96b]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.format .action-body[data-v-12d0f96b]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-12d0f96b]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-12d0f96b]{flex:auto}.action.format .disk-list[data-v-12d0f96b]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-12d0f96b]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-12d0f96b]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-12d0f96b]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-12d0f96b]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-12d0f96b]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-12d0f96b],.action.format .label-item .label-item_value input[data-v-12d0f96b]{width:100%;height:36px}.action.format .auto[data-v-12d0f96b]{flex:auto}.action.format p.msg[data-v-12d0f96b]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-12d0f96b]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-12d0f96b]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-12d0f96b]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-12d0f96b]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-12d0f96b]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action.result .action-header[data-v-12d0f96b]{width:100%;height:70px;line-height:70px}.action.result .action-header .action-header_title[data-v-12d0f96b]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action.result .action-body[data-v-12d0f96b]{width:100%;height:calc(100% - 140px);overflow:auto}.action.result .action-body .format-result[data-v-12d0f96b]{width:100%;text-align:center;font-size:2em;color:#333;margin:1rem 0}.action.result .action-body .format-info[data-v-12d0f96b]{width:100%;text-align:center;font-size:1.3em}.action.result .action-body .format-info a[data-v-12d0f96b]{color:#f70324}.action.result .action-footer[data-v-12d0f96b]{width:100%;height:70px;line-height:70px;color:#333}.action.result .auto[data-v-12d0f96b]{flex:auto}@keyframes bganimation-12d0f96b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-12d0f96b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-12d0f96b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-12d0f96b]{animation:rotateEnter-12d0f96b .7s;position:relative}.rotate-leave-active[data-v-12d0f96b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-12d0f96b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.list[data-v-12d0f96b]{width:136%}}@media screen and (max-width: 900px){.action.list[data-v-12d0f96b]{width:126%}}@media screen and (max-width: 800px){.action.list[data-v-12d0f96b]{width:112%}}@media screen and (max-width: 700px){.action.list[data-v-12d0f96b]{width:100%}}@media screen and (max-width: 500px){.action.list[data-v-12d0f96b]{width:80%}}@keyframes bganimation-67a63e8f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-67a63e8f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-67a63e8f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-67a63e8f]{animation:rotateEnter-67a63e8f .7s;position:relative}.rotate-leave-active[data-v-67a63e8f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-67a63e8f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-67a63e8f]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action .action-body[data-v-67a63e8f]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-67a63e8f]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-67a63e8f]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-67a63e8f]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-67a63e8f]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-67a63e8f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-67a63e8f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-67a63e8f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-67a63e8f]{animation:rotateEnter-67a63e8f .7s;position:relative}.rotate-leave-active[data-v-67a63e8f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-67a63e8f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1000px){.action.format .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-67a63e8f]{font-size:20px}}@keyframes bganimation-30ef6ccb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-30ef6ccb{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-30ef6ccb{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-30ef6ccb]{animation:rotateEnter-30ef6ccb .7s;position:relative}.rotate-leave-active[data-v-30ef6ccb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-30ef6ccb]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-30ef6ccb]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-30ef6ccb]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-30ef6ccb]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-30ef6ccb]{width:100%;height:calc(100% - 140px);overflow:auto}.action .action-body .label-item[data-v-30ef6ccb]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-30ef6ccb]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-30ef6ccb]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-30ef6ccb]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-30ef6ccb]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-30ef6ccb],.action .action-body .label-item .label-item_value input[data-v-30ef6ccb]{width:100%;height:36px}.action .action-footer[data-v-30ef6ccb]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action .action-footer .auto[data-v-30ef6ccb]{flex:auto}.action .action-footer button[data-v-30ef6ccb]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3ef9e48f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3ef9e48f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3ef9e48f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3ef9e48f]{animation:rotateEnter-3ef9e48f .7s;position:relative}.rotate-leave-active[data-v-3ef9e48f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3ef9e48f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-3ef9e48f]{width:700px;height:560px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:0 25px;border:1px solid #dfdfdf;border-radius:4px;background:#fff;box-shadow:0 1px 4px #0000004d}.action .action-header[data-v-3ef9e48f]{width:100%;height:70px;line-height:70px}.action .action-header .action-header_title[data-v-3ef9e48f]{margin:0;color:#333;font:inherit;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-moz-user-select:none;-webkit-user-select:none;user-select:none;font-size:20px}.action .action-body[data-v-3ef9e48f]{width:100%;height:calc(100% - 140px)}.action .action-body .label-item[data-v-3ef9e48f]{width:100%;margin:1rem 0}.action .action-body .label-item .label-item_key[data-v-3ef9e48f]{width:100%;font-size:12px;color:#666}.action .action-body .label-item .label-item_key span[data-v-3ef9e48f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action .action-body .label-item .label-item_key span[data-v-3ef9e48f]:before{content:"*";color:#f56c6c;margin-right:4px}.action .action-body .label-item .label-item_value[data-v-3ef9e48f]{width:100%;margin-top:5px}.action .action-body .label-item .label-item_value select[data-v-3ef9e48f],.action .action-body .label-item .label-item_value input[data-v-3ef9e48f]{width:100%;height:36px}.action .action-body .samba-item[data-v-3ef9e48f]{margin-top:-18px;font-size:12px}.action .action-body .samba-item .samba-item_allow[data-v-3ef9e48f]{display:flex;align-items:flex-end}.action .action-body .samba-item .samba-item_allow .samba-allow[data-v-3ef9e48f]{padding-left:10px;cursor:pointer}.action .action-body .samba-item .samba-item_tips[data-v-3ef9e48f]{margin-top:10px}.action .action-body .samba-item .samba-item_tips .tooltip-trigger[data-v-3ef9e48f]{display:flex}.action .action-body .samba-item .samba-item_tips .samba_dir_tip[data-v-3ef9e48f]{margin-left:10px}.action .action-footer[data-v-3ef9e48f]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center;padding-bottom:30px}.action .action-footer .auto[data-v-3ef9e48f]{flex:auto}.action .action-footer button[data-v-3ef9e48f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-650e3bd4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-650e3bd4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-650e3bd4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-650e3bd4]{animation:rotateEnter-650e3bd4 .7s;position:relative}.rotate-leave-active[data-v-650e3bd4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-650e3bd4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-650e3bd4]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-650e3bd4]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action h3.desc[data-v-650e3bd4]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:1rem 0;text-align:center}.action form[data-v-650e3bd4]{width:100%;display:block;padding:2rem 0}.action form label[data-v-650e3bd4]{width:100%;display:block;margin:1rem 0}.action form label input[data-v-650e3bd4],.action form label select[data-v-650e3bd4]{width:100%;display:block;height:42px}.action .btns[data-v-650e3bd4]{width:100%;margin-top:3rem}.action .btns button[data-v-650e3bd4]{display:block;width:100%!important;margin:.5rem 0}.action li.disk-item[data-v-650e3bd4]{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;width:100%;padding:5px 1rem;border-bottom:1px solid #eee;cursor:pointer}.action li.disk-item[data-v-650e3bd4]:hover{background-color:#eee}.action li.disk-item .disk-item_f[data-v-650e3bd4]{display:flex;flex-wrap:wrap}.action li.disk-item .disk-item_f .disk-item_venderModel[data-v-650e3bd4],.action li.disk-item .disk-item_f .disk-item_used[data-v-650e3bd4]{width:100%}.action .tips[data-v-650e3bd4]{float:right;font-size:.8em}@keyframes bganimation-650e3bd4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-650e3bd4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-650e3bd4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-650e3bd4]{animation:rotateEnter-650e3bd4 .7s;position:relative}.rotate-leave-active[data-v-650e3bd4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-650e3bd4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action h2.title[data-v-650e3bd4]{font-size:2em}}@keyframes bganimation-edf68726{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-edf68726{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-edf68726{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-edf68726]{animation:rotateEnter-edf68726 .7s;position:relative}.rotate-leave-active[data-v-edf68726]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-edf68726]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.linkease-item[data-v-edf68726]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.linkease-item .linkease-item_name[data-v-edf68726]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.linkease-item .linkease-item_value[data-v-edf68726]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.linkease-item .linkease-item_value .configure[data-v-edf68726]{color:#297ff3;padding:3px}li.linkease-item .linkease-item_value .configure.enabel[data-v-edf68726]{cursor:pointer}a[data-v-edf68726]{text-decoration:none;color:#297ff3}@keyframes bganimation-8376a10e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8376a10e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-8376a10e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-8376a10e]{animation:rotateEnter-8376a10e .7s;position:relative}.rotate-leave-active[data-v-8376a10e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8376a10e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-8376a10e]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-8376a10e]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-8376a10e]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-8376a10e]{height:30px;line-height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;align-items:center;justify-content:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-8376a10e]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-8376a10e] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-8376a10e]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-8376a10e]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:15px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-8376a10e]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-8376a10e]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-8376a10e]:hover{background-color:#eee}.app-container .app-container_title button[data-v-8376a10e]{margin-left:10px}.app-container .app-container_body[data-v-8376a10e]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-8376a10e]{width:100%;display:flex!important;flex-wrap:wrap!important;align-items:center!important;justify-content:space-between!important;margin-top:20px}.app-container ul.app-container_nas-menu button[data-v-8376a10e]{flex:0 0 100%!important;max-width:33.333%!important;height:30px;background:none;border:none!important;background-color:#eee;color:#333;cursor:pointer;margin:0!important;padding:5px 0!important;border-radius:0!important;line-height:20px;font-size:16px}.app-container ul.app-container_nas-menu button.on[data-v-8376a10e],.app-container ul.app-container_nas-menu button[data-v-8376a10e]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-8376a10e]{position:fixed;inset:0}@keyframes bganimation-3fd3a42d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3fd3a42d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3fd3a42d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3fd3a42d]{animation:rotateEnter-3fd3a42d .7s;position:relative}.rotate-leave-active[data-v-3fd3a42d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3fd3a42d]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.docker-item[data-v-3fd3a42d]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0}li.docker-item .docker-item_name[data-v-3fd3a42d]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.docker-item .docker-item_value[data-v-3fd3a42d]{flex:0 0 100%;max-width:50%;padding-left:10px;float:left;display:flex}li.docker-item .docker-item_value .configure[data-v-3fd3a42d]{color:#297ff3;overflow:hidden;white-space:nowrap;padding:3px;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_value .configure.enabel[data-v-3fd3a42d]{color:#888;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_root[data-v-3fd3a42d]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.docker_tip svg[data-v-3fd3a42d]{vertical-align:bottom;margin-left:22px}.tooltip-trigger[data-v-3fd3a42d]{position:relative;display:inline-block;cursor:help;margin-right:6px}.tooltip-trigger .tooltip-text[data-v-3fd3a42d]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.tooltip-trigger .tooltip-text span[data-v-3fd3a42d]{color:#fff}.tooltip-trigger .tooltip-text .docker_dir_tip[data-v-3fd3a42d]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-3fd3a42d]{visibility:visible;opacity:1}.tooltip-top[data-v-3fd3a42d]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.tooltip-right[data-v-3fd3a42d]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.tooltip-left[data-v-3fd3a42d]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.tooltip-top[data-v-3fd3a42d]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.tooltip-bottom[data-v-3fd3a42d]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.input-switch[data-v-3fd3a42d]{display:inline-block;cursor:pointer;position:relative}.input-switch span[data-v-3fd3a42d]{display:block;position:relative;width:50px;height:20px;border-radius:10px;padding:2px}.input-switch span em[data-v-3fd3a42d]{display:block;width:16px;height:16px;background-color:#fff;border-radius:10px}.input-switch span.enable[data-v-3fd3a42d]{background-color:#297ff3;transition:.3s}.input-switch span.enable em[data-v-3fd3a42d]{transform:translate(30px);transition:.3s}.input-switch span.close[data-v-3fd3a42d]{background-color:#cecece;transition:.3s}.input-switch span.close em[data-v-3fd3a42d]{transform:translate(0);transition:.3s}@keyframes bganimation-308e4b48{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-308e4b48{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-308e4b48{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-308e4b48]{animation:rotateEnter-308e4b48 .7s;position:relative}.rotate-leave-active[data-v-308e4b48]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-308e4b48]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-308e4b48]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 87px;border-radius:6px}.action h2.title[data-v-308e4b48]{width:100%;display:block;color:#1e1e1e;font-size:22px;padding:0;margin:0;text-align:center}.action .roots[data-v-308e4b48]{display:flex;max-width:342px;align-items:center;margin-top:32px;margin-bottom:16px}.action .roots .root[data-v-308e4b48]{color:#000000d4;font-size:14px;text-align:center}.action .move[data-v-308e4b48]{display:flex;justify-content:left;align-items:center}.action .change[data-v-308e4b48]{width:678px}.action .desc[data-v-308e4b48]{width:100%;display:block;font-size:1.2em;padding:0;margin:1rem 0;margin-top:32px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4}.action form[data-v-308e4b48]{width:100%;display:block}.action .tips[data-v-308e4b48]{width:477px}.action .tips .tip[data-v-308e4b48]{color:#faad14;padding-left:6px}.action .btns[data-v-308e4b48]{width:100%;margin:104px auto 0}.action .btns button[data-v-308e4b48]{display:block;width:100%!important;margin-left:0;margin-right:0}.action .roots_tit[data-v-308e4b48]{color:#000000d4;font-size:14px;font-weight:700;width:118px;text-align:right;flex:none}.action .successed[data-v-308e4b48]{text-align:center;font-size:14px}.action .finished[data-v-308e4b48]{display:flex;justify-content:center;margin:80px 80px 28px}.action .docker_moves[data-v-308e4b48]{text-align:center}.action .docker_moves .moves[data-v-308e4b48]{margin-top:10px}.action .docker_moves .moves input[data-v-308e4b48]{cursor:pointer}.action .docker_moves .moves label[data-v-308e4b48]{margin-left:10px;cursor:pointer}.select-editable[data-v-308e4b48]{position:relative;border:solid grey 1px;width:438px;height:34px}.select-editable select[data-v-308e4b48]{position:absolute;top:0;left:0;font-size:14px;border:none;width:100%;height:100%;margin:0}.select-editable input[data-v-308e4b48]{position:absolute;top:0;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-308e4b48]:focus,.select-editable input[data-v-308e4b48]:focus{outline:none}[data-v-308e4b48]::placeholder{color:#999}@keyframes bganimation-308e4b48{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-308e4b48{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-308e4b48{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-308e4b48]{animation:rotateEnter-308e4b48 .7s;position:relative}.rotate-leave-active[data-v-308e4b48]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-308e4b48]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action[data-v-308e4b48]{width:100%}.docker_download[data-v-308e4b48]{width:80%}}@keyframes bganimation-223bcc06{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-223bcc06{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-223bcc06{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-223bcc06]{animation:rotateEnter-223bcc06 .7s;position:relative}.rotate-leave-active[data-v-223bcc06]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-223bcc06]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-223bcc06]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container .app-container_title[data-v-223bcc06]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-223bcc06]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-223bcc06]{height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;justify-content:center;align-items:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-223bcc06]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-223bcc06] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-223bcc06]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-223bcc06]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:15px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-223bcc06]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-223bcc06]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-223bcc06]:hover{background-color:#eee}.app-container button[data-v-223bcc06],.app-container .refresh[data-v-223bcc06]{margin-left:20px}.app-container .app-container_body[data-v-223bcc06]{width:100%;height:100%}.app-container .loading_placeholder[data-v-223bcc06]{display:flex;flex-direction:column;align-items:center}.menu_background[data-v-223bcc06]{position:fixed;inset:0}@keyframes bganimation-dbe287b2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-dbe287b2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-dbe287b2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-dbe287b2]{animation:rotateEnter-dbe287b2 .7s;position:relative}.rotate-leave-active[data-v-dbe287b2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-dbe287b2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.aria2-item[data-v-dbe287b2]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.aria2-item .aria2-item_name[data-v-dbe287b2]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.aria2-item .aria2-item_value[data-v-dbe287b2]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.aria2-item .aria2-item_value .configure[data-v-dbe287b2]{color:#297ff3;padding:3px}li.aria2-item .aria2-item_value .configure.enabel[data-v-dbe287b2]{color:#888}.use-url_app[data-v-dbe287b2]{padding-bottom:14px}.use-url_app a[data-v-dbe287b2]{text-decoration:none;color:#297ff3}@keyframes bganimation-1af61e64{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1af61e64{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1af61e64{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1af61e64]{animation:rotateEnter-1af61e64 .7s;position:relative}.rotate-leave-active[data-v-1af61e64]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1af61e64]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.qbittorrent-item[data-v-1af61e64]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.qbittorrent-item .qbittorrent-item_name[data-v-1af61e64]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.qbittorrent-item .qbittorrent-item_value[data-v-1af61e64]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.qbittorrent-item .qbittorrent-item_value .configure[data-v-1af61e64]{color:#297ff3;padding:3px}li.qbittorrent-item .qbittorrent-item_value .configure.enabel[data-v-1af61e64]{color:#888}a[data-v-1af61e64]{text-decoration:none;color:#297ff3}@keyframes bganimation-31717210{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31717210{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-31717210{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-31717210]{animation:rotateEnter-31717210 .7s;position:relative}.rotate-leave-active[data-v-31717210]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31717210]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}li.transmission-item[data-v-31717210]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.transmission-item .transmission-item_name[data-v-31717210]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}li.transmission-item .transmission-item_value[data-v-31717210]{flex:0 0 100%;max-width:50%;padding-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.transmission-item .transmission-item_value .configure[data-v-31717210]{color:#297ff3;padding:3px}li.transmission-item .transmission-item_value .configure.enabel[data-v-31717210]{color:#888}a[data-v-31717210]{text-decoration:none;color:#297ff3}@keyframes bganimation-378dba8e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-378dba8e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-378dba8e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-378dba8e]{animation:rotateEnter-378dba8e .7s;position:relative}.rotate-leave-active[data-v-378dba8e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-378dba8e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-378dba8e]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:1rem 87px;border-radius:6px}.action p[data-v-378dba8e]{color:#999;font-size:14px}.action input[data-v-378dba8e]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC}.action h2.title[data-v-378dba8e]{width:100%;color:#1e1e1e;font-size:22px;font-family:PingFangSC-Medium,PingFang SC;padding:0;margin:0;text-align:center}.action span[data-v-378dba8e]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4;font-weight:700}.action form label[data-v-378dba8e]{width:100%}.action form label input[data-v-378dba8e],.action form label select[data-v-378dba8e]{height:100%;font-size:14px}.action .myinput_wrap[data-v-378dba8e],.action .RPC_input[data-v-378dba8e]{width:85%}.action .myinput_wrap textarea[data-v-378dba8e]{width:100%;padding:2px 3px;border:1px solid #dee2e6;border-radius:.25rem}.action .input_row[data-v-378dba8e]{margin:16px 0;display:flex;justify-content:left;align-items:center}.action .input_row .radios[data-v-378dba8e]{margin-right:10px}.action .input_row .radios input[data-v-378dba8e],.action .input_row .radios label[data-v-378dba8e]{cursor:pointer}.action .Tracker label[data-v-378dba8e]{margin-right:10px;cursor:pointer}.action .Tracker_input[data-v-378dba8e]{padding:6px 2px}.action .btns[data-v-378dba8e]{width:100%;margin:42px auto 0}.action .btns button[data-v-378dba8e]{display:block;width:100%!important;margin:.5rem 0}.action .tooltip-trigger[data-v-378dba8e]{position:relative;display:inline-block;cursor:help;margin-right:6px}.action .tooltip-trigger .tooltip-text[data-v-378dba8e]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.action .tooltip-trigger .tooltip-text span[data-v-378dba8e]{color:#fff}.action .tooltip-trigger .tooltip-text .dowload_dir_tip[data-v-378dba8e]{min-width:14rem;display:inline-block}.action .tooltip-trigger:hover .tooltip-text[data-v-378dba8e]{visibility:visible;opacity:1}.action .tooltip-top[data-v-378dba8e]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.action .tooltip-bottom[data-v-378dba8e]{top:100%;left:50%;margin-top:5px;transform:translate(-50%)}.action .tooltip-bottom .dowload_rpc_tip[data-v-378dba8e]{min-width:10rem;display:inline-block}.action .tooltip-right[data-v-378dba8e]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.action .tooltip-left[data-v-378dba8e]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.action .tooltip-top[data-v-378dba8e]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.action .tooltip-bottom[data-v-378dba8e]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}.action .successed[data-v-378dba8e]{text-align:center;font-size:14px}.action .finished[data-v-378dba8e]{display:flex;justify-content:center;margin:80px 80px 28px}.left[data-v-378dba8e]{display:flex;align-items:center;justify-content:flex-start;width:110px;flex:none}.select-editable[data-v-378dba8e]{position:relative;border:1px solid #dee2e6;border-radius:.25rem;margin:.25rem .1rem}.select-editable select[data-v-378dba8e]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.select-editable input[data-v-378dba8e]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-378dba8e]:focus,.select-editable input[data-v-378dba8e]:focus{outline:none}[data-v-378dba8e]::placeholder{color:#999}@keyframes bganimation-378dba8e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-378dba8e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-378dba8e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-378dba8e]{animation:rotateEnter-378dba8e .7s;position:relative}.rotate-leave-active[data-v-378dba8e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-378dba8e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 500px){.action[data-v-378dba8e]{width:100%}.action .input_row[data-v-378dba8e]{display:block}.action .input_row .myinput_wrap[data-v-378dba8e],.action .input_row .RPC_input[data-v-378dba8e]{width:100%}}@keyframes bganimation-23580536{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-23580536{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-23580536{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-23580536]{animation:rotateEnter-23580536 .7s;position:relative}.rotate-leave-active[data-v-23580536]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-23580536]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-23580536]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-23580536]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-23580536]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-23580536]{height:30px;line-height:30px;border-radius:4px 0 0 4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;align-items:center;justify-content:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-23580536]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-23580536] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-23580536]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-23580536]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:15px;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-23580536]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-23580536]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-23580536]:hover{background-color:#eee}.app-container .app-container_title button[data-v-23580536]{margin-left:10px}.app-container .app-container_body[data-v-23580536]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-23580536]{width:100%;display:flex!important;flex-wrap:wrap!important;align-items:center!important;justify-content:space-between!important;margin-top:20px}.app-container ul.app-container_nas-menu button[data-v-23580536]{flex:0 0 100%!important;max-width:33.333%!important;height:30px;background:none;border:none!important;background-color:#eee;color:#333;cursor:pointer;margin:0!important;padding:5px 0!important;border-radius:0!important;line-height:20px;font-size:16px}.app-container ul.app-container_nas-menu button.on[data-v-23580536],.app-container ul.app-container_nas-menu button[data-v-23580536]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-23580536]{position:fixed;inset:0}@keyframes bganimation-43beecef{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-43beecef{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-43beecef{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-43beecef]{animation:rotateEnter-43beecef .7s;position:relative}.rotate-leave-active[data-v-43beecef]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-43beecef]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}h3[data-v-43beecef]{text-align:center;margin-bottom:20px}.label-item[data-v-43beecef]{display:flex;align-items:center;flex-wrap:wrap;margin:1rem 0;padding:0 30px}.label-item label[data-v-43beecef]{display:flex;flex-wrap:wrap;align-items:center;width:100%;height:26px;line-height:26px;cursor:pointer}.label-item label input[type=radio][data-v-43beecef]{top:0;right:0;vertical-align:middle}.label-item label span[data-v-43beecef]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#000000d4;display:inline-block;margin-left:10px}.label-item p.label_info[data-v-43beecef]{color:#999;font-size:12px;padding-left:24px;line-height:20px}.label-item .label-item_key[data-v-43beecef]{display:flex;flex-wrap:wrap;align-items:center}.label-item .label-item_key .ddnsto_serve[data-v-43beecef]{flex:0 0 100%;display:flex;justify-content:space-between;margin-bottom:14px}.label-item .label-item_key .ddnsto_serve_item[data-v-43beecef]{flex:0 0 100%;display:flex;justify-content:space-between}@keyframes bganimation-43dd65a2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-43dd65a2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-43dd65a2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-43dd65a2]{animation:rotateEnter-43dd65a2 .7s;position:relative}.rotate-leave-active[data-v-43dd65a2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-43dd65a2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-43dd65a2]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-43dd65a2]{width:100px;height:100px}.actioner-container_body .body-title[data-v-43dd65a2]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-tips[data-v-43dd65a2]{text-align:center}.actioner-container_body .body-info[data-v-43dd65a2]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body .body-tips[data-v-43dd65a2]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-43dd65a2]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-43dd65a2]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-7790f1da{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7790f1da{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7790f1da{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7790f1da]{animation:rotateEnter-7790f1da .7s;position:relative}.rotate-leave-active[data-v-7790f1da]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7790f1da]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-7790f1da]{width:100%;height:100%;border:none}@keyframes bganimation-7b3ee72a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7b3ee72a{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7b3ee72a{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7b3ee72a]{animation:rotateEnter-7b3ee72a .7s;position:relative}.rotate-leave-active[data-v-7b3ee72a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7b3ee72a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}iframe[data-v-7b3ee72a]{width:100%;height:100%;border:none}@keyframes bganimation-7f5a8953{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7f5a8953{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7f5a8953{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7f5a8953]{animation:rotateEnter-7f5a8953 .7s;position:relative}.rotate-leave-active[data-v-7f5a8953]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7f5a8953]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-7f5a8953]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body svg.icon[data-v-7f5a8953]{width:100px;height:100px}.actioner-container_body .body-title[data-v-7f5a8953]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body .body-info[data-v-7f5a8953]{color:#666;font-size:1.3em;margin:1rem 0;width:100%}.actioner-container_body .body-tips[data-v-7f5a8953]{margin:1rem 0;display:block;width:100%}.actioner-container_body .body-btns[data-v-7f5a8953]{width:100%;margin-top:3rem}.actioner-container_body .body-btns button[data-v-7f5a8953]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-d60389d6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-d60389d6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-d60389d6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-d60389d6]{animation:rotateEnter-d60389d6 .7s;position:relative}.rotate-leave-active[data-v-d60389d6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-d60389d6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-d60389d6]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-1e0ebd66{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e0ebd66{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-1e0ebd66{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-1e0ebd66]{animation:rotateEnter-1e0ebd66 .7s;position:relative}.rotate-leave-active[data-v-1e0ebd66]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e0ebd66]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-container_body[data-v-1e0ebd66]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-7a6bd385{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7a6bd385{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7a6bd385{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7a6bd385]{animation:rotateEnter-7a6bd385 .7s;position:relative}.rotate-leave-active[data-v-7a6bd385]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7a6bd385]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-7a6bd385]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-7a6bd385] .actioner-container{width:100%}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;color:#0060ff;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-7a6bd385] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_body{padding:1rem;text-align:center;width:100%;height:400px}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-7a6bd385] .actioner-container .actioner-container_body.ddnsto-bind{height:280px}@keyframes bganimation-7a6bd385{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7a6bd385{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7a6bd385{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7a6bd385]{animation:rotateEnter-7a6bd385 .7s;position:relative}.rotate-leave-active[data-v-7a6bd385]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7a6bd385]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-7a6bd385]{width:90%}}@keyframes bganimation-4358e88c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4358e88c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4358e88c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4358e88c]{animation:rotateEnter-4358e88c .7s;position:relative}.rotate-leave-active[data-v-4358e88c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4358e88c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-4358e88c]{width:500px;max-height:90%;background-color:#fff;position:relative;z-index:99999;margin:auto;border-radius:4px;padding:10px 0}.action .action-header[data-v-4358e88c]{width:100%;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;padding-left:1rem;padding-right:1rem;text-align:left;font-size:18px;line-height:1;color:#303133}.action .action-body[data-v-4358e88c]{display:block;margin:2rem 0;line-height:24px;padding:0 15px;color:#606266;font-size:14px}.action .action-footer[data-v-4358e88c]{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action .next[data-v-4358e88c]{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:120px;height:32px;background:#553AFE;border-radius:2px}.action .next[data-v-4358e88c]:hover{opacity:.8}.action .clear[data-v-4358e88c]{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action .clear[data-v-4358e88c]:hover{opacity:.8}@keyframes bganimation-9435cfa6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9435cfa6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9435cfa6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9435cfa6]{animation:rotateEnter-9435cfa6 .7s;position:relative}.rotate-leave-active[data-v-9435cfa6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9435cfa6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.title_info[data-v-9435cfa6]{display:block;width:100%;text-align:center}.title_info p[data-v-9435cfa6]{font-size:20px;margin-bottom:10px}.label-item[data-v-9435cfa6]{width:100%;margin:1rem 0}.label-item .label-item_key[data-v-9435cfa6]{width:100%;font-size:12px;color:#666}.label-item .label-item_key span[data-v-9435cfa6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-9435cfa6]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-9435cfa6]{width:100%;margin-top:5px}.label-item .label-item_value select[data-v-9435cfa6],.label-item .label-item_value input[data-v-9435cfa6]{width:100%;height:36px;color:#000}.label-item .label-item_value input[data-v-9435cfa6]::placeholder{color:#999;font-size:12PX}.label-item .label_tips[data-v-9435cfa6]{display:flex;margin-top:6px}.label-item .label_tips .info[data-v-9435cfa6]{margin-left:8px}.label-message[data-v-9435cfa6]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}@keyframes bganimation-6f1d92d9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f1d92d9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f1d92d9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f1d92d9]{animation:rotateEnter-6f1d92d9 .7s;position:relative}.rotate-leave-active[data-v-6f1d92d9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f1d92d9]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-6f1d92d9]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-6f1d92d9] .actioner-container{width:100%}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body{padding:1rem;width:100%;height:400px}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body a{text-decoration:none}.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body.ali,.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body.dnspod,.action-main[data-v-6f1d92d9] .actioner-container .actioner-container_body.oray{height:451px}@keyframes bganimation-6f1d92d9{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f1d92d9{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6f1d92d9{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6f1d92d9]{animation:rotateEnter-6f1d92d9 .7s;position:relative}.rotate-leave-active[data-v-6f1d92d9]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f1d92d9]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-6f1d92d9]{width:90%}}@keyframes bganimation-2d533925{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2d533925{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2d533925{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2d533925]{animation:rotateEnter-2d533925 .7s;position:relative}.rotate-leave-active[data-v-2d533925]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2d533925]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-2d533925]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container a[data-v-2d533925]{text-decoration:none}.app-container .app-container_title[data-v-2d533925]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-2d533925]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-2d533925]{height:30px;border-radius:4px;font-size:14px;font-family:PingFangSC-Medium,PingFang SC;font-weight:500;color:#553afe;display:inline-block;padding:0 10px;border:1px solid #553AFE;cursor:pointer;display:flex;align-items:center;justify-content:center}.app-container .app-container_title .app-container_tool .more_icon[data-v-2d533925]{border-radius:0 4px 4px 0;border-right:1px solid #553AFE;border-top:1px solid #553AFE;border-bottom:1px solid #553AFE;height:30px;display:inline-block;cursor:pointer}.app-container .app-container_title .app-container_tool .more_icon[data-v-2d533925] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-2d533925]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-2d533925]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:0;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container .app-container_title .DeviceBlock ul li[data-v-2d533925]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-2d533925]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-2d533925]:hover{background-color:#eee}.app-container button[data-v-2d533925],.app-container .refresh[data-v-2d533925]{margin-left:20px}.app-container .app-container_body[data-v-2d533925]{width:100%;height:100%}.menu_background[data-v-2d533925]{position:fixed;inset:0}.app-container_domain li.domain-item[data-v-2d533925]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0;align-items:center}.app-container_domain li.domain-item .domain-item_name[data-v-2d533925]{flex:0 0 100%;max-width:50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.app-container_domain li.domain-item .domain-item_value[data-v-2d533925]{flex:0 0 100%;max-width:50%;padding-left:10px;float:left;display:flex;align-items:center;justify-content:space-between}.app-container_domain li.domain-item .domain-item_value .configure[data-v-2d533925]{overflow:hidden;white-space:nowrap;padding:3px;overflow-x:hidden;text-overflow:ellipsis}.app-container_domain li.domain-item .domain-item_value .item_btn[data-v-2d533925]{border:1px solid #553afb;border-radius:4px;font-size:12px;padding:7px;color:#553afb;text-align:center;min-width:60px}.app-container_domain li.domain-item .domain-item_value .configure.enabel[data-v-2d533925]{color:#888;overflow-x:hidden;text-overflow:ellipsis}.app-container_domain li.domain-item .domain-item_root[data-v-2d533925]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.app-container_domain .domain_tip svg[data-v-2d533925]{vertical-align:bottom;margin-left:22px}.app-container_domain .tooltip-trigger[data-v-2d533925]{position:relative;display:inline-block;cursor:help;margin-right:6px}.app-container_domain .tooltip-trigger .tooltip-text[data-v-2d533925]{visibility:hidden;position:absolute;padding:.5rem 1rem;background-color:#555;color:#fff;text-align:center;border-radius:6px;z-index:1;opacity:0;transition:opacity .6s}.app-container_domain .tooltip-trigger .tooltip-text span[data-v-2d533925]{color:#fff}.app-container_domain .tooltip-trigger .tooltip-text .domain_dir_tip[data-v-2d533925]{min-width:15rem;display:inline-block}.app-container_domain .tooltip-trigger:hover .tooltip-text[data-v-2d533925]{visibility:visible;opacity:1}.app-container_domain .tooltip-top[data-v-2d533925]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.app-container_domain .tooltip-right[data-v-2d533925]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.app-container_domain .tooltip-left[data-v-2d533925]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.app-container_domain .tooltip-top[data-v-2d533925]:after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent transparent}.app-container_domain .tooltip-bottom[data-v-2d533925]:after{content:"";position:absolute;bottom:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:transparent transparent #555 transparent}@keyframes bganimation-66cc4e33{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-66cc4e33{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-66cc4e33{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-66cc4e33]{animation:rotateEnter-66cc4e33 .7s;position:relative}.rotate-leave-active[data-v-66cc4e33]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-66cc4e33]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.nas-container[data-v-66cc4e33]{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.nas-container .nas-container_card[data-v-66cc4e33]{flex:0 0 49%;max-width:49%;margin-bottom:1.5vw}@keyframes bganimation-66cc4e33{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-66cc4e33{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-66cc4e33{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-66cc4e33]{animation:rotateEnter-66cc4e33 .7s;position:relative}.rotate-leave-active[data-v-66cc4e33]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-66cc4e33]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 992px){.nas-container .nas-container_card[data-v-66cc4e33]{flex:0 0 100%;max-width:100%;padding-right:0;margin-bottom:.8rem}}@keyframes bganimation-f3717996{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f3717996{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f3717996{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f3717996]{animation:rotateEnter-f3717996 .7s;position:relative}.rotate-leave-active[data-v-f3717996]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f3717996]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container_title .more_icon[data-v-f3717996]{position:absolute;right:22px;cursor:pointer}.app-container_title .DeviceBlock[data-v-f3717996]{position:absolute;z-index:999;width:10%;right:22px;margin-top:14px}.app-container_title .DeviceBlock ul[data-v-f3717996]{background-color:#fff;box-shadow:0 0 10px 1px #373f6924;padding:10px 0;border-radius:6px;top:0;right:0;text-align:center;position:absolute;word-break:keep-all}.app-container_title .DeviceBlock ul li[data-v-f3717996]{margin:6px 0;line-height:28px;cursor:pointer}.app-container_title .DeviceBlock ul li a[data-v-f3717996]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;margin:0 20px;display:block}.app-container_title .DeviceBlock ul li[data-v-f3717996]:hover{background-color:#eee}.item-label[data-v-f3717996]{display:flex;flex-wrap:wrap;align-items:flex-start;align-content:flex-start;width:100%;margin:1rem 0}.item-label .item-label_key[data-v-f3717996]{flex:0 0 100%;max-width:100px;text-align:left}.item-label .item-label_key span[data-v-f3717996]{font-size:14px;color:#333}.item-label .item-label_value[data-v-f3717996]{flex:1;text-align:left}.item-label .item-label_value span[data-v-f3717996]{font-size:14px;color:#333}.item-title span[data-v-f3717996]{font-size:16px;font-weight:550;color:#555}.item-flex[data-v-f3717996]{width:100%;display:flex;flex-wrap:wrap}.item-flex .auto[data-v-f3717996]{flex:auto}.item-flex button.app-editor[data-v-f3717996]{padding:8px 1.3rem}.menu_background[data-v-f3717996]{position:fixed;inset:0}@keyframes bganimation-9cffddcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9cffddcc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9cffddcc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9cffddcc]{animation:rotateEnter-9cffddcc .7s;position:relative}.rotate-leave-active[data-v-9cffddcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9cffddcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-9cffddcc]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-9cffddcc]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-9cffddcc]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-9cffddcc]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-9cffddcc]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-9cffddcc]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-9cffddcc]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-9cffddcc]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-9cffddcc],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-9cffddcc]{width:100%;height:36px}.actioner-dns .actioner-dns_body .chose_dhcp[data-v-9cffddcc]{height:1em;font-size:1.3em}.actioner-dns .actioner-dns_body .chose_dhcp .dhcp_info[data-v-9cffddcc]{margin-left:10px;user-select:none}.actioner-dns .actioner-dns_body .label-message[data-v-9cffddcc]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-9cffddcc]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-9cffddcc]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-9cffddcc]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.setting_status[data-v-9cffddcc]{text-align:center}.setting_status p[data-v-9cffddcc]{margin:10px 0}.setting_status a[data-v-9cffddcc]{text-align:center;display:block;text-decoration:none}.NewAdress[data-v-9cffddcc]{margin-top:10px}@keyframes bganimation-9cffddcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9cffddcc{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-9cffddcc{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-9cffddcc]{animation:rotateEnter-9cffddcc .7s;position:relative}.rotate-leave-active[data-v-9cffddcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9cffddcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-9cffddcc]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-9cffddcc]{width:100%}}@keyframes bganimation-0384f3ac{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0384f3ac{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0384f3ac{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0384f3ac]{animation:rotateEnter-0384f3ac .7s;position:relative}.rotate-leave-active[data-v-0384f3ac]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0384f3ac]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-0384f3ac]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-0384f3ac]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-0384f3ac]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_roboot_tips[data-v-0384f3ac]{margin-top:24px;text-align:center}.actioner-dns .actioner-dns_body .disk_loading_icon[data-v-0384f3ac]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.actioner-dns .actioner-dns_body .disk_loading_icon .disk_loading_info[data-v-0384f3ac]{margin-top:5px}.actioner-dns .actioner-dns_body .disk_tips[data-v-0384f3ac]{text-align:center;font-size:16px;margin-top:159px;color:#f9ad1e}.actioner-dns .actioner-dns_body .disk_tips svg[data-v-0384f3ac]{vertical-align:middle}.actioner-dns .actioner-dns_body .disk_tips span[data-v-0384f3ac]{margin-left:6px}.actioner-dns .actioner-dns_body .sandbox_info[data-v-0384f3ac]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .label-item[data-v-0384f3ac]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0384f3ac]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0384f3ac]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-0384f3ac]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-0384f3ac]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-0384f3ac],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-0384f3ac]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-0384f3ac]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .actioner-dns_body .sandbox_tips svg[data-v-0384f3ac]{vertical-align:middle}.actioner-dns .actioner-dns_body .sandbox_tips span[data-v-0384f3ac]{font-size:12px;margin-left:4px}.actioner-dns .config-message[data-v-0384f3ac]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-0384f3ac]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-0384f3ac]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-0384f3ac]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-0384f3ac]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-0384f3ac]{margin-top:114px}.timeout span[data-v-0384f3ac],.sandbox_roboot_refresh[data-v-0384f3ac]{color:#5e72e4}option[data-v-0384f3ac]:disabled{background-color:#e0e0e0}@keyframes bganimation-0384f3ac{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0384f3ac{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0384f3ac{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0384f3ac]{animation:rotateEnter-0384f3ac .7s;position:relative}.rotate-leave-active[data-v-0384f3ac]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0384f3ac]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-0384f3ac]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-0384f3ac]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-0384f3ac]{min-height:42vh}.actioner-tips[data-v-0384f3ac]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-0384f3ac]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-0384f3ac]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-0384f3ac]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-0384f3ac]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0384f3ac]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-0384f3ac]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_footer button[data-v-0384f3ac]{width:100%!important;margin-bottom:10px}.actioner-tips .sandbox_info[data-v-0384f3ac]{padding:3px 10px}}@keyframes bganimation-4db2efb4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4db2efb4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4db2efb4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4db2efb4]{animation:rotateEnter-4db2efb4 .7s;position:relative}.rotate-leave-active[data-v-4db2efb4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4db2efb4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-4db2efb4]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_header span[data-v-4db2efb4]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-4db2efb4]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_info[data-v-4db2efb4]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-4db2efb4]{font-size:16px;line-height:28px;margin:20px 0}.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-4db2efb4]{font-size:16px;line-height:28px}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_reboot[data-v-4db2efb4]{color:#5e72e4}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_tex[data-v-4db2efb4]{color:red;font-size:.9em}.actioner-dns .actioner-dns_footer[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-4db2efb4]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-4db2efb4]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-tips .sandbox_info[data-v-4db2efb4]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-4db2efb4]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.timeout[data-v-4db2efb4]{margin-top:114px}.timeout span[data-v-4db2efb4]{color:#5e72e4}@keyframes bganimation-4db2efb4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4db2efb4{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-4db2efb4{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-4db2efb4]{animation:rotateEnter-4db2efb4 .7s;position:relative}.rotate-leave-active[data-v-4db2efb4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4db2efb4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-tips_footer button[data-v-4db2efb4]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-4db2efb4]{width:100%}}@media screen and (max-width: 700px){.actioner-dns .actioner-dns_body[data-v-4db2efb4]{min-height:42vh}.actioner-dns .actioner-dns_footer button[data-v-4db2efb4]{width:100%!important;margin-bottom:10px}.actioner-tips[data-v-4db2efb4]{width:80%;line-height:22px}.actioner-tips .sandbox_info[data-v-4db2efb4]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-4db2efb4]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-4db2efb4]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns .actioner-dns_footer button[data-v-4db2efb4]{width:100%!important;margin-bottom:10px;margin-left:0}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-4db2efb4]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-4db2efb4]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .sandbox_info[data-v-4db2efb4]{font-size:10px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-4db2efb4],.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-4db2efb4]{font-size:12px}.actioner-tips .sandbox_info[data-v-4db2efb4]{padding:3px 10px}}@keyframes bganimation-0d223b54{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d223b54{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d223b54{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d223b54]{animation:rotateEnter-0d223b54 .7s;position:relative}.rotate-leave-active[data-v-0d223b54]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d223b54]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.nav-container[data-v-0d223b54]{width:100%;margin-bottom:8px}.nav-container .btn_styles[data-v-0d223b54]{width:132px;height:52px;border-radius:8px;margin-right:8px}.nav-container .app-update-button[data-v-0d223b54]{position:relative}.nav-container .app-update-button i[data-v-0d223b54]{display:inline-block;padding:3px;background-color:red;border-radius:50%}.nav-container .cover-buttob[data-v-0d223b54]{margin-left:0;margin-right:5px}.nav-container a[data-v-0d223b54]{padding:12px 1rem;margin-right:1rem;margin-bottom:1rem;display:inline-block;min-width:100px;text-align:center}.nav-container a[data-v-0d223b54]:hover{box-shadow:0 0 10px 1px #c5c5c5;transition:.3s;transform:scale(1.1)}.nav-container .app-btn-ttyd[data-v-0d223b54]:before{content:"\276f "}.nav-container .MoreMenu[data-v-0d223b54]{cursor:pointer;color:#297ff3;margin-left:20px;font-size:16px;font-weight:600}.nav-container[data-v-0d223b54]{display:flex;justify-content:start;align-items:center;flex-wrap:wrap;width:100%}.nav-container button[data-v-0d223b54]{cursor:pointer;margin-bottom:10px}.nav-container button[data-v-0d223b54]:hover{box-shadow:0 0 2px #0000001f,0 2px 2px #0003}.update[data-v-0d223b54]{visibility:hidden}.color1[data-v-0d223b54]{border:1px solid #553AFE;color:#533afe;background:rgba(85,58,254,.16)}.color2[data-v-0d223b54]{background:#2b2b2b;border:#444;color:#fff}.color3[data-v-0d223b54]{border:1px solid #FF6A67;background:rgba(255,107,103,.16);color:#ff6a67}.color4[data-v-0d223b54]{border:1px solid #3688FF;background:rgba(51,134,255,.16);color:#3688ff}.color5[data-v-0d223b54]{border:1px solid #FE3ACC;background:rgba(254,58,204,.16);color:#fe3acc}@keyframes bganimation-08ce2a3e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-08ce2a3e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-08ce2a3e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-08ce2a3e]{animation:rotateEnter-08ce2a3e .7s;position:relative}.rotate-leave-active[data-v-08ce2a3e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-08ce2a3e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}em[data-v-08ce2a3e]{margin:.3125rem 0;width:100%;display:block;height:1px;background-color:#eeeeee2e}[data-v-08ce2a3e] .app-container_title{width:100%;height:34px;display:flex;flex-wrap:wrap;align-items:center;color:#1e1e1e;font-size:1.5em}[data-v-08ce2a3e] .more_icon{z-index:0}@keyframes bganimation-082ffcaf{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-082ffcaf{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-082ffcaf{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-082ffcaf]{animation:rotateEnter-082ffcaf .7s;position:relative}.rotate-leave-active[data-v-082ffcaf]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-082ffcaf]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-082ffcaf]{width:100%;padding:1rem;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:flex-start;align-items:center;align-content:center;max-width:800px;height:100vh;overflow:overlay}#page .title[data-v-082ffcaf]{width:100%;display:block;text-align:center;font-size:32px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#000c;line-height:45px}#page .desc[data-v-082ffcaf]{width:100%;display:block;font-size:24px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#0009;line-height:33px;text-align:center;margin-top:10px}#page div.info[data-v-082ffcaf]{width:100%;display:block;font-size:1.6em;font-size:16px;margin-left:34px}#page .network-containers[data-v-082ffcaf]{width:100%;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;margin:3rem 0 1rem}#page .network-containers .network-container_item[data-v-082ffcaf]{flex:0 0 100%;position:relative;border-radius:4px;padding:10px;cursor:pointer;max-width:240px;width:240px;height:308px}#page .network-containers .network-container_item a[data-v-082ffcaf]{position:relative;display:block;width:100%}#page .network-containers .network-container_item a .cover[data-v-082ffcaf]{position:relative;padding-top:130%;z-index:1}#page .network-containers .network-container_item a .cover .thumbnail[data-v-082ffcaf]{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:contain;border-radius:8px;overflow:hidden;z-index:1;display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center;background-color:#2dc8fd}#page .network-containers .network-container_item a .cover .thumbnail i[data-v-082ffcaf]{display:block;font-size:100px;color:#eee}#page .network-containers .network-container_item a .cover .thumbnail span[data-v-082ffcaf]{display:block;text-align:center;width:100%;color:#eeee;font-size:2em;line-height:1.5;font-size:22px;font-family:PingFangSC-Semibold,PingFang SC;color:#fff;line-height:40px}#page .network-containers .network-container_item:nth-child(9n+1) a .cover .thumbnail[data-v-082ffcaf]{background:linear-gradient(138deg,#FF6E6B 0%,#FF6966 100%)}#page .network-containers .network-container_item:nth-child(9n+2) a .cover .thumbnail[data-v-082ffcaf]{background:linear-gradient(145deg,#37D5A9 0%,#42D8B0 100%)}#page .network-containers .network-container_item:nth-child(9n+3) a .cover .thumbnail[data-v-082ffcaf]{background:linear-gradient(145deg,#549AFF 0%,#2C82FF 100%)}#page .network-containers .network-container_item:nth-child(9n+4) a .cover .thumbnail[data-v-082ffcaf]{background-color:#9b58de}#page .network-containers .network-container_item:nth-child(9n+5) a .cover .thumbnail[data-v-082ffcaf]{background-color:#297ff3}#page .network-containers .network-container_item:nth-child(9n+6) a .cover .thumbnail[data-v-082ffcaf]{background-color:#27aa8f}#page .network-containers .network-container_item:nth-child(9n+7) a .cover .thumbnail[data-v-082ffcaf]{background-color:#f15a4a}#page .network-containers .network-container_item:nth-child(9n+8) a .cover .thumbnail[data-v-082ffcaf]{background-color:#439c07}@keyframes bganimation-082ffcaf{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-082ffcaf{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-082ffcaf{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-082ffcaf]{animation:rotateEnter-082ffcaf .7s;position:relative}.rotate-leave-active[data-v-082ffcaf]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-082ffcaf]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes bganimation-16746f19{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-16746f19{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-16746f19{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-16746f19]{animation:rotateEnter-16746f19 .7s;position:relative}.rotate-leave-active[data-v-16746f19]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-16746f19]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-16746f19]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-16746f19]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-16746f19]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-16746f19]{margin:.5rem 0}#page .network-message li[data-v-16746f19]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-16746f19]{color:red}#page .network-message li a[data-v-16746f19]{color:#00f}#page form[data-v-16746f19]{display:block;width:100%;margin:3rem 0}#page form label[data-v-16746f19]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-16746f19]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-16746f19]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-16746f19]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-16746f19]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-16746f19]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-16746f19]{margin-left:10px;user-select:none}#page .msg[data-v-16746f19]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page .btns[data-v-16746f19]{width:100%;margin-top:3rem}#page .btns button[data-v-16746f19]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-0d3a64fa{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0d3a64fa{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-0d3a64fa{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-0d3a64fa]{animation:rotateEnter-0d3a64fa .7s;position:relative}.rotate-leave-active[data-v-0d3a64fa]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0d3a64fa]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-0d3a64fa]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-0d3a64fa]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-0d3a64fa]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page .network-message[data-v-0d3a64fa]{margin:.5rem 0}#page .network-message li[data-v-0d3a64fa]{margin:.5rem 0;font-size:20px;color:#000;font-weight:550}#page .network-message li span[data-v-0d3a64fa]{color:red}#page .network-message li a[data-v-0d3a64fa]{color:#00f}#page form[data-v-0d3a64fa]{display:block;width:100%;margin:3rem 0}#page form label[data-v-0d3a64fa]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-0d3a64fa]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-0d3a64fa]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-0d3a64fa]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-0d3a64fa],#page form label select[data-v-0d3a64fa]{width:100%;display:block;height:42px}#page .chose_dhcp[data-v-0d3a64fa]{height:1em;font-size:1.3em}#page .chose_dhcp .dhcp_info[data-v-0d3a64fa]{margin-left:10px;user-select:none}#page .msgs[data-v-0d3a64fa]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-0d3a64fa]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-0d3a64fa]{width:100%;margin-top:3rem}#page .btns button[data-v-0d3a64fa]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-f4dbbdaa{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-f4dbbdaa{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-f4dbbdaa{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-f4dbbdaa]{animation:rotateEnter-f4dbbdaa .7s;position:relative}.rotate-leave-active[data-v-f4dbbdaa]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-f4dbbdaa]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-f4dbbdaa]{width:100%;padding:1rem;margin:100px auto 0;display:flex;flex-wrap:wrap;justify-content:flex-start;max-width:600px}#page h2.title[data-v-f4dbbdaa]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0 0 10px;text-align:left;background-color:#f4f5f7;box-shadow:none}#page h3.desc[data-v-f4dbbdaa]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page code[data-v-f4dbbdaa]{background-color:#eee;display:block;width:100%;font-size:1.3em;padding:1rem;line-height:2;margin:2rem 0}#page div.info[data-v-f4dbbdaa]{width:100%;display:block;margin:1rem 0;font-size:1.3em;text-align:left}#page .msgs[data-v-f4dbbdaa]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-f4dbbdaa]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-f4dbbdaa]{width:100%;display:block;margin-top:3rem}#page .btns button[data-v-f4dbbdaa]{display:block;width:100%!important;margin:.5rem 0}#page form[data-v-f4dbbdaa]{display:block;width:100%;margin:3rem 0}#page form label[data-v-f4dbbdaa]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-f4dbbdaa]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-f4dbbdaa]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-f4dbbdaa]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-f4dbbdaa],#page form label select[data-v-f4dbbdaa]{width:100%;display:block;height:42px}.switch_inline[data-v-f4dbbdaa]{height:1em;font-size:1.3em}.switch_inline .switch_info[data-v-f4dbbdaa]{margin-left:10px;user-select:none}@keyframes bganimation-7fc91c6d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7fc91c6d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7fc91c6d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7fc91c6d]{animation:rotateEnter-7fc91c6d .7s;position:relative}.rotate-leave-active[data-v-7fc91c6d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7fc91c6d]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}p[data-v-7fc91c6d]{line-height:22px;font-size:14px}.label-item[data-v-7fc91c6d]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-7fc91c6d]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-7fc91c6d]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-7fc91c6d]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-7fc91c6d]{width:100%;margin:10px 0}.label-item .label-item_value select[data-v-7fc91c6d],.label-item .label-item_value input[data-v-7fc91c6d]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value input[data-v-7fc91c6d]::placeholder{color:#999;font-size:12PX}.label-item .label-item_value label[data-v-7fc91c6d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=checkbox][data-v-7fc91c6d]{top:0}.label-item .label-item_tips[data-v-7fc91c6d]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-7fc91c6d]{vertical-align:top}span.msg-warning[data-v-7fc91c6d]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}.label-message[data-v-7fc91c6d]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-container_body.setup-loading[data-v-7fc91c6d]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-loading span[data-v-7fc91c6d]{width:100%;display:block;font-size:1.2em;margin-top:1rem;color:#666}.actioner-container_body.setup-error[data-v-7fc91c6d]{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;align-content:center;text-align:center}.actioner-container_body.setup-error svg.icon[data-v-7fc91c6d]{width:100px;height:100px}.actioner-container_body.setup-error span[data-v-7fc91c6d]{width:100%;display:block;font-size:1.4em;color:#ff6b6b}.actioner-container_body.setup-success[data-v-7fc91c6d]{display:flex;flex-wrap:wrap;align-items:center;align-content:center;justify-content:center}.actioner-container_body.setup-success svg.icon[data-v-7fc91c6d]{width:100px;height:100px}.actioner-container_body.setup-success .body-title[data-v-7fc91c6d]{width:100%;display:block;color:#1e1e1e;font-size:2em;padding:0;margin:1rem 0;text-align:center}.actioner-container_body.setup-success .body-tips[data-v-7fc91c6d]{text-align:center}.actioner-container_body.setup-success .body-info[data-v-7fc91c6d]{color:#666;font-size:1.3em;margin:1rem 0;width:100%;text-align:center}.actioner-container_body.setup-success .body-info span[data-v-7fc91c6d]{display:block}.actioner-container_body.setup-success .body-tips[data-v-7fc91c6d]{margin:1rem 0;display:block;width:100%}.actioner-container_body.setup-success .body-btns[data-v-7fc91c6d]{width:100%;margin-top:3rem}.actioner-container_body.setup-success .body-btns button[data-v-7fc91c6d]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-51f9d7a2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-51f9d7a2{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-51f9d7a2{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-51f9d7a2]{animation:rotateEnter-51f9d7a2 .7s;position:relative}.rotate-leave-active[data-v-51f9d7a2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-51f9d7a2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-51f9d7a2]{display:block;width:100%;height:100%;border:none;resize:none}@keyframes bganimation-c07c8244{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-c07c8244{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-c07c8244{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-c07c8244]{animation:rotateEnter-c07c8244 .7s;position:relative}.rotate-leave-active[data-v-c07c8244]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-c07c8244]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-c07c8244]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-c07c8244]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-c07c8244]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-c07c8244]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-c07c8244]{width:100%}.label-item .label-item_value select[data-v-c07c8244]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-c07c8244]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-c07c8244]{top:0;margin:0}.label-item .label-item_tips[data-v-c07c8244]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-c07c8244]{vertical-align:top}span.msg-warning[data-v-c07c8244]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-13dc2cd6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-13dc2cd6{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-13dc2cd6{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-13dc2cd6]{animation:rotateEnter-13dc2cd6 .7s;position:relative}.rotate-leave-active[data-v-13dc2cd6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-13dc2cd6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-13dc2cd6]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-13dc2cd6]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-13dc2cd6]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-13dc2cd6]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-13dc2cd6]{width:100%}.label-item .label-item_value select[data-v-13dc2cd6]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-13dc2cd6]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-13dc2cd6]{top:0;margin:0}.label-item .label-item_tips[data-v-13dc2cd6]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-13dc2cd6]{vertical-align:top}span.msg-warning[data-v-13dc2cd6]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-5643983d{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-5643983d{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-5643983d{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-5643983d]{animation:rotateEnter-5643983d .7s;position:relative}.rotate-leave-active[data-v-5643983d]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-5643983d]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.label-item[data-v-5643983d]{width:100%;margin:10px 0}.label-item .label-item_key[data-v-5643983d]{width:100%;font-size:14px;color:#999;margin-bottom:6px}.label-item .label-item_key span[data-v-5643983d]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.label-item .label-item_key span[data-v-5643983d]:before{content:"*";color:#f56c6c;margin-right:4px}.label-item .label-item_value[data-v-5643983d]{width:100%}.label-item .label-item_value select[data-v-5643983d]{width:100%;height:36px;line-height:36px;color:#000}.label-item .label-item_value label[data-v-5643983d]{width:100%;display:flex;flex-wrap:wrap;align-items:center;cursor:pointer;margin:.5rem;border-bottom:1px solid #eee;padding-bottom:10px;font-size:14px;color:#666}.label-item .label-item_value label input[type=radio][data-v-5643983d]{top:0;margin:0}.label-item .label-item_tips[data-v-5643983d]{margin-top:10px;color:#666;font-size:14px}.label-item .label-item_tips svg[data-v-5643983d]{vertical-align:top}span.msg-warning[data-v-5643983d]{width:100%;text-align:left;font-size:14px;color:red;display:block;margin:10px 0}@keyframes bganimation-6ef94d02{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6ef94d02{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6ef94d02{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6ef94d02]{animation:rotateEnter-6ef94d02 .7s;position:relative}.rotate-leave-active[data-v-6ef94d02]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6ef94d02]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-6ef94d02]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-6ef94d02] .actioner-container{width:100%}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:20px;border-bottom:1px solid #eee;justify-content:center;padding:0 10px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-6ef94d02] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-6ef94d02] .actioner-container .actioner-container_body{padding:20px;width:100%;height:400px}@keyframes bganimation-6ef94d02{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6ef94d02{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-6ef94d02{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-6ef94d02]{animation:rotateEnter-6ef94d02 .7s;position:relative}.rotate-leave-active[data-v-6ef94d02]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6ef94d02]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-6ef94d02]{width:90%}}@keyframes bganimation-535a673b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-535a673b{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-535a673b{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-535a673b]{animation:rotateEnter-535a673b .7s;position:relative}.rotate-leave-active[data-v-535a673b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-535a673b]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.cbi-map-descr[data-v-535a673b]{margin-bottom:32px}.item-status[data-v-535a673b]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.item-status-detail[data-v-535a673b]{text-decoration:underline;cursor:help}@keyframes bganimation-2bc40d1c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2bc40d1c{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2bc40d1c{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2bc40d1c]{animation:rotateEnter-2bc40d1c .7s;position:relative}.rotate-leave-active[data-v-2bc40d1c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2bc40d1c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page .cbi-map-descr[data-v-2bc40d1c]{margin-bottom:1rem}#page[data-v-2bc40d1c] .cbi-section{padding:1rem}#page[data-v-2bc40d1c] span.cbi-page-actions.control-group{width:100%;display:block}@keyframes bganimation-742230ae{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-742230ae{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-742230ae{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-742230ae]{animation:rotateEnter-742230ae .7s;position:relative}.rotate-leave-active[data-v-742230ae]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-742230ae]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action-main[data-v-742230ae]{width:680px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.action-main[data-v-742230ae] .actioner-container{width:100%}.action-main[data-v-742230ae] .actioner-container .actioner-container_header{width:100%;height:50px;line-height:50px;display:flex;flex-wrap:wrap;align-items:center;font-size:16px;border-bottom:1px solid #eee;justify-content:flex-start;padding:0 1rem;color:#525f7f}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer{width:100%;height:50px;border-top:1px solid rgba(0,0,0,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:0 30px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer button{display:inline-block;width:100px!important;margin:0;margin-left:1rem;padding:0;border:none}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .close{min-width:65px;font-weight:400;line-height:30px;text-align:center;cursor:pointer;height:32px;border-radius:2px;border:1px solid rgba(0,0,0,.15);font-size:14px;font-family:PingFangSC-Regular,PingFang SC;color:#000000d4;line-height:32px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .next{min-width:65px;line-height:32px;text-align:center;cursor:pointer;font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#fff;margin-left:20px;width:74px;height:32px;background:#553AFE;border-radius:2px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .next.save{height:32px;background:#553AFE;border-radius:2px;line-height:16px}.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .next:hover,.action-main[data-v-742230ae] .actioner-container .actioner-container_footer .close:hover{opacity:.9}.action-main[data-v-742230ae] .actioner-container .actioner-container_body{padding:20px;width:100%;min-height:400px}.action-main[data-v-742230ae] .actioner-container .actioner-container_body label.cbi-value-title{width:150px!important}@keyframes bganimation-742230ae{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-742230ae{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-742230ae{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-742230ae]{animation:rotateEnter-742230ae .7s;position:relative}.rotate-leave-active[data-v-742230ae]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-742230ae]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 800px){.action-main[data-v-742230ae]{width:90%}}@keyframes bganimation-3f7c551e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3f7c551e{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-3f7c551e{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-3f7c551e]{animation:rotateEnter-3f7c551e .7s;position:relative}.rotate-leave-active[data-v-3f7c551e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3f7c551e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-3f7c551e]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-7d3ebf99{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7d3ebf99{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-7d3ebf99{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-7d3ebf99]{animation:rotateEnter-7d3ebf99 .7s;position:relative}.rotate-leave-active[data-v-7d3ebf99]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7d3ebf99]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-7d3ebf99]{display:block;width:100%;height:400px;padding:1rem;font-size:14px;resize:none;border:none;background-color:#1e1e1e;color:#fff}@keyframes bganimation-76197cba{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-76197cba{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-76197cba{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-76197cba]{animation:rotateEnter-76197cba .7s;position:relative}.rotate-leave-active[data-v-76197cba]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-76197cba]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-76197cba]{display:block;width:100%;height:500px;padding:1rem;font-size:14px;resize:none;border:1px solid #999;border-radius:3px}.actioner-dns[data-v-2f7b866f]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-2f7b866f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;padding:1rem;font-size:2em;border-bottom:1px solid #eee}.actioner-dns .actioner-dns_body[data-v-2f7b866f]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-2f7b866f]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-2f7b866f]{width:100%;font-size:16px;color:#666;margin-bottom:10px}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2f7b866f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-2f7b866f]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-2f7b866f]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-2f7b866f],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-2f7b866f]{width:100%;min-height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-2f7b866f]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-2f7b866f]{width:100%;min-height:inherit;height:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:center;font-size:2em}.actioner-dns .actioner-dns_footer[data-v-2f7b866f]{width:100%;display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:1rem;font-size:2em;border-top:1px solid #eee}.actioner-dns .actioner-dns_footer button[data-v-2f7b866f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-2f7b866f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2f7b866f{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-2f7b866f{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-2f7b866f]{animation:rotateEnter-2f7b866f .7s;position:relative}.rotate-leave-active[data-v-2f7b866f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2f7b866f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@media screen and (max-width: 1400px){.actioner-dns .actioner-dns_body[data-v-2f7b866f]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-2f7b866f]{width:100%}}@keyframes bganimation-589588f0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-589588f0{0%{transform:rotateY(180deg)}10%{transform:rotateY(198deg)}20%{transform:rotateY(216deg)}30%{transform:rotateY(234deg)}40%{transform:rotateY(252deg)}50%{transform:rotateY(270deg)}60%{transform:rotateY(288deg)}70%{transform:rotateY(306deg)}80%{transform:rotateY(324deg)}90%{transform:rotateY(342deg)}to{transform:rotateY(360deg)}}@keyframes turns-589588f0{0%{-webkit-transform:rotate(0deg)}25%{-webkit-transform:rotate(90deg)}50%{-webkit-transform:rotate(180deg)}75%{-webkit-transform:rotate(270deg)}to{-webkit-transform:rotate(360deg)}}.rotate-enter-active[data-v-589588f0]{animation:rotateEnter-589588f0 .7s;position:relative}.rotate-leave-active[data-v-589588f0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-589588f0]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.icon[data-v-589588f0]{width:48px;height:100%;cursor:pointer}.interface-device-flex[data-v-589588f0]{display:flex;justify-content:center}.interface-device-flex .app-container_status-label_bg[data-v-589588f0]{width:0;min-width:130px;max-width:230px;overflow-y:hidden;flex:1 0 160px}.cbi-section-table-row .td.btns[data-v-589588f0]{text-align:left!important} diff --git a/luci-app-xray/core/root/www/luci-static/resources/view/xray/preview.js b/luci-app-xray/core/root/www/luci-static/resources/view/xray/preview.js index 535489b16..1a1be7bf7 100644 --- a/luci-app-xray/core/root/www/luci-static/resources/view/xray/preview.js +++ b/luci-app-xray/core/root/www/luci-static/resources/view/xray/preview.js @@ -10,6 +10,9 @@ const variant = "xray_core"; function destination_format(k) { return function (s) { const dest = uci.get(variant, s, k) || []; + if (dest.length == 0) { + return "direct"; + } return dest.map(v => uci.get(variant, v, "alias")).join(", "); }; } @@ -139,7 +142,6 @@ return view.extend({ destination.depends("specify_outbound", "1"); destination.datatype = "uciname"; destination.textvalue = destination_format("destination"); - destination.rmempty = false; const servers = uci.sections(config_data, "servers"); if (servers.length == 0) { diff --git a/quickstart/Makefile b/quickstart/Makefile index bab4c1bae..b6aa6fcf4 100644 --- a/quickstart/Makefile +++ b/quickstart/Makefile @@ -10,11 +10,11 @@ include $(TOPDIR)/rules.mk PKG_ARCH_quickstart:=$(ARCH) PKG_NAME:=quickstart -PKG_VERSION:=0.7.18 +PKG_VERSION:=0.7.20 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/linkease/istore-packages/releases/download/prebuilt/ -PKG_HASH:=24abd2883f8f10094d712ae28cc9f644637f21dd3b5bdf01fb9ead0da8fae8f3 +PKG_HASH:=f40d3f45e2f3fbe1a25a239a1110ab845a1f172c5a1e6218787da6552e60db70 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-binary-$(PKG_VERSION) diff --git a/v2ray-geodata/Makefile b/v2ray-geodata/Makefile index edfd58936..175640aa4 100644 --- a/v2ray-geodata/Makefile +++ b/v2ray-geodata/Makefile @@ -12,13 +12,13 @@ PKG_MAINTAINER:=Tianling Shen include $(INCLUDE_DIR)/package.mk -GEOIP_VER:=202310190037 +GEOIP_VER:=202310260037 GEOIP_FILE:=geoip.dat.$(GEOIP_VER) define Download/geoip URL:=https://github.com/v2fly/geoip/releases/download/$(GEOIP_VER)/ URL_FILE:=geoip.dat FILE:=$(GEOIP_FILE) - HASH:=bc989d73a81be233e57b7bb4d6aed2b8e60f8d3e33f76cb78b89e14b67d12725 + HASH:=f24e09d29ffadb75d5eb41483b4eddfe139b9b448886dd2bcdeb2df2c0dcca24 endef GEOSITE_VER:=20231025154305