diff --git a/linkease/Makefile b/linkease/Makefile index 6e32d649e..710800f02 100644 --- a/linkease/Makefile +++ b/linkease/Makefile @@ -10,11 +10,11 @@ include $(TOPDIR)/rules.mk PKG_ARCH_LINKEASE:=$(ARCH) PKG_NAME:=linkease -PKG_VERSION:=1.0.0 +PKG_VERSION:=1.0.1 PKG_RELEASE:=$(PKG_ARCH_LINKEASE)-1 PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://fw.koolcenter.com/binary/LinkEase/LinuxStorage/ -PKG_HASH:=7410e97e096700ade8242edc50265caa85c7682d97c08032bc8174fa1e882a56 +PKG_HASH:=d774e0e588a2d3680c68d995a45c3e5ffd98d6d2fccfbcbf96d253de7369476b PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-binary-$(PKG_VERSION) diff --git a/linkease/files/linkease-config.sh b/linkease/files/linkease-config.sh index 993ccc562..5d993ae86 100755 --- a/linkease/files/linkease-config.sh +++ b/linkease/files/linkease-config.sh @@ -26,6 +26,24 @@ case "$1" in ;; + local_save) + if [ ! -z "$2" ]; then + uci set linkease.@linkease[0].local_home=$2 + uci commit + fi + ;; + + local_load) + data=`uci get linkease.@linkease[0].local_home` + + if [ -z "${data}" ]; then + echo "nil" + else + echo "${data}" + fi + + ;; + status) echo "TODO" ;; diff --git a/linkease/files/linkease.config b/linkease/files/linkease.config index 2e67edca1..a4534adbf 100644 --- a/linkease/files/linkease.config +++ b/linkease/files/linkease.config @@ -1,4 +1,5 @@ config linkease option 'port' '8897' option 'preconfig' '' + option 'local_home' '' option 'enabled' '1' diff --git a/linkease/files/linkease.init b/linkease/files/linkease.init index 244d5ea0e..f673720a8 100755 --- a/linkease/files/linkease.init +++ b/linkease/files/linkease.init @@ -17,7 +17,7 @@ start_service() { procd_open_instance procd_set_param limits nofile="65535 65535" procd_set_param command /usr/sbin/linkease - [ -n "$port" ] && procd_append_param command --deviceAddr ":$port" + [ -n "$port" ] && procd_append_param command --deviceAddr ":$port" --localApi /var/run/linkease.sock [ "$logger" == 1 ] && procd_set_param stderr 1 procd_set_param respawn procd_close_instance diff --git a/luci-app-alist/luasrc/view/alist/alist_status.htm b/luci-app-alist/luasrc/view/alist/alist_status.htm index fc11c2245..6be654eae 100644 --- a/luci-app-alist/luasrc/view/alist/alist_status.htm +++ b/luci-app-alist/luasrc/view/alist/alist_status.htm @@ -17,7 +17,7 @@ { if (st.running) { - tb.innerHTML = 'Alist <%:RUNNING%>' + " \" onclick=\"window.open('<%=protocol%>" + window.location.hostname + ":" + st.port + "/')\"/>"; + tb.innerHTML = 'Alist <%:RUNNING%>' + " \" onclick=\"window.open('<%=protocol%>" + window.location.hostname + ":" + st.port + "/')\"/>"; } else { diff --git a/luci-app-amlogic/Makefile b/luci-app-amlogic/Makefile index 9afdf680f..1072a1052 100644 --- a/luci-app-amlogic/Makefile +++ b/luci-app-amlogic/Makefile @@ -16,7 +16,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=luci-app-amlogic -PKG_VERSION:=3.1.127 +PKG_VERSION:=3.1.128 PKG_RELEASE:=1 PKG_LICENSE:=GPL-2.0 License diff --git a/luci-app-amlogic/root/usr/sbin/openwrt-install-amlogic b/luci-app-amlogic/root/usr/sbin/openwrt-install-amlogic index d5fc5c553..67620abae 100755 --- a/luci-app-amlogic/root/usr/sbin/openwrt-install-amlogic +++ b/luci-app-amlogic/root/usr/sbin/openwrt-install-amlogic @@ -320,12 +320,18 @@ elif [[ "${AMLOGIC_SOC}" == "s905x" ]]; then BLANK2=0 BLANK3=0 BLANK4=0 -elif [[ "${AMLOGIC_SOC}" == "s905x3" ]] && [[ "${FDTFILE}" == "meson-sm1-skyworth-lb2004-a4091.dtb" ]];then +elif [[ "${AMLOGIC_SOC}" == "s905x3" ]] && [[ "${FDTFILE}" == "meson-sm1-skyworth-lb2004-a4091.dtb" ]]; then BOOT=768 BLANK1=68 BLANK2=202 BLANK3=0 BLANK4=0 +elif [[ "${AMLOGIC_SOC}" == "s905l3a" ]]; then + BOOT=512 + BLANK1=108 + BLANK2=778 + BLANK3=0 + BLANK4=0 else BOOT=160 BLANK1=68 diff --git a/luci-app-linkease/Makefile b/luci-app-linkease/Makefile index d689040d3..8978ef8e5 100644 --- a/luci-app-linkease/Makefile +++ b/luci-app-linkease/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI support for linkease LUCI_DEPENDS:=+linkease LUCI_PKGARCH:=all -PKG_VERSION:=2.1.1 +PKG_VERSION:=2.1.2 PKG_RELEASE:=2 include $(TOPDIR)/feeds/luci/luci.mk diff --git a/luci-app-linkease/luasrc/controller/linkease_backend.lua b/luci-app-linkease/luasrc/controller/linkease_backend.lua new file mode 100644 index 000000000..aa264e86e --- /dev/null +++ b/luci-app-linkease/luasrc/controller/linkease_backend.lua @@ -0,0 +1,183 @@ +-- Copyright 2022 xiaobao +-- Licensed to the public under the MIT License + +local http = require "luci.http" +local nixio = require "nixio" +local ltn12 = require "luci.ltn12" +local table = require "table" +local util = require "luci.util" + +module("luci.controller.linkease_backend", package.seeall) + +local BLOCKSIZE = 2048 +local LINKEASE_UNIX = "/var/run/linkease.sock" + +function index() + entry({"linkease"}, call("linkease_backend")).leaf=true +end + +local function sink_socket(sock, io_err) + if sock then + return function(chunk, err) + if not chunk then + return 1 + else + return sock:send(chunk) + end + end + else + return ltn12.sink.error(io_err or "unable to send socket") + end +end + +local function session_retrieve(sid, allowed_users) + local sdat = util.ubus("session", "get", { ubus_rpc_session = sid }) + if type(sdat) == "table" and + type(sdat.values) == "table" and + type(sdat.values.token) == "string" and + (not allowed_users or + util.contains(allowed_users, sdat.values.username)) + then + return sid, sdat.values + end + return nil, nil +end + +local function get_session(sid) + if sid then + return session_retrieve(sid, nil) + end + return nil, nil +end + +local function chunksource(sock, buffer) + buffer = buffer or "" + return function() + local output + local _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") + while not count and #buffer <= 1024 do + local newblock, code = sock:recv(1024 - #buffer) + if not newblock then + return nil, code + end + buffer = buffer .. newblock + _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") + end + count = tonumber(count, 16) + if not count then + return nil, -1, "invalid encoding" + elseif count == 0 then + return nil + elseif count + 2 <= #buffer - endp then + output = buffer:sub(endp+1, endp+count) + buffer = buffer:sub(endp+count+3) + return output + else + output = buffer:sub(endp+1, endp+count) + buffer = "" + if count - #output > 0 then + local remain, code = sock:recvall(count-#output) + if not remain then + return nil, code + end + output = output .. remain + count, code = sock:recvall(2) + else + count, code = sock:recvall(count+2-#buffer+endp) + end + if not count then + return nil, code + end + return output + end + end +end + +function linkease_backend() + local sock = nixio.socket("unix", "stream") + if sock:connect(LINKEASE_UNIX) ~= true then + http.status(500, "connect failed") + return + end + local input = {} + input[#input+1] = http.getenv("REQUEST_METHOD") .. " " .. http.getenv("REQUEST_URI") .. " HTTP/1.1" + local req = http.context.request + local start = "HTTP_" + local start_len = string.len(start) + local ctype = http.getenv("CONTENT_TYPE") + if ctype then + input[#input+1] = "Content-Type: " .. ctype + end + for k, v in pairs(req.message.env) do + if string.sub(k, 1, start_len) == start and not string.find(k, "FORWARDED") then + input[#input+1] = string.sub(k, start_len+1, string.len(k)) .. ": " .. v + end + end + local sid, sdat = get_session(http.getcookie("sysauth")) + if sdat == nil then + sid, sdat = get_session(http.getcookie('sysauth_%s' % { http.getenv("HTTPS") == "on" and "https" or "http" })) + end + if sdat ~= nil then + input[#input+1] = "X-Forwarded-Sid: " .. sid + input[#input+1] = "X-Forwarded-Token: " .. sdat.token + end + -- input[#input+1] = "X-Forwarded-For: " .. http.getenv("REMOTE_HOST") ..":".. http.getenv("REMOTE_PORT") + local num = tonumber(http.getenv("CONTENT_LENGTH")) or 0 + input[#input+1] = "Content-Length: " .. tostring(num) + input[#input+1] = "\r\n" + local source = ltn12.source.cat(ltn12.source.string(table.concat(input, "\r\n")), http.source()) + local ret = ltn12.pump.all(source, sink_socket(sock, "write sock error")) + if ret ~= 1 then + sock:close() + http.status(500, "proxy error") + return + end + + local linesrc = sock:linesource() + local line, code, error = linesrc() + if not line then + sock:close() + http.status(500, "response parse failed") + return + end + + local protocol, status, msg = line:match("^([%w./]+) ([0-9]+) (.*)") + if not protocol then + sock:close() + http.status(500, "response protocol error") + return + end + num = tonumber(status) or 0 + http.status(num, msg) + + local chunked = 0 + line = linesrc() + while line and line ~= "" do + local key, val = line:match("^([%w-]+)%s?:%s?(.*)") + if key and key ~= "Status" then + if key == "Transfer-Encoding" and val == "chunked" then + chunked = 1 + end + if key ~= "Connection" and key ~= "Transfer-Encoding" then + http.header(key, val) + end + end + line = linesrc() + end + if not line then + sock:close() + http.status(500, "parse header failed") + return + end + + local body_buffer = linesrc(true) + if chunked == 1 then + ltn12.pump.all(chunksource(sock, body_buffer), http.write) + else + local body_source = ltn12.source.cat(ltn12.source.string(body_buffer), sock:blocksource()) + ltn12.pump.all(body_source, http.write) + end + + sock:close() +end + diff --git a/luci-app-quickstart/Makefile b/luci-app-quickstart/Makefile index 2a73da88a..b628be135 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.5.7-2 +PKG_VERSION:=0.5.7-3 # PKG_RELEASE MUST be empty for luci.mk PKG_RELEASE:= diff --git a/luci-app-quickstart/luasrc/controller/istore_backend.lua b/luci-app-quickstart/luasrc/controller/istore_backend.lua index 33a2a5c3d..ae0e7ff3f 100644 --- a/luci-app-quickstart/luasrc/controller/istore_backend.lua +++ b/luci-app-quickstart/luasrc/controller/istore_backend.lua @@ -16,7 +16,7 @@ function index() entry({"istore"}, call("istore_backend")).leaf=true end -function sink_socket(sock, io_err) +local function sink_socket(sock, io_err) if sock then return function(chunk, err) if not chunk then @@ -50,6 +50,49 @@ local function get_session(sid) return nil, nil end +local function chunksource(sock, buffer) + buffer = buffer or "" + return function() + local output + local _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") + while not count and #buffer <= 1024 do + local newblock, code = sock:recv(1024 - #buffer) + if not newblock then + return nil, code + end + buffer = buffer .. newblock + _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") + end + count = tonumber(count, 16) + if not count then + return nil, -1, "invalid encoding" + elseif count == 0 then + return nil + elseif count + 2 <= #buffer - endp then + output = buffer:sub(endp+1, endp+count) + buffer = buffer:sub(endp+count+3) + return output + else + output = buffer:sub(endp+1, endp+count) + buffer = "" + if count - #output > 0 then + local remain, code = sock:recvall(count-#output) + if not remain then + return nil, code + end + output = output .. remain + count, code = sock:recvall(2) + else + count, code = sock:recvall(count+2-#buffer+endp) + end + if not count then + return nil, code + end + return output + end + end +end + function istore_backend() local sock = nixio.connect("127.0.0.1", ISTOREOS_PORT) if not sock then @@ -138,45 +181,3 @@ function istore_backend() sock:close() end -function chunksource(sock, buffer) - buffer = buffer or "" - return function() - local output - local _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") - while not count and #buffer <= 1024 do - local newblock, code = sock:recv(1024 - #buffer) - if not newblock then - return nil, code - end - buffer = buffer .. newblock - _, endp, count = buffer:find("^([0-9a-fA-F]+);?.-\r\n") - end - count = tonumber(count, 16) - if not count then - return nil, -1, "invalid encoding" - elseif count == 0 then - return nil - elseif count + 2 <= #buffer - endp then - output = buffer:sub(endp+1, endp+count) - buffer = buffer:sub(endp+count+3) - return output - else - output = buffer:sub(endp+1, endp+count) - buffer = "" - if count - #output > 0 then - local remain, code = sock:recvall(count-#output) - if not remain then - return nil, code - end - output = output .. remain - count, code = sock:recvall(2) - else - count, code = sock:recvall(count+2-#buffer+endp) - end - if not count then - return nil, code - end - return output - end - end -end diff --git a/luci-app-quickstart/root/www/luci-static/quickstart/index.js b/luci-app-quickstart/root/www/luci-static/quickstart/index.js index 8719b3da5..fa0ee5636 100644 --- a/luci-app-quickstart/root/www/luci-static/quickstart/index.js +++ b/luci-app-quickstart/root/www/luci-static/quickstart/index.js @@ -1,3 +1,3 @@ -var la=Object.defineProperty,pa=Object.defineProperties;var fa=Object.getOwnPropertyDescriptors;var Ie=Object.getOwnPropertySymbols;var ma=Object.prototype.hasOwnProperty,ba=Object.prototype.propertyIsEnumerable;var ge=(e,a,o)=>a in e?la(e,a,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[a]=o,K=(e,a)=>{for(var o in a||(a={}))ma.call(a,o)&&ge(e,o,a[o]);if(Ie)for(var o of Ie(a))ba.call(a,o)&&ge(e,o,a[o]);return e},ot=(e,a)=>pa(e,fa(a));var va=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports);var Ut=(e,a,o)=>(ge(e,typeof a!="symbol"?a+"":a,o),o);var A=(e,a,o)=>new Promise((n,s)=>{var b=c=>{try{p(o.next(c))}catch(u){s(u)}},m=c=>{try{p(o.throw(c))}catch(u){s(u)}},p=c=>c.done?n(c.value):Promise.resolve(c.value).then(b,m);p((o=o.apply(e,a)).next())});import{d as Ht,a as T,c as Z,u as F,o as i,b as r,e as t,t as k,n as Mt,f as D,r as ct,g as z,h as dt,i as St,j as M,w as q,k as zt,l as ga,m as y,p as Dt,q as jt,s as _a,v as ha,x as xa,y as ka,z as wa,A as ya,B as Fa,C as nt,T as ht,D as N,E as j,F as et,G as L,H as P,I as Q,J as G,K as W,L as Ca,M as it,N as kt,O as X,P as Ot,Q as bt,R as re,S as ke,U as Ea,V as $a,W as se,X as Re,Y as Da,Z as Ba,_ as Ya}from"./vendor.js?v=ecba491a";var _w=va(xe=>{const Aa=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 b of s)if(b.type==="childList")for(const m of b.addedNodes)m.tagName==="LINK"&&m.rel==="modulepreload"&&n(m)}).observe(document,{childList:!0,subtree:!0});function o(s){const b={};return s.integrity&&(b.integrity=s.integrity),s.referrerpolicy&&(b.referrerPolicy=s.referrerpolicy),s.crossorigin==="use-credentials"?b.credentials="include":s.crossorigin==="anonymous"?b.credentials="omit":b.credentials="same-origin",b}function n(s){if(s.ep)return;s.ep=!0;const b=o(s);fetch(s.href,b)}};Aa();const Sa=(e,a)=>A(xe,null,function*(){return new Promise((o,n)=>A(xe,null,function*(){try{const s=yield fetch(e,a);if(Math.floor(s.status/100)!=2)throw s.status+" "+s.statusText;const b=K({},s);b.data=yield s.json(),o(b)}catch(s){n(s)}}))});class we{constructor(a){Ut(this,"config",{baseURL:"",headers:{}});Ut(this,"useRequest",a=>a);Ut(this,"useResponse",a=>a);Ut(this,"useError",a=>a);a.baseURL&&(this.config.baseURL=a.baseURL),a.headers&&(this.config.headers=a.headers)}static create(a){return new we(a)}Do(a,o){return A(this,null,function*(){return new Promise((n,s)=>A(this,null,function*(){try{const b=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${b.baseURL||""}${a}`,o.headers==null&&(o.headers={}),b.headers&&(o.headers=K({},b.headers));const p=yield fetch(a,o),c=K({},p);c.data=yield p.json(),n(this.useResponse(c))}catch(b){this.useError(b),s(b)}}))})}TEXT(a,o){return A(this,null,function*(){return new Promise((n,s)=>A(this,null,function*(){try{const b=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${b.baseURL||""}${a}`,o.headers==null&&(o.headers={}),b.headers&&(o.headers=K({},b.headers));const p=yield fetch(a,o),c=K({},p);c.data=yield p.text(),n(c)}catch(b){this.useError(b),s(b)}}))})}interceptors(){const a=this;return{requset:{use(o){a.useRequest=o}},response:{use(o,n){a.useResponse=o,n&&(a.useError=n)}}}}}const Ge=we.create({});Ge.interceptors().requset.use(e=>e);Ge.interceptors().response.use(e=>(e.data&&e.data.success==null&&e.data.success==0,e));const za="/cgi-bin/luci/istore";let Le=!1;const I=(e,a)=>(e.indexOf("//")==-1&&(e=`${za}${e}`),Sa(e,a).then(o=>(o!=null&&o.data&&o.data.success==-1001&&o.data.error=="Forbidden"&&(Le||(Le=!0,alert("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55"),location.reload())),o))),Pa={Statistics:{GET(){return I("/network/statistics/",{method:"GET"})}},Status:{GET(){return I("/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"}})}}},Ta={Version:{GET(){return I("/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"})}}},Ia={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("/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("/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("/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"}})}}},La={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)})}}},Ma={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"})}}},DownloadpPartition:{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("/guide/ddns/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetDdns:{GET(){return I("/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)})}}},Oa={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"})}}},Na={Log:{GET(){return I("/smart/log/",{method:"GET"})}},List:{GET(){return I("/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("/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 ja=Object.freeze(Object.defineProperty({__proto__:null,Network:Pa,System:Ta,Nas:Ia,App:La,Guide:Ma,Raid:Oa,Smart:Na},Symbol.toStringTag,{value:"Module"})),Y=K({},ja);const Ve=Ht("app",{state:()=>({portitemStyle:{show:!1,left:0,top:0,portitem:{name:"",macAddress:"",linkSpeed:"",linkState:"",rx_packets:"",tx_packets:"",interfaceNames:[],master:"",duplex:""}}})});Ht("guide",{});const Ue=Ht("nas",{state:()=>({webdav:{}})}),We=Ht("network",{state:()=>({status:{},statistics:{},deviceList:{}}),getters:{},actions:{updateNetworkStatus(e){this.status=e},requestNetworkStatistics(){return A(this,null,function*(){try{const e=yield Y.Network.Statistics.GET();e!=null&&e.data&&e.data.result&&(this.statistics=e.data.result)}catch(e){console.log(e)}})},requestDeviceList(){Y.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++}}}),ye=Ht("system",{state:()=>({version:{},checkUpdate:{},systemStatus:{}}),getters:{},actions:{incrTime(){var e;(e=this.systemStatus)!=null&&e.uptime&&this.systemStatus.uptime++},requestVersion(){Y.System.Version.GET().then(e=>{var a;(a=e==null?void 0:e.data)!=null&&a.result&&(this.version=e.data.result)})},requestCheckUpdate(){Y.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}}}),qa=()=>{let e=!0,a=!0;const o=We(),n=ye(),s=function(){return Y.System.Status.GET().then(m=>{m!=null&&m.data.result&&n.updateSystemStatus(m.data.result)}).then(()=>{setTimeout(s,5e3),e&&(setInterval(()=>{n.incrTime()},1e3),e=!1)})},b=function(){return Y.Network.Status.GET().then(m=>{if(m!=null&&m.data){const{result:p}=m==null?void 0:m.data;p&&o.updateNetworkStatus(p)}}).then(()=>{setTimeout(b,5e3),a&&(setInterval(()=>{o.incrTime()},1e3),a=!1)})};b(),o.requestDeviceList(),n.requestVersion(),s(),n.requestCheckUpdate()};var S=(e,a)=>{const o=e.__vccOpts||e;for(const[n,s]of a)o[n]=s;return o};const Ra=T({setup(e){const a=Ve(),o=Z(()=>a.portitemStyle.portitem),n=Z(()=>a.portitemStyle.show),s=Z(()=>({bottom:`calc(100% - ${a.portitemStyle.top}px)`,left:`${a.portitemStyle.left}px`})),b=c=>{switch(c){case"full":return"\u5168\u53CC\u5DE5";case"half":return"\u534A\u53CC\u5DE5"}},m=c=>{a.portitemStyle.show=!0},p=c=>{a.portitemStyle.show=!1};return(c,u)=>F(n)?(i(),r("div",{key:0,class:"disk-item-tooltip",style:Mt(F(s)),onMouseenter:m,onMouseleave:p},[t("div",null,k(b(F(o).duplex)),1),t("div",null,"\u540D\u79F0\uFF1A"+k(F(o).name||"--"),1),t("div",null,"MAC\uFF1A"+k(F(o).macAddress||"--"),1),t("div",null,"\u63A5\u6536\uFF1A"+k(F(o).rx_packets||"--"),1),t("div",null,"\u53D1\u9001\uFF1A"+k(F(o).tx_packets||"--"),1)],36)):D("",!0)}});var Ga=S(Ra,[["__scopeId","data-v-57f1326f"]]);const Va={id:"main"},Ua=T({setup(e){return(a,o)=>{const n=ct("router-view");return i(),r("div",Va,[z(n),z(Ga)])}}});var Wa=S(Ua,[["__scopeId","data-v-9bc295c2"]]);const Za={},Ha={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"},Ja=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),Ka=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),Xa=[Ja,Ka];function Qa(e,a){return i(),r("svg",Ha,Xa)}var to=S(Za,[["render",Qa]]);const eo={},ao={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"},oo=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),no=[oo];function io(e,a){return i(),r("svg",ao,no)}var ro=S(eo,[["render",io]]);const so={},co={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"},uo=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),lo=[uo];function po(e,a){return i(),r("svg",co,lo)}var fo=S(so,[["render",po]]);const mo={},bo={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"},vo=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),go=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),_o=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),ho=[vo,go,_o];function xo(e,a){return i(),r("svg",bo,ho)}var ko=S(mo,[["render",xo]]);const wo={},yo={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"},Fo=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),Co=[Fo];function Eo(e,a){return i(),r("svg",yo,Co)}var $o=S(wo,[["render",Eo]]);const Do={},Bo={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"},Yo=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),Ao=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),So=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),zo=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),Po=t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"80692"},null,-1),To=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),Io=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),Lo=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),Mo=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),Oo=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),No=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),jo=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),qo=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),Ro=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),Go=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),Vo=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),Uo=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),Wo=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),Zo=t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"80706"},null,-1),Ho=[Yo,Ao,So,zo,Po,To,Io,Lo,Mo,Oo,No,jo,qo,Ro,Go,Vo,Uo,Wo,Zo];function Jo(e,a){return i(),r("svg",Bo,Ho)}var Ko=S(Do,[["render",Jo]]);const Xo={},Qo={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"},tn=t("path",{d:"M894.185422 128.023792 129.814578 445.743994 445.99982 577.744353 571.860343 893.929596Z","p-id":"2997"},null,-1),en=[tn];function an(e,a){return i(),r("svg",Qo,en)}var on=S(Xo,[["render",an]]);const nn={class:"progress"},rn=T({props:{value:{type:Number,required:!0},text:{type:String}},setup(e){const a=e,o=Z(()=>a.value>=80?"#e45e5e":a.value>=70?"#ff9800":a.value>=60?"#297ff3":a.value>0?"#53c31b":"");return(n,s)=>(i(),r("div",nn,[t("div",{class:dt(["progress-value",`${e.value>50}`]),style:Mt({width:`${e.value}%`,backgroundColor:F(o)})},[t("span",null,k(e.text),1)],6),St(n.$slots,"default",{},void 0,!0)]))}});var Ze=S(rn,[["__scopeId","data-v-de8ae0e6"]]);const sn={},dn={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"},cn=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),un=[cn];function ln(e,a){return i(),r("svg",dn,un)}var pn=S(sn,[["render",ln]]);const fn={},mn={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"},bn=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),vn=[bn];function gn(e,a){return i(),r("svg",mn,vn)}var _n=S(fn,[["render",gn]]);const hn={};function xn(e,a){return i(),r("article",null,[St(e.$slots,"default",{},void 0,!0)])}var kn=S(hn,[["render",xn],["__scopeId","data-v-bd286d4e"]]);const wn={class:"cover"},yn={class:"thumbnail"},Fn=T({emits:["click"],setup(e,{emit:a}){const o=()=>{a("click")};return(n,s)=>(i(),M(kn,null,{default:q(()=>[t("a",{onClick:o},[t("div",wn,[t("div",yn,[St(n.$slots,"default",{},void 0,!0)])])])]),_:3}))}});var Cn=S(Fn,[["__scopeId","data-v-123deb20"]]);const En={t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},$n=T({props:{size:{type:Number,default:50},color:{type:String,default:"#fff"}},setup(e){return(a,o)=>(i(),r("div",{class:"loading",style:Mt({width:e.size+"px",height:e.size+"px"})},[(i(),r("svg",En,[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:Mt({fill:e.color})},null,4)]))],4))}});var Dn=S($n,[["__scopeId","data-v-0c4a2195"]]);const Bn={},Yn={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":""},An=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),Sn=[An];function zn(e,a){return i(),r("svg",Yn,Sn)}var Pn=S(Bn,[["render",zn]]);const Tn={},In={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"},Ln=zt('',1),Mn=[Ln];function On(e,a){return i(),r("svg",In,Mn)}var Nn=S(Tn,[["render",On]]),He={install:e=>{e.component("icon-loading",Dn),e.component("icon-success",Pn),e.component("icon-error",Nn)}};const jn=e=>{},qn=()=>new Date().getTime(),Rn=e=>{if(e<1e3)return`${e} B`;let o=1e3,n=0;for(let m=e/1e3;m>=1e3;m/=1e3)o*=1e3,n++;let s=[" KB"," MB"," GB"," TB"," PB"," EB"];return(e/100/(o/100)).toFixed(1)+s[n]},Gn=e=>{if(e<1024)return""+e+"KB";let o=1024,n=0;for(let b=e/1024;b>=1024;b/=1024)o*=1024,n++;let s=["M","G","T","P","E"];return(e/100/(o/100)).toFixed(2)+s[n]},Vn=e=>{if(e==null)return 0;if(e<1e4)return e;let o=parseInt(`${e/1e4}`),n=e%1e4;return`${o}\u4E07${n}`},Un=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(b){}return""},Wn=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"}},Zn=e=>/^\d+\.\d+\.\d+\.\d+$/.test(e),Hn=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";var Jn=Object.freeze(Object.defineProperty({__proto__:null,formatDate:jn,UnixDate:qn,byteToSize:Rn,numberToSize:Gn,numberToSum:Vn,dateForm:Un,stampForm:Wn,checkIsIP:Zn,checkSmabaUserName:Hn},Symbol.toStringTag,{value:"Module"})),Nt=K({},Jn);const Kn={class:"flow"},Xn={class:"flow-data"},Qn={key:0},ti={key:1},ei=T({setup(e){ga([_a,ha,xa,ka,wa,ya]);const a=y(),o=_=>{var h;const l=(h=a.value)==null?void 0:h[_];return!l||l.startTime==0?"":c(l.startTime*1e3)+"-"+c(l.endTime*1e3)},n=Z(()=>{var l;let _=[];return(l=a.value)==null||l.forEach(h=>{_.push({value:h.uploadSpeed})}),_}),s=Z(()=>{var l;let _=[];return(l=a.value)==null||l.forEach(h=>{_.push({value:h.downloadSpeed})}),_}),b=Z(()=>{var l;let _="";if(a.value){let h=((l=a.value)==null?void 0:l.length)||0;if(h>0){let g=a.value[h-1];_=u(g.uploadSpeed)+"/s"}}return _}),m=Z(()=>{var l;let _="";if(a.value){let h=((l=a.value)==null?void 0:l.length)||0;if(h>0){let g=a.value[h-1];_=u(g.downloadSpeed)+"/s"}}return _});Z(()=>{var l;let _=[];return(l=a.value)==null||l.forEach(h=>{_.push({value:h.downloadSpeed+h.uploadSpeed})}),_});const p=()=>A(this,null,function*(){var _;try{const l=yield Y.Network.Statistics.GET();if(l.data&&(_=l.data.result)!=null&&_.items){const h=l.data.result.slots||10;if(l.data.result.items.lengthh?a.value=l.data.result.items.slice(h-l.data.result.items.length):a.value=l.data.result.items}}catch(l){console.log(l)}}),c=Nt.dateForm,u=Nt.byteToSize,d=y();let v=null;const f=_=>(v=Fa(_,"dark"),v.setOption({animation:!1,backgroundColor:"transparent",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:l=>{if(Array.isArray(l)){let h="";l.length>0&&(h=o(l[0].axisValue));for(let g=0;g${l[g].seriesName}: ${u(l[g].value)}/s`;return h.toString()}else{const h=l;return`${o(h.axisValue)}
${h.seriesName}: ${u(h.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(l,h){return`${u(l)}/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}}),v);return Dt(()=>A(this,null,function*(){if(yield p(),d.value){const _=f(d.value);_.appendData;const l=d.value;_.resize({width:l.clientWidth,height:l.clientHeight}),window.addEventListener("resize",()=>{_.resize({width:l.clientWidth,height:l.clientHeight})});const h=()=>A(this,null,function*(){v!=null&&(yield p(),v!=null&&(_.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(h,5e3)))});setTimeout(h,5e3)}})),jt(()=>{v!=null&&(v.dispose(),v=null)}),(_,l)=>(i(),r("div",Kn,[t("div",{ref_key:"el",ref:d,class:"echart"},null,512),t("div",Xn,[F(b)?(i(),r("span",Qn,"\u4E0A\u4F20: "+k(F(b)),1)):D("",!0),F(m)?(i(),r("span",ti,"\u4E0B\u8F7D: "+k(F(m)),1)):D("",!0)])]))}});var ai=S(ei,[["__scopeId","data-v-7edad4d2"]]);const oi={},ni={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"},ii=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),ri=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),si=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),di=[ii,ri,si];function ci(e,a){return i(),r("svg",ni,di)}var $t=S(oi,[["render",ci]]);let ae=0;const ui={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,ae=window.setTimeout(e,1e3))};ae=window.setTimeout(e,1e3)}},computed:{Message(){return this.message+(this.countdown?" "+this.remain+"s":"")}},methods:{Stop(){this.type!="loading"&&(this.show=!1,ae!=0&&clearTimeout(ae),this.Close())}}},de=e=>(N("data-v-8ee37a62"),e=e(),j(),e),li={key:0,class:"loading icon"},pi=de(()=>t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",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)),fi=[pi],mi={key:1,class:"success icon"},bi=de(()=>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)),vi=[bi],gi={key:2,class:"error icon"},_i=de(()=>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)),hi=[_i],xi={key:3,class:"warning icon"},ki=de(()=>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)),wi=[ki];function yi(e,a,o,n,s,b){return i(),M(ht,{name:"el-fade-in-linear"},{default:q(()=>[s.show?(i(),r("div",{key:0,class:"toast",onClick:a[1]||(a[1]=m=>b.Stop())},[o.type=="loading"?(i(),r("div",li,fi)):o.type=="success"?(i(),r("div",mi,vi)):o.type=="error"?(i(),r("div",gi,hi)):o.type=="warning"?(i(),r("div",xi,wi)):D("",!0),t("div",{class:"message",onClick:a[0]||(a[0]=nt(()=>{},["stop"]))},k(b.Message),1)])):D("",!0)]),_:1})}var Fi=S(ui,[["render",yi],["__scopeId","data-v-8ee37a62"]]);const Zt=new Map,Pt=e=>{const a=et(Fi,ot(K({},e),{Close:()=>{n()}})),o=document.createElement("div");document.body.append(o),a.mount(o);const n=()=>{o.remove(),Zt.get(a._uid)&&Zt.delete(a._uid)};return e.type=="loading"&&Zt.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}},w=e=>Pt(e);w.Loading=(e,a)=>Pt({type:"loading",message:e||"\u52A0\u8F7D\u4E2D...",duration:0,countdown:a||0});w.Success=e=>Pt({type:"success",message:e});w.Error=e=>Pt({type:"error",message:e});w.Warning=e=>Pt({type:"warning",message:e});w.Message=e=>Pt({message:e});w.Message=e=>Pt({message:e});w.Clear=()=>{Zt.forEach((e,a)=>{e.Close(),Zt.delete(a)})};const Ci={},Ei={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"},$i=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),Di=[$i];function Bi(e,a){return i(),r("svg",Ei,Di)}var Yi=S(Ci,[["render",Bi]]);const Ai=e=>(N("data-v-428d873e"),e=e(),j(),e),Si={id:"actioner"},zi={key:0,class:"action-container"},Pi={class:"action-container_header"},Ti=Ai(()=>t("div",null,null,-1)),Ii={class:"title"},Li={class:"action-container_body"},Mi=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){const a=e,o=y(!1);Dt(()=>{o.value=!0,document.body.setAttribute("lock-scroll","true")}),jt(()=>{document.body.removeAttribute("lock-scroll")});const n=()=>{a.Close&&(o.value=!1,setTimeout(()=>{a.Close&&a.Close()},300))};return(s,b)=>(i(),r("div",Si,[t("div",{class:"bg",onClick:n}),e.type!=null?St(s.$slots,"default",{key:0},void 0,!0):(i(),r(L,{key:1},[o.value?(i(),r("div",zi,[t("div",Pi,[Ti,t("div",Ii,k(e.title),1),t("button",{class:"close",title:"\u5173\u95ED",onClick:n},[z(Yi)])]),t("div",Li,[St(s.$slots,"default",{},void 0,!0)])])):D("",!0)],64))]))}});var Oi=S(Mi,[["__scopeId","data-v-428d873e"]]);const at=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){return(a,o)=>(i(),M(Oi,{Close:e.Close,type:e.type,title:e.title},{default:q(()=>[St(a.$slots,"default")]),_:3},8,["Close","type","title"]))}}),wt=e=>(N("data-v-1e29e158"),e=e(),j(),e),Ni=["onSubmit"],ji=wt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),qi={class:"actioner-dns_body"},Ri={class:"label-item"},Gi=wt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u9009\u9879")],-1)),Vi={class:"label-item_value"},Ui=wt(()=>t("option",{value:"auto"},"\u4F7F\u7528\u8FD0\u8425\u5546\u63D0\u4F9B\u7684DNS",-1)),Wi=wt(()=>t("option",{value:"manual"},"\u81EA\u5B9A\u4E49DNS",-1)),Zi=[Ui,Wi],Hi={class:"label-item"},Ji=wt(()=>t("div",{class:"label-item_key"},"DNS\u670D\u52A1\u5668\u5730\u5740",-1)),Ki={class:"label-item_value"},Xi=["onUpdate:modelValue"],Qi={class:"label-item"},tr=wt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u670D\u52A1\u5668\u5730\u5740")],-1)),er={class:"label-item_value"},ar={class:"label-item"},or=wt(()=>t("div",{class:"label-item_key"},"\u5907\u7528DNS\u670D\u52A1\u5668\u5730\u5740",-1)),nr={class:"label-item_value"},ir={key:1,class:"label-message"},rr={class:"actioner-dns_footer"},sr=["disabled"],dr={key:1,class:"actioner-dns"},cr=wt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),ur=wt(()=>t("div",{class:"actioner-dns_body"},[t("div",{class:"config-message"},"DNS\u914D\u7F6E\u5DF2\u4FDD\u5B58")],-1)),lr=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y({interfaceName:"",dnsProto:"auto",manualDnsIp:[]}),s=y(""),b=y(""),m=y(""),p=y(!1);(()=>A(this,null,function*(){var f;p.value=!0;try{const _=yield Y.Guide.DnsConfig.GET();(f=_==null?void 0:_.data)!=null&&f.result&&(n.value=_.data.result)}catch(_){m.value=_}p.value=!1}))();const u=()=>A(this,null,function*(){m.value="";let f={};switch(n.value.dnsProto){case"auto":break;case"manual":f.manualDnsIp=[],n.value.manualDnsIp!=null&&n.value.manualDnsIp.length>0?f.manualDnsIp=n.value.manualDnsIp:(f.manualDnsIp.push(s.value),b.value&&f.manualDnsIp.push(b.value));break}f.dnsProto=n.value.dnsProto,f.interfaceName=n.value.interfaceName;const _=w.Loading("\u914D\u7F6E\u4E2D...");try{const l=yield Y.Guide.DnsConfig.POST(f);if(l!=null&&l.data){const{success:h,error:g}=l==null?void 0:l.data;g&&(m.value=g),(h==null||h==0)&&(w.Success("\u914D\u7F6E\u6210\u529F"),o.value=1)}}catch(l){m.value=l}_.Close()}),d=f=>{f.preventDefault(),a.Close&&a.Close()},v=f=>{location.reload()};return(f,_)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(u,["prevent"])},[ji,t("div",qi,[t("div",Ri,[Gi,t("div",Vi,[P(t("select",{"onUpdate:modelValue":_[0]||(_[0]=l=>n.value.dnsProto=l)},Zi,512),[[Q,n.value.dnsProto]])])]),n.value.dnsProto=="manual"?(i(),r(L,{key:0},[n.value.manualDnsIp!=null&&n.value.manualDnsIp.length>0?(i(!0),r(L,{key:0},G(n.value.manualDnsIp,(l,h)=>(i(),r("div",Hi,[Ji,t("div",Ki,[P(t("input",{type:"text",placeholder:"\u8BF7\u8F93\u5165DNS\u5730\u5740","onUpdate:modelValue":g=>n.value.manualDnsIp[h]=g},null,8,Xi),[[W,n.value.manualDnsIp[h],void 0,{trim:!0}]])])]))),256)):(i(),r(L,{key:1},[t("div",Qi,[tr,t("div",er,[P(t("input",{type:"text",placeholder:"\u8BF7\u8F93\u5165DNS\u5730\u5740",required:"","onUpdate:modelValue":_[1]||(_[1]=l=>s.value=l)},null,512),[[W,s.value,void 0,{trim:!0}]])])]),t("div",ar,[or,t("div",nr,[P(t("input",{type:"text",placeholder:"\u5907\u7528DNS\u5730\u5740","onUpdate:modelValue":_[2]||(_[2]=l=>b.value=l)},null,512),[[W,b.value,void 0,{trim:!0}]])])])],64))],64)):D("",!0),m.value?(i(),r("div",ir,k(m.value),1)):D("",!0)]),t("div",rr,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:p.value},"\u786E\u8BA4",8,sr),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u53D6\u6D88")])],40,Ni)):o.value==1?(i(),r("div",dr,[cr,ur,t("div",{class:"actioner-dns_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:v},"\u5B8C\u6210")])])):D("",!0)]),_:1},8,["Close"]))}});var pr=S(lr,[["__scopeId","data-v-1e29e158"]]);const Je=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=et(pr,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},Fe=e=>(N("data-v-39248365"),e=e(),j(),e),fr=Fe(()=>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)),mr={class:"app-container_status-label_text"},br=Fe(()=>t("div",{class:"text_status"},"\u5DF2\u65AD\u5F00",-1)),vr={class:"text_info"},gr=Fe(()=>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)),_r={class:"app-container_status-label_text"},hr={class:"text_info"},xr=T({props:{item:{type:Object,required:!0},transform:{type:Number,default:0}},setup(e){const a=e,o=Ve(),n=y(null),s=m=>{const p=m.target,{left:c,top:u}=p.getBoundingClientRect();o.portitemStyle.show=!0,o.portitemStyle.left=c,o.portitemStyle.top=u,o.portitemStyle.portitem=a.item},b=m=>{o.portitemStyle.show=!1};return(m,p)=>(i(),r("div",{class:"app-container_status-label_bg",style:Mt(`transform: translateX(${e.transform}px);`),ref_key:"el",ref:n,onMouseenter:s,onMouseleave:b},[e.item.linkState=="DOWN"?(i(),r(L,{key:0},[fr,t("div",mr,[br,t("div",vr,k(e.item.name)+" "+k(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64)):(i(),r(L,{key:1},[gr,t("div",_r,[t("div",null,k(e.item.linkSpeed),1),t("div",hr,k(e.item.name)+" "+k(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64))],36))}});var Ke=S(xr,[["__scopeId","data-v-39248365"]]);const Xe=e=>(N("data-v-3470ca08"),e=e(),j(),e),kr=Xe(()=>t("span",null,k("<"),-1)),wr=[kr],yr=Xe(()=>t("span",null,k(">"),-1)),Fr=[yr],Cr=T({props:{portList:{type:Array,required:!0}},setup(e){const a=y(),o=y(0),n=y(0),s=y(0),b=y(!1),m=()=>{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 Dt(()=>{Ca(()=>{a.value&&(o.value=a.value.scrollWidth,n.value=a.value.clientWidth,b.value=o.value>n.value)})}),(c,u)=>(i(),r("div",{class:"app-interfaces",ref_key:"el",ref:a},[b.value?(i(),r(L,{key:0},[t("a",{class:"btn-f",onClick:m},wr),t("a",{class:"btn-r",onClick:p},Fr)],64)):D("",!0),(i(!0),r(L,null,G(e.portList,(d,v)=>(i(),M(Ke,{item:d,transform:s.value},null,8,["item","transform"]))),256))],512))}});var Er=S(Cr,[["__scopeId","data-v-3470ca08"]]);const $r={},Dr={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"},Br=zt('icon_finished',2),Yr=[Br];function Ar(e,a){return i(),r("svg",Dr,Yr)}var Ce=S($r,[["render",Ar]]);const qt=e=>(N("data-v-252d5ec7"),e=e(),j(),e),Sr=["onSubmit"],zr=qt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),Pr={class:"actioner-dns_body"},Tr={class:"label-item"},Ir=qt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5F53\u524D\u8F6F\u4EF6\u6E90")],-1)),Lr={class:"label-item_value"},Mr={class:"item_info"},Or={class:"label-item"},Nr=qt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5207\u6362\u8F6F\u4EF6\u6E90")],-1)),jr={class:"label-item_value"},qr=qt(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u8F6F\u4EF6\u6E90",-1)),Rr=["value"],Gr={class:"actioner-dns_footer"},Vr=["disabled"],Ur={key:1,class:"actioner-dns"},Wr=qt(()=>t("div",{class:"actioner-dns_header"},[t("span",{class:"softsource_tit"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),Zr={class:"actioner-dns_body"},Hr={class:"finished"},Jr=qt(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),Kr=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y(""),s=y(),b=y();(()=>{Y.Guide.SoftSourceList.GET().then(d=>{var v,f;if((v=d==null?void 0:d.data)!=null&&v.result){const _=(f=d==null?void 0:d.data)==null?void 0:f.result;b.value=_}}).then(()=>Y.Guide.GetSoftSource.GET()).then(d=>{var v,f;if((v=d==null?void 0:d.data)!=null&&v.result){const _=d.data.result;s.value=_.softSource,(f=b.value)!=null&&f.softSourceList.find(l=>l.identity==_.softSource.identity)&&(n.value=_.softSource.identity)}})})();const p=d=>{d.preventDefault(),a.Close&&a.Close()},c=d=>{const v=w.Loading("\u6B63\u5728\u5207\u6362\u4E2D...");Y.Guide.SoftSource.POST({softSourceIdentity:n.value}).then(f=>{if(f!=null&&f.data){if((f.data.success||0)==0){o.value=1;return}else if(f.data.error)throw f.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(f=>{w.Error(f)}).finally(()=>v.Close())},u=d=>{d.preventDefault(),location.reload()};return(d,v)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>{var f,_;return[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(c,["prevent"])},[zr,t("div",Pr,[t("div",Tr,[Ir,t("div",Lr,[t("p",Mr,k((f=s.value)==null?void 0:f.name),1)])]),t("div",Or,[Nr,t("div",jr,[P(t("select",{name:"",id:"","onUpdate:modelValue":v[0]||(v[0]=l=>n.value=l)},[qr,(i(!0),r(L,null,G((_=b.value)==null?void 0:_.softSourceList,(l,h)=>(i(),r("option",{value:l.identity,key:h},k(l.name),9,Rr))),128))],512),[[Q,n.value,void 0,{trim:!0}]])])])]),t("div",Gr,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:n.value==""},"\u786E\u8BA4",8,Vr),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:p},"\u53D6\u6D88")])],40,Sr)):D("",!0),o.value==1?(i(),r("form",Ur,[Wr,t("div",Zr,[t("div",Hr,[z(Ce)]),Jr,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply softsource_successed",onClick:u},"\u786E\u5B9A")])])])):D("",!0)]}),_:1},8,["Close"]))}});var Xr=S(Kr,[["__scopeId","data-v-252d5ec7"]]);const Qe=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=et(Xr,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},rt=e=>(N("data-v-58cb1f32"),e=e(),j(),e),Qr={class:"app-container_status-label"},ts={class:"app-container_status-label_item"},es={class:"app-container_status-container",style:{height:"100%"}},as={key:0,class:"app-container_status-container_body"},os=rt(()=>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)),ns={class:"app-container_status-info"},is=rt(()=>t("span",{class:"container_success"},"\u5DF2\u8FDE\u63A5\u4E92\u8054\u7F51",-1)),rs={class:"container_time"},ss={key:1,class:"app-container_status-container_body"},ds=rt(()=>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)),cs={class:"app-container_status-info"},us=rt(()=>t("span",{class:"container_failure"},"DNS\u9519\u8BEF",-1)),ls={class:"container_time"},ps={key:2,class:"app-container_status-container_body"},fs=rt(()=>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)),ms={class:"app-container_status-info"},bs=rt(()=>t("span",{class:"container_failure"},"\u8F6F\u4EF6\u6E90\u9519\u8BEF",-1)),vs={class:"container_time"},gs={key:3,class:"app-container_status-container_body"},_s=rt(()=>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)),hs={class:"app-container_status-info"},xs=rt(()=>t("span",{class:"container_failure"},"\u672A\u8FDE\u63A5\u4E92\u8054\u7F51",-1)),ks={class:"container_time"},ws={key:4,class:"app-container_status-container_body"},ys=rt(()=>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)),Fs=rt(()=>t("div",{class:"app-container_status-info"},[t("span",{class:"container_failure"},"\u68C0\u6D4B\u4E2D...")],-1)),Cs=[ys,Fs],Es={class:"app-container_status-label_item"},$s={class:"app-container_status-container",style:{height:"100%"}},Ds={class:"more_icon",title:"\u67E5\u770B\u8BBE\u5907\u4FE1\u606F"},Bs={class:"DeviceBlock"},Ys=rt(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/status/routes"},"\u8BBE\u5907\u8DEF\u7531")],-1)),As={class:"app-container_status-container_body"},Ss=rt(()=>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)),zs={class:"app-container_status-info"},Ps={class:"container_content"},Ts=rt(()=>t("span",{class:"devise"},"\u5DF2\u8FDE\u63A5\u8BBE\u5907",-1)),Is=rt(()=>t("em",null,null,-1)),Ls={class:"app-container_status-container"},Ms={class:"more_icon",title:"\u67E5\u770B\u8BBE\u5907\u4FE1\u606F"},Os={class:"DeviceBlock"},Ns=rt(()=>t("ul",null,[t("li",null,[t("a",{href:"/cgi-bin/luci/admin/nas/raid"},"\u5185\u7F51\u6D4B\u901F")])],-1)),js={class:"app-container_title"},qs={class:"app-container_status-label_block"},Rs={class:"app-container_status-label_block"},Gs={class:"app-container_title"},Vs={class:"app-container_status-label_block"},Us=rt(()=>t("em",null,null,-1)),Ws={class:"app-container_status-container"},Zs={class:"app-container_title"},Hs=rt(()=>t("span",null,"\u7F51\u7EDC\u63A5\u53E3\u72B6\u6001",-1)),Js={class:"more_icon",title:"\u67E5\u770B\u7F51\u7EDC\u63A5\u53E3\u4FE1\u606F"},Ks={class:"DeviceBlock"},Xs=X("\u7F51\u53E3\u914D\u7F6E"),Qs={class:"app-container_body"},t0=T({props:{homebox:{type:Object}},setup(e){const a=()=>{Je()},o=()=>{Qe()},n=We(),s=Z(()=>n.status),b=Z(()=>n.deviceList),m=y(!1),p=y(!1),c=y(!1),u=y(!1),d=it({portList:[],load:!1}),v=B=>{switch(B){case"pppoe":return"\u62E8\u53F7\u4E0A\u7F51";case"static":return"\u9759\u6001\u7F51\u7EDC";case"dhcp":return"DHCP"}},f=B=>{switch(B){case"manual":return"\u624B\u52A8\u914D\u7F6E";case"auto":return"\u81EA\u52A8\u83B7\u53D6";default:return""}},_=()=>{Y.Network.PortList.GET().then(B=>{if(B!=null&&B.data){const{result:O}=B==null?void 0:B.data;O&&(d.portList=O.ports||[])}}).finally(()=>{d.load=!0,l()})},l=()=>{setTimeout(()=>{_()},1e4)};_();const h=Nt.stampForm,g=()=>{m.value=!m.value},x=()=>{c.value=!c.value},C=()=>{u.value=!u.value},E=()=>{x(),g(),(()=>A(this,null,function*(){p.value=!0;let O=w.Loading("");try{const H=yield Y.App.Check.POST({name:"app-meta-nlbwmon"});if(O.Close(),H!=null&&H.data){const{result:J,error:V}=H.data;if(V&&w.Warning(V),J){if(J.status=="installed")location.href="/cgi-bin/luci/admin/services/nlbw";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5\u5E26\u5BBD\u76D1\u63A7\u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){O=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const R=yield $("app-meta-nlbwmon");O.Close(),R?(w.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/services/nlbw"):w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(H){w.Error(H)}O.Close(),p.value=!1}))()},$=B=>A(this,null,function*(){return Y.App.Install.POST({name:B}).then(()=>{}),new Promise((O,H)=>A(this,null,function*(){let J=0;const V=setInterval(()=>A(this,null,function*(){if(J>20){clearInterval(V),H(!1);return}const R=yield Y.App.Check.POST({name:B});if(R!=null&&R.data){const{result:U}=R.data;if((U==null?void 0:U.status)=="installed"){clearInterval(V),O(!0);return}}J++}),3e3)}))});return(B,O)=>{var J,V;const H=ct("router-link");return i(),r(L,null,[t("div",Qr,[t("div",ts,[t("div",es,[F(s)!=null?(i(),r(L,{key:0},[F(s).networkInfo=="netSuccess"?(i(),r("div",as,[os,t("div",ns,[is,t("span",rs,k(F(h)(F(s).uptimeStamp)),1)])])):F(s).networkInfo=="dnsFailed"?(i(),r("div",ss,[ds,t("div",cs,[us,t("span",ls,k(F(h)(F(s).uptimeStamp)),1),t("div",{onClick:a,class:"container_configure"},"DNS\u914D\u7F6E")])])):F(s).networkInfo=="softSourceFailed"?(i(),r("div",ps,[fs,t("div",ms,[bs,t("span",vs,k(F(h)(F(s).uptimeStamp)),1),t("div",{onClick:o,class:"container_configure"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")])])):F(s).networkInfo=="netFailed"?(i(),r("div",gs,[_s,t("div",hs,[xs,t("span",ks,k(F(h)(F(s).uptimeStamp)),1)])])):(i(),r("div",ws,Cs))],64)):D("",!0)])]),t("div",Es,[t("div",$s,[t("span",Ds,[z($t,{onClick:g})]),P(t("div",Bs,[t("div",{class:"menu_background",onClick:g}),t("ul",null,[Ys,t("li",null,[t("a",{onClick:E},"\u5E26\u5BBD\u76D1\u63A7")])])],512),[[kt,m.value]]),t("div",As,[Ss,t("div",zs,[t("span",Ps,k(((V=(J=F(b))==null?void 0:J.devices)==null?void 0:V.length)||0),1),Ts])])])])]),Is,t("div",Ls,[t("span",Ms,[z($t,{onClick:x})]),P(t("div",Os,[t("div",{class:"menu_background",onClick:x}),Ns],512),[[kt,c.value]]),t("div",js,[t("span",null,"IP\u5730\u5740\uFF08"+k(F(s).defaultInterface)+"\uFF09",1)]),t("div",qs,[t("span",null," IPv4\uFF1A "+k(F(s).ipv4addr)+" \uFF08"+k(v(F(s).proto||""))+"\uFF09 ",1)]),t("div",Rs,[t("span",null,"IPv6\uFF1A"+k(F(s).ipv6addr),1)]),t("div",Gs,[t("span",null,"DNS\uFF08"+k(f(F(s).dnsProto))+"\uFF09",1)]),(i(!0),r(L,null,G(F(s).dnsList,R=>(i(),r("div",Vs,[t("span",null,k(R),1)]))),256))]),Us,t("div",Ws,[t("div",Zs,[Hs,t("span",Js,[z($t,{onClick:C})]),P(t("div",Ks,[t("div",{class:"menu_background",onClick:C}),t("ul",null,[t("li",null,[z(H,{to:"/interfaceconfig"},{default:q(()=>[Xs]),_:1})])])],512),[[kt,u.value]])]),t("div",Qs,[F(d).load?(i(),M(Er,{key:0,portList:F(d).portList},null,8,["portList"])):D("",!0)])])],64)}}});var e0=S(t0,[["__scopeId","data-v-58cb1f32"]]);const a0={class:"network-container"},o0={class:"network-container_flow"},n0={class:"network-container_flow-container"},i0={class:"network-container_status"},r0=T({setup(e){return(a,o)=>(i(),r("div",a0,[t("div",o0,[t("div",n0,[z(ai,{style:{height:"460px"}})])]),t("div",i0,[z(e0)])]))}});var s0=S(r0,[["__scopeId","data-v-78a4e41a"]]);const d0={},c0={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"},u0=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),l0=[u0];function p0(e,a){return i(),r("svg",c0,l0)}var _t=S(d0,[["render",p0]]);const f0={},m0={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"},b0=zt('\u5206\u533A\u4FE1\u606F',2),v0=[b0];function g0(e,a){return i(),r("svg",m0,v0)}var Me=S(f0,[["render",g0]]);const _0={},h0={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"},x0=zt('\u5168\u76D8\u683C\u5F0F\u5316',2),k0=[x0];function w0(e,a){return i(),r("svg",h0,k0)}var y0=S(_0,[["render",w0]]);const Bt=e=>(N("data-v-7e52eb3f"),e=e(),j(),e),F0=["onSubmit"],C0=Bt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u786C\u76D8\u914D\u7F6E")],-1)),E0={class:"action-body"},$0={class:"disk-info"},D0=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)),B0={key:0,class:"disk-info_mount-name"},Y0={key:1,class:"disk-info_mount-name"},A0={key:0,class:"label-item"},S0=Bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),z0={class:"label-item_path"},P0={class:"label-item"},T0=Bt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u683C\u5F0F\u5316\u9009\u9879")],-1)),I0={class:"label-item_value"},L0=["disabled"],M0={key:0,value:""},O0=Bt(()=>t("option",{value:"format"},"\u683C\u5F0F\u5316",-1)),N0={key:1,value:"default"},j0={class:"label-item_value"},q0={key:0,class:"msg"},R0={key:1,class:"msg"},G0={class:"action-footer"},V0=Bt(()=>t("div",{class:"auto"},null,-1)),U0=["disabled"],W0=["disabled"],Z0={key:1,class:"action result"},H0={class:"action-body"},J0=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)),K0=Bt(()=>t("div",{class:"action-body_msg"},"\u683C\u5F0F\u5316\u6210\u529F",-1)),X0={key:0,class:"action-body_info"},Q0={key:1,class:"action-body_info"},td=X(" \u5DF2\u7ECF\u6210\u529F\u521D\u59CB\u5316\u5206\u533A "),ed={class:"btns"},ad=T({props:{action:String,disk:{type:Object},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()},b=y(!1),m=y(0),p=x=>{m.value=x},c=y(a.action=="nas"?"":"format"),u=y(),d=y(),v=()=>{switch(c.value){case"format":_();return;case"default":f();return;default:w.Warning("\u8BF7\u9009\u62E9\u9009\u7EBF");return}},f=()=>{let x="";const C=a.mount;if(C!=null&&C.mountPoint!=null&&(x=C.mountPoint),x!=""){s(x);return}w.Warning("\u65E0\u6CD5\u8BC6\u522B\u8DEF\u5F84")},_=()=>{const x=a.disk,C=a.mount;if(C){const E=C.mountPoint||C.path;if(!confirm(`\u8B66\u544A\uFF1A\u683C\u5F0F\u5316\u4F1A\u6E05\u7A7A ${E} \u5206\u533A\u6570\u636E\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C`)||!confirm(`\u662F\u5426\u786E\u5B9A\u683C\u5F0F\u5316 ${E}?`))return;h(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;l(x);return}w.Error("\u65E0\u6CD5\u8BC6\u522B\u6570\u636E")},l=x=>A(this,null,function*(){if(x.name==null||x.path==""){w.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u540D\u79F0");return}if(x.path==null||x.path==""){w.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u8DEF\u5F84");return}b.value=!0;const C=w.Loading("\u521D\u59CB\u5316\u4E2D...");try{const E=yield Y.Nas.Disk.Init.POST({name:x.name,path:x.path});if(E!=null&&E.data){const{result:$,error:B}=E==null?void 0:E.data;B&&w.Warning(B),$&&($.errorInfo?w.Warning($.errorInfo):(w.Success("\u521D\u59CB\u5316\u6210\u529F"),$.childrens&&$.childrens.length>0&&(d.value=$.childrens[0]),u.value=$,p(1)))}}catch(E){w.Error(E)}C.Close(),b.value=!1}),h=x=>A(this,null,function*(){if(x.path==null||x.path==""){w.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}b.value=!0;const C=w.Loading("\u683C\u5F0F\u5316\u4E2D...");try{const E=yield Y.Nas.Disk.Partition.Format.POST({path:x.path,uuid:x.uuid,mountPoint:x.mountPoint});if(E!=null&&E.data){const{result:$,error:B}=E==null?void 0:E.data;B&&w.Warning(B),$&&(w.Success("\u683C\u5F0F\u5316\u6210\u529F"),d.value=$,p(1))}}catch(E){w.Error(E)}C.Close(),b.value=!1}),g=()=>{if(d.value&&d.value.mountPoint){s(d.value.mountPoint);return}w.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")};return(x,C)=>(i(),M(at,{type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>{var E;return[m.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:nt(v,["prevent"])},[C0,t("div",E0,[t("div",$0,[D0,e.mount?(i(),r("div",B0,[t("span",null,"\u3010"+k(e.mount.total)+"\u3011",1),t("span",null,k(e.mount.mountPoint||e.mount.path),1)])):e.disk?(i(),r("div",Y0,[t("span",null,"\u3010"+k(e.disk.size)+"\u3011",1),t("span",null,k(e.disk.venderModel),1)])):D("",!0)]),e.mount?(i(),r("div",A0,[S0,t("div",z0,k(e.mount.mountPoint||e.mount.path)+"\uFF08"+k(e.mount.total)+"\uFF09",1)])):D("",!0),t("div",P0,[T0,t("div",I0,[P(t("select",{"onUpdate:modelValue":C[0]||(C[0]=$=>c.value=$),required:"",disabled:e.action=="disk"},[e.mount!=null?(i(),r("option",M0,"\u8BF7\u9009\u62E9\u9009\u9879")):D("",!0),O0,e.mount!=null?(i(),r("option",N0,"\u4E0D\u683C\u5F0F\u5316,\u4F7F\u7528\u539F\u6587\u4EF6\u7CFB\u7EDF")):D("",!0)],8,L0),[[Q,c.value]])]),t("div",j0,[c.value=="format"?(i(),r("p",q0,"\u683C\u5F0F\u5316\u4E3AEXT4\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u4F20\u8F93\u901F\u5EA6\u66F4\u5FEB")):c.value=="default"?(i(),r("p",R0)):D("",!0)])])]),t("div",G0,[V0,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:b.value},"\u8FD4\u56DE",8,U0),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:b.value},"\u4E0B\u4E00\u6B65",8,W0)])],40,F0)):m.value==1?(i(),r("div",Z0,[t("div",H0,[J0,K0,u.value?(i(),r("div",X0,[X(" \u5DF2\u7ECF\u6210\u529F\u683C\u5F0F\u5316\u78C1\u76D8 "+k(u.value.venderModel)+" \u5E76\u6302\u8F7D\u5230 ",1),t("a",null,k((E=d.value)==null?void 0:E.mountPoint),1)])):D("",!0),d.value?(i(),r("div",Q0,[td,t("a",null,k(d.value.mountPoint),1)])):D("",!0),t("div",ed,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:g},k(e.action=="nas"?"\u4E0B\u4E00\u6B65":"\u5B8C\u6210"),1)])])])):D("",!0)]}),_:1})]),_:1}))}});var od=S(ad,[["__scopeId","data-v-7e52eb3f"]]),Ee=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(od,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Tt=e=>(N("data-v-3fc7bda2"),e=e(),j(),e),nd=["onSubmit"],id=Tt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"})],-1)),rd={class:"action-body"},sd={class:"disk-info"},dd=Tt(()=>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)),cd={key:0,class:"disk-info_mount-name"},ud={key:1,class:"disk-info_mount-name"},ld={key:0,class:"label-item"},pd=Tt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),fd={class:"label-item_path"},md={class:"label-item"},bd=Tt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u6302\u8F7D\u70B9")],-1)),vd={class:"label-item_value"},gd=["value"],_d={class:"action-footer"},hd=Tt(()=>t("div",{class:"auto"},null,-1)),xd=["disabled"],kd=["disabled"],wd={key:1,class:"action result"},yd={class:"action-body"},Fd=Tt(()=>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)),Cd=Tt(()=>t("div",{class:"action-body_msg"},"\u6302\u8F7D\u6210\u529F",-1)),Ed={key:0,class:"action-body_info"},$d={class:"btns"},Dd=T({props:{action:String,disk:{type:Object},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){var _;const a=e,o=()=>{a.Close&&a.Close()},n=l=>{l.preventDefault(),a.Cancel&&a.Cancel(),o()},s=l=>{a.Next&&a.Next(l),o()},b=y(!1),m=y(0),p=y("/mnt/data_"+((_=a==null?void 0:a.mount)==null?void 0:_.name)),c=l=>{m.value=l};y(a.mount?"":"format"),y();const u=y(),d=()=>A(this,null,function*(){const l=a.mount;if(l==null){w.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A");return}if(l.path==null||l.path==""){w.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}if(l.uuid==null||l.uuid==""){w.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533AID");return}b.value=!0;const h=w.Loading("\u6302\u8F7D\u4E2D...");try{const g=yield Y.Nas.Disk.Partition.Mount.POST({path:l.path,uuid:l.uuid,mountPoint:p.value});if(g!=null&&g.data){const{result:x,error:C}=g==null?void 0:g.data;C&&w.Warning(C),x&&(w.Success("\u6302\u8F7D\u6210\u529F"),u.value=x,c(1))}}catch(g){w.Error(g)}h.Close(),b.value=!1}),v=()=>{if(u.value&&u.value.mountPoint){s(u.value.mountPoint);return}w.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")},f=()=>{};return(l,h)=>(i(),M(at,{type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>{var g,x;return[m.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:nt(f,["prevent"])},[id,t("div",rd,[t("div",sd,[dd,e.mount?(i(),r("div",cd,[t("span",null,"\u3010"+k(e.mount.total)+"\u3011",1),t("span",null,k(e.mount.mountPoint),1)])):e.disk?(i(),r("div",ud,[t("span",null,"\u3010"+k(e.disk.size)+"\u3011",1),t("span",null,k(e.disk.venderModel),1)])):D("",!0)]),e.mount?(i(),r("div",ld,[pd,t("div",fd,k(e.mount.path)+"\uFF08"+k(e.mount.total)+"\uFF0C"+k((x=(g=e.mount)==null?void 0:g.filesystem)==null?void 0:x.toUpperCase())+"\uFF09",1)])):D("",!0),t("div",md,[bd,t("div",vd,[t("input",{type:"text",value:p.value},null,8,gd)])])]),t("div",_d,[hd,t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:b.value,onClick:d},"\u786E\u5B9A",8,xd),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:b.value},"\u8FD4\u56DE",8,kd)])],40,nd)):m.value==1?(i(),r("div",wd,[t("div",yd,[Fd,Cd,u.value?(i(),r("div",Ed,[X(" \u5DF2\u6210\u529F\u5C06\u5206\u533A "+k(u.value.path)+" \u6302\u8F7D\u5230 ",1),t("a",null,k(u.value.mountPoint),1)])):D("",!0),t("div",$d,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:v},k(e.action=="nas"?"\u5B8C\u6210":"\u4E0B\u4E00\u6B65"),1)])])])):D("",!0)]}),_:1})]),_:1}))}});var Bd=S(Dd,[["__scopeId","data-v-3fc7bda2"]]),ta=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(Bd,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const ea=e=>(N("data-v-6f3ddc5a"),e=e(),j(),e),Yd={class:"disk-content"},Ad={class:"disk-item"},Sd={class:"disk-item_name"},zd={class:"disk_value"},Pd={key:0,class:"disk-item_value"},Td={class:"value-data"},Id={key:1,class:"disk-item_value"},Ld={key:0,class:"disk_status"},Md={class:"disk_status_item"},Od={key:0,class:"tooltip-trigger disk_tip"},Nd=ea(()=>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)),jd={class:"disk_status_item"},qd={key:0,class:"tooltip-trigger disk_tip"},Rd=ea(()=>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)),Gd=T({props:{part:{type:Object,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=Z(()=>a.part.filesystem=="No FileSystem"),n=Z(()=>o.value||!a.disk.isSystemRoot&&(a.part.isReadOnly||a.part.filesystem=="ntfs")&&a.part.mountPoint),s=function(){Ee({action:"disk",disk:a.disk,mount:a.part,Cancel:()=>{},Next:c=>{location.reload()}})},b=()=>{ta({action:"nas",disk:a.disk,mount:a.part,Cancel:()=>{},Next:()=>{location.reload()}})},m=()=>A(this,null,function*(){const c=w.Loading("\u5904\u7406\u4E2D...");try{const u=yield Y.Nas.Disk.InitRest.POST({name:a.disk.name,path:a.disk.path});if(u!=null&&u.data){const{result:d,error:v}=u==null?void 0:u.data;v&&w.Warning(v),d&&(w.Success("\u6302\u8F7D\u6210\u529F"),location.reload())}}catch(u){w.Error(u)}c.Close()}),p=Z(()=>a.part.filesystem=="Free Space");return(c,u)=>{var v;const d=ct("progress-item");return i(),r("div",Yd,[t("li",Ad,[t("div",Sd,[t("span",null,k(e.part.mountPoint||(F(p)?e.part.name:(F(o)?"\u672A\u683C\u5F0F\u5316\uFF08":"\u672A\u6302\u8F7D\uFF08")+e.part.name+"\uFF09")),1)]),t("div",zd,[e.part.mountPoint||F(p)?(i(),r("div",Pd,[t("div",Td,[z(d,{value:F(p)||!e.part.usage?0:e.part.usage,text:F(p)?"\u672A\u5206\u533A\uFF08"+e.part.total+"\uFF09":e.part.used+"/"+e.part.total,style:{backgroundColor:"#767676"}},null,8,["value","text"])])])):F(o)?D("",!0):(i(),r("div",Id,[t("div",{class:"value-data",onClick:b},"\u624B\u52A8\u6302\u8F7D")])),F(p)?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:m},"\u5206\u533A\u5E76\u683C\u5F0F\u5316")):F(n)?(i(),r("button",{key:3,class:"cbi-button cbi-button-apply",onClick:s},"\u683C\u5F0F\u5316\u5206\u533A")):D("",!0)])]),e.part.mountPoint?(i(),r("li",Ld,[t("div",Md,[t("div",null,"\u78C1\u76D8\u8BFB\u5199\u72B6\u6001\uFF1A"+k(e.part.isReadOnly?"\u53EA\u8BFB":"\u8BFB\u5199"),1),!e.part.isSystemRoot&&e.part.isReadOnly?(i(),r("div",Od,[z(_t),Nd])):D("",!0)]),t("div",jd,[t("div",null,"\u78C1\u76D8\u683C\u5F0F\uFF1A"+k((v=e.part.filesystem)==null?void 0:v.toUpperCase()),1),e.part.filesystem=="ntfs"?(i(),r("div",qd,[z(_t),Rd])):D("",!0)])])):D("",!0)])}}});var Vd=S(Gd,[["__scopeId","data-v-6f3ddc5a"]]);const $e=e=>(N("data-v-4688e946"),e=e(),j(),e),Ud={key:0,class:"action"},Wd=$e(()=>t("h2",{class:"title"},"\u5206\u533A\u4FE1\u606F",-1)),Zd=$e(()=>t("div",{class:"app-container_info"},[t("span",null,"\u6302\u8F7D\u70B9"),t("span",null,"\u5BB9\u91CF")],-1)),Hd={class:"app-container_body"},Jd=$e(()=>t("div",{class:"auto"},null,-1)),Kd=T({props:{disk:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){const a=e,o=y(0),n=()=>{a.Close&&a.Close()},s=b=>{b.preventDefault(),a.Cancel&&a.Cancel(),n()};return(b,m)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>[o.value==0?(i(),r("div",Ud,[Wd,t("ul",null,[t("li",null,[Zd,t("div",Hd,[e.disk?(i(!0),r(L,{key:0},G(e.disk.childrens,(p,c)=>(i(),M(Vd,{key:c,part:p,disk:e.disk},null,8,["part","disk"]))),128)):D("",!0)])])]),t("div",{class:"action-footer"},[Jd,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button"},"\u8FD4\u56DE")])])):D("",!0)]),_:1})]),_:1},8,["Close"]))}});var Xd=S(Kd,[["__scopeId","data-v-4688e946"]]),Qd=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(Xd,ot(K({},e),{Close:()=>{n()}}));o.component("progress-item",Ze),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const ce=e=>(N("data-v-1c6dcf68"),e=e(),j(),e),t1={key:0,class:"disk-item error"},e1=["title"],a1={class:"disk-item_value"},o1={class:"value-data"},n1={class:"error"},i1={key:1,class:"disk-item"},r1=["title"],s1={key:0,class:"disk_value"},d1=ce(()=>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)),c1=[d1],u1={key:1,class:"disk_value"},l1={class:"disk-item_value"},p1={class:"value-data"},f1=ce(()=>t("div",{class:"disk-item-tooltip"},[t("span",null,"\u4EC5\u7EDF\u8BA1\u5DF2\u6302\u8F7D\u5206\u533A")],-1)),m1={class:"disk_icon"},b1={key:0,class:"tooltip-trigger"},v1={class:"disk_tip"},g1=ce(()=>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)),_1={key:1,class:"tooltip-trigger"},h1={class:"disk_tip"},x1=ce(()=>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)),k1={key:2,class:"disk-item load"},w1=["title"],y1={class:"disk_value"},F1={class:"disk-item_value"},C1={class:"value-data"},E1={key:3,class:"disk-item load"},$1=["title"],D1={class:"disk_value"},B1={key:0,class:"disk-item_value"},Y1={class:"value-data"},A1={key:1,class:"disk-item_value"},S1={class:"value-data"},z1={class:"disk_icon"},P1=T({props:{disk:{type:Object,required:!0},smartWarning:{type:Boolean}},setup(e){const a=e,o=Z(()=>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=Z(()=>{const p=a.disk;let c=p.name;return p.size&&(c+=`\u3010${p.size}\u3011`),p.venderModel&&(c+=`(${p.venderModel})`),c}),s=()=>{Ee({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},b=()=>{Qd({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},m=()=>{const p=a.disk,c=p.childrens||[];ta({action:"nas",disk:p,mount:c[0],Cancel:()=>{},Next:()=>{location.reload()}})};return(p,c)=>{var d,v,f,_,l;const u=ct("progress-item");return F(o)=="error"?(i(),r("li",t1,[t("div",{class:"disk-item_name",title:F(n)},[t("span",null,k(F(n)),1)],8,e1),t("div",a1,[t("div",o1,[t("span",n1,k(e.disk.errorInfo),1)])])])):F(o)=="success"?(i(),r("li",i1,[t("div",{class:"disk-item_name",title:F(n)},[t("span",null,k(F(n)),1)],8,r1),e.disk.smartWarning&&e.smartWarning?(i(),r("div",s1,c1)):(i(),r("div",u1,[t("div",l1,[t("div",p1,[z(u,{value:e.disk.usage||0,text:`${e.disk.used}/${e.disk.total}`,style:{backgroundColor:"#767676"}},null,8,["value","text"])]),f1]),t("div",m1,[e.disk.isDockerRoot&&e.disk.isSystemRoot&&e.disk.usage&&e.disk.usage>=90?(i(),r("span",b1,[t("span",v1,[z(_t)]),g1])):D("",!0),!e.disk.isSystemRoot&&(((d=e.disk.childrens)==null?void 0:d.filter(h=>h.isReadOnly||h.filesystem=="ntfs").length)||0)>0?(i(),r("span",_1,[t("span",h1,[z(_t)]),x1])):D("",!0),!e.disk.isSystemRoot&&(((v=e.disk.childrens)==null?void 0:v.filter(h=>h.isReadOnly||h.filesystem=="ntfs").length)||0)>0?(i(),r("span",{key:2,class:"disk_infoicon",onClick:c[0]||(c[0]=h=>s())},[z(y0)])):D("",!0),t("span",{class:"disk_infoicon",onClick:c[1]||(c[1]=h=>b())},[z(Me)])])]))])):F(o)=="load"?(i(),r("li",k1,[t("div",{class:"disk-item_name",title:F(n)},[t("span",null,k(F(n)),1)],8,w1),t("div",y1,[t("div",F1,[t("div",C1,[t("button",{onClick:c[2]||(c[2]=h=>s())},"\u683C\u5F0F\u5316\u5E76\u6302\u8F7D")])])])])):F(o)=="unmounted"?(i(),r("li",E1,[t("div",{class:"disk-item_name",title:F(n)},[t("span",null,k(F(n)),1)],8,$1),t("div",D1,[((f=e.disk.childrens)==null?void 0:f.length)==1?(i(),r("div",B1,[t("div",Y1,[t("button",{onClick:c[3]||(c[3]=h=>m())},"\u624B\u52A8\u6302\u8F7D")])])):D("",!0),(((_=e.disk.childrens)==null?void 0:_.length)||0)>1?(i(),r("div",A1,[t("div",S1,[t("button",{onClick:c[4]||(c[4]=h=>b())},"\u624B\u52A8\u6302\u8F7D")])])):D("",!0),t("div",z1,[(((l=e.disk.childrens)==null?void 0:l.length)||0)>1?(i(),r("span",{key:0,class:"disk_infoicon",onClick:c[5]||(c[5]=h=>b())},[z(Me)])):D("",!0)])])])):D("",!0)}}});var _e=S(P1,[["__scopeId","data-v-1c6dcf68"]]);const Rt=e=>(N("data-v-7d76bdb3"),e=e(),j(),e),T1={class:"app-container"},I1={class:"app-container_title"},L1=Rt(()=>t("span",{class:"disk_info"},"\u78C1\u76D8\u4FE1\u606F",-1)),M1={class:"more_icon",title:"\u67E5\u770B\u78C1\u76D8\u7BA1\u7406\u4FE1\u606F"},O1={class:"DeviceBlock"},N1=Rt(()=>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)),j1={key:0},q1=Rt(()=>t("div",{class:"disk_loading_icon"},[t("div",{class:"loading icon"},[t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",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"})])]),t("span",{class:"disk_loading_info"},"\u6B63\u5728\u83B7\u53D6\u78C1\u76D8\u4FE1\u606F...")],-1)),R1=[q1],G1={key:1},V1=Rt(()=>t("div",{class:"app-container_info"},[t("span",null,"\u7CFB\u7EDF\u6839\u76EE\u5F55")],-1)),U1={class:"app-container_body"},W1={key:2},Z1=Rt(()=>t("div",{class:"app-container_info"},[t("span",null,"\u5DF2\u6302\u8F7D\u78C1\u76D8")],-1)),H1={class:"app-container_body"},J1={key:3},K1=Rt(()=>t("div",{class:"app-container_info"},[t("span",null,"RAID\u8BBE\u5907")],-1)),X1={class:"app-container_body"},Q1=T({setup(e){const a=y(!1),o=it({disks:[],raidList:[]}),n=()=>{Y.Nas.Disk.Status.GET().then(m=>{var p;if((p=m==null?void 0:m.data)!=null&&p.result){const c=m.data.result;o.disks=c.disks||[]}})};(()=>A(this,null,function*(){try{const m=yield Y.Raid.List.GET();if(m!=null&&m.data){const{success:p,error:c,result:u}=m.data;if(u&&(o.raidList=u.disks||[]),c)throw c}}catch(m){console.log(m)}}))(),n();const b=()=>{a.value=!a.value};return(m,p)=>{var c,u;return i(),r("div",T1,[t("ul",null,[t("li",null,[t("div",I1,[L1,t("span",M1,[z($t,{onClick:b})]),P(t("div",O1,[t("div",{class:"menu_background",onClick:b}),N1],512),[[kt,a.value]])])]),F(o).disks?D("",!0):(i(),r("li",j1,R1)),F(o).disks?(i(),r("li",G1,[V1,t("div",U1,[(i(!0),r(L,null,G((c=F(o).disks)==null?void 0:c.filter(d=>d.isSystemRoot),(d,v)=>(i(),M(_e,{key:v,disk:d},null,8,["disk"]))),128))])])):D("",!0),F(o).disks?(i(),r("li",W1,[Z1,t("div",H1,[(i(!0),r(L,null,G((u=F(o).disks)==null?void 0:u.filter(d=>!d.isSystemRoot),(d,v)=>(i(),M(_e,{key:v,disk:d,smartWarning:!0},null,8,["disk"]))),128))])])):D("",!0),F(o).raidList.length>0?(i(),r("li",J1,[K1,t("div",X1,[(i(!0),r(L,null,G(F(o).raidList,(d,v)=>(i(),M(_e,{key:v,disk:d},null,8,["disk"]))),128))])])):D("",!0)])])}}});var tc=S(Q1,[["__scopeId","data-v-7d76bdb3"]]);const aa=e=>(N("data-v-2e74c162"),e=e(),j(),e),ec={class:"app-container_samba"},ac={key:0,class:"sambas-item"},oc=aa(()=>t("div",{class:"sambas-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),nc={class:"sambas-item_value"},ic=aa(()=>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)),rc={class:"samba-item"},sc={class:"samba-item_name"},dc=["title"],cc=T({props:{sambas:{type:Array}},setup(e){const a=window.location.hostname;return(o,n)=>{var s;return i(),r("ul",ec,[e.sambas?(i(),r("li",ac,[oc,t("div",nc,[t("span",null,k((s=e.sambas)!=null&&s.length?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])])):D("",!0),ic,(i(!0),r(L,null,G(e.sambas,b=>(i(),r("li",rc,[t("div",sc,[t("span",null,"smb://"+k(F(a))+"/"+k(b.shareName),1)]),t("div",{class:"samba-item_value",title:b.path},[t("span",null,k(b.path),1)],8,dc)]))),256))])}}});var uc=S(cc,[["__scopeId","data-v-2e74c162"]]);const ue=e=>(N("data-v-47e88ce2"),e=e(),j(),e),lc={class:"webdav-item"},pc=ue(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),fc={class:"webdav-item_value"},mc={key:0,class:"webdav-item"},bc=ue(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u6302\u8F7D\u8DEF\u5F84:")],-1)),vc={class:"webdav-item_value"},gc={key:1,class:"webdav-item"},_c=ue(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u670D\u52A1\u8DEF\u5F84:")],-1)),hc={class:"webdav-item_value"},xc=["href"],kc={key:2,class:"webdav-item"},wc=ue(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u8D26\u53F7:")],-1)),yc={class:"webdav-item_value"},Fc=T({props:{webdav:{type:Object}},setup(e){const a=e,o=Z(()=>{var n;return`http://${location.hostname}:${(n=a.webdav)==null?void 0:n.port}`});return(n,s)=>{var b,m,p,c,u,d;return i(),r(L,null,[t("li",lc,[pc,t("div",fc,[t("span",null,k((b=e.webdav)!=null&&b.path?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])]),(m=e.webdav)!=null&&m.path?(i(),r("li",mc,[bc,t("div",vc,[t("span",null,k((p=e.webdav)==null?void 0:p.path),1)])])):D("",!0),(c=e.webdav)!=null&&c.port?(i(),r("li",gc,[_c,t("div",hc,[t("a",{href:F(o),target:"_blank",rel:"noopener noreferrer"},k(F(o)),9,xc)])])):D("",!0),(u=e.webdav)!=null&&u.username?(i(),r("li",kc,[wc,t("div",yc,[t("span",null,k((d=e.webdav)==null?void 0:d.username),1)])])):D("",!0)],64)}}});var Cc=S(Fc,[["__scopeId","data-v-47e88ce2"]]);const De=e=>(N("data-v-4a3b6e0a"),e=e(),j(),e),Ec={class:"disk-item"},$c=De(()=>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)),Dc={class:"disk-item_f"},Bc={class:"disk-item_venderModel"},Yc={class:"disk-item_used"},Ac=De(()=>t("div",{class:"auto"},null,-1)),Sc={class:"disk-item-r"},zc={class:"disk-children"},Pc=["onClick"],Tc=De(()=>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)),Ic={key:0},Lc={key:1},Mc=T({props:{disk:{type:Object,required:!0},currDisk:{type:Object},currMountPoint:{type:Object},onDisk:{type:Function,required:!0}},setup(e){var s,b;const a=e,o=y(!1);a.currDisk!=null&&((s=a.currDisk)==null?void 0:s.venderModel)==((b=a.disk)==null?void 0:b.venderModel)&&(o.value=!0);const n=m=>{o.value=!o.value,a.onDisk(m,null)};return(m,p)=>{var c;return i(),r("ul",Ec,[t("li",{class:dt(["disk-info",{on:e.disk.venderModel==((c=e.currDisk)==null?void 0:c.venderModel),nopoint:e.disk.childrens==null||e.disk.childrens.length==0}]),onClick:p[0]||(p[0]=u=>n(e.disk))},[$c,t("div",Dc,[t("div",Bc,k(e.disk.venderModel),1),t("div",Yc,k(e.disk.used)+"/"+k(e.disk.size),1)]),Ac,t("div",Sc,k(e.disk.path),1)],2),P(t("div",zc,[(i(!0),r(L,null,G(e.disk.childrens,u=>{var d,v;return i(),r("li",{class:dt(["disk-children_item",{on:u.uuid==((d=e.currMountPoint)==null?void 0:d.uuid)&&u.path==((v=e.currMountPoint)==null?void 0:v.path)}]),onClick:f=>e.onDisk(e.disk,u)},[Tc,u.mountPoint?(i(),r("span",Ic," \u3010"+k(u.filesystem)+"\u3011 "+k(u.mountPoint)+" \uFF08"+k(u.used)+"/"+k(u.total)+"\uFF09 ["+k(u.uuid)+"] ",1)):(i(),r("span",Lc," \u3010"+k(u.filesystem)+"\u3011 "+k(u.mountPoint||u.path||"\u672A\u6302\u8F7D\u78C1\u76D8")+" ["+k(u.uuid)+"] ",1))],10,Pc)}),256))],512),[[kt,o.value]])])}}});var Oe=S(Mc,[["__scopeId","data-v-4a3b6e0a"]]);const Be=e=>(N("data-v-a31fbfcc"),e=e(),j(),e),Oc={class:"action list"},Nc=Be(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u8BF7\u9009\u62E9\u4E00\u4E2A\u786C\u76D8\u6216\u5206\u533A")],-1)),jc={class:"action-body"},qc={class:"disk-list"},Rc=Be(()=>t("div",{class:"action-msg"},[t("span",null,[X(" \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)),Gc=Be(()=>t("div",{class:"auto"},null,-1)),Vc=T({props:{Cancel:{type:Function},Next:{type:Function},Close:{type:Function}},setup(e){const a=e,o=y(!0),n=it({disks:[],raids:[]});(()=>A(this,null,function*(){const f=yield Promise.all([Y.Nas.Disk.Status.GET(),Y.Raid.List.GET()]);try{if(f[0]){const _=f[0];_!=null&&_.data.result&&(n.disks=(_==null?void 0:_.data.result.disks)||[])}if(f[1]){const _=f[1];_.data.result&&(n.raids=_.data.result.disks||[])}}catch(_){w.Error(`${_}`)}}))();const b=y(),m=y(),p=(f,_)=>{b.value=f,m.value=_},c=()=>{a.Close&&a.Close()},u=()=>{a.Cancel&&a.Cancel(),c()},d=f=>{a.Next&&a.Next(f),c()},v=()=>{if(b.value==null){w.Warning("\u8BF7\u9009\u62E9\u76EE\u6807\u786C\u76D8");return}if(b.value.childrens!=null&&b.value.childrens.length>0&&m.value==null){w.Warning("\u8BF7\u9009\u62E9\u786C\u76D8\u5206\u533A");return}if(m.value!=null&&(m.value.mountPoint==null||m.value.mountPoint=="")){w.Warning("\u8BE5\u5206\u533A\u5C1A\u672A\u6302\u8F7D\uFF0C\u8BF7\u5148\u53BB\u6302\u8F7D");return}o.value=!1,Ee({action:"nas",disk:b.value,mount:m.value,Cancel:()=>{o.value=!0},Next:f=>{d(f)}})};return(f,_)=>o.value?(i(),M(at,{key:0,type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>[t("div",Oc,[Nc,t("div",jc,[t("div",qc,[(i(!0),r(L,null,G(F(n).disks,l=>(i(),M(Oe,{disk:l,onDisk:p,currDisk:b.value,currMountPoint:m.value},null,8,["disk","currDisk","currMountPoint"]))),256)),(i(!0),r(L,null,G(F(n).raids,l=>(i(),M(Oe,{disk:l,onDisk:p,currDisk:b.value,currMountPoint:m.value},null,8,["disk","currDisk","currMountPoint"]))),256))])]),Rc,t("div",{class:"action-footer"},[Gc,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:u,type:"button"},"\u8FD4\u56DE"),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:v,type:"button"},"\u4E0B\u4E00\u6B65")])])]),_:1})]),_:1})):D("",!0)}});var Uc=S(Vc,[["__scopeId","data-v-a31fbfcc"]]),Wc=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(Uc,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const le=e=>(N("data-v-530e728c"),e=e(),j(),e),Zc={class:"action"},Hc={class:"action-body"},Jc=le(()=>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)),Kc=le(()=>t("h2",{class:"title"},"\u670D\u52A1\u5DF2\u542F\u52A8",-1)),Xc={class:"info"},Qc=le(()=>t("span",null,"\u524D\u5F80",-1)),tu=["href"],eu=le(()=>t("span",null,"\u914D\u7F6E",-1)),au=T({props:{Close:Function},setup(e){const a=e,o=y(""),n=Z(()=>`http://${location.hostname}:${o.value}`);(()=>{Y.Nas.Linkease.Enable.POST().then(m=>{var p,c;(p=m==null?void 0:m.data)!=null&&p.result&&(o.value=((c=m.data.result)==null?void 0:c.port)||"")})})();const b=()=>{a.Close&&a.Close(),location.reload()};return(m,p)=>(i(),M(at,{type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>[t("div",Zc,[t("div",Hc,[Jc,Kc,t("div",Xc,[Qc,t("a",{href:F(n),target:"_blank",rel:"noopener noreferrer"},k(F(n)),9,tu),eu]),t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:b},"\u5173\u95ED")])])])]),_:1})]),_:1}))}});var ou=S(au,[["__scopeId","data-v-530e728c"]]),nu=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(ou,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Jt=e=>(N("data-v-30ef6ccb"),e=e(),j(),e),iu=["onSubmit"],ru=Jt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Webdav\u5171\u4EAB\u914D\u7F6E")],-1)),su={class:"action-body"},du={class:"label-item"},cu=Jt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),uu={class:"label-item_value"},lu=["value"],pu={class:"label-item"},fu=Jt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),mu={class:"label-item_value"},bu={class:"label-item"},vu=Jt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),gu={class:"label-item_value"},_u={class:"action-footer"},hu=Jt(()=>t("div",{class:"auto"},null,-1)),xu=["disabled"],ku=["disabled"],wu=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=c=>{c.preventDefault(),a.Close&&a.Close()},n=y(!1),s=y({username:"root",password:"",rootPath:a.rootPath});(()=>A(this,null,function*(){const c=w.Loading("\u52A0\u8F7D\u4E2D...");n.value=!0;try{const u=yield Y.Nas.Webdav.Status.GET();if(u!=null&&u.data){const{result:d,error:v}=u.data;if(v){w.Warning(v);return}d&&(d.username&&(s.value.username=d.username),d.password&&(s.value.password=d.password))}}catch(u){w.Error(u)}n.value=!1,c.Close()}))();const m=()=>{const c=s.value;if(c.rootPath==""){w.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(c.username==""){w.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(c.password==""){w.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}p(c)},p=c=>A(this,null,function*(){n.value=!0;const u=w.Loading("\u521B\u5EFA\u4E2D...");try{const d=yield Y.Nas.Webdav.Create.POST(c);if(d!=null&&d.data){const{error:v,result:f}=d.data;v&&w.Warning(v),f&&(w.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(d){w.Error(d)}u.Close(),n.value=!1});return(c,u)=>(i(),M(at,{type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>[t("form",{class:"action",onSubmit:nt(m,["prevent"])},[ru,t("div",su,[t("div",du,[cu,t("div",uu,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,lu)])]),t("div",pu,[fu,t("div",mu,[P(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":u[0]||(u[0]=d=>s.value.username=d)},null,512),[[W,s.value.username,void 0,{trim:!0}]])])]),t("div",bu,[vu,t("div",gu,[P(t("input",{type:"password","onUpdate:modelValue":u[1]||(u[1]=d=>s.value.password=d)},null,512),[[W,s.value.password,void 0,{trim:!0}]])])])]),t("div",_u,[hu,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,xu),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,ku)])],40,iu)]),_:1})]),_:1}))}});var yu=S(wu,[["__scopeId","data-v-30ef6ccb"]]),Fu=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(yu,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Yt=e=>(N("data-v-3ef9e48f"),e=e(),j(),e),Cu=["onSubmit"],Eu=Yt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Samba\u5171\u4EAB\u914D\u7F6E")],-1)),$u={class:"action-body"},Du={class:"label-item"},Bu=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),Yu={class:"label-item_value"},Au=["value"],Su={class:"label-item"},zu=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5171\u4EAB\u540D\uFF08\u5EFA\u8BAE\u4F7F\u7528\u82F1\u6587\u5B57\u6BCD\uFF09")],-1)),Pu={class:"label-item_value"},Tu={class:"label-item"},Iu=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),Lu={class:"label-item_value"},Mu={class:"label-item"},Ou=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),Nu={class:"label-item_value"},ju={class:"samba-item"},qu={class:"samba-item_allow"},Ru=Yt(()=>t("label",{for:"allow",class:"samba-allow"},"\u5141\u8BB8\u65E7\u534F\u8BAE\u4E0E\u8EAB\u4EFD\u9A8C\u8BC1(\u4E0D\u5B89\u5168)",-1)),Gu={class:"samba-item_tips"},Vu={class:"tooltip-trigger"},Uu={class:"samba_tip"},Wu=Yt(()=>t("span",{class:"samba_dir_tip"},"\u517C\u5BB9\u4E00\u4E9B\u7535\u89C6\u6216\u8005\u7535\u89C6\u76D2\u5B50",-1)),Zu={class:"action-footer"},Hu=Yt(()=>t("div",{class:"auto"},null,-1)),Ju=["disabled"],Ku=["disabled"],Xu=T({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}),b=()=>{const p=s.value;if(p.rootPath==""){w.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.shareName==""){w.Warning("\u5171\u4EAB\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.username==""){w.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.password==""){w.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}const c=Nt.checkSmabaUserName(p.username);if(c!==!0){w.Warning(`${c}`);return}m(p)},m=p=>A(this,null,function*(){n.value=!0;const c=w.Loading("\u521B\u5EFA\u4E2D...");try{const u=yield Y.Nas.Samba.Create.POST(p);if(u!=null&&u.data){const{error:d,result:v}=u.data;d&&w.Warning(d),v&&(w.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(u){w.Error(u)}c.Close(),n.value=!1});return(p,c)=>(i(),M(at,{type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>[t("form",{class:"action",onSubmit:nt(b,["prevent"])},[Eu,t("div",$u,[t("div",Du,[Bu,t("div",Yu,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,Au)])]),t("div",Su,[zu,t("div",Pu,[P(t("input",{type:"text","onUpdate:modelValue":c[0]||(c[0]=u=>s.value.shareName=u),required:"",placeholder:"\u5171\u4EAB\u540D\u79F0"},null,512),[[W,s.value.shareName,void 0,{trim:!0}]])])]),t("div",Tu,[Iu,t("div",Lu,[P(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":c[1]||(c[1]=u=>s.value.username=u)},null,512),[[W,s.value.username,void 0,{trim:!0}]])])]),t("div",Mu,[Ou,t("div",Nu,[P(t("input",{type:"password","onUpdate:modelValue":c[2]||(c[2]=u=>s.value.password=u)},null,512),[[W,s.value.password,void 0,{trim:!0}]])])]),t("div",ju,[t("div",qu,[P(t("input",{type:"checkbox",id:"allow","onUpdate:modelValue":c[3]||(c[3]=u=>s.value.allowLegacy=u)},null,512),[[Ot,s.value.allowLegacy]]),Ru]),t("div",Gu,[t("span",Vu,[t("span",Uu,[z(_t)]),Wu])])])]),t("div",Zu,[Hu,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,Ju),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,Ku)])],40,Cu)]),_:1})]),_:1}))}});var Qu=S(Xu,[["__scopeId","data-v-3ef9e48f"]]),tl=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(Qu,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Kt=e=>(N("data-v-567b2684"),e=e(),j(),e),el={key:0,class:"action"},al=Kt(()=>t("h2",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528 NAS \u914D\u7F6E\u5411\u5BFC",-1)),ol=Kt(()=>t("h3",{class:"desc"},"\u8BF7\u9009\u62E9\u9700\u8981\u6DFB\u52A0\u7684NAS\u670D\u52A1",-1)),nl=Kt(()=>t("option",{value:"linkease"},"\u8DE8\u8BBE\u5907\u5171\u4EAB\uFF08\u6613\u6709\u4E91\uFF09",-1)),il=Kt(()=>t("option",{value:"samba"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Samba\uFF09",-1)),rl=Kt(()=>t("option",{value:"webdav"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Webdav\uFF09",-1)),sl=[nl,il,rl],dl={class:"btns"},cl=["disabled"],ul=T({props:{setup:Number,Close:{type:Function,required:!0}},setup(e){const a=e,o=y(!0),n=y("linkease"),s=y(!1),b=y(a.setup||0),m=()=>{a.Close&&a.Close()},p=()=>A(this,null,function*(){switch(n.value){case"webdav":yield c();break;case"samba":yield d();break;case"linkease":yield u();break}}),c=()=>A(this,null,function*(){s.value=!0;const g=w.Loading("\u914D\u7F6E\u4E2D...");try{const x=yield Y.App.Check.POST({name:"gowebdav"});if(g.Close(),x!=null&&x.data){const{result:C,error:E}=x.data;if(E&&w.Warning(E),C){if(C.status=="installed"){f();return}if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 GoWebdav \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){const $=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D..."),B=yield v("app-meta-gowebdav");$.Close(),B?f():w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(x){w.Error(x)}g.Close(),s.value=!1}),u=()=>A(this,null,function*(){s.value=!0;const g=w.Loading("\u914D\u7F6E\u4E2D...");try{const x=yield Y.App.Check.POST({name:"linkease"});if(g.Close(),x!=null&&x.data){const{result:C,error:E}=x.data;if(E&&w.Warning(E),C){if(C.status=="installed"){_();return}if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 \u6613\u6709\u4E91 \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){const $=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D..."),B=yield v("app-meta-linkease");$.Close(),B?_():w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(x){w.Error(x)}g.Close(),s.value=!1}),d=()=>A(this,null,function*(){s.value=!0;const g=w.Loading("\u914D\u7F6E\u4E2D...");f(),g.Close(),s.value=!1}),v=g=>A(this,null,function*(){return Y.App.Install.POST({name:g}).then(()=>{}),new Promise((x,C)=>A(this,null,function*(){let E=0;const $=setInterval(()=>A(this,null,function*(){if(E>10){clearInterval($),C(!1);return}const B=yield Y.App.Check.POST({name:g});if(B!=null&&B.data){const{result:O}=B.data;if((O==null?void 0:O.status)=="installed"){clearInterval($),x(!0);return}}E++}),3e3)}))}),f=()=>{s.value=!1,o.value=!1,Wc({Cancel:()=>{o.value=!0},Next:g=>{switch(n.value){case"webdav":l(g);break;case"samba":h(g);break}}})},_=()=>{nu({}),m()},l=g=>{Fu({rootPath:g}),m()},h=g=>{tl({rootPath:g}),m()};return(g,x)=>o.value?(i(),M(at,{key:0,Close:e.Close,type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>[b.value==0?(i(),r("div",el,[al,ol,t("form",null,[t("label",null,[P(t("select",{"onUpdate:modelValue":x[0]||(x[0]=C=>n.value=C)},sl,512),[[Q,n.value]])])]),t("div",dl,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:p,type:"button",disabled:s.value},"\u4E0B\u4E00\u6B65",8,cl),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:m,type:"button"},"\u53D6\u6D88")])])):D("",!0)]),_:1})]),_:1},8,["Close"])):D("",!0)}});var ll=S(ul,[["__scopeId","data-v-567b2684"]]),oa=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(ll,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Ye=e=>(N("data-v-edf68726"),e=e(),j(),e),pl={class:"app-container_linkease"},fl={class:"linkease-item"},ml=Ye(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),bl={class:"linkease-item_value"},vl={key:0,class:"configure"},gl={key:0,class:"linkease-item"},_l=Ye(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u670D\u52A1\u5730\u5740:")],-1)),hl={class:"linkease-item_value"},xl=["href"],kl=Ye(()=>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)),wl=T({props:{linkease:{type:Object}},setup(e){const a=e,o=Z(()=>{var s;return`http://${location.hostname}:${(s=a.linkease)==null?void 0:s.port}`}),n=()=>{oa({setup:0})};return(s,b)=>{var m,p,c;return i(),r("ul",pl,[t("li",fl,[ml,t("div",bl,[(m=e.linkease)!=null&&m.enabel?(i(),r("span",vl,"\u5DF2\u914D\u7F6E")):(i(),r("span",{key:1,class:"configure enabel",onClick:b[0]||(b[0]=u=>n())},"\u672A\u914D\u7F6E"))])]),(p=e.linkease)!=null&&p.enabel?(i(),r(L,{key:0},[(c=e.linkease)!=null&&c.port?(i(),r("li",gl,[_l,t("div",hl,[t("a",{href:F(o),target:"_blank",rel:"noopener noreferrer"},k(F(o)),9,xl)])])):D("",!0)],64)):D("",!0),kl])}}});var yl=S(wl,[["__scopeId","data-v-edf68726"]]);const na=e=>(N("data-v-fc8a3b22"),e=e(),j(),e),Fl={class:"app-container"},Cl={class:"app-container_title"},El=na(()=>t("span",null,[t("span",null,"\u5B58\u50A8\u670D\u52A1")],-1)),$l={class:"app-container_tool"},Dl={class:"more_icon",title:"\u67E5\u770B\u5B58\u50A8\u670D\u52A1\u4FE1\u606F"},Bl={class:"DeviceBlock"},Yl=na(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/services/samba4"},"SAMBA\u9AD8\u7EA7\u914D\u7F6E")],-1)),Al={class:"app-container_body"},Sl={class:"app-container_nas-menu"},zl=T({setup(e){const a=y(!1),o=y("linkease"),n=y(),s=Ue();(()=>{Y.Nas.Service.Status.GET().then(d=>{var v;if((v=d==null?void 0:d.data)!=null&&v.result){const f=d.data.result;n.value=f,f.webdav&&(s.webdav=f.webdav)}})})();const m=()=>{oa({setup:0})},p=()=>{a.value=!a.value},c=()=>{p(),(()=>A(this,null,function*(){let v=w.Loading("");try{const f=yield Y.App.Check.POST({name:"app-meta-gowebdav"});if(v.Close(),f!=null&&f.data){const{result:_,error:l}=f.data;if(l&&w.Warning(l),_){if(_.status=="installed")location.href="/cgi-bin/luci/admin/nas/gowebdav";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5GoWebDAV\u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){v=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const h=yield u("app-meta-gowebdav");v.Close(),h?(w.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/nas/gowebdav"):w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(f){w.Error(f)}v.Close()}))()},u=d=>A(this,null,function*(){return Y.App.Install.POST({name:d}).then(()=>{}),new Promise((v,f)=>A(this,null,function*(){let _=0;const l=setInterval(()=>A(this,null,function*(){if(_>20){clearInterval(l),f(!1);return}const h=yield Y.App.Check.POST({name:d});if(h!=null&&h.data){const{result:g}=h.data;if((g==null?void 0:g.status)=="installed"){clearInterval(l),v(!0);return}}_++}),3e3)}))});return(d,v)=>{var f,_,l;return i(),r("div",Fl,[t("div",Cl,[El,t("div",$l,[t("div",{class:"app-container_configure",onClick:m},"\u5FEB\u901F\u914D\u7F6E"),t("span",Dl,[z($t,{onClick:p})])]),P(t("div",Bl,[t("div",{class:"menu_background",onClick:p}),t("ul",null,[Yl,t("li",null,[t("a",{onClick:c},"WebDAV\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[kt,a.value]])]),t("div",Al,[t("ul",Sl,[t("button",{onClick:v[0]||(v[0]=h=>o.value="linkease"),class:dt({on:o.value=="linkease"})},"\u6613\u6709\u4E91",2),t("button",{onClick:v[1]||(v[1]=h=>o.value="samba"),class:dt({on:o.value=="samba"})},"SAMBA",2),t("button",{onClick:v[2]||(v[2]=h=>o.value="webdav"),class:dt({on:o.value=="webdav"})},"WEBDAV",2)]),o.value=="samba"?(i(),M(uc,{key:0,sambas:(f=n.value)==null?void 0:f.sambas},null,8,["sambas"])):o.value=="webdav"?(i(),M(Cc,{key:1,webdav:(_=n.value)==null?void 0:_.webdav},null,8,["webdav"])):o.value=="linkease"?(i(),M(yl,{key:2,linkease:(l=n.value)==null?void 0:l.linkease},null,8,["linkease"])):D("",!0)])])}}});var Pl=S(zl,[["__scopeId","data-v-fc8a3b22"]]);const pe=e=>(N("data-v-4272377e"),e=e(),j(),e),Tl={class:"app-container_docker"},Il={class:"docker-item"},Ll=pe(()=>t("div",{class:"docker-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),Ml={key:0,class:"docker-item_value"},Ol=pe(()=>t("span",{class:"configure"},"\u672A\u5B89\u88C5",-1)),Nl=[Ol],jl={key:1,class:"docker-item_value"},ql={class:"input-switch"},Rl=["value","disabled"],Gl=pe(()=>t("em",null,null,-1)),Vl=[Gl],Ul={key:0,class:"docker-item"},Wl=pe(()=>t("div",{class:"docker-item_name"},[t("span",null,"Docker\u6839\u76EE\u5F55\uFF1A")],-1)),Zl={class:"docker-item_value"},Hl={class:"configure enabel"},Jl={key:0},Kl={class:"tooltip-trigger"},Xl={class:"docker_tip"},Ql={class:"tooltip-text tooltip-top"},t2={class:"docker_dir_tip"},e2=T({props:{docker:{type:Object}},setup(e){var b;const a=e,o=Z(()=>{var m;return((m=a.docker)==null?void 0:m.status)!="not installed"}),n=it({enable:((b=a.docker)==null?void 0:b.status)=="running",disabled:!1}),s=()=>A(this,null,function*(){n.disabled=!0;try{const m=yield Y.Guide.DockerSwitch.POST({enable:n.enable});if(m!=null&&m.data){const{success:p,error:c}=m.data;if(c)throw n.enable=!n.enable,c;(p||0)==0}}catch(m){w.Error(`${m}`)}finally{n.disabled=!1}});return(m,p)=>{var c,u,d,v;return i(),r("ul",Tl,[t("li",Il,[Ll,(c=a.docker)!=null&&c.status?(i(),r(L,{key:0},[F(o)?(i(),r("div",jl,[t("label",ql,[P(t("input",{type:"checkbox",hidden:"",value:!F(n).enable,"onUpdate:modelValue":p[0]||(p[0]=f=>F(n).enable=f),disabled:F(n).disabled,onChange:s},null,40,Rl),[[Ot,F(n).enable]]),t("span",{class:dt(F(n).enable?"enable":"close")},Vl,2)])])):(i(),r("div",Ml,Nl))],64)):D("",!0)]),((u=e.docker)==null?void 0:u.status)=="running"?(i(),r("li",Ul,[Wl,t("div",Zl,[t("span",Hl,k((d=e.docker)==null?void 0:d.path),1),(v=e.docker)!=null&&v.errorInfo?(i(),r("span",Jl,[t("span",Kl,[t("span",Xl,[z(_t)]),t("div",null,[t("div",Ql,[t("span",t2,k(e.docker.errorInfo),1)])])])])):D("",!0)])])):D("",!0)])}}});var a2=S(e2,[["__scopeId","data-v-4272377e"]]);const o2={},n2={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"},i2=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),r2=[i2];function s2(e,a){return i(),r("svg",n2,r2)}var d2=S(o2,[["render",s2]]);const lt=e=>(N("data-v-08e0f5d4"),e=e(),j(),e),c2={key:0,class:"action"},u2=lt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),l2=lt(()=>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)),p2={key:1,class:"action"},f2=lt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),m2=lt(()=>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)),b2={class:"roots"},v2=lt(()=>t("span",{class:"roots_tit"},"Docker\u6839\u76EE\u5F55\uFF1A",-1)),g2={class:"root"},_2={class:"move"},h2=lt(()=>t("span",{class:"roots_tit"},"\u8FC1\u79FB\u5230\uFF1A",-1)),x2={key:0},k2=["onSubmit"],w2={class:"select-editable"},y2=lt(()=>t("option",{selected:"",value:null},"\u8BF7\u9009\u62E9\u8FC1\u79FB\u5730\u5740",-1)),F2=["value"],C2=lt(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),E2={key:1,class:"tips"},$2={class:"tips_content"},D2=lt(()=>t("span",{class:"tip"},"\u68C0\u6D4B\u5230\u60A8\u8FD8\u6CA1\u6709\u6302\u8F7D\u5916\u7F6E\u786C\u76D8\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)),B2={key:0,class:"btns"},Y2={key:1,class:"btns"},A2={key:2,class:"action docker_success"},S2=lt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),z2={class:"finished"},P2=lt(()=>t("p",{class:"successed"},"\u8FC1\u79FB\u6210\u529F\uFF01",-1)),T2={key:3,class:"action docker_download"},I2=lt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),L2={class:"finished"},M2=lt(()=>t("p",{class:"successed"},"\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0D\u4E3A\u7A7A",-1)),O2={class:"docker_moves"},N2={class:"moves change"},j2=lt(()=>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)),q2={class:"moves"},R2=lt(()=>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)),G2={class:"btns"},V2=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=y(),n=y(),s=y(0),b=y("null"),m=y(""),p=y(),c=y(!1),u=y("");(()=>{Y.Nas.Disk.Status.GET().then(x=>{x!=null&&x.data.result&&(p.value=x==null?void 0:x.data.result)}),Y.Guide.DockerStatus.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const E=x.data.result;o.value=E}}),Y.Guide.DockerPartitionList.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const E=x.data.result;n.value=E}})})();const v=x=>{let C=b.value;if(C=="useInput"&&(C=m.value),C==null||C=="null"||C=="")return;const E=w.Loading("\u6B63\u5728\u8FC1\u79FB\u4E2D...");Y.Guide.DockerTransfer.POST({path:C,force:x,overwriteDir:!!u.value}).then($=>{var B;if($!=null&&$.data){if(($.data.success||0)==0){if((B=$.data.result)!=null&&B.emptyPathWarning){c.value=!0,s.value=2;return}s.value=1;return}else if($.data.error)throw $.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch($=>{w.Error($)}).finally(()=>E.Close())},f=()=>{c.value=!1,v(!1)},_=x=>{x.preventDefault(),a.Close&&a.Close()},l=x=>{x.preventDefault(),location.reload()},h=x=>{x.preventDefault(),s.value=0},g=x=>{x.preventDefault(),v(!0)};return(x,C)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>{var E,$,B,O,H,J;return[t("div",null,[s.value==-1?(i(),r("div",c2,[u2,l2,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:_},"\u53D6\u6D88")])])):s.value==0?(i(),r("div",p2,[f2,m2,t("div",b2,[v2,t("span",g2,k((E=o.value)==null?void 0:E.path),1)]),t("div",_2,[h2,(B=($=n.value)==null?void 0:$.partitionList)!=null&&B.length?(i(),r("div",x2,[t("form",{onSubmit:nt(f,["prevent"])},[t("label",null,[t("div",w2,[P(t("select",{"onUpdate:modelValue":C[0]||(C[0]=V=>b.value=V)},[y2,(i(!0),r(L,null,G((O=n.value)==null?void 0:O.partitionList,(V,R)=>(i(),r("option",{value:V,key:R},k(V),9,F2))),128)),C2],512),[[Q,b.value,void 0,{trim:!0}]]),b.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":C[1]||(C[1]=V=>m.value=V),required:"",placeholder:"\u8BF7\u8F93\u5165\u8FC1\u79FB\u5730\u5740"},null,512)),[[W,m.value,void 0,{trim:!0}]]):D("",!0)])])],40,k2)])):n.value?(i(),r("div",E2,[t("div",$2,[z(_t),D2])])):D("",!0)]),(J=(H=n.value)==null?void 0:H.partitionList)!=null&&J.length?(i(),r("div",B2,[t("button",{class:"cbi-button cbi-button-apply",onClick:f},"\u786E\u5B9A"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:_},"\u53D6\u6D88")])):(i(),r("div",Y2,[t("button",{class:"cbi-button cbi-button-apply",onClick:_},"\u786E\u5B9A")]))])):s.value==1?(i(),r("div",A2,[S2,t("div",z2,[z(Ce)]),P2,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:l},"\u786E\u5B9A")])])):s.value==2?(i(),r("div",T2,[I2,t("div",L2,[z(d2)]),M2,t("div",O2,[t("div",N2,[P(t("input",{type:"radio",id:"move",name:"moves","onUpdate:modelValue":C[2]||(C[2]=V=>u.value=V),value:""},null,512),[[bt,u.value]]),j2]),t("div",q2,[P(t("input",{type:"radio",id:"cover",name:"moves","onUpdate:modelValue":C[3]||(C[3]=V=>u.value=V),value:"true"},null,512),[[bt,u.value]]),R2])]),t("div",G2,[c.value?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:g},"\u786E\u5B9A")):D("",!0),t("button",{class:"cbi-button cbi-button-apply",onClick:h},"\u8FD4\u56DE"),c.value?D("",!0):(i(),r("button",{key:1,class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:l},"\u53D6\u6D88"))])])):D("",!0)])]}),_:1},8,["Close"]))}});var U2=S(V2,[["__scopeId","data-v-08e0f5d4"]]);const W2=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=et(U2,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},ia=e=>(N("data-v-40eef1a3"),e=e(),j(),e),Z2={class:"app-container"},H2={class:"app-container_title"},J2=ia(()=>t("span",null,[t("span",null,"Docker")],-1)),K2={class:"app-container_tool"},X2={key:1,class:"more_icon",title:"\u67E5\u770BDocker\u4FE1\u606F"},Q2={class:"DeviceBlock"},t5=ia(()=>t("ul",null,[t("li",null,[t("a",{href:"/cgi-bin/luci/admin/docker/overview"},"Docker\u9AD8\u7EA7\u914D\u7F6E")])],-1)),e5=T({props:{docker:{type:Object}},setup(e){const a=y(!1),o=y(),n=y(!1),s=()=>{n.value=!n.value},b=()=>{W2()};return(()=>{Y.Guide.DockerStatus.GET().then(p=>{var c;if((c=p==null?void 0:p.data)!=null&&c.result){const u=p.data.result;o.value=u}}).finally(()=>{a.value=!0})})(),(p,c)=>{var u,d;return i(),r("div",Z2,[t("div",H2,[J2,t("div",K2,[((u=o.value)==null?void 0:u.status)!="not installed"?(i(),r("div",{key:0,class:"app-container_configure",onClick:b},"\u5FEB\u901F\u914D\u7F6E ")):D("",!0),((d=o.value)==null?void 0:d.status)==="running"?(i(),r("span",X2,[z($t,{onClick:s})])):D("",!0)]),P(t("div",Q2,[t("div",{class:"menu_background",onClick:s}),t5],512),[[kt,n.value]])]),t("div",null,[a.value?(i(),M(a2,{key:0,docker:o.value},null,8,["docker"])):D("",!0)])])}}});var a5=S(e5,[["__scopeId","data-v-40eef1a3"]]);const fe=e=>(N("data-v-b0aac542"),e=e(),j(),e),o5={class:"app-container_aria2"},n5={class:"aria2-item"},i5=fe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),r5={class:"aria2-item_value"},s5={key:0,class:"configure"},d5={key:1,class:"configure enabel"},c5={class:"aria2-item"},u5=fe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u4E0B\u8F7D\u5730\u5740:")],-1)),l5={class:"aria2-item_value"},p5={class:"aria2-item"},f5=fe(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),m5={class:"aria2-item_value"},b5=["href"],v5=fe(()=>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)),g5=T({props:{aria2:{type:Object}},setup(e){const a=e,o=Z(()=>{var n;return`http://${location.host}${(n=a.aria2)==null?void 0:n.webPath}`});return(n,s)=>{var b,m,p;return i(),r("ul",o5,[t("li",n5,[i5,t("div",r5,[((b=e.aria2)==null?void 0:b.status)=="running"?(i(),r("span",s5,"\u5DF2\u542F\u52A8")):(i(),r("span",d5,"\u672A\u542F\u52A8"))])]),((m=e.aria2)==null?void 0:m.status)=="running"?(i(),r(L,{key:0},[t("li",c5,[u5,t("div",l5,[t("span",null,k((p=e.aria2)==null?void 0:p.downloadPath),1)])]),t("li",p5,[f5,t("div",m5,[t("a",{href:F(o),target:"_blank",rel:"noopener noreferrer"},k(F(o)),9,b5)])])],64)):D("",!0),v5])}}});var _5=S(g5,[["__scopeId","data-v-b0aac542"]]);const Ae=e=>(N("data-v-52e2b49c"),e=e(),j(),e),h5={class:"app-container_qbittorrent"},x5={class:"qbittorrent-item"},k5=Ae(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),w5={class:"qbittorrent-item_value"},y5={key:0,class:"configure"},F5={key:1,class:"configure enabel"},C5={class:"qbittorrent-item"},E5=Ae(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u4E0B\u8F7D\u5730\u5740:")],-1)),$5={class:"qbittorrent-item_value"},D5={class:"qbittorrent-item"},B5=Ae(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),Y5={class:"qbittorrent-item_value"},A5=["href"],S5=T({props:{qbittorrent:{type:Object}},setup(e){const a=e,o=Z(()=>{var n;return`http://${location.host}${(n=a.qbittorrent)==null?void 0:n.webPath}`});return(n,s)=>{var b,m,p;return i(),r("ul",h5,[t("li",x5,[k5,t("div",w5,[((b=e.qbittorrent)==null?void 0:b.status)=="running"?(i(),r("span",y5,"\u5DF2\u542F\u52A8")):(i(),r("span",F5,"\u672A\u542F\u52A8"))])]),((m=e.qbittorrent)==null?void 0:m.status)=="running"?(i(),r(L,{key:0},[t("li",C5,[E5,t("div",$5,[t("span",null,k((p=e.qbittorrent)==null?void 0:p.downloadPath),1)])]),t("li",D5,[B5,t("div",Y5,[t("a",{href:F(o),target:"_blank",rel:"noopener noreferrer"},k(F(o)),9,A5)])])],64)):D("",!0)])}}});var z5=S(S5,[["__scopeId","data-v-52e2b49c"]]);const Se=e=>(N("data-v-78784f5e"),e=e(),j(),e),P5={class:"app-container_transmission"},T5={class:"transmission-item"},I5=Se(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),L5={class:"transmission-item_value"},M5={key:0,class:"configure"},O5={key:1,class:"configure enabel"},N5={class:"transmission-item"},j5=Se(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u4E0B\u8F7D\u5730\u5740:")],-1)),q5={class:"transmission-item_value"},R5={class:"transmission-item"},G5=Se(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),V5={class:"transmission-item_value"},U5=["href"],W5=T({props:{transmission:{type:Object}},setup(e){const a=e,o=Z(()=>{var n;return`http://${location.host}${(n=a.transmission)==null?void 0:n.webPath}`});return(n,s)=>{var b,m,p;return i(),r("ul",P5,[t("li",T5,[I5,t("div",L5,[((b=e.transmission)==null?void 0:b.status)=="running"?(i(),r("span",M5,"\u5DF2\u542F\u52A8")):(i(),r("span",O5,"\u672A\u542F\u52A8"))])]),((m=e.transmission)==null?void 0:m.status)=="running"?(i(),r(L,{key:0},[t("li",N5,[j5,t("div",q5,[t("span",null,k((p=e.transmission)==null?void 0:p.downloadPath),1)])]),t("li",R5,[G5,t("div",V5,[t("a",{href:F(o),target:"_blank",rel:"noopener noreferrer"},k(F(o)),9,U5)])])],64)):D("",!0)])}}});var Z5=S(W5,[["__scopeId","data-v-78784f5e"]]);const H5={},J5={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"},K5=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),X5=[K5];function Q5(e,a){return i(),r("svg",J5,X5)}var oe=S(H5,[["render",Q5]]);const tt=e=>(N("data-v-7ea0bbfc"),e=e(),j(),e),t6={key:0,class:"action"},e6=tt(()=>t("h2",{class:"title"},"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",-1)),a6={class:"load_service"},o6=tt(()=>t("span",null,"\u4E0B\u8F7D\u670D\u52A1\uFF1A",-1)),n6={class:"load_radios"},i6=tt(()=>t("label",{for:"Aria2"},"Aria2",-1)),r6={class:"load_radios"},s6=tt(()=>t("label",{for:"qB"},"qBittorrent",-1)),d6={class:"load_radios"},c6=tt(()=>t("label",{for:"Ts"},"Transmission",-1)),u6={key:0},l6={class:"load"},p6={class:"left"},f6={class:"tooltip-trigger"},m6=tt(()=>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\uFF1Amnt/sda1/download")])],-1)),b6=tt(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),v6=["onSubmit"],g6={class:"select-editable"},_6=tt(()=>t("option",{selected:"true",value:null},"\u8BF7\u9009\u62E9\u4E0B\u8F7D\u76EE\u5F55",-1)),h6=["value"],x6=tt(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),k6={class:"RPC"},w6={class:"left"},y6={class:"tooltip-trigger"},F6=tt(()=>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)),C6=tt(()=>t("span",null,"RPC \u4EE4\u724C\uFF1A",-1)),E6={class:"Tracker"},$6=tt(()=>t("span",null,"\u9644\u52A0\u7684 BT Tracker\uFF1A",-1)),D6=tt(()=>t("label",{for:"default"},"\u9ED8\u8BA4",-1)),B6=tt(()=>t("label",{for:"add"},"\u81EA\u5DF1\u6DFB\u52A0",-1)),Y6={key:1},A6={class:"load"},S6={class:"left"},z6={class:"tooltip-trigger"},P6=tt(()=>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\uFF1Amnt/sda1/download")])],-1)),T6=tt(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),I6=["onSubmit"],L6={class:"select-editable"},M6=tt(()=>t("option",{selected:"true",value:null},"\u8BF7\u9009\u62E9\u4E0B\u8F7D\u76EE\u5F55",-1)),O6=["value"],N6=tt(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),j6={key:2},q6={class:"load"},R6={class:"left"},G6={class:"tooltip-trigger"},V6=tt(()=>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\uFF1Amnt/sda1/download")])],-1)),U6=tt(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),W6=["onSubmit"],Z6={class:"select-editable"},H6=tt(()=>t("option",{selected:"true",value:null},"\u8BF7\u9009\u62E9\u4E0B\u8F7D\u76EE\u5F55",-1)),J6=["value"],K6=tt(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),X6={class:"btns"},Q6={key:1,class:"action"},t3={class:"title"},e3={class:"finished"},a3=tt(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),o3=T({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("null"),b=y(""),m=y("default"),p=y("Aria2"),c=y("null"),u=y(""),d=y("null"),v=y(""),f=y(0);Dt(()=>{var H,J,V,R,U,Ft,Te;switch(a.defaultTab){case"aria2":p.value="Aria2";break;case"qbittorrent":p.value="qBittorrent";break;case"transmission":p.value="transmission";break}const E=((H=a.services.aria2)==null?void 0:H.downloadPath)||((J=a.services.qbittorrent)==null?void 0:J.downloadPath)||((V=a.services.transmission)==null?void 0:V.downloadPath);E&&(a.partitionList.find(Vt=>Vt==E)?s.value=E:(b.value=E,s.value="useInput"));const $=(R=a.services.aria2)==null?void 0:R.rpcToken;$&&(o.value=$);const B=((U=a.services.qbittorrent)==null?void 0:U.downloadPath)||E||((Ft=a.services.transmission)==null?void 0:Ft.downloadPath);B&&(a.partitionList.find(Vt=>Vt==B)?c.value=B:(u.value=B,c.value="useInput"));const O=((Te=a.services.transmission)==null?void 0:Te.downloadPath)||E||B;O&&(a.partitionList.find(Vt=>Vt==O)?d.value=O:(v.value=O,d.value="useInput"))});const _=()=>{let E=s.value;if(E=="useInput"&&(E=b.value),E==null||E=="null"||E=="")return;(()=>A(this,null,function*(){let B=w.Loading("\u68C0\u67E5\u4E2D...");try{const O=yield Y.App.Check.POST({name:"app-meta-aria2"});if(B.Close(),O!=null&&O.data){const{result:H,error:J}=O.data;if(J&&w.Warning(J),H){const V=()=>{B=w.Loading("\u914D\u7F6E\u4E2D..."),Y.Guide.Aria2Init.POST({downloadPath:E,rpcToken:o.value,btTracker:m.value=="add"?n.value:""}).then(R=>{var U;if(R!=null&&R.data){if((R.data.success||0)==0){f.value=1;return}else if((U=R.data)!=null&&U.error)throw R.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(R=>w.Error(R)).finally(()=>B.Close())};if(H.status=="installed")V();else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Aria2 \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){B=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const R=yield g("app-meta-aria2");B.Close(),R?V():w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(O){B.Close(),w.Error(O)}}))()},l=()=>{let E=c.value;if(E=="useInput"&&(E=u.value),E==null||E=="null"||E=="")return;(()=>A(this,null,function*(){let B=w.Loading("\u68C0\u67E5\u4E2D...");try{const O=yield Y.App.Check.POST({name:"app-meta-qbittorrent"});if(B.Close(),O!=null&&O.data){const{result:H,error:J}=O.data;if(J&&w.Warning(J),H){if(H.status=="installed"){const V=Y.Guide.qbitorrentInit.POST({downloadPath:E}).then(R=>{var U;if(R!=null&&R.data){if((R.data.success||0)==0){f.value=1;return}else if((U=R.data)!=null&&U.error)throw R.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(R=>w.Error(R)).finally(()=>B.Close())}else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 qBittorrent \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){B=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const V=yield g("app-meta-qbittorrent");if(B.Close(),V){w.Success("\u5B89\u88C5\u6210\u529F");const R=Y.Guide.qbitorrentInit.POST({downloadPath:E}).then(U=>{var Ft;if(U!=null&&U.data){if((U.data.success||0)==0){f.value=1;return}else if((Ft=U.data)!=null&&Ft.error)throw U.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(U=>w.Error(U)).finally(()=>B.Close())}else w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(O){w.Error(O)}}))()},h=()=>{let E=d.value;if(E=="useInput"&&(E=v.value),E==null||E=="null"||E=="")return;(()=>A(this,null,function*(){let B=w.Loading("\u914D\u7F6E\u4E2D...");try{const O=yield Y.App.Check.POST({name:"app-meta-transmission"});if(B.Close(),O!=null&&O.data){const{result:H,error:J}=O.data;if(J&&w.Warning(J),H){if(H.status=="installed"){const V=Y.Guide.transmissionInit.POST({downloadPath:E}).then(R=>{var U;if(R!=null&&R.data){if((R.data.success||0)==0){f.value=1;return}else if((U=R.data)!=null&&U.error)throw R.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(R=>w.Error(R)).finally(()=>B.Close())}else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Transmission \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){B=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const V=yield g("app-meta-transmission");if(B.Close(),V){w.Success("\u5B89\u88C5\u6210\u529F");const R=Y.Guide.transmissionInit.POST({downloadPath:E}).then(U=>{var Ft;if(U!=null&&U.data){if((U.data.success||0)==0){f.value=1;return}else if((Ft=U.data)!=null&&Ft.error)throw U.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(U=>w.Error(U)).finally(()=>B.Close())}else w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(O){w.Error(O)}B.Close()}))()},g=E=>A(this,null,function*(){return Y.App.Install.POST({name:E}).then(()=>{}),new Promise(($,B)=>A(this,null,function*(){let O=0;const H=setInterval(()=>A(this,null,function*(){if(O>20){clearInterval(H),B(!1);return}const J=yield Y.App.Check.POST({name:E});if(J!=null&&J.data){const{result:V}=J.data;if((V==null?void 0:V.status)=="installed"){clearInterval(H),$(!0);return}}O++}),3e3)}))}),x=E=>{E.preventDefault(),a.Close&&a.Close()},C=E=>{E.preventDefault(),location.reload()};return(E,$)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[z(ht,{name:"rotate",mode:"out-in"},{default:q(()=>[f.value==0?(i(),r("div",t6,[e6,t("ul",null,[t("li",null,[t("div",a6,[o6,t("div",n6,[P(t("input",{type:"radio",value:"Aria2","onUpdate:modelValue":$[0]||($[0]=B=>p.value=B),name:"download",id:"Aria2"},null,512),[[bt,p.value]]),i6]),t("div",r6,[P(t("input",{type:"radio",value:"qBittorrent","onUpdate:modelValue":$[1]||($[1]=B=>p.value=B),name:"download",id:"qB"},null,512),[[bt,p.value]]),s6]),t("div",d6,[P(t("input",{type:"radio",value:"transmission","onUpdate:modelValue":$[2]||($[2]=B=>p.value=B),name:"download",id:"Ts"},null,512),[[bt,p.value]]),c6])])])]),p.value=="Aria2"?(i(),r("ul",u6,[t("li",null,[t("div",l6,[t("div",p6,[t("span",f6,[z(oe),m6]),b6]),t("form",{onSubmit:nt(_,["prevent"])},[t("label",null,[t("div",g6,[P(t("select",{"onUpdate:modelValue":$[3]||($[3]=B=>s.value=B),autocomplete:"off"},[_6,(i(!0),r(L,null,G(e.partitionList,(B,O)=>(i(),r("option",{value:B,key:O},k(B),9,h6))),128)),x6],512),[[Q,s.value,void 0,{trim:!0}]]),s.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":$[4]||($[4]=B=>b.value=B),required:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u8F7D\u76EE\u5F55"},null,512)),[[W,b.value,void 0,{trim:!0}]]):D("",!0)])])],40,v6)])]),t("li",null,[t("div",k6,[t("div",w6,[t("span",y6,[z(oe),F6]),C6]),P(t("input",{type:"text",class:"RPC_input",placeholder:"\u8BF7\u8F93\u5165RPC\u4EE4\u724C","onUpdate:modelValue":$[5]||($[5]=B=>o.value=B)},null,512),[[W,o.value,void 0,{trim:!0}]])])]),t("li",null,[t("div",E6,[$6,P(t("input",{type:"radio",value:"default",name:"BT",id:"default","onUpdate:modelValue":$[6]||($[6]=B=>m.value=B)},null,512),[[bt,m.value]]),D6,P(t("input",{type:"radio",value:"add",name:"BT",id:"add","onUpdate:modelValue":$[7]||($[7]=B=>m.value=B)},null,512),[[bt,m.value]]),B6])]),t("li",null,[m.value=="add"?P((i(),r("textarea",{key:0,class:"Tracker_input","onUpdate:modelValue":$[8]||($[8]=B=>n.value=B),rows:"4",placeholder:"\u8BF7\u8F93\u5165bt\u670D\u52A1\u5668\u5730\u5740"},null,512)),[[W,n.value,void 0,{trim:!0}]]):D("",!0)])])):D("",!0),p.value=="qBittorrent"?(i(),r("ul",Y6,[t("li",null,[t("div",A6,[t("div",S6,[t("span",z6,[z(oe),P6]),T6]),t("form",{onSubmit:nt(l,["prevent"])},[t("label",null,[t("div",L6,[P(t("select",{"onUpdate:modelValue":$[9]||($[9]=B=>c.value=B),autocomplete:"off"},[M6,(i(!0),r(L,null,G(e.partitionList,(B,O)=>(i(),r("option",{value:B,key:O},k(B),9,O6))),128)),N6],512),[[Q,c.value,void 0,{trim:!0}]]),c.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":$[10]||($[10]=B=>u.value=B),required:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u8F7D\u76EE\u5F55"},null,512)),[[W,u.value,void 0,{trim:!0}]]):D("",!0)])])],40,I6)])])])):D("",!0),p.value=="transmission"?(i(),r("ul",j6,[t("li",null,[t("div",q6,[t("div",R6,[t("span",G6,[z(oe),V6]),U6]),t("form",{onSubmit:nt(h,["prevent"])},[t("label",null,[t("div",Z6,[P(t("select",{"onUpdate:modelValue":$[11]||($[11]=B=>d.value=B),autocomplete:"off"},[H6,(i(!0),r(L,null,G(e.partitionList,(B,O)=>(i(),r("option",{value:B,key:O},k(B),9,J6))),128)),K6],512),[[Q,d.value,void 0,{trim:!0}]]),d.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":$[12]||($[12]=B=>v.value=B),required:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u8F7D\u76EE\u5F55"},null,512)),[[W,v.value,void 0,{trim:!0}]]):D("",!0)])])],40,W6)])])])):D("",!0),t("div",X6,[p.value=="Aria2"?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:_},"\u542F\u7528")):D("",!0),p.value=="qBittorrent"?(i(),r("button",{key:1,class:"cbi-button cbi-button-apply",onClick:l},"\u542F\u7528")):D("",!0),p.value=="transmission"?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:h},"\u542F\u7528")):D("",!0),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:x},"\u53D6\u6D88")])])):f.value==1?(i(),r("div",Q6,[t("h2",t3,k(p.value)+"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",1),t("div",e3,[z(Ce)]),a3,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:C},"\u786E\u5B9A")])])):D("",!0)]),_:1})]),_:1},8,["Close"]))}});var n3=S(o3,[["__scopeId","data-v-7ea0bbfc"]]);const i3=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(n3,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},r3=e=>(N("data-v-3c1d13ee"),e=e(),j(),e),s3={class:"app-container"},d3={class:"app-container_title"},c3=r3(()=>t("span",null,[t("span",null,"\u4E0B\u8F7D\u670D\u52A1")],-1)),u3={class:"app-container_tool"},l3=["disabled"],p3={class:"more_icon",title:"\u67E5\u770B\u9AD8\u7EA7\u914D\u7F6E"},f3={class:"DeviceBlock"},m3={class:"app-container_body"},b3={class:"app-container_nas-menu"},v3=T({setup(e){y(!1);const a=y("aria2"),o=y();Ue(),(()=>{Y.Guide.DownloadService.Status.GET().then(f=>{var _;if((_=f==null?void 0:f.data)!=null&&_.result){const l=f.data.result;o.value=l}})})();const s=y(!1),b=y(!1),m=()=>{b.value=!b.value},p=()=>{Y.Guide.DownloadpPartition.List.GET().then(f=>{var l,h;let _=[];(h=(l=f==null?void 0:f.data)==null?void 0:l.result)!=null&&h.partitionList&&(_=f.data.result.partitionList),i3({services:o.value,partitionList:_,defaultTab:a.value})})},c=()=>{m(),(()=>A(this,null,function*(){let _=w.Loading("");try{const l=yield Y.App.Check.POST({name:"app-meta-aria2"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&w.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/services/aria2";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Aria2 \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-aria2");_.Close(),x?(w.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/services/aria2"):w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){w.Error(l)}_.Close()}))()},u=()=>{m(),(()=>A(this,null,function*(){let _=w.Loading("");try{const l=yield Y.App.Check.POST({name:"app-meta-qbittorrent"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&w.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/nas/qBittorrent";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 qBittorrent \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-qbittorrent");_.Close(),x?w.Success("\u5B89\u88C5\u6210\u529F"):w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){w.Error(l)}_.Close()}))()},d=()=>{m(),(()=>A(this,null,function*(){let _=w.Loading("");try{const l=yield Y.App.Check.POST({name:"app-meta-transmission"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&w.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/services/transmission";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Transmission \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-transmission");_.Close(),x?w.Success("\u5B89\u88C5\u6210\u529F"):w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){w.Error(l)}_.Close()}))()},v=f=>A(this,null,function*(){return Y.App.Install.POST({name:f}).then(()=>{}),new Promise((_,l)=>A(this,null,function*(){let h=0;const g=setInterval(()=>A(this,null,function*(){if(h>20){clearInterval(g),l(!1);return}const x=yield Y.App.Check.POST({name:f});if(x!=null&&x.data){const{result:C}=x.data;if((C==null?void 0:C.status)=="installed"){clearInterval(g),_(!0);return}}h++}),3e3)}))});return(f,_)=>{var l,h,g;return i(),r("div",s3,[t("div",d3,[c3,t("div",u3,[o.value?(i(),r("div",{key:0,class:"app-container_configure",onClick:p,disabled:s.value},"\u5FEB\u901F\u914D\u7F6E ",8,l3)):D("",!0),t("span",p3,[z($t,{onClick:m})])]),P(t("div",f3,[t("div",{class:"menu_background",onClick:m}),t("ul",null,[t("li",null,[t("a",{onClick:c},"Aria2\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:u},"qBittorrent\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:d},"Transmission\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[kt,b.value]])]),t("div",m3,[t("ul",b3,[t("button",{onClick:_[0]||(_[0]=x=>a.value="aria2"),class:dt({on:a.value=="aria2"})},"Aria2",2),t("button",{onClick:_[1]||(_[1]=x=>a.value="qbittorrent"),class:dt({on:a.value=="qbittorrent"})},"qBittorrent",2),t("button",{onClick:_[2]||(_[2]=x=>a.value="transmission"),class:dt({on:a.value=="transmission"})},"Transmission",2)]),a.value=="aria2"?(i(),M(_5,{key:0,aria2:(l=o.value)==null?void 0:l.aria2},null,8,["aria2"])):a.value=="qbittorrent"?(i(),M(z5,{key:1,qbittorrent:(h=o.value)==null?void 0:h.qbittorrent},null,8,["qbittorrent"])):a.value=="transmission"?(i(),M(Z5,{key:2,transmission:(g=o.value)==null?void 0:g.transmission},null,8,["transmission"])):D("",!0)])])}}});var g3=S(v3,[["__scopeId","data-v-3c1d13ee"]]);const yt=e=>(N("data-v-43beecef"),e=e(),j(),e),_3={class:"actioner-container"},h3=yt(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),x3={class:"actioner-container_body"},k3={class:"label-item"},w3=yt(()=>t("span",null,"DDNSTO",-1)),y3=yt(()=>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)),F3={class:"label-item"},C3=yt(()=>t("span",null,"\u963F\u91CC\u4E91",-1)),E3=yt(()=>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)),$3={class:"label-item"},D3=yt(()=>t("span",null,"Dnspod",-1)),B3=yt(()=>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)),Y3={class:"label-item"},A3=yt(()=>t("span",null,"\u82B1\u751F\u58F3",-1)),S3=yt(()=>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)),z3=T({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),b=()=>{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(m,p)=>(i(),r("div",_3,[h3,t("div",x3,[t("div",k3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[0]||(p[0]=c=>s.value=c),value:"ddnsto"},null,512),[[bt,s.value]]),w3]),y3]),t("div",F3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[1]||(p[1]=c=>s.value=c),value:"ali"},null,512),[[bt,s.value]]),C3]),E3]),t("div",$3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[2]||(p[2]=c=>s.value=c),value:"dnspod"},null,512),[[bt,s.value]]),D3]),B3]),t("div",Y3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[3]||(p[3]=c=>s.value=c),value:"oray"},null,512),[[bt,s.value]]),A3]),S3])]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:n},"\u53D6\u6D88"),t("div",{class:"next",onClick:b},"\u4E0B\u4E00\u6B65")])]))}});var P3=S(z3,[["__scopeId","data-v-43beecef"]]);const Xt=e=>(N("data-v-43dd65a2"),e=e(),j(),e),T3={class:"actioner-container"},I3={class:"actioner-container_body"},L3=Xt(()=>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)),M3=Xt(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),O3=Xt(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),N3={class:"body-info"},j3=Xt(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),q3=["href"],R3=Xt(()=>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)),G3=T({props:{target:{type:String,required:!0},onSetup:{type:Function,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",T3,[t("div",I3,[L3,M3,O3,t("div",N3,[j3,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},k(e.target),9,q3)]),R3]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var V3=S(G3,[["__scopeId","data-v-43dd65a2"]]);const ra=e=>(N("data-v-7790f1da"),e=e(),j(),e),U3={class:"actioner-container"},W3=ra(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),Z3=ra(()=>t("div",{class:"actioner-container_body ddnsto-login"},[t("iframe",{src:"https://www.kooldns.cn/bind/#/auth?send=1&source=openwrt&callback=*"})],-1)),H3=T({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 b=s.data.sign,m=s.data.token;b&&m&&(removeEventListener("message",n),a.onDdnstoConfig(b,m),a.onSetup("ddnsto-run"))}};return Dt(()=>{window.addEventListener("message",n)}),jt(()=>{removeEventListener("message",n)}),(s,b)=>(i(),r("div",U3,[W3,Z3,t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u53D6\u6D88")])]))}});var J3=S(H3,[["__scopeId","data-v-7790f1da"]]);const K3=e=>(N("data-v-7b3ee72a"),e=e(),j(),e),X3={class:"actioner-container"},Q3=K3(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),t4={class:"actioner-container_body ddnsto-bind"},e4=["src"],a4=T({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=Z(()=>{const{domain:m,token:p,sign:c,routerId:u,netaddr:d}=o.config,v=encodeURIComponent(m),f=encodeURIComponent(d);return`https://www.kooldns.cn/bind/#/domain?domain=${v}&sign=${c}&token=${p}&routerId=${u}&netaddr=${f}`}),s=m=>{if(m.data){const{auth:p,url:c}=m.data;p==="ddnsto"&&c&&b(c)}},b=m=>A(this,null,function*(){var p;try{const c=yield Y.Guide.DdnstoAddress.POST({address:m});c!=null&&c.data&&(((p=c==null?void 0:c.data)==null?void 0:p.success)||0)==0&&(a("update:domain",m),o.onSetup("ddnsto-save"))}catch(c){}});return Dt(()=>{window.addEventListener("message",s)}),jt(()=>{removeEventListener("message",s)}),(m,p)=>(i(),r("div",X3,[Q3,t("div",t4,[t("iframe",{src:F(n)},null,8,e4)])]))}});var o4=S(a4,[["__scopeId","data-v-7b3ee72a"]]);const Qt=e=>(N("data-v-7f5a8953"),e=e(),j(),e),n4={class:"actioner-container"},i4={class:"actioner-container_body"},r4=Qt(()=>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)),s4=Qt(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),d4=Qt(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),c4={class:"body-info"},u4=Qt(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),l4=["href"],p4=Qt(()=>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)),f4=T({props:{onSetup:{type:Function,required:!0},target:{type:String,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",n4,[t("div",i4,[r4,s4,d4,t("div",c4,[u4,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},k(e.target),9,l4)]),p4]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var m4=S(f4,[["__scopeId","data-v-7f5a8953"]]);const b4=e=>(N("data-v-9824e3c0"),e=e(),j(),e),v4={class:"actioner-container"},g4=b4(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),_4={class:"actioner-container_body"},h4={class:"actioner-container_footer"},x4=T({props:{onSetup:{type:Function,required:!0}},setup(e){const a=e,o=()=>{a.onSetup()},n=()=>A(this,null,function*(){if(m.value)return;m.value=!0;const u=w.Loading("\u5B89\u88C5\u4E2D..."),d=yield c("app-meta-ddnsto");if(u.Close(),d){a.onSetup("ddnsto-login");return}else s.value="\u5B89\u88C5\u5931\u8D25";m.value=!1}),s=y("\u6B63\u5728\u68C0\u6D4B\u4E2D..."),b=y(!1),m=y(!1),p=()=>A(this,null,function*(){try{const u=yield Y.App.Check.POST({name:"app-meta-ddnsto"});if(u!=null&&u.data){const{result:d,error:v}=u.data;if(v){s.value=v;return}if(d){if(d.status=="installed"){a.onSetup("ddnsto-login");return}d.status=="uninstalled"&&(s.value="\u9700\u8981\u5B89\u88C5DDNSTO\u63D2\u4EF6\uFF0C\u70B9\u51FB\u201C\u786E\u5B9A\u201D\u5F00\u59CB\u5B89\u88C5")}}}catch(u){s.value=u}b.value=!0}),c=u=>A(this,null,function*(){return Y.App.Install.POST({name:u}).then(()=>{}),new Promise((d,v)=>A(this,null,function*(){let f=0;const _=setInterval(()=>A(this,null,function*(){if(f>10){clearInterval(_),v(!1);return}const l=yield Y.App.Check.POST({name:u});if(l!=null&&l.data){const{result:h}=l.data;if((h==null?void 0:h.status)=="installed"){clearInterval(_),d(!0);return}}f++}),3e3)}))});return p(),(u,d)=>(i(),r("div",v4,[g4,t("div",_4,[t("span",null,k(s.value),1)]),t("div",h4,[b.value?(i(),r(L,{key:0},[t("div",{class:"close",onClick:o},"\u53D6\u6D88"),t("div",{class:"next",onClick:n},"\u786E\u5B9A")],64)):D("",!0)])]))}});var k4=S(x4,[["__scopeId","data-v-9824e3c0"]]);const w4=e=>(N("data-v-467bb030"),e=e(),j(),e),y4={class:"actioner-container"},F4=w4(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),C4={class:"actioner-container_body"},E4=T({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...");(c=>A(this,null,function*(){var u;try{const d=yield Y.Guide.Ddnsto.POST({token:a.token});d!=null&&d.data&&(d.data.error&&(o.value=d.data.error),(((u=d==null?void 0:d.data)==null?void 0:u.success)||0)==0&&b())}catch(d){o.value=d}}))(a.token);const s=y(),b=()=>A(this,null,function*(){const c=()=>A(this,null,function*(){if((yield m())===!0){p();return}s.value=window.setTimeout(c,2e3)});c()}),m=()=>A(this,null,function*(){return new Promise(c=>A(this,null,function*(){try{const u=yield Y.App.Check.POST({name:"ddnsto",checkRunning:!0});if(u!=null&&u.data){u.data.error&&(o.value=u.data.error);const d=u.data.result;if((d==null?void 0:d.status)=="running"){c(!0);return}}c(!1)}catch(u){o.value=u,c(!1)}}))});jt(()=>{s.value&&clearInterval(s.value)});const p=()=>A(this,null,function*(){var c;try{const u=yield Y.Guide.DdntoConfig.GET();if(u!=null&&u.data&&(u.data.error&&(o.value=u.data.error),(((c=u==null?void 0:u.data)==null?void 0:c.success)||0)==0&&u.data.result)){const d=u.data.result;a.onDdnstoLocalConfig(d.netAddr,d.deviceId),a.onSetup("ddnsto-bind")}}catch(u){o.value=u}});return(c,u)=>(i(),r("div",y4,[F4,t("div",C4,k(o.value),1)]))}});var $4=S(E4,[["__scopeId","data-v-467bb030"]]);const D4={class:"action-main"},B4=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=y("ddnsto-install"),n=c=>{c!=null?o.value=c:s()},s=()=>{a.Close&&a.Close()},b=it({sign:"",token:"",domain:a.url,netaddr:"",routerId:""}),m=(c,u)=>{b.sign=c,b.token=u},p=(c,u)=>{b.netaddr=c,b.routerId=u};return(c,u)=>(i(),M(at,{type:1},{default:q(()=>[t("div",D4,[o.value=="ddnsto-install"?(i(),M(k4,{key:0,onSetup:n})):o.value=="ddnsto-login"?(i(),M(J3,{key:1,onSetup:n,onDdnstoConfig:m})):o.value=="ddnsto-run"?(i(),M($4,{key:2,onSetup:n,token:F(b).token,onDdnstoLocalConfig:p},null,8,["token"])):o.value=="ddnsto-bind"?(i(),M(o4,{key:3,onSetup:n,config:{token:F(b).token,sign:F(b).sign,domain:F(b).domain,netaddr:F(b).netaddr,routerId:F(b).routerId},domain:F(b).domain,"onUpdate:domain":u[0]||(u[0]=d=>F(b).domain=d)},null,8,["config","domain"])):o.value=="ddnsto-save"?(i(),M(m4,{key:4,onSetup:n,target:F(b).domain},null,8,["target"])):D("",!0)])]),_:1}))}});var Y4=S(B4,[["__scopeId","data-v-7a6bd385"]]);const A4=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(Y4,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},S4={class:"action"},z4={class:"action-header"},P4=["innerHTML"],T4={class:"action-footer"},I4=T({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(b,m)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[t("div",S4,[t("div",z4,k(e.title),1),t("div",{class:"action-body",innerHTML:e.content},null,8,P4),t("div",T4,[e.clear?(i(),r("div",{key:0,class:"clear",onClick:n},k(e.clearTitle),1)):D("",!0),t("div",{class:"next",onClick:o},k(e.nextTitle),1),e.continuer?(i(),r("div",{key:1,class:"next",onClick:s},k(e.continuerTitle),1)):D("",!0)])])]),_:1},8,["Close"]))}});var L4=S(I4,[["__scopeId","data-v-4358e88c"]]);const ie=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(L4,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},st=e=>(N("data-v-9435cfa6"),e=e(),j(),e),M4={class:"actioner-container"},O4=["onSubmit"],N4=st(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),j4={key:0,class:"title_info"},q4=st(()=>t("p",null," \u963F\u91CC\u4E91 ",-1)),R4=st(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),G4=st(()=>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)),V4=[q4,R4,G4],U4={key:1,class:"title_info"},W4=st(()=>t("p",null," dnspod ",-1)),Z4=st(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),H4=st(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#dnspod",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),J4=[W4,Z4,H4],K4={key:2,class:"title_info"},X4=st(()=>t("p",null," \u82B1\u751F\u58F3 ",-1)),Q4=st(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),t8=st(()=>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)),e8=[X4,Q4,t8],a8={class:"label-item"},o8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u5730\u5740\u7248\u672C\uFF1A")],-1)),n8={class:"label-item_value"},i8=st(()=>t("option",{value:"ipv4"},"IPv4\u5730\u5740",-1)),r8=st(()=>t("option",{value:"ipv6"},"IPv6\u5730\u5740",-1)),s8=[i8,r8],d8=st(()=>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)),c8={class:"label-item"},u8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"\u57DF\u540D\uFF1A")],-1)),l8={class:"label-item_value"},p8={class:"label-item"},f8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D\uFF1A")],-1)),m8={class:"label-item_value"},b8={class:"label-item"},v8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801\uFF1A")],-1)),g8={class:"label-item_value"},_8={class:"actioner-container_footer"},h8=["disabled"],x8=T({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),b=y(""),m=y(""),p=y(""),c=y(!1),u=()=>{o.onSetup("index")},d=()=>{c.value=!0;const l=w.Loading("\u68C0\u6D4B\u4E2D...");Y.Network.CheckPublickNet.POST({ipVersion:n.value}).then(h=>{var g,x;if(h!=null&&h.data){if((g=h==null?void 0:h.data)!=null&&g.error){w.Warning(h==null?void 0:h.data.error);return}if((((x=h==null?void 0:h.data)==null?void 0:x.success)||0)==0){const C=h.data.result;C&&C.address?_():v();return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(h=>{w.Error(h)}).finally(()=>{l.Close(),c.value=!1})},v=()=>{ie({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(){f()},continuer(){_()},clear(){}})},f=()=>{o.onSetup("ddnsto")},_=()=>{c.value=!0;const l=w.Loading("\u914D\u7F6E\u4E2D...");Y.Guide.PostDdns.POST({ipVersion:n.value,serviceName:s.value,domain:b.value,userName:m.value,password:p.value}).then(h=>{if(h!=null&&h.data){const{error:g,scope:x,success:C}=h.data;if(g=="-100"&&x=="guide.ddns"){ie({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(g){w.Warning(g);return}if((C||0)==0){a("update:target",b.value),o.onSetup("ddns-success");return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(h=>{w.Error(h)}).finally(()=>{l.Close(),c.value=!1})};return(l,h)=>(i(),r("div",M4,[t("form",{class:"actioner-dns",onSubmit:nt(d,["prevent"])},[N4,t("div",{class:dt(["actioner-container_body",e.name])},[e.name=="ali"?(i(),r("div",j4,V4)):e.name=="dnspod"?(i(),r("div",U4,J4)):e.name=="oray"?(i(),r("div",K4,e8)):D("",!0),t("div",a8,[o8,t("div",n8,[P(t("select",{name:"",id:"","onUpdate:modelValue":h[0]||(h[0]=g=>n.value=g)},s8,512),[[Q,n.value]])]),d8]),t("div",c8,[u8,t("div",l8,[P(t("input",{type:"text",placeholder:"myhost.example.com","onUpdate:modelValue":h[1]||(h[1]=g=>b.value=g),required:""},null,512),[[W,b.value,void 0,{trim:!0}]])])]),t("div",p8,[f8,t("div",m8,[P(t("input",{type:"text","onUpdate:modelValue":h[2]||(h[2]=g=>m.value=g),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u540D",required:""},null,512),[[W,m.value,void 0,{trim:!0}]])])]),t("div",b8,[v8,t("div",g8,[P(t("input",{type:"password","onUpdate:modelValue":h[3]||(h[3]=g=>p.value=g),placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",required:""},null,512),[[W,p.value,void 0,{trim:!0}]])])])],2),t("div",_8,[t("div",{class:"close",onClick:u,type:"button"},"\u8FD4\u56DE"),t("button",{class:"next save",type:"submit",disabled:c.value},"\u4FDD\u5B58",8,h8)])],40,O4)]))}});var he=S(x8,[["__scopeId","data-v-9435cfa6"]]);const k8={class:"action-main"},w8=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=y(""),n=y("index"),s=c=>{if(c!=null){if(c=="ddnsto"){b();return}n.value=c}else m()},b=()=>{m(),A4({url:a.url})},m=()=>{a.Close&&a.Close()},p=y("ddnsto");return(c,u)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[t("div",k8,[n.value=="index"?(i(),M(P3,{key:0,onSetup:s,active:p.value,"onUpdate:active":u[0]||(u[0]=d=>p.value=d)},null,8,["active"])):n.value=="ddns-ali"?(i(),M(he,{key:1,onSetup:s,target:o.value,"onUpdate:target":u[1]||(u[1]=d=>o.value=d),name:"ali"},null,8,["target"])):n.value=="ddns-dnspod"?(i(),M(he,{key:2,onSetup:s,target:o.value,"onUpdate:target":u[2]||(u[2]=d=>o.value=d),name:"dnspod"},null,8,["target"])):n.value=="ddns-oray"?(i(),M(he,{key:3,onSetup:s,target:o.value,"onUpdate:target":u[3]||(u[3]=d=>o.value=d),name:"oray"},null,8,["target"])):n.value=="ddns-success"?(i(),M(V3,{key:4,onSetup:s,target:o.value},null,8,["target"])):D("",!0)])]),_:1},8,["Close"]))}});var y8=S(w8,[["__scopeId","data-v-6f1d92d9"]]);const F8=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(y8,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},It=e=>(N("data-v-10ce7ce8"),e=e(),j(),e),C8={class:"app-container"},E8=It(()=>t("span",null,[t("span",null,"\u8FDC\u7A0B\u57DF\u540D")],-1)),$8={class:"app-container_domain"},D8={class:"domain-item"},B8=It(()=>t("div",{class:"domain-item_name"},[t("span",null,"DDNSTO\uFF1A")],-1)),Y8={class:"domain-item_value"},A8=["href","title"],S8=It(()=>t("a",{class:"item_btn",href:"https://www.kooldns.cn/app/#/devices",target:"_blank"},"\u63A7\u5236\u53F0",-1)),z8={class:"domain-item"},P8=It(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv4\uFF1A")],-1)),T8={class:"domain-item_value"},I8={key:0},L8=["href"],M8={key:2,href:"/cgi-bin/luci/admin/services/ddns"},O8=It(()=>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)),N8=[O8],j8={class:"domain-item"},q8=It(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv6\uFF1A")],-1)),R8={class:"domain-item_value"},G8={key:0},V8=["href"],U8={key:2,href:"/cgi-bin/luci/admin/services/ddns"},W8=It(()=>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)),Z8=[W8],H8=T({setup(e){let a=!1,o;const n=y({}),s=function(){!a||Y.Guide.GetDdns.GET().then(c=>{var u;c!=null&&c.data&&(((u=c==null?void 0:c.data)==null?void 0:u.success)||0)==0&&c.data.result&&(n.value=c.data.result)}).then(()=>{!a||(o=window.setTimeout(s,3e3))})};Dt(()=>{a=!0,s()}),jt(()=>{o!==void 0&&window.clearTimeout(o),a=!1});const b=()=>{F8({url:n.value.ddnstoDomain})},m=Z(()=>{const c=n.value.ipv4Domain;return c!=null&&c!=""&&c!="Stopped"?`http://${c}`:c}),p=Z(()=>{const c=n.value.ipv6Domain;return c!=null&&c!=""&&c!="Stopped"?`http://${c}`:c});return(c,u)=>{var d,v,f;return i(),r("div",C8,[t("div",{class:"app-container_title"},[E8,t("div",{class:"app-container_tool"},[t("div",{class:"app-container_configure",onClick:b},"\u5FEB\u901F\u914D\u7F6E")])]),t("ul",$8,[t("li",D8,[B8,t("div",Y8,[t("a",{class:"configure",href:(d=n.value)==null?void 0:d.ddnstoDomain,target:"_blank",rel:"noopener noreferrer",title:(v=n.value)==null?void 0:v.ddnstoDomain},k((f=n.value)==null?void 0:f.ddnstoDomain),9,A8),S8])]),t("li",z8,[P8,t("div",T8,[F(m)=="Stopped"?(i(),r("span",I8,k(F(m)),1)):(i(),r("a",{key:1,class:"configure",href:F(m),target:"_blank",rel:"noopener noreferrer"},k(F(m)),9,L8)),F(m)?(i(),r("a",M8,N8)):D("",!0)])]),t("li",j8,[q8,t("div",R8,[F(p)=="Stopped"?(i(),r("span",G8,k(F(p)),1)):(i(),r("a",{key:1,class:"configure",href:F(p),target:"_blank",rel:"noopener noreferrer"},k(F(p)),9,V8)),F(p)?(i(),r("a",U8,Z8)):D("",!0)])])])])}}});var J8=S(H8,[["__scopeId","data-v-10ce7ce8"]]);const ne=e=>!Array.isArray(window.quickstart_features)||window.quickstart_features.indexOf(e)!=-1,K8={class:"nas-container"},X8={class:"nas-container_card"},Q8={class:"nas-container_card"},t7={key:0,class:"nas-container_card"},e7={class:"nas-container_card"},a7={class:"nas-container_card"},o7=T({setup(e){return(a,o)=>(i(),r("div",K8,[t("div",X8,[z(tc)]),t("div",Q8,[z(Pl)]),F(ne)("dockerd")?(i(),r("div",t7,[z(a5)])):D("",!0),t("div",e7,[z(g3)]),t("div",a7,[z(J8)])]))}});var n7=S(o7,[["__scopeId","data-v-66cc4e33"]]);const xt=e=>(N("data-v-1e34b94b"),e=e(),j(),e),i7={class:"app-container"},r7={class:"app-container_title"},s7=xt(()=>t("span",null,"\u7CFB\u7EDF\u4FE1\u606F",-1)),d7={class:"more_icon",title:"\u67E5\u770B\u7CFB\u7EDF\u4FE1\u606F"},c7={class:"DeviceBlock"},u7=xt(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/flash"},"\u5907\u4EFD\u5347\u7EA7")],-1)),l7=xt(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/store/pages/maintance"},"\u63D2\u4EF6\u5907\u4EFD")],-1)),p7={class:"item-label"},f7=xt(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u6E29\u5EA6")],-1)),m7={class:"item-label_value"},b7={class:"item-label"},v7=xt(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u4F7F\u7528\u7387")],-1)),g7={class:"item-label_value"},_7={class:"item-label"},h7=xt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u5B58\u4F7F\u7528\u7387")],-1)),x7={class:"item-label_value"},k7={class:"item-label"},w7=xt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u56FA\u4EF6\u7248\u672C")],-1)),y7={class:"item-label_value"},F7={class:"item-label"},C7=xt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u6838\u7248\u672C")],-1)),E7={class:"item-label_value"},$7={class:"item-label"},D7=xt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5DF2\u542F\u52A8")],-1)),B7={class:"item-label_value"},Y7={class:"item-label"},A7=xt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u7CFB\u7EDF\u65F6\u95F4")],-1)),S7={class:"item-label_value"},z7=T({setup(e){const a=ye(),o=Z(()=>a.version),n=Z(()=>a.systemStatus),s=y(!1),b=Z(()=>{var f;return((f=n.value)==null?void 0:f.cpuUsage)||0}),m=Z(()=>{var f;return((f=n.value)==null?void 0:f.cpuTemperature)||0}),p=Z(()=>{var _;const f=((_=n.value)==null?void 0:_.memAvailablePercentage)||100;return 100-f}),c=Nt.stampForm;Dt(()=>{});const u=()=>{s.value=!s.value},d=()=>{u(),(()=>A(this,null,function*(){let _=w.Loading("");try{const l=yield Y.App.Check.POST({name:"app-meta-netdata"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&w.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/status/netdata";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5NetData\u5B9E\u65F6\u76D1\u63A7\u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){_=w.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-netdata");_.Close(),x?(w.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/status/netdata"):w.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){w.Error(l)}_.Close()}))()},v=f=>A(this,null,function*(){return Y.App.Install.POST({name:f}).then(()=>{}),new Promise((_,l)=>A(this,null,function*(){let h=0;const g=setInterval(()=>A(this,null,function*(){if(h>20){clearInterval(g),l(!1);return}const x=yield Y.App.Check.POST({name:f});if(x!=null&&x.data){const{result:C}=x.data;if((C==null?void 0:C.status)=="installed"){clearInterval(g),_(!0);return}}h++}),3e3)}))});return(f,_)=>{var h,g,x,C;const l=ct("progress-item");return i(),r("div",i7,[t("div",r7,[s7,t("span",d7,[z($t,{onClick:u})]),P(t("div",c7,[t("div",{class:"menu_background",onClick:u}),t("ul",null,[t("li",null,[t("a",{onClick:d},"\u7CFB\u7EDF\u76D1\u63A7")]),u7,l7])],512),[[kt,s.value]])]),t("div",p7,[f7,t("div",m7,[z(l,{value:F(m)/1.5,text:`${F(m)}\u2103`},null,8,["value","text"])])]),t("div",b7,[v7,t("div",g7,[z(l,{value:F(b),text:`${F(b)}%`},null,8,["value","text"])])]),t("div",_7,[h7,t("div",x7,[z(l,{value:F(p),text:`${F(p)}%`},null,8,["value","text"])])]),t("div",k7,[w7,t("div",y7,[t("span",null,k((h=F(o))==null?void 0:h.firmwareVersion),1)])]),t("div",F7,[C7,t("div",E7,[t("span",null,k((g=F(o))==null?void 0:g.kernelVersion),1)])]),t("div",$7,[D7,t("div",B7,[t("span",null,k(F(c)((x=F(n))==null?void 0:x.uptime)),1)])]),t("div",Y7,[A7,t("div",S7,[t("span",null,k((C=F(n))==null?void 0:C.localtime),1)])])])}}});var P7=S(z7,[["__scopeId","data-v-1e34b94b"]]);const T7={},I7={t:"1649907260906",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},L7=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),M7=[L7];function O7(e,a){return i(),r("svg",I7,M7)}var N7=S(T7,[["render",O7]]);const j7={},q7={t:"1649902779464",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2617","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},R7=t("path",{d:"M309.794 819.848h404.239c169.953 0 307.726-137.774 307.726-307.727s-137.774-307.726-307.726-307.726h-404.239c-169.952 0-307.726 137.773-307.726 307.726s137.774 307.727 307.726 307.727zM309.445 233.5c154.23 0 279.268 125.031 279.268 279.268s-125.039 279.268-279.268 279.268c-154.24 0-279.269-125.033-279.269-279.268 0-154.238 125.030-279.268 279.269-279.268z",fill:"#bbb","p-id":"2618","data-spm-anchor-id":"a313x.7781069.0.i0",class:"selected"},null,-1),G7=[R7];function V7(e,a){return i(),r("svg",q7,G7)}var U7=S(j7,[["render",V7]]);const W7=e=>re.isValid(e),Et=e=>{const a=re.IPv4.parse(e).toByteArray();return a[0]<<24|a[1]<<16|a[2]<<8|a[3]},Ne=e=>re.fromByteArray([e>>24&255,e>>16&255,e>>8&255,e&255]).toString(),Z7=e=>{if(!re.IPv4.isIPv4(e))return!1;let a=0,o=Et(e);for(let n=31;n>=0&&(o&1<{let s=Et(e)&Et(a),b=Et(o),m=Et(n),c=~Et(a);return bs+1&&m{let o=Et(a),n=Et(e)&o,s=~o,b;return s>=105?(b=n|s-5,n=n|100):s>=3?(b=n|s-1,n=n|2):(n=n|1,b=n),[Ne(n),Ne(b)]};var Ct={isValidMask:Z7,isValidIP:W7,isValidMaskRange:H7,calcMaskRange:J7};const vt=e=>(N("data-v-b8956f32"),e=e(),j(),e),K7=["onSubmit"],X7=vt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u5185\u7F51\u914D\u7F6E")],-1)),Q7={class:"actioner-dns_body"},tp={class:"label-item"},ep=vt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5730\u5740")],-1)),ap={class:"label-item_value"},op={class:"label-item"},np=vt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5B50\u7F51\u63A9\u7801")],-1)),ip={class:"label-item_value"},rp={class:"mobie_icon"},sp={key:1,class:"dhcp_info"},dp={key:2,class:"dhcp_info"},cp={class:"label-item"},up=vt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u8D77\u59CB\u5730\u5740")],-1)),lp={class:"label-item_value"},pp={class:"label-item"},fp=vt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u7ED3\u675F\u5730\u5740")],-1)),mp={class:"label-item_value"},bp={class:"actioner-dns_footer"},vp=["disabled"],gp={key:1,class:"actioner-dns"},_p=vt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u66F4\u6362\u914D\u7F6E")],-1)),hp={class:"actioner-dns_body"},xp={key:0,class:"setting_status"},kp=vt(()=>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)),wp=vt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u6210\u529F",-1)),yp=["href"],Fp={key:1,class:"setting_status"},Cp=vt(()=>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)),Ep=vt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u5931\u8D25",-1)),$p=vt(()=>t("p",null,"\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E",-1)),Dp={key:2,class:"setting_status"},Bp=vt(()=>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)),Yp=vt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u8D85\u65F6",-1)),Ap=vt(()=>t("p",null,"\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E",-1)),Sp=T({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 b=y(""),m=y(2),p=y("timeout"),c=()=>{n.value.enableDhcp=!1},u=()=>{n.value.enableDhcp=!0};let d=!0;(()=>{Y.Guide.GetLan.GET().then(g=>{g.data.result&&(g.data.result.enableDhcp=g.data.result.enableDhcp||!1,n.value=g.data.result,g.data.result.lanIp!==location.hostname&&(d=!1))})})();const f=()=>{const g=n.value;if(!Ct.isValidIP(g.lanIp)){w.Error("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!Ct.isValidMask(g.netMask)){w.Error("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}const x=Ct.calcMaskRange(g.lanIp,g.netMask);g.dhcpStart=x[0],g.dhcpEnd=x[1],n.value=g},_=()=>{const g=n.value;if(!Ct.isValidIP(g.lanIp)){w.Error("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!Ct.isValidMask(g.netMask)){w.Error("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}if(g.enableDhcp&&!Ct.isValidIP(g.dhcpStart)||!Ct.isValidIP(g.dhcpEnd)||!Ct.isValidMaskRange(g.lanIp,g.netMask,g.dhcpStart,g.dhcpEnd)){w.Error("DHCP\u7684IP\u6C60\u683C\u5F0F\u9519\u8BEF\u6216\u8D85\u51FA\u5B50\u7F51\u8303\u56F4");return}const x=w.Loading("\u6B63\u5728\u914D\u7F6E\u2026\u8BF7\u7A0D\u7B49",30);Y.Guide.LanIp.POST(g).then(C=>{var E;if(C!=null&&C.data){if((C.data.success||0)==0)return;if((E=C.data)!=null&&E.error)throw C.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).then(()=>new Promise((C,E)=>{const $=new Date().getTime()+3e4,B=d?location.protocol+"//"+g.lanIp+(location.port?":"+location.port:""):location.origin,O=B+"/luci-static/resources/icons/loading.gif",H=()=>{new Date().getTime()>$?(p.value="timeout",o.value=1,C()):window.setTimeout(V,2e3)},J=()=>{b.value=B+location.pathname,p.value="success",o.value=1,C(),window.setTimeout(()=>{m.value=1},1e3),window.setTimeout(()=>{location.href=b.value},2e3)},V=()=>{console.log("check online ",O);const R=new Image;R.onload=J,R.onerror=H,R.src=O};window.setTimeout(V,5e3)})).catch(C=>{p.value="fail",o.value=1,w.Error(C)}).finally(()=>x.Close())},l=g=>{g.preventDefault(),a.Close&&a.Close()},h=g=>{location.reload()};return(g,x)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:nt(_,["prevent"])},[X7,t("div",Q7,[t("div",tp,[ep,t("div",ap,[P(t("input",{type:"text",placeholder:"192.168.100.1","onUpdate:modelValue":x[0]||(x[0]=C=>n.value.lanIp=C),onChange:f},null,544),[[W,n.value.lanIp,void 0,{trim:!0}]])])]),t("div",op,[np,t("div",ip,[P(t("input",{type:"text",placeholder:"255.255.255.0","onUpdate:modelValue":x[1]||(x[1]=C=>n.value.netMask=C),onChange:f},null,544),[[W,n.value.netMask,void 0,{trim:!0}]])])]),t("div",rp,[n.value.enableDhcp?(i(),r("span",{key:0,onClick:c},[z(N7)])):D("",!0),t("span",null,[n.value.enableDhcp?D("",!0):(i(),M(U7,{key:0,onClick:u}))]),n.value.enableDhcp?(i(),r("span",sp,"\u4FEE\u6539DHCP\u670D\u52A1")):(i(),r("span",dp,"\u4FDD\u6301DHCP\u670D\u52A1\u8BBE\u7F6E"))]),n.value.enableDhcp?(i(),r(L,{key:0},[t("div",cp,[up,t("div",lp,[P(t("input",{type:"text",placeholder:"192.168.100.100","onUpdate:modelValue":x[2]||(x[2]=C=>n.value.dhcpStart=C)},null,512),[[W,n.value.dhcpStart,void 0,{trim:!0}]])])]),t("div",pp,[fp,t("div",mp,[P(t("input",{type:"text",placeholder:"192.168.100.100","onUpdate:modelValue":x[3]||(x[3]=C=>n.value.dhcpEnd=C)},null,512),[[W,n.value.dhcpEnd,void 0,{trim:!0}]])])])],64)):D("",!0)]),t("div",bp,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:s.value},"\u786E\u8BA4",8,vp),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:l},"\u53D6\u6D88")])],40,K7)):o.value==1?(i(),r("div",gp,[_p,t("div",hp,[p.value=="success"?(i(),r("div",xp,[kp,wp,t("a",{href:b.value,class:"NewAdress"},k(m.value)+"s\u540E \u8DF3\u8F6C\u65B0\u5730\u5740",9,yp)])):p.value=="fail"?(i(),r("div",Fp,[Cp,Ep,$p,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},"\u6211\u77E5\u9053\u4E86")])):p.value=="timeout"?(i(),r("div",Dp,[Bp,Yp,Ap,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},"\u6211\u77E5\u9053\u4E86")])):D("",!0)])])):D("",!0)]),_:1},8,["Close"]))}});var zp=S(Sp,[["__scopeId","data-v-b8956f32"]]);const Pp=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=et(zp,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},ut=e=>(N("data-v-193c9490"),e=e(),j(),e),Tp=ut(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),Ip={class:"actioner-dns_body"},Lp=ut(()=>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)),Mp={key:0,class:"disk_loading_icon"},Op=ut(()=>t("div",{class:"loading icon"},[t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"80",height:"80"},[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)),Np=ut(()=>t("span",{class:"disk_loading_info"},"\u6B63\u5728\u52A0\u8F7D\u4E2D...",-1)),jp=[Op,Np],qp={key:1,class:"disk_tips"},Rp=ut(()=>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)),Gp={class:"label-item"},Vp=ut(()=>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)),Up={class:"label-item_value"},Wp=ut(()=>t("option",{value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u78C1\u76D8",-1)),Zp=["value"],Hp={class:"label-item"},Jp=ut(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A\uFF08\u5206\u533A\u5927\u5C0F\u987B\u5927\u4E8E8G\uFF0C\u5C06\u6B64\u5206\u533A\u4F5C\u4E3A\u5916\u90E8 overlay \u4F7F\u7528\uFF09")],-1)),Kp={class:"label-item_value"},Xp=ut(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u5206\u533A",-1)),Qp=["value","disabled"],tf={class:"sandbox_tips"},ef=ut(()=>t("span",null,"\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E",-1)),af={class:"actioner-dns_footer"},of=["disabled"],nf={key:1,class:"actioner-tips"},rf=ut(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u6E29\u99A8\u63D0\u793A")],-1)),sf=ut(()=>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\u4F1A\u683C\u5F0F\u5316\u6210EXT4,\u91CD\u542F\u540E\u53EF\u8FDB\u5165\u6C99\u7BB1\u6A21\u5F0F\uFF0C\u662F\u5426\u7EE7\u7EED\uFF1F")],-1)),df=["onSubmit"],cf=ut(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),uf={class:"actioner-dns_body"},lf=ut(()=>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)),pf={class:"sandbox_info timeout"},ff=X("\u5373\u5C06\u91CD\u542F\u8BBE\u5907 "),mf=ut(()=>t("p",{class:"sandbox_roboot_tips"},[X("\u7B49\u5F85\u8BBE\u5907\u91CD\u542F\uFF0C\u91CD\u542F\u5B8C\u6210\u540E"),t("span",{class:"sandbox_roboot_refresh"},"\u8BF7\u5237\u65B0\u754C\u9762")],-1)),bf={key:3,class:"actioner-tips"},vf=ut(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u9519\u8BEF")],-1)),gf={class:"actioner-tips_body"},_f={class:"sandbox_info"},hf=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0);y("disk");const n=y(""),s=y(3),b=y(""),m=y([]),p=y(""),c=y(null);(()=>{Y.Nas.SandboxDisks.GET().then(x=>{var C;if(x!=null&&x.data&&(C=x.data)!=null&&C.result){c.value=x.data.result;return}throw"\u52A0\u8F7D\u78C1\u76D8\u4FE1\u606F\u5931\u8D25"}).catch(x=>{n.value=x,o.value=3})})();const d=()=>Y.System.Reboot.POST({name:b.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"}),v=x=>{var C,E;p.value="",m.value=b.value&&((E=(C=c.value)==null?void 0:C.disks.find($=>$.path==b.value))==null?void 0:E.childrens)||[]},f=()=>{s.value>0&&(s.value-=1,window.setTimeout(f,1e3))},_=x=>{x.preventDefault(),a.Close&&a.Close()},l=()=>{new Promise((x,C)=>{const E="/luci-static/resources/icons/loading.gif",$=()=>{window.setTimeout(B,2e3)},B=()=>{const O=new Image;O.onload=x,O.onerror=$,O.src=E};window.setTimeout(B,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},h=x=>{const C=w.Loading("\u52A0\u8F7D\u4E2D...");Y.Nas.Sandbox.POST({path:p.value}).then(E=>{var $;if(E!=null&&E.data){if((E.data.success||0)==0)return o.value=2,window.setTimeout(f,1e3),d();if(($=E.data)!=null&&$.error)throw E.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).then(l).catch(E=>w.Error(E)).finally(()=>C.Close())},g=()=>{o.value=0};return(x,C)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:C[2]||(C[2]=nt(E=>o.value=1,["prevent"]))},[Tp,t("div",Ip,[Lp,c.value?D("",!0):(i(),r("div",Mp,jp)),c.value&&c.value.disks.length==0?(i(),r("div",qp,[z(_t),Rp])):D("",!0),c.value&&c.value.disks.length>0?(i(),r(L,{key:2},[t("div",Gp,[Vp,t("div",Up,[P(t("select",{name:"",id:"",onChange:v,"onUpdate:modelValue":C[0]||(C[0]=E=>b.value=E)},[Wp,(i(!0),r(L,null,G(c.value.disks,(E,$)=>(i(),r("option",{value:E.path,key:$},k(E.venderModel)+"\uFF08"+k(E.size)+"\uFF09 ",9,Zp))),128))],544),[[Q,b.value]])])]),t("div",Hp,[Jp,t("div",Kp,[P(t("select",{name:"",id:"","onUpdate:modelValue":C[1]||(C[1]=E=>p.value=E)},[Xp,(i(!0),r(L,null,G(m.value,(E,$)=>(i(),r("option",{value:E.path,key:$,disabled:E.sizeInt<(1<<30)*2},k(E.name)+"\uFF08"+k(E.filesystem||"\u672A\u683C\u5F0F\u5316")+"\uFF09"+k(E.total),9,Qp))),128))],512),[[Q,p.value]])])]),t("div",tf,[z(_t),ef])],64)):D("",!0)]),t("div",af,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:!p.value},"\u5F00\u542F\u6C99\u7BB1",8,of),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:_},"\u53D6\u6D88")])],32)):D("",!0),o.value==1?(i(),r("div",nf,[rf,sf,t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},"\u7EE7\u7EED"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])])):D("",!0),o.value==2?(i(),r("form",{key:2,class:"actioner-dns",onSubmit:nt(h,["prevent"])},[cf,t("div",uf,[lf,t("p",pf,[ff,t("span",null,"\uFF08"+k(s.value)+"s\uFF09",1)]),mf])],40,df)):D("",!0),o.value==3?(i(),r("div",bf,[vf,t("div",gf,[t("p",_f,k(n.value),1)]),t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])])):D("",!0)]),_:1},8,["Close"]))}});var xf=S(hf,[["__scopeId","data-v-193c9490"]]);const kf=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=et(xf,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},sa=e=>(N("data-v-62461857"),e=e(),j(),e),wf={key:0,class:"actioner-dns"},yf=sa(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),Ff=sa(()=>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"},[X("\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"},[X(" \u5982\u9700"),t("b",null,"\u4E34\u65F6"),X("\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"),X(" \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)),Cf={class:"actioner-dns_footer"},Ef=["disabled"],$f=["disabled"],Df=["disabled"],Bf=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=y(0),n=y(!1),s=()=>{new Promise((u,d)=>{const v="/luci-static/resources/icons/loading.gif",f=()=>{window.setTimeout(_,2e3)},_=()=>{const l=new Image;l.onload=u,l.onerror=f,l.src=v};window.setTimeout(_,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},b=()=>{n.value=!0;const u=w.Loading("\u63D0\u4EA4\u4E2D...");Y.Nas.SandboxCommit.POST().then(d=>{var v,f;if(d!=null&&d.data)if((((v=d==null?void 0:d.data)==null?void 0:v.success)||0)==0){w.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D...");return}else(f=d==null?void 0:d.data)!=null&&f.error&&alert(d.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(d=>{w.Error(d),n.value=!1}).finally(()=>u.Close())},m=()=>{n.value=!0;const u=w.Loading("\u91CD\u7F6E\u4E2D...");Y.Nas.SandboxReset.POST().then(d=>{var v,f;if(d!=null&&d.data)if((((v=d==null?void 0:d.data)==null?void 0:v.success)||0)==0){w.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(f=d==null?void 0:d.data)!=null&&f.error&&alert(d.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(d=>{w.Error(d),n.value=!1}).finally(()=>u.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 u=w.Loading("\u6267\u884C\u4E2D...");Y.Nas.SandboxExit.POST().then(d=>{var v,f;if(d!=null&&d.data)if((((v=d==null?void 0:d.data)==null?void 0:v.success)||0)==0){w.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(f=d==null?void 0:d.data)!=null&&f.error&&alert(d.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(d=>{w.Error(d),n.value=!1}).finally(()=>u.Close())},c=u=>{u.preventDefault(),a.Close&&a.Close()};return(u,d)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("div",wf,[yf,Ff,t("div",Cf,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:b,disabled:n.value},"\u63D0\u4EA4",8,Ef),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:m,disabled:n.value},"\u91CD\u7F6E",8,$f),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:p,disabled:n.value},"\u9000\u51FA",8,Df),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:c},"\u53D6\u6D88")])])):D("",!0)]),_:1},8,["Close"]))}});var Yf=S(Bf,[["__scopeId","data-v-62461857"]]);const Af=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=et(Yf,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},Sf={class:"nav-container"},zf=["onClick"],Pf={key:0,class:"btn_styles color3 app-update-button",onclick:"window.location.href='/cgi-bin/luci/admin/system/ota'"},Tf=X(" \u56FA\u4EF6\u66F4\u65B0 "),If={key:0},Lf=T({setup(e){const a=ye(),o=Z(()=>a.checkUpdate.needUpdate);y(!1),y(!0);const n=y(),s=()=>{Je()},b=()=>{kf()},m=()=>{Af()},p=()=>{alert("\u8BE5\u56FA\u4EF6\u4E0D\u652F\u6301\u6C99\u7BB1\u6A21\u5F0F")},c=()=>{Pp()},u=()=>{Qe()},d=()=>{window.open(`http://${window.location.hostname}:7681/`,"_blank")};return ne("sandbox")&&Y.Nas.GetSandbox.GET().then(f=>{var _,l,h;f!=null&&f.data&&((((_=f==null?void 0:f.data)==null?void 0:_.success)||0)==0?(l=f==null?void 0:f.data)!=null&&l.result&&(n.value=f.data.result):(h=f==null?void 0:f.data)!=null&&h.error&&alert(f.data.error))}).catch(f=>w.Error(f)),(v,f)=>{var l,h,g;const _=ct("router-link");return i(),r("div",Sf,[z(_,{to:"/network",custom:""},{default:q(({navigate:x})=>[t("button",{class:"btn_styles color1",onClick:x},"\u7F51\u7EDC\u5411\u5BFC",8,zf)]),_:1}),t("button",{class:"btn_styles color2 app-btn-ttyd",onClick:d},"\u7EC8\u7AEF"),F(ne)("ota")?(i(),r("button",Pf,[Tf,F(o)?(i(),r("i",If)):D("",!0)])):D("",!0),t("button",{class:"btn_styles color4",onClick:c},"\u5185\u7F51\u914D\u7F6E"),t("button",{class:"btn_styles color5",onClick:s},"DNS\u914D\u7F6E"),t("button",{class:"btn_styles color1",onClick:u},"\u8F6F\u4EF6\u6E90\u914D\u7F6E"),F(ne)("sandbox")?(i(),r(L,{key:1},[((l=n.value)==null?void 0:l.status)=="unsupport"?(i(),r("button",{key:0,class:"btn_styles color2",onClick:p},"\u5F00\u542F\u6C99\u7BB1")):((h=n.value)==null?void 0:h.status)=="stopped"?(i(),r("button",{key:1,class:"btn_styles color3",onClick:b},"\u5F00\u542F\u6C99\u7BB1")):((g=n.value)==null?void 0:g.status)=="running"?(i(),r("button",{key:2,class:"btn_styles color4",onClick:m},"\u6C99\u7BB1\u5F00\u542F\u4E2D")):D("",!0)],64)):D("",!0)])}}});var Mf=S(Lf,[["__scopeId","data-v-4eb14922"]]);const me=e=>(N("data-v-31aed265"),e=e(),j(),e),Of={id:"page"},Nf=me(()=>t("em",null,null,-1)),jf=me(()=>t("em",null,null,-1)),qf=me(()=>t("em",null,null,-1)),Rf=me(()=>t("em",null,null,-1)),Gf=T({setup(e){return qa(),(a,o)=>(i(),r("div",Of,[Nf,z(s0),jf,z(Mf),z(n7),qf,z(P7),Rf]))}});var Vf=S(Gf,[["__scopeId","data-v-31aed265"]]);const Uf={};function Wf(e,a){const o=ct("router-view");return i(),M(o)}var Zf=S(Uf,[["render",Wf]]);const Hf={},Jf={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"},Kf=zt('icon_router',3),Xf=[Kf];function Qf(e,a){return i(),r("svg",Jf,Xf)}var t9=S(Hf,[["render",Qf]]);const e9={},a9={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"},o9=zt('icon_dial',3),n9=[o9];function i9(e,a){return i(),r("svg",a9,n9)}var r9=S(e9,[["render",i9]]);const s9={},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"},c9=zt('icon_side router',3),u9=[c9];function l9(e,a){return i(),r("svg",d9,u9)}var p9=S(s9,[["render",l9]]);const Gt=e=>(N("data-v-082ffcaf"),e=e(),j(),e),f9={id:"page"},m9=Gt(()=>t("div",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528\u7F51\u7EDC\u914D\u7F6E\u5411\u5BFC",-1)),b9=Gt(()=>t("div",{class:"desc"},"\u9009\u62E9\u4E00\u79CD\u8FDE\u63A5\u65B9\u5F0F\u4EE5\u5F00\u59CB",-1)),v9={class:"network-containers"},g9={class:"network-container_item"},_9={class:"cover"},h9={class:"thumbnail"},x9=Gt(()=>t("span",null,"\u5BBD\u5E26\u62E8\u53F7\u8FDE\u63A5",-1)),k9={class:"network-container_item"},w9={class:"cover"},y9={class:"thumbnail"},F9=Gt(()=>t("span",null,"\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668",-1)),C9={class:"network-container_item"},E9={class:"cover"},$9={class:"thumbnail"},D9=Gt(()=>t("span",null,"\u914D\u7F6E\u4E3A\u65C1\u8DEF\u7531",-1)),B9=Gt(()=>t("div",{class:"info"},[X(" \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)),Y9=T({setup(e){return(a,o)=>{const n=ct("router-link");return i(),r("div",f9,[m9,b9,t("div",v9,[t("div",g9,[z(n,{to:"/network/pppoe"},{default:q(()=>[t("div",_9,[t("div",h9,[z(r9),x9])])]),_:1})]),t("div",k9,[z(n,{to:"/network/dhcp"},{default:q(()=>[t("div",w9,[t("div",y9,[z(t9),F9])])]),_:1})]),t("div",C9,[z(n,{to:"/network/gateway"},{default:q(()=>[t("div",E9,[t("div",$9,[z(p9),D9])])]),_:1})])]),B9])}}});var A9=S(Y9,[["__scopeId","data-v-082ffcaf"]]);const te=e=>(N("data-v-4a938506"),e=e(),j(),e),S9={key:0,id:"page"},z9=te(()=>t("h2",{class:"title"},"\u914D\u7F6E\u5BBD\u5E26\u8D26\u53F7",-1)),P9=te(()=>t("h3",{class:"desc"},"\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u5149\u732B",-1)),T9=["onSubmit"],I9=te(()=>t("div",{class:"label-key"},[t("span",null,"\u5BBD\u5E26\u8D26\u53F7")],-1)),L9=["disabled"],M9=te(()=>t("div",{class:"label-key"},[t("span",null,"\u5BC6\u7801")],-1)),O9=["disabled"],N9={key:0,class:"msg"},j9={class:"btns"},q9=["disabled"],R9=["onClick"],G9={key:1,id:"page"},V9=te(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),U9={class:"btns"},W9=["onClick"],Z9=["onClick"],H9=T({setup(e){const a=y(0),o=y({account:"",password:""}),n=y(""),s=y(!1);(()=>A(this,null,function*(){var p;s.value=!0;try{const c=yield Y.Guide.Pppoe.GET();(p=c==null?void 0:c.data)!=null&&p.result&&(o.value=c.data.result)}catch(c){n.value=c}s.value=!1}))();const m=()=>A(this,null,function*(){const p=o.value.account||"",c=o.value.password||"";if(p==""){n.value="\u8D26\u53F7\u4E0D\u80FD\u4E3A\u7A7A";return}if(c==""){n.value="\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A";return}s.value=!0;const u=w.Loading("\u914D\u7F6E\u4E2D...");try{const d=yield Y.Guide.Pppoe.POST({account:p,password:c});if(d!=null&&d.data){const{error:v,success:f}=d.data;v&&(n.value=v),(f==null||f==0)&&(w.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(d){n.value=d}s.value=!1,u.Close()});return(p,c)=>{const u=ct("router-link");return a.value==0?(i(),r("div",S9,[z9,P9,t("form",{onSubmit:nt(m,["prevent"])},[t("label",null,[I9,P(t("input",{type:"text","onUpdate:modelValue":c[0]||(c[0]=d=>o.value.account=d),placeholder:"\u5BBD\u5E26\u8D26\u53F7",required:"",disabled:s.value},null,8,L9),[[W,o.value.account,void 0,{trim:!0}]])]),t("label",null,[M9,P(t("input",{type:"password","onUpdate:modelValue":c[1]||(c[1]=d=>o.value.password=d),placeholder:"\u5BBD\u5E26\u5BC6\u7801",required:"",disabled:s.value},null,8,O9),[[W,o.value.password,void 0,{trim:!0}]])]),n.value?(i(),r("div",N9,k(n.value),1)):D("",!0),t("div",j9,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},"\u4FDD\u5B58\u914D\u7F6E",8,q9),z(u,{to:"/network",custom:""},{default:q(({navigate:d})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u8FD4\u56DE",8,R9)]),_:1})])],40,T9)])):a.value==1?(i(),r("div",G9,[V9,t("div",U9,[z(u,{to:"/",custom:""},{default:q(({navigate:d})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:d},"\u8FDB\u5165\u63A7\u5236\u53F0",8,W9)]),_:1}),z(u,{to:"/network",custom:""},{default:q(({navigate:d})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u8FD4\u56DE",8,Z9)]),_:1})])])):D("",!0)}}});var J9=S(H9,[["__scopeId","data-v-4a938506"]]);const pt=e=>(N("data-v-6c09be9e"),e=e(),j(),e),K9={key:0,id:"page"},X9=pt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u4E92\u8054\u7F51",-1)),Q9=pt(()=>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)),tm=["onSubmit"],em=pt(()=>t("div",{class:"label-key"},[t("span",null,"WAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),am=pt(()=>t("option",{value:"dhcp"},"\u81EA\u52A8\u83B7\u53D6IP\u5730\u5740\uFF08DHCP\uFF09",-1)),om=pt(()=>t("option",{value:"static"},"\u9759\u6001IP\u5730\u5740",-1)),nm=[am,om],im=pt(()=>t("div",{class:"label-key"},[t("span",null,"IP\u5730\u5740")],-1)),rm=["disabled"],sm={key:0,class:"msg"},dm=pt(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),cm=["disabled"],um={key:1,class:"msg"},lm=pt(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),pm=["disabled"],fm=pt(()=>t("div",{class:"label-key"},[t("span",null,"DNS \u914D\u7F6E\u65B9\u5F0F")],-1)),mm=pt(()=>t("option",{value:"auto"},"\u81EA\u52A8\u83B7\u53D6\uFF08DHCP\uFF09",-1)),bm=pt(()=>t("option",{value:"manual"},"\u624B\u5DE5\u914D\u7F6E",-1)),vm=[mm,bm],gm=pt(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),_m=["onUpdate:modelValue","disabled"],hm=pt(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),xm=["disabled"],km=pt(()=>t("div",{class:"label-key"},"\u5907\u7528DNS\u670D\u52A1\u5668",-1)),wm=["disabled"],ym={key:2,class:"msgs"},Fm={class:"btns"},Cm=["disabled"],Em=["onClick"],$m={key:1,id:"page"},Dm=pt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),Bm={class:"btns"},Ym=["onClick"],Am=["onClick"],Sm=T({setup(e){const a=y(0),o=y({}),n=y(""),s=y(""),b=y(""),m=y(""),p=y(!1),c=y(""),u=y(""),d=Nt.checkIsIP;(()=>A(this,null,function*(){var x,C;p.value=!0;try{const E=yield Promise.all([Y.Guide.ClientModel.GET(),Y.Network.Status.GET()]);if(E[0]){const $=E[0];(x=$==null?void 0:$.data)!=null&&x.result&&(o.value=$.data.result)}if(E[1]){const $=E[1];if((C=$==null?void 0:$.data)!=null&&C.result){const B=$.data.result;B.ipv4addr&&(n.value=B.ipv4addr)}}}catch(E){s.value=E}p.value=!1}))();const f=x=>{x.target.value=="static"&&((o.value.staticIp==null||o.value.staticIp=="")&&(o.value.staticIp=n.value),(o.value.subnetMask==null||o.value.subnetMask=="")&&(o.value.subnetMask="255.255.255.0"))},_=x=>{x.target.value=="manual"},l=x=>{const C=x.target;if(C.value==""){c.value="";return}d(C.value)?c.value="":c.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684IP\u5730\u5740"},h=x=>{const C=x.target;if(C.value==""){u.value="";return}d(C.value)?u.value="":u.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684\u5730\u5740"},g=()=>A(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(b.value),m.value&&x.manualDnsIp.push(m.value));break}x.dnsProto=o.value.dnsProto,x.wanProto=o.value.wanProto;const C=w.Loading("\u914D\u7F6E\u4E2D....");p.value=!0;try{const E=yield Y.Guide.ClientModel.POST(x);if(E!=null&&E.data){const{success:$,error:B}=E==null?void 0:E.data;B&&(s.value=B),($==null||$==0)&&(w.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(E){s.value=E}p.value=!1,C.Close()});return(x,C)=>{const E=ct("router-link");return a.value==0?(i(),r("div",K9,[X9,Q9,t("form",{onSubmit:nt(g,["prevent"])},[t("label",null,[em,P(t("select",{"onUpdate:modelValue":C[0]||(C[0]=$=>o.value.wanProto=$),onInput:f},nm,544),[[Q,o.value.wanProto]])]),o.value.wanProto=="static"?(i(),r(L,{key:0},[t("label",null,[im,P(t("input",{type:"text","onUpdate:modelValue":C[1]||(C[1]=$=>o.value.staticIp=$),placeholder:"\u9759\u6001IP\u5730\u5740",required:"",disabled:p.value,onInput:l},null,40,rm),[[W,o.value.staticIp,void 0,{trim:!0}]])]),c.value?(i(),r("p",sm,k(c.value),1)):D("",!0),t("label",null,[dm,P(t("input",{type:"text","onUpdate:modelValue":C[2]||(C[2]=$=>o.value.subnetMask=$),placeholder:"\u5B50\u7F51\u63A9\u7801",required:"",disabled:p.value,onInput:h},null,40,cm),[[W,o.value.subnetMask,void 0,{trim:!0}]])]),u.value?(i(),r("p",um,k(u.value),1)):D("",!0),t("label",null,[lm,P(t("input",{type:"text","onUpdate:modelValue":C[3]||(C[3]=$=>o.value.gateway=$),placeholder:"\u7F51\u5173\u5730\u5740",required:"",disabled:p.value},null,8,pm),[[W,o.value.gateway,void 0,{trim:!0}]])])],64)):D("",!0),t("label",null,[fm,P(t("select",{"onUpdate:modelValue":C[4]||(C[4]=$=>o.value.dnsProto=$),onInput:_},vm,544),[[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},G(o.value.manualDnsIp,($,B)=>(i(),r("label",null,[gm,P(t("input",{type:"text","onUpdate:modelValue":O=>o.value.manualDnsIp[B]=O,placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:p.value},null,8,_m),[[W,o.value.manualDnsIp[B],void 0,{trim:!0}]])]))),256)):(i(),r(L,{key:1},[t("label",null,[hm,P(t("input",{type:"text","onUpdate:modelValue":C[5]||(C[5]=$=>b.value=$),placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:p.value},null,8,xm),[[W,b.value,void 0,{trim:!0}]])]),t("label",null,[km,P(t("input",{type:"text","onUpdate:modelValue":C[6]||(C[6]=$=>m.value=$),placeholder:"\u5907\u7528DNS\u670D\u52A1\u5668",disabled:p.value},null,8,wm),[[W,m.value,void 0,{trim:!0}]])])],64))],64)):D("",!0),s.value?(i(),r("div",ym,k(s.value),1)):D("",!0),t("div",Fm,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:p.value},"\u4FDD\u5B58\u914D\u7F6E",8,Cm),z(E,{to:"/network",custom:""},{default:q(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,Em)]),_:1})])],40,tm)])):a.value==1?(i(),r("div",$m,[Dm,t("div",Bm,[z(E,{to:"/",custom:""},{default:q(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:$},"\u8FDB\u5165\u63A7\u5236\u53F0",8,Ym)]),_:1}),z(E,{to:"/network",custom:""},{default:q(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,Am)]),_:1})])])):D("",!0)}}});var zm=S(Sm,[["__scopeId","data-v-6c09be9e"]]);const ft=e=>(N("data-v-50358ebb"),e=e(),j(),e),Pm={key:0,id:"page"},Tm=ft(()=>t("h2",{class:"title"},"\u65C1\u8DEF\u7531\u914D\u7F6E\u524D\u7684\u51C6\u5907\u5DE5\u4F5C",-1)),Im=ft(()=>t("code",null,[X(" \u65C1\u8DEF\u7531\u6A21\u5F0F\uFF0C\u4E5F\u53EB\u5355\u81C2\u8DEF\u7531\u6A21\u5F0F\u3002 "),t("br"),X("\u60A8\u53EF\u4EE5\u7528\u4E0A\u4E00\u7EA7\u8DEF\u7531\u62E8\u53F7\uFF0C\u7136\u540E\u7531ARS2\u6765\u5B9E\u73B0\u4E00\u4E9B\u9AD8\u7EA7\u529F\u80FD\u3002 ")],-1)),Lm=ft(()=>t("h3",{class:"desc"},"\u8BF7\u60A8\u83B7\u5F97\u4E3B\u8DEF\u7531\u5668\u7684IP\u5730\u5740\uFF08\u4F8B\u5982 192.168.2.1 \uFF09\uFF0C\u8BB0\u5F55\u4EE5\u5907\u4F7F\u7528",-1)),Mm=ft(()=>t("div",{class:"info"},[X(" \u4F60\u53EF\u4EE5\u67E5\u770B\u6211\u4EEC\u7684 "),t("a",{target:"_blank",href:"https://doc.linkease.com/zh/guide/easepi/common.html#%E6%97%81%E8%B7%AF%E7%94%B1%E6%A8%A1%E5%BC%8F"},"\u914D\u7F6E\u6559\u7A0B")],-1)),Om={class:"btns"},Nm=["disabled"],jm=["onClick"],qm={key:1,id:"page"},Rm=ft(()=>t("h2",{class:"title"},"\u914D\u7F6E\u65C1\u8DEF\u7531\u7F51\u7EDC",-1)),Gm=ft(()=>t("h3",{class:"desc"},"\u73B0\u5728\uFF0C\u8BF7\u4F60\u914D\u7F6E\u65C1\u8DEF\u7531\u4FE1\u606F",-1)),Vm=["onSubmit"],Um=ft(()=>t("div",{class:"label-key"},[t("span",null,"LAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),Wm={class:"label-value"},Zm=ft(()=>t("option",null,"\u65C1\u8DEF\u7531\u6A21\u5F0F\u4EC5\u652F\u6301\u9759\u6001IP\u5730\u5740",-1)),Hm=[Zm],Jm=ft(()=>t("div",{class:"label-key"},[t("span",null,"IP \u5730\u5740\uFF08\u8BF7\u548C\u4E0A\u4E00\u6B65\u8BB0\u5F55\u7684\u4E3B\u8DEF\u7531\u5730\u5740\u5728\u540C\u4E00\u7F51\u6BB5\uFF09")],-1)),Km=["disabled"],Xm=ft(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),Qm=["disabled"],tb=ft(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),eb=["disabled"],ab=ft(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),ob=["disabled"],nb={key:0,class:"msgs"},ib={class:"chose_dhcp"},rb={class:"chose_dhcp_icon"},sb=ft(()=>t("svg",{t:"1649907260906",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},[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"})],-1)),db=[sb],cb=ft(()=>t("svg",{t:"1649907515643",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2971","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},[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"})],-1)),ub=[cb],lb={key:0,class:"dhcp_info"},pb={class:"btns"},fb=["disabled"],mb=["onClick"],bb={key:2,id:"page"},vb=ft(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),gb={class:"btns"},_b=["onClick"],hb=["onClick"],xb=T({setup(e){const a=y(0),o=y(!1),n=y(""),s=y({subnetMask:"255.255.255.0",staticDnsIp:"223.5.5.5",staticLanIp:"",gateway:"",enableDhcp:!0}),b=()=>{s.value.enableDhcp=!1},m=()=>{s.value.enableDhcp=!0},p=u=>{a.value=u},c=()=>A(this,null,function*(){const u=s.value,d=w.Loading("\u914D\u7F6E\u4E2D...");try{const v=yield Y.Guide.GatewayRouter.POST(u);if(v!=null&&v.data){const{success:f,error:_}=v==null?void 0:v.data;_&&(n.value=_),(f==null||f==0)&&(w.Success("\u914D\u7F6E\u6210\u529F"),a.value=2)}}catch(v){n.value=v}d.Close()});return(u,d)=>{const v=ct("router-link");return a.value==0?(i(),r("div",Pm,[Tm,Im,Lm,Mm,t("div",Om,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:o.value,onClick:d[0]||(d[0]=f=>p(1))},"\u4E0B\u4E00\u6B65",8,Nm),z(v,{to:"/network",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},"\u8FD4\u56DE",8,jm)]),_:1})])])):a.value==1?(i(),r("div",qm,[Rm,Gm,t("form",{onSubmit:nt(c,["prevent"])},[t("label",null,[Um,t("div",Wm,[t("select",{disabled:"",style:Mt({backgroundColor:"rgba(215, 215, 215, 1)",color:"#333"})},Hm,4)])]),t("label",null,[Jm,P(t("input",{type:"text","onUpdate:modelValue":d[1]||(d[1]=f=>s.value.staticLanIp=f),placeholder:"IP\u5730\u5740",required:"",disabled:o.value},null,8,Km),[[W,s.value.staticLanIp,void 0,{trim:!0}]])]),t("label",null,[Xm,P(t("input",{type:"text","onUpdate:modelValue":d[2]||(d[2]=f=>s.value.subnetMask=f),placeholder:"\u5B50\u7F51\u63A9\u7801",required:"",disabled:o.value},null,8,Qm),[[W,s.value.subnetMask,void 0,{trim:!0}]])]),t("label",null,[tb,P(t("input",{type:"text","onUpdate:modelValue":d[3]||(d[3]=f=>s.value.gateway=f),placeholder:"\u7F51\u5173\u5730\u5740",required:"",disabled:o.value},null,8,eb),[[W,s.value.gateway,void 0,{trim:!0}]])]),t("label",null,[ab,P(t("input",{type:"text","onUpdate:modelValue":d[4]||(d[4]=f=>s.value.staticDnsIp=f),placeholder:"223.5.5.5",required:"",disabled:o.value},null,8,ob),[[W,s.value.staticDnsIp,void 0,{trim:!0}]])]),n.value?(i(),r("div",nb,k(n.value),1)):D("",!0),t("div",ib,[t("div",rb,[s.value.enableDhcp?(i(),r("span",{key:0,class:"mobie_open",onClick:b},db)):D("",!0),s.value.enableDhcp?D("",!0):(i(),r("span",{key:1,class:"mobie_close",onClick:m},ub))]),s.value.enableDhcp?(i(),r("span",lb,"\u662F\u5426\u63D0\u4F9B DHCP\uFF08\u5982\u679C\u662F\u63D0\u4F9B DHCP\uFF0C\u5219\u9700\u8981\u5173\u95ED\u4E3B\u8DEF\u7531 DHCP\uFF09")):D("",!0)]),t("div",pb,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:o.value},"\u4FDD\u5B58\u914D\u7F6E",8,fb),z(v,{to:"/network",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},"\u8FD4\u56DE",8,mb)]),_:1})])],40,Vm)])):a.value==2?(i(),r("div",bb,[vb,t("div",gb,[z(v,{to:"/",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:f},"\u8FDB\u5165\u63A7\u5236\u53F0",8,_b)]),_:1}),z(v,{to:"/network",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},"\u8FD4\u56DE",8,hb)]),_:1})])])):D("",!0)}}});var kb=S(xb,[["__scopeId","data-v-50358ebb"]]);const At=e=>(N("data-v-7fc91c6d"),e=e(),j(),e),wb={class:"actioner-container"},yb=At(()=>t("div",{class:"actioner-container_header"},[t("span",null,"RAID\u521B\u5EFA\u5411\u5BFC")],-1)),Fb={class:"actioner-container_body"},Cb=At(()=>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)),Eb={class:"label-item"},$b=At(()=>t("div",{class:"label-item_key"},[t("span",null,"RAID\u7EA7\u522B\uFF1A")],-1)),Db={class:"label-item_value"},Bb=["value"],Yb={class:"label-item_tips"},Ab={class:"label-item"},Sb=At(()=>t("div",{class:"label-item_key"},[t("span",null,"\u78C1\u76D8\u9635\u5217\u6210\u5458\uFF1A")],-1)),zb={key:0,class:"label-item_value"},Pb=At(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),Tb=[Pb],Ib={key:1,class:"label-item_value"},Lb=["value"],Mb={key:1,class:"msg-warning"},Ob={class:"label-item_tips"},Nb=X(" \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 "),jb={class:"actioner-container_footer"},qb=["disabled"],Rb=["disabled"],Gb={key:1,class:"actioner-container_body setup-loading"},Vb=At(()=>t("span",null,"\u6B63\u5728\u521B\u5EFA\u4E2D...",-1)),Ub={class:"actioner-container_body setup-error"},Wb={class:"actioner-container_footer"},Zb=["disabled"],Hb={class:"actioner-container_body setup-success"},Jb=At(()=>t("div",{class:"body-title"},"\u521B\u5EFA\u6210\u529F",-1)),Kb=At(()=>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,[X(" \u53EF\u524D\u5F80 "),t("a",{href:"/cgi-bin/luci/",target:"_blank",rel:"noopener noreferrer"},"\u9996\u9875-\u78C1\u76D8\u4FE1\u606F"),X(" \u8FDB\u884C\u6302\u8F7D ")])],-1)),Xb=T({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"),b=y(""),m=[{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"),c=y([]),u=h=>{let g="";return m.forEach(x=>{x.name===h&&(g=x.info)}),g},d=y(!1),v=it({loading:!1,members:[]}),f=h=>{};(()=>A(this,null,function*(){v.loading=!0;try{const h=yield Y.Raid.CreateList.GET();if(h!=null&&h.data){const{success:g,error:x,result:C}=h.data;if(C&&(v.members=C.members||[]),x)throw x}}catch(h){console.log(h)}finally{v.loading=!1}}))();const l=()=>A(this,null,function*(){const h=m.filter(x=>x.name===p.value)[0],g=c.value;if(!h){w.Warning("\u8BF7\u9009\u62E9raid\u7C7B\u578B");return}if(g.length==0){w.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}if(h.select>g.length){w.Warning("\u8BF7\u9009\u62E9\u81F3\u5C11"+h.select+"\u5757\u78C1\u76D8");return}if(!!confirm(`\u662F\u5426\u7ACB\u5373\u521B\u5EFA ${h.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 ${h.name}\uFF1F\u8BE5\u64CD\u4F5C\u4E0D\u53EF\u9006,\u8BF7\u8C28\u614E\u64CD\u4F5C`)){d.value=!0,s.value="loading";try{const x=yield Y.Raid.Create.POST({level:h.name,devicePaths:g});if(x.data){const{success:C,error:E,result:$}=x.data;if(E)throw E;(C||0)==0&&(s.value="success",n())}}catch(x){b.value=x,s.value="error"}finally{d.value=!1}}});return(h,g)=>{const x=ct("icon-loading"),C=ct("icon-error"),E=ct("icon-success");return i(),r("div",wb,[yb,s.value=="init"?(i(),r(L,{key:0},[t("div",Fb,[Cb,t("div",Eb,[$b,t("div",Db,[P(t("select",{"onUpdate:modelValue":g[0]||(g[0]=$=>p.value=$),onChange:f},[(i(),r(L,null,G(m,$=>t("option",{value:$.name},k($.title),9,Bb)),64))],544),[[Q,p.value]])]),t("div",Yb,[z(_t),X(" "+k(u(p.value)),1)])]),t("div",Ab,[Sb,F(v).loading?(i(),r("div",zb,Tb)):(i(),r("div",Ib,[F(v).members.length>0?(i(!0),r(L,{key:0},G(F(v).members,$=>(i(),r("label",null,[P(t("input",{type:"checkbox","onUpdate:modelValue":g[1]||(g[1]=B=>c.value=B),value:$.path},null,8,Lb),[[Ot,c.value]]),X(" \u3010"+k($.model)+"\u3011"+k($.name)+" "+k($.path)+" ["+k($.sizeStr)+"] ",1)]))),256)):(i(),r("span",Mb," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))])),t("div",Ob,[z(_t),Nb])])]),t("div",jb,[t("div",{class:"close",onClick:o,disabled:d.value},"\u53D6\u6D88",8,qb),t("div",{class:"next",onClick:l,disabled:d.value},"\u521B\u5EFA",8,Rb)])],64)):s.value=="loading"?(i(),r("div",Gb,[z(x,{size:60,color:"#666"}),Vb])):s.value=="error"?(i(),r(L,{key:2},[t("div",Ub,[z(C),t("span",null,k(b.value),1)]),t("div",Wb,[t("div",{class:"close",onClick:o},"\u5173\u95ED"),t("div",{class:"next",onClick:l,disabled:d.value},"\u91CD\u65B0\u521B\u5EFA",8,Zb)])],64)):s.value=="success"?(i(),r(L,{key:3},[t("div",Hb,[z(E),Jb,Kb]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])],64)):D("",!0)])}}});var Qb=S(Xb,[["__scopeId","data-v-7fc91c6d"]]);const tv={class:"actioner-container"},ev={class:"actioner-container_body"},av=["value"],ov=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0}},setup(e){const a=e,o=()=>{a.Close()},n=y("");return(()=>{Y.Raid.Detail.POST({path:a.raid.path}).then(b=>{if(b.data){const{result:m,error:p}=b.data;p?n.value=p:n.value=(m==null?void 0:m.detail)||""}}).catch(b=>{n.value=b.message})})(),(b,m)=>(i(),r("div",tv,[t("div",ev,[t("textarea",{value:n.value},null,8,av)]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])]))}});var nv=S(ov,[["__scopeId","data-v-51f9d7a2"]]);const ze=e=>(N("data-v-c07c8244"),e=e(),j(),e),iv={class:"actioner-container"},rv={class:"actioner-container_header"},sv={class:"actioner-container_body"},dv={class:"label-item"},cv=ze(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),uv={class:"label-item_value"},lv={disabled:""},pv={class:"label-item"},fv=ze(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u88AB\u6DFB\u52A0\u5230RAID\u7684\u786C\u76D8\uFF09\uFF1A ",-1)),mv={key:0,class:"label-item_value"},bv=ze(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),vv=[bv],gv={key:1,class:"label-item_value"},_v=["value"],hv={key:1,class:"msg-warning"},xv={class:"actioner-container_footer"},kv=["disabled"],wv=["disabled"],yv=T({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=()=>A(this,null,function*(){const u=p.value;if(u==""){w.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}m.value=!0;const d=w.Loading("\u4FDD\u5B58\u4E2D...");try{const v=yield Y.Raid.Add.POST({path:a.raid.path,memberPath:u});if(v.data){const{error:f,success:_}=v.data;if(f)throw f;(_||0)==0&&(w.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(v){w.Error(`${v}`)}finally{m.value=!1,d.Close()}}),b=it({loading:!1,members:[]}),m=y(!1),p=y("");return(()=>A(this,null,function*(){b.loading=!0,m.value=!0;try{const u=yield Y.Raid.CreateList.GET();if(u!=null&&u.data){const{success:d,error:v,result:f}=u.data;if(f&&(b.members=f.members||[]),v)throw v}}catch(u){console.log(u)}finally{m.value=!1,b.loading=!1}}))(),(u,d)=>(i(),r("div",iv,[t("div",rv,[t("span",null,"RAID - "+k(e.raid.name)+" \u4FEE\u6539",1)]),t("div",sv,[t("div",dv,[cv,t("div",uv,[t("select",lv,[t("option",null,k(e.raid.name)+"_"+k(e.raid.venderModel)+" ("+k(e.raid.path)+"\uFF0C"+k(e.raid.level)+"\uFF0C"+k(e.raid.size)+") ",1)])])]),t("div",pv,[fv,F(b).loading?(i(),r("div",mv,vv)):(i(),r("div",gv,[F(b).members.length>0?(i(!0),r(L,{key:0},G(F(b).members,v=>(i(),r("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":d[0]||(d[0]=f=>p.value=f),value:v.path},null,8,_v),[[bt,p.value]]),X(" \u3010"+k(v.model)+"\u3011"+k(v.name)+" "+k(v.path)+" ["+k(v.sizeStr)+"] ",1)]))),256)):(i(),r("span",hv," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",xv,[t("div",{class:"close",onClick:o,disabled:m.value},"\u53D6\u6D88",8,kv),t("div",{class:"next",onClick:s,disabled:m.value},"\u4FDD\u5B58",8,wv)])]))}});var Fv=S(yv,[["__scopeId","data-v-c07c8244"]]);const da=e=>(N("data-v-13dc2cd6"),e=e(),j(),e),Cv={class:"actioner-container"},Ev={class:"actioner-container_header"},$v={class:"actioner-container_body"},Dv={class:"label-item"},Bv=da(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),Yv={class:"label-item_value"},Av={disabled:""},Sv={class:"label-item"},zv=da(()=>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)),Pv={class:"label-item_value"},Tv=["value"],Iv={class:"actioner-container_footer"},Lv=["disabled"],Mv=["disabled"],Ov=T({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=()=>A(this,null,function*(){const p=m.value;if(p==""){w.Warning("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u786C\u76D8");return}b.value=!0;const c=w.Loading("\u4FDD\u5B58\u4E2D...");try{const u=yield Y.Raid.Remove.POST({path:a.raid.path,memberPath:p});if(u.data){const{error:d,success:v}=u.data;if(d)throw d;(v||0)==0&&(w.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(u){w.Error(`${u}`)}finally{b.value=!1,c.Close()}}),b=y(!1),m=y("");return(p,c)=>(i(),r("div",Cv,[t("div",Ev,[t("span",null,"RAID - "+k(e.raid.name)+" \u79FB\u9664",1)]),t("div",$v,[t("div",Dv,[Bv,t("div",Yv,[t("select",Av,[t("option",null,k(e.raid.name)+"_"+k(e.raid.venderModel)+" ("+k(e.raid.path)+"\uFF0C"+k(e.raid.level)+"\uFF0C"+k(e.raid.size)+") ",1)])])]),t("div",Sv,[zv,t("div",Pv,[(i(!0),r(L,null,G(e.raid.members,u=>(i(),r("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":c[0]||(c[0]=d=>m.value=d),value:u},null,8,Tv),[[bt,m.value]]),X(" "+k(u),1)]))),256))])])]),t("div",Iv,[t("div",{class:"close",onClick:o,disabled:b.value},"\u53D6\u6D88",8,Lv),t("div",{class:"next",onClick:s,disabled:b.value},"\u4FDD\u5B58",8,Mv)])]))}});var Nv=S(Ov,[["__scopeId","data-v-13dc2cd6"]]);const Pe=e=>(N("data-v-5643983d"),e=e(),j(),e),jv={class:"actioner-container"},qv={class:"actioner-container_header"},Rv={class:"actioner-container_body"},Gv={class:"label-item"},Vv=Pe(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),Uv={class:"label-item_value"},Wv={disabled:""},Zv={class:"label-item"},Hv=Pe(()=>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)),Jv={key:0,class:"label-item_value"},Kv=Pe(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),Xv=[Kv],Qv={key:1,class:"label-item_value"},tg=["value"],eg={key:1,class:"msg-warning"},ag={class:"actioner-container_footer"},og=["disabled"],ng=["disabled"],ig=T({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=()=>A(this,null,function*(){const u=p.value;if(u==""){w.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}m.value=!0;const d=w.Loading("\u4FDD\u5B58\u4E2D...");try{const v=yield Y.Raid.Recover.POST({path:a.raid.path,memberPath:u});if(v.data){const{error:f,success:_}=v.data;if(f)throw f;(_||0)==0&&(w.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(v){w.Error(`${v}`)}finally{m.value=!1,d.Close()}}),b=it({loading:!1,members:[]}),m=y(!1),p=y("");return(()=>A(this,null,function*(){b.loading=!0,m.value=!0;try{const u=yield Y.Raid.CreateList.GET();if(u!=null&&u.data){const{success:d,error:v,result:f}=u.data;if(f&&(b.members=f.members||[]),v)throw v}}catch(u){console.log(u)}finally{m.value=!1,b.loading=!1}}))(),(u,d)=>(i(),r("div",jv,[t("div",qv,[t("span",null,"RAID - "+k(e.raid.name)+" \u6062\u590D",1)]),t("div",Rv,[t("div",Gv,[Vv,t("div",Uv,[t("select",Wv,[t("option",null,k(e.raid.name)+"_"+k(e.raid.venderModel)+" ("+k(e.raid.path)+"\uFF0C"+k(e.raid.level)+"\uFF0C"+k(e.raid.size)+") ",1)])])]),t("div",Zv,[Hv,F(b).loading?(i(),r("div",Jv,Xv)):(i(),r("div",Qv,[F(b).members.length>0?(i(!0),r(L,{key:0},G(F(b).members,v=>(i(),r("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":d[0]||(d[0]=f=>p.value=f),value:v.path},null,8,tg),[[bt,p.value]]),X(" \u3010"+k(v.model)+"\u3011"+k(v.name)+" "+k(v.path)+" ["+k(v.sizeStr)+"] ",1)]))),256)):(i(),r("span",eg," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",ag,[t("div",{class:"close",onClick:o,disabled:m.value},"\u53D6\u6D88",8,og),t("div",{class:"next",onClick:s,disabled:m.value},"\u4FDD\u5B58",8,ng)])]))}});var rg=S(ig,[["__scopeId","data-v-5643983d"]]);const sg={class:"action-main"},dg=T({props:{Close:{type:Function,required:!0},setup:{type:String,default:"create"},raid:{type:Object},success:{type:Function}},setup(e){return(a,o)=>(i(),M(at,{type:2},{default:q(()=>[t("div",sg,[e.setup=="create"?(i(),M(Qb,{key:0,Close:e.Close},null,8,["Close"])):e.setup=="info"&&e.raid!=null?(i(),M(nv,{key:1,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="edit"&&e.raid!=null?(i(),M(Fv,{key:2,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="remove"&&e.raid!=null?(i(),M(Nv,{key:3,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="recover"&&e.raid!=null?(i(),M(rg,{key:4,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):D("",!0)])]),_:1}))}});var cg=S(dg,[["__scopeId","data-v-6ef94d02"]]);const Wt=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(cg,ot(K({},e),{Close:()=>{n()}}));o.use(He),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},ee=e=>(N("data-v-aae61368"),e=e(),j(),e),ug={id:"page"},lg=ee(()=>t("h2",{name:"content"}," RAID\u7BA1\u7406",-1)),pg=ee(()=>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)),fg={class:"btns"},mg=["disabled"],bg={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},vg={class:"table cbi-section-table"},gg={style:{}},_g=ee(()=>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)),hg={class:"tr cbi-section-table-row"},xg={class:"td cbi-value-field"},kg={class:"td cbi-value-field"},wg=["title"],yg={class:"item-status"},Fg={key:0,class:"item-status"},Cg={class:"td cbi-value-field"},Eg={class:"td cbi-value-field"},$g={class:"td cbi-value-field"},Dg=ee(()=>t("br",null,null,-1)),Bg={class:"td cbi-value-field"},Yg=ee(()=>t("br",null,null,-1)),Ag={key:1,href:"/cgi-bin/luci/admin/quickstart/pages/"},Sg={class:"td cbi-section-table-cell nowrap cbi-section-actions"},zg=["disabled","onClick"],Pg=["disabled","onClick"],Tg=["onClick"],Ig=["onClick"],Lg=["onClick"],Mg=T({setup(e){const a=it({disksList:[]}),o=()=>A(this,null,function*(){try{const l=yield Y.Raid.List.GET();if(l!=null&&l.data){const{success:h,error:g,result:x}=l.data;if(x&&(a.disksList=x.disks||[]),g)throw g}}catch(l){console.log(l)}});o();const n=setInterval(()=>{o()},5e3);ke(()=>{clearInterval(n)});const s=l=>{switch(l.level){case"raid0":case"jbod":return!0}return l.status.indexOf("degraded")!=-1||l.status.indexOf("resyncing(")!=-1},b=l=>{let h=[];return l.childrens&&l.childrens.forEach(g=>{g.mountPoint&&h.push(`${g.name}(${g.mountPoint})`)}),h},m=()=>A(this,null,function*(){Wt({setup:"create",success:()=>{o()}})}),p=l=>{Wt({setup:"info",raid:l})},c=l=>A(this,null,function*(){if(l.childrens&&l.childrens.length>0&&l.childrens.filter(x=>x.mountPoint).length>0){ie({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 ${l.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 ${l.name} \u5417?`))return;const h=w.Loading("\u5220\u9664\u4E2D...");try{const g=yield Y.Raid.Delete.POST({path:l.path,members:l.members});if(g.data){const{success:x,error:C}=g.data;if(C)throw C;(x||0)==0&&(w.Success("\u5220\u9664\u6210\u529F"),o())}}catch(g){w.Error(`${g}`)}finally{h.Close()}}),u=l=>{Wt({setup:"edit",raid:l,success:()=>{o()}})},d=l=>{Wt({setup:"remove",raid:l,success:()=>{o()}})},v=l=>{Wt({setup:"recover",raid:l,success:()=>{o()}})},f=y(!1),_=()=>{ie({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:()=>A(this,null,function*(){f.value=!0;const l=w.Loading("\u626B\u63CF\u4E2D...");try{const h=yield Y.Raid.Autofix.GET();if(h.data){const{error:g,success:x}=h.data;if(g)throw g;(x||0)==0&&(w.Success("\u6062\u590D\u5B8C\u6210"),o())}}catch(h){w.Error(`${h}`)}finally{l.Close(),f.value=!1}}),clearTitle:"\u53D6\u6D88",clear:()=>{}})};return(l,h)=>(i(),r("div",ug,[lg,pg,t("div",fg,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[0]||(h[0]=g=>m())},"\u521B\u5EFARAID"),t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[1]||(h[1]=g=>_()),disabled:f.value},"\u626B\u63CF\u6062\u590DRAID",8,mg)]),t("div",null,[t("div",bg,[t("table",vg,[t("tbody",gg,[_g,(i(!0),r(L,null,G(F(a).disksList,g=>(i(),r("tr",hg,[t("td",xg,[t("b",null,k(g.name),1)]),t("td",kg,[t("b",null,k(g.path),1)]),t("td",{class:"td cbi-value-field",title:g.status+g.rebuildStatus},[t("b",yg,k(g.status),1),g.rebuildStatus?(i(),r("b",Fg,k(`(${g.rebuildStatus})`),1)):D("",!0)],8,wg),t("td",Cg,[t("b",null,k(g.level),1)]),t("td",Eg,[t("b",null,k(g.size),1)]),t("td",$g,[(i(!0),r(L,null,G(g.members,x=>(i(),r("b",null,[X(k(x)+" ",1),Dg]))),256))]),t("td",Bg,[b(g).length>0?(i(!0),r(L,{key:0},G(b(g),x=>(i(),r("b",null,[X(k(x)+" ",1),Yg]))),256)):(i(),r("a",Ag,"\u53BB\u6302\u8F7D"))]),t("td",Sg,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6269\u5145",disabled:s(g),onClick:x=>u(g)},"\u6269\u5145",8,zg),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u79FB\u9664",disabled:s(g),onClick:x=>d(g)},"\u79FB\u9664",8,Pg),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6062\u590D",onClick:x=>v(g)},"\u6062\u590D",8,Tg),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:x=>p(g)},"\u8BE6\u60C5",8,Ig),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=>c(g)},"\u5220\u9664",8,Lg)])]))),256))])])])])]))}});var Og=S(Mg,[["__scopeId","data-v-aae61368"]]);const ca=e=>(N("data-v-2bc40d1c"),e=e(),j(),e),Ng={id:"page"},jg=ca(()=>t("h2",{name:"content"},"S.M.A.R.T.",-1)),qg=ca(()=>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)),Rg={class:"tabs"},Gg=["href","onClick"],Vg=T({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:c,devices:u,tasks:d}=p;c&&(n.global.enable=c.enable||!1,n.global.powermode=c.powermode||"never"),n.devices=u||[],n.tasks=d||[]};(()=>A(this,null,function*(){try{const p=yield Y.Smart.Config.GET();if(p.data){const{result:c}=p.data;c&&s(c)}}catch(p){}finally{o.value=!0}}))();const m=p=>A(this,null,function*(){const c=w.Loading("\u4FDD\u5B58\u4E2D...");try{const u=yield Y.Smart.Config.POST(p);if(u.data){console.log(u.data);const{success:d,error:v,result:f}=u.data;if(v)throw v;(d||0)==0&&(w.Success("\u4FDD\u5B58\u6210\u529F"),f&&s(f))}}catch(u){w.Error(`${u}`)}finally{c.Close()}});return(p,c)=>{const u=ct("router-link"),d=ct("router-view");return i(),r("div",Ng,[jg,qg,t("ul",Rg,[(i(),r(L,null,G(a,v=>z(u,{to:v.to,custom:"",key:v.to},{default:q(({route:f,href:_,navigate:l,isActive:h,isExactActive:g})=>[t("li",{class:dt({"active cbi-tab":h&&g})},[t("a",{href:_,onClick:l},k(v.name),9,Gg)],2)]),_:2},1032,["to"])),64))]),o.value?(i(),M(d,{key:0,name:"default"},{default:q(({Component:v,route:f})=>[(i(),M(Ea,null,{default:q(()=>[(i(),M($a(v),{key:f.path,config:F(n),saveData:m},null,8,["config"]))]),_:2},1024))]),_:1})):D("",!0)])}}});var Ug=S(Vg,[["__scopeId","data-v-2bc40d1c"]]);const Wg={class:"action-main"},Zg=T({setup(e){return(a,o)=>(i(),M(at,{type:2},{default:q(()=>[t("div",Wg,[St(a.$slots,"default",{},void 0,!0)])]),_:3}))}});var be=S(Zg,[["__scopeId","data-v-742230ae"]]);const Hg={class:"actioner-container"},Jg={class:"actioner-container_header"},Kg={class:"actioner-container_body"},Xg={class:"cbi-value"},Qg=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),t_={class:"cbi-value-field"},e_={class:"cbi-value-description"},a_={class:"cbi-value"},o_=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),n_={class:"cbi-value-field"},i_={class:"cbi-checkbox"},r_=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),s_=t("option",{value:0},"\u7981\u7528",-1),d_=["value"],c_=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),u_={class:"cbi-value"},l_=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),p_={class:"cbi-value-field"},f_={class:"cbi-checkbox"},m_=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),b_=t("option",{value:0},"\u7981\u7528",-1),v_=["value"],g_=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),__={class:"actioner-container_footer"},h_=["disabled"],x_=["disabled"],k_=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0},device:{type:Object},next:{type:Function,required:!0}},setup(e){var m,p,c;const a=e;console.log(a.device);const o=y(!1),n=it({tmpDiff:((m=a.device)==null?void 0:m.tmpDiff)||0,tmpMax:((p=a.device)==null?void 0:p.tmpMax)||0,devicePath:((c=a.device)==null?void 0:c.devicePath)||""}),s=()=>{o.value=!0,a.close()},b=()=>A(this,null,function*(){o.value=!0;try{yield a.next({tmpDiff:n.tmpDiff,tmpMax:n.tmpMax,devicePath:n.devicePath}),o.value=!1,s()}catch(u){}});return(u,d)=>(i(),M(be,null,{default:q(()=>[t("div",Hg,[t("div",Jg,[t("span",null," S.M.A.R.T. \xBB \u8BBE\u5907 \xBB "+k(e.disk.path),1)]),t("div",Kg,[t("div",Xg,[Qg,t("div",t_,[t("div",e_,k(e.disk.model)+" [ "+k(e.disk.path)+"\uFF0C"+k(e.disk.sizeStr)+" ] ",1)])]),t("div",a_,[o_,t("div",n_,[t("div",i_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":d[0]||(d[0]=v=>F(n).tmpDiff=v)},[r_,s_,(i(),r(L,null,G(20,v=>t("option",{value:v},k(v)+"\xB0C",9,d_)),64))],512),[[Q,F(n).tmpDiff,void 0,{number:!0}]])]),c_])]),t("div",u_,[l_,t("div",p_,[t("div",f_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":d[1]||(d[1]=v=>F(n).tmpMax=v)},[m_,b_,(i(),r(L,null,G(20,v=>t("option",{value:v*5},k(v*5)+"\xB0C",9,v_)),64))],512),[[Q,F(n).tmpMax,void 0,{number:!0}]])]),g_])])]),t("div",__,[t("button",{class:"close",onClick:s,disabled:o.value},"\u53D6\u6D88",8,h_),t("button",{class:"next",onClick:b,disabled:o.value},"\u4FDD\u5B58",8,x_)])])]),_:1}))}}),w_={class:"actioner-container"},y_=t("div",{class:"actioner-container_header"},[t("span",null," \u521B\u5EFA\u8BA1\u5212\u4EFB\u52A1 ")],-1),F_={class:"actioner-container_body"},C_={class:"cbi-value"},E_=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),$_={class:"cbi-value-field"},D_={class:"cbi-checkbox"},B_=t("option",{value:""},"\u9009\u62E9\u78C1\u76D8",-1),Y_=["value"],A_={class:"cbi-value"},S_=t("label",{class:"cbi-value-title"}," \u7C7B\u578B ",-1),z_={class:"cbi-value-field"},P_={class:"cbi-checkbox"},T_=t("option",{value:"short"},"\u77ED\u6682\u81EA\u68C0",-1),I_=t("option",{value:"long"},"\u957F\u65F6\u81EA\u68C0",-1),L_=t("option",{value:"conveyance"},"\u4F20\u8F93\u65F6\u81EA\u68C0",-1),M_=t("option",{value:"offline"},"\u79BB\u7EBF\u65F6\u81EA\u68C0",-1),O_=[T_,I_,L_,M_],N_={class:"cbi-value"},j_=t("label",{class:"cbi-value-title"}," \u5C0F\u65F6 ",-1),q_={class:"cbi-value-field"},R_={class:"cbi-checkbox"},G_=t("option",{value:"*"},"*",-1),V_=["value"],U_=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5C0F\u65F6 ",-1),W_={class:"cbi-value"},Z_=t("label",{class:"cbi-value-title"}," \u5929 ",-1),H_={class:"cbi-value-field"},J_={class:"cbi-checkbox"},K_=t("option",{value:"*"},"*",-1),X_=["value"],Q_=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5929 ",-1),th={class:"cbi-value"},eh=t("label",{class:"cbi-value-title"}," \u6708 ",-1),ah={class:"cbi-value-field"},oh={class:"cbi-checkbox"},nh=t("option",{value:"*"},"*",-1),ih=["value"],rh=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u6708 ",-1),sh={class:"actioner-container_footer"},dh=["disabled"],ch=["disabled"],uh=T({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([]);(()=>A(this,null,function*(){try{const c=yield Y.Smart.List.GET();if(c.data){const{result:u,error:d}=c.data;u&&u.disks&&(s.value=u.disks)}}catch(c){}}))();const m=()=>{o.value=!0,a.close()},p=()=>A(this,null,function*(){if(n.devicePath==""){w.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}o.value=!0;try{yield a.next(n),m()}catch(c){}finally{o.value=!1}});return(c,u)=>(i(),M(be,null,{default:q(()=>[t("div",w_,[y_,t("div",F_,[t("div",C_,[E_,t("div",$_,[t("div",D_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[0]||(u[0]=d=>F(n).devicePath=d)},[B_,(i(!0),r(L,null,G(s.value,d=>(i(),r("option",{value:d.path},k(d.model)+" [ "+k(d.path)+"\uFF0C"+k(d.sizeStr)+" ] ",9,Y_))),256))],512),[[Q,F(n).devicePath,void 0,{trim:!0}]])])])]),t("div",A_,[S_,t("div",z_,[t("div",P_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[1]||(u[1]=d=>F(n).type=d)},O_,512),[[Q,F(n).type,void 0,{trim:!0}]])])])]),t("div",N_,[j_,t("div",q_,[t("div",R_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[2]||(u[2]=d=>F(n).hour=d)},[G_,(i(),r(L,null,G(24,(d,v)=>t("option",{value:`${v}`},k(v),9,V_)),64))],512),[[Q,F(n).hour,void 0,{trim:!0}]])]),U_])]),t("div",W_,[Z_,t("div",H_,[t("div",J_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[3]||(u[3]=d=>F(n).dayPerMonth=d)},[K_,(i(),r(L,null,G(31,d=>t("option",{value:`${d}`},k(d),9,X_)),64))],512),[[Q,F(n).dayPerMonth,void 0,{trim:!0}]])]),Q_])]),t("div",th,[eh,t("div",ah,[t("div",oh,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[4]||(u[4]=d=>F(n).month=d)},[nh,(i(),r(L,null,G(12,(d,v)=>t("option",{value:`${d}`},k(d),9,ih)),64))],512),[[Q,F(n).month,void 0,{trim:!0}]])]),rh])])]),t("div",sh,[t("button",{class:"close",onClick:m,disabled:o.value},"\u53D6\u6D88",8,dh),t("button",{class:"next",onClick:p,disabled:o.value},"\u4FDD\u5B58",8,ch)])])]),_:1}))}}),lh=e=>(N("data-v-45dd818a"),e=e(),j(),e),ph={class:"actioner-container"},fh=lh(()=>t("div",{class:"actioner-container_header"},[t("span",null," \u8FD0\u884C\u8C03\u8BD5 ")],-1)),mh={class:"actioner-container_body"},bh=["value"],vh={class:"actioner-container_footer"},gh=["disabled"],_h=["disabled"],hh=T({props:{close:{type:Function,required:!0},task:{type:Object,required:!0}},setup(e){const a=e,o=y(!1),n=y(""),s=y(""),b=y(""),m=()=>A(this,null,function*(){n.value+=".";try{const d=yield Y.Smart.Test.Result.POST({type:"selftest",devicePath:a.task.devicePath||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(b.value=v.result),f&&(b.value=f)}}catch(d){d&&(b.value=d)}});m();const p=setInterval(()=>A(this,null,function*(){yield m()}),5e3);ke(()=>{clearInterval(p)});const c=()=>{o.value=!0,clearInterval(p),a.close()},u=()=>A(this,null,function*(){o.value=!0;try{const d=yield Y.Smart.Test.POST({type:a.task.type||"short",devicePath:a.task.devicePath||""});if(d.data){const{success:v,error:f,result:_}=d.data;f&&(s.value=f),_&&_.result&&(s.value=_.result)}}catch(d){s.value=d}finally{}});return(d,v)=>(i(),M(be,null,{default:q(()=>[t("div",ph,[fh,t("div",mh,[t("textarea",{value:s.value+` +var ba=Object.defineProperty,va=Object.defineProperties;var ga=Object.getOwnPropertyDescriptors;var Oe=Object.getOwnPropertySymbols;var _a=Object.prototype.hasOwnProperty,ha=Object.prototype.propertyIsEnumerable;var ke=(e,a,o)=>a in e?ba(e,a,{enumerable:!0,configurable:!0,writable:!0,value:o}):e[a]=o,K=(e,a)=>{for(var o in a||(a={}))_a.call(a,o)&&ke(e,o,a[o]);if(Oe)for(var o of Oe(a))ha.call(a,o)&&ke(e,o,a[o]);return e},ot=(e,a)=>va(e,ga(a));var xa=(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 Y=(e,a,o)=>new Promise((n,s)=>{var b=c=>{try{p(o.next(c))}catch(u){s(u)}},m=c=>{try{p(o.throw(c))}catch(u){s(u)}},p=c=>c.done?n(c.value):Promise.resolve(c.value).then(b,m);p((o=o.apply(e,a)).next())});import{d as Kt,a as T,c as J,u as y,o as i,b as r,e as t,t as w,n as Nt,f as D,r as ct,g as z,h as dt,i as zt,j as O,w as q,k as Pt,l as ka,m as F,p as Bt,q as Rt,s as wa,v as ya,x as Fa,y as Ca,z as Ea,A as $a,B as Da,C as it,T as xt,D as N,E as j,F as tt,G as L,H as P,I as Q,J as G,K as H,L as Ba,M as rt,N as wt,O as X,P as jt,Q as vt,R as ce,S as Ce,U as Ya,V as Aa,W as ue,X as We,Y as Sa,Z as za,_ as Pa}from"./vendor.js?v=ecba491a";var Aw=xa(Fe=>{const Ta=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 b of s)if(b.type==="childList")for(const m of b.addedNodes)m.tagName==="LINK"&&m.rel==="modulepreload"&&n(m)}).observe(document,{childList:!0,subtree:!0});function o(s){const b={};return s.integrity&&(b.integrity=s.integrity),s.referrerpolicy&&(b.referrerPolicy=s.referrerpolicy),s.crossorigin==="use-credentials"?b.credentials="include":s.crossorigin==="anonymous"?b.credentials="omit":b.credentials="same-origin",b}function n(s){if(s.ep)return;s.ep=!0;const b=o(s);fetch(s.href,b)}};Ta();const Ia=(e,a)=>Y(Fe,null,function*(){return new Promise((o,n)=>Y(Fe,null,function*(){try{const s=yield fetch(e,a);if(Math.floor(s.status/100)!=2)throw s.status+" "+s.statusText;const b=K({},s);b.data=yield s.json(),o(b)}catch(s){n(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 Y(this,null,function*(){return new Promise((n,s)=>Y(this,null,function*(){try{const b=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${b.baseURL||""}${a}`,o.headers==null&&(o.headers={}),b.headers&&(o.headers=K({},b.headers));const p=yield fetch(a,o),c=K({},p);c.data=yield p.json(),n(this.useResponse(c))}catch(b){this.useError(b),s(b)}}))})}TEXT(a,o){return Y(this,null,function*(){return new Promise((n,s)=>Y(this,null,function*(){try{const b=this.useRequest({baseURL:this.config.baseURL,headers:this.config.headers});a=`${b.baseURL||""}${a}`,o.headers==null&&(o.headers={}),b.headers&&(o.headers=K({},b.headers));const p=yield fetch(a,o),c=K({},p);c.data=yield p.text(),n(c)}catch(b){this.useError(b),s(b)}}))})}interceptors(){const a=this;return{requset:{use(o){a.useRequest=o}},response:{use(o,n){a.useResponse=o,n&&(a.useError=n)}}}}}const Ze=Ee.create({});Ze.interceptors().requset.use(e=>e);Ze.interceptors().response.use(e=>(e.data&&e.data.success==null&&e.data.success==0,e));const La="/cgi-bin/luci/istore";let Ne=!1;const I=(e,a)=>(e.indexOf("//")==-1&&(e=`${La}${e}`),Ia(e,a).then(o=>(o!=null&&o.data&&o.data.success==-1001&&o.data.error=="Forbidden"&&(Ne||(Ne=!0,alert("\u767B\u5F55\u8FC7\u671F\uFF0C\u8BF7\u91CD\u65B0\u767B\u5F55"),location.reload())),o))),Ma={Statistics:{GET(){return I("/network/statistics/",{method:"GET"})}},Status:{GET(){return I("/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"}})}}},Oa={Version:{GET(){return I("/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"})}}},Na={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("/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("/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("/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"}})}}},ja={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)})}}},qa={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"})}}},DownloadpPartition:{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("/guide/ddns/",{method:"POST",headers:{"Content-Type":"application/json;charset=utf-8"},body:JSON.stringify(e)})}},GetDdns:{GET(){return I("/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)})}}},Ra={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"})}}},Ga={Log:{GET(){return I("/smart/log/",{method:"GET"})}},List:{GET(){return I("/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("/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 Va=Object.freeze(Object.defineProperty({__proto__:null,Network:Ma,System:Oa,Nas:Na,App:ja,Guide:qa,Raid:Ra,Smart:Ga},Symbol.toStringTag,{value:"Module"})),B=K({},Va);const He=Kt("app",{state:()=>({portitemStyle:{show:!1,left:0,top:0,portitem:{name:"",macAddress:"",linkSpeed:"",linkState:"",rx_packets:"",tx_packets:"",interfaceNames:[],master:"",duplex:""}}})});Kt("guide",{});const Je=Kt("nas",{state:()=>({webdav:{}})}),Ke=Kt("network",{state:()=>({status:{},statistics:{},deviceList:{}}),getters:{},actions:{updateNetworkStatus(e){this.status=e},requestNetworkStatistics(){return Y(this,null,function*(){try{const e=yield B.Network.Statistics.GET();e!=null&&e.data&&e.data.result&&(this.statistics=e.data.result)}catch(e){console.log(e)}})},requestDeviceList(){B.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++}}}),$e=Kt("system",{state:()=>({version:{},checkUpdate:{},systemStatus:{}}),getters:{},actions:{incrTime(){var e;(e=this.systemStatus)!=null&&e.uptime&&this.systemStatus.uptime++},requestVersion(){B.System.Version.GET().then(e=>{var a;(a=e==null?void 0:e.data)!=null&&a.result&&(this.version=e.data.result)})},requestCheckUpdate(){B.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}}}),Ua=()=>{let e=!0,a=!0;const o=Ke(),n=$e(),s=function(){return B.System.Status.GET().then(m=>{m!=null&&m.data.result&&n.updateSystemStatus(m.data.result)}).then(()=>{setTimeout(s,5e3),e&&(setInterval(()=>{n.incrTime()},1e3),e=!1)})},b=function(){return B.Network.Status.GET().then(m=>{if(m!=null&&m.data){const{result:p}=m==null?void 0:m.data;p&&o.updateNetworkStatus(p)}}).then(()=>{setTimeout(b,5e3),a&&(setInterval(()=>{o.incrTime()},1e3),a=!1)})};b(),o.requestDeviceList(),n.requestVersion(),s(),n.requestCheckUpdate()};var S=(e,a)=>{const o=e.__vccOpts||e;for(const[n,s]of a)o[n]=s;return o};const Wa=T({setup(e){const a=He(),o=J(()=>a.portitemStyle.portitem),n=J(()=>a.portitemStyle.show),s=J(()=>({bottom:`calc(100% - ${a.portitemStyle.top}px)`,left:`${a.portitemStyle.left}px`})),b=c=>{switch(c){case"full":return"\u5168\u53CC\u5DE5";case"half":return"\u534A\u53CC\u5DE5"}},m=c=>{a.portitemStyle.show=!0},p=c=>{a.portitemStyle.show=!1};return(c,u)=>y(n)?(i(),r("div",{key:0,class:"disk-item-tooltip",style:Nt(y(s)),onMouseenter:m,onMouseleave:p},[t("div",null,w(b(y(o).duplex)),1),t("div",null,"\u540D\u79F0\uFF1A"+w(y(o).name||"--"),1),t("div",null,"MAC\uFF1A"+w(y(o).macAddress||"--"),1),t("div",null,"\u63A5\u6536\uFF1A"+w(y(o).rx_packets||"--"),1),t("div",null,"\u53D1\u9001\uFF1A"+w(y(o).tx_packets||"--"),1)],36)):D("",!0)}});var Za=S(Wa,[["__scopeId","data-v-57f1326f"]]);const Ha={id:"main"},Ja=T({setup(e){return(a,o)=>{const n=ct("router-view");return i(),r("div",Ha,[z(n),z(Za)])}}});var Ka=S(Ja,[["__scopeId","data-v-9bc295c2"]]);const Xa={},Qa={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"},to=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),eo=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),ao=[to,eo];function oo(e,a){return i(),r("svg",Qa,ao)}var no=S(Xa,[["render",oo]]);const io={},ro={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"},so=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),co=[so];function uo(e,a){return i(),r("svg",ro,co)}var lo=S(io,[["render",uo]]);const po={},fo={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"},mo=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),bo=[mo];function vo(e,a){return i(),r("svg",fo,bo)}var go=S(po,[["render",vo]]);const _o={},ho={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"},xo=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),ko=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),wo=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),yo=[xo,ko,wo];function Fo(e,a){return i(),r("svg",ho,yo)}var Co=S(_o,[["render",Fo]]);const Eo={},$o={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"},Do=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),Bo=[Do];function Yo(e,a){return i(),r("svg",$o,Bo)}var Ao=S(Eo,[["render",Yo]]);const So={},zo={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"},Po=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),To=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),Io=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),Lo=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),Mo=t("path",{d:"M301.946104 941.515457h429.985632v65.841173H301.946104z",fill:"#8A8AA1","p-id":"80692"},null,-1),Oo=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),No=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),jo=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),qo=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),Ro=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),Go=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),Vo=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),Uo=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),Wo=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),Zo=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),Ho=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),Jo=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),Ko=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),Xo=t("path",{d:"M301.946104 941.515457h429.985632v36.977408H301.946104z",fill:"#6E6E96","p-id":"80706"},null,-1),Qo=[Po,To,Io,Lo,Mo,Oo,No,jo,qo,Ro,Go,Vo,Uo,Wo,Zo,Ho,Jo,Ko,Xo];function tn(e,a){return i(),r("svg",zo,Qo)}var en=S(So,[["render",tn]]);const an={},on={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"},nn=t("path",{d:"M894.185422 128.023792 129.814578 445.743994 445.99982 577.744353 571.860343 893.929596Z","p-id":"2997"},null,-1),rn=[nn];function sn(e,a){return i(),r("svg",on,rn)}var dn=S(an,[["render",sn]]);const cn={class:"progress"},un=T({props:{value:{type:Number,required:!0},text:{type:String}},setup(e){const a=e,o=J(()=>a.value>=80?"#e45e5e":a.value>=70?"#ff9800":a.value>=60?"#297ff3":a.value>0?"#53c31b":"");return(n,s)=>(i(),r("div",cn,[t("div",{class:dt(["progress-value",`${e.value>50}`]),style:Nt({width:`${e.value}%`,backgroundColor:y(o)})},[t("span",null,w(e.text),1)],6),zt(n.$slots,"default",{},void 0,!0)]))}});var Xe=S(un,[["__scopeId","data-v-de8ae0e6"]]);const ln={},pn={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"},fn=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=[fn];function bn(e,a){return i(),r("svg",pn,mn)}var vn=S(ln,[["render",bn]]);const gn={},_n={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"},hn=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),xn=[hn];function kn(e,a){return i(),r("svg",_n,xn)}var wn=S(gn,[["render",kn]]);const yn={};function Fn(e,a){return i(),r("article",null,[zt(e.$slots,"default",{},void 0,!0)])}var Cn=S(yn,[["render",Fn],["__scopeId","data-v-bd286d4e"]]);const En={class:"cover"},$n={class:"thumbnail"},Dn=T({emits:["click"],setup(e,{emit:a}){const o=()=>{a("click")};return(n,s)=>(i(),O(Cn,null,{default:q(()=>[t("a",{onClick:o},[t("div",En,[t("div",$n,[zt(n.$slots,"default",{},void 0,!0)])])])]),_:3}))}});var Bn=S(Dn,[["__scopeId","data-v-123deb20"]]);const Yn={t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"128",height:"128"},An=T({props:{size:{type:Number,default:50},color:{type:String,default:"#fff"}},setup(e){return(a,o)=>(i(),r("div",{class:"loading",style:Nt({width:e.size+"px",height:e.size+"px"})},[(i(),r("svg",Yn,[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:Nt({fill:e.color})},null,4)]))],4))}});var Sn=S(An,[["__scopeId","data-v-0c4a2195"]]);const zn={},Pn={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":""},Tn=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),In=[Tn];function Ln(e,a){return i(),r("svg",Pn,In)}var Mn=S(zn,[["render",Ln]]);const On={},Nn={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"},jn=Pt('',1),qn=[jn];function Rn(e,a){return i(),r("svg",Nn,qn)}var Gn=S(On,[["render",Rn]]),Qe={install:e=>{e.component("icon-loading",Sn),e.component("icon-success",Mn),e.component("icon-error",Gn)}};const Vn=e=>{},Un=()=>new Date().getTime(),Wn=e=>{if(e<1e3)return`${e} B`;let o=1e3,n=0;for(let m=e/1e3;m>=1e3;m/=1e3)o*=1e3,n++;let s=[" KB"," MB"," GB"," TB"," PB"," EB"];return(e/100/(o/100)).toFixed(1)+s[n]},Zn=e=>{if(e<1024)return""+e+"KB";let o=1024,n=0;for(let b=e/1024;b>=1024;b/=1024)o*=1024,n++;let s=["M","G","T","P","E"];return(e/100/(o/100)).toFixed(2)+s[n]},Hn=e=>{if(e==null)return 0;if(e<1e4)return e;let o=parseInt(`${e/1e4}`),n=e%1e4;return`${o}\u4E07${n}`},Jn=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(b){}return""},Kn=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"}},Xn=e=>/^\d+\.\d+\.\d+\.\d+$/.test(e),Qn=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";var ti=Object.freeze(Object.defineProperty({__proto__:null,formatDate:Vn,UnixDate:Un,byteToSize:Wn,numberToSize:Zn,numberToSum:Hn,dateForm:Jn,stampForm:Kn,checkIsIP:Xn,checkSmabaUserName:Qn},Symbol.toStringTag,{value:"Module"})),qt=K({},ti);const ei={class:"flow"},ai={class:"flow-data"},oi={key:0},ni={key:1},ii=T({setup(e){ka([wa,ya,Fa,Ca,Ea,$a]);const a=F(),o=_=>{var h;const l=(h=a.value)==null?void 0:h[_];return!l||l.startTime==0?"":c(l.startTime*1e3)+"-"+c(l.endTime*1e3)},n=J(()=>{var l;let _=[];return(l=a.value)==null||l.forEach(h=>{_.push({value:h.uploadSpeed})}),_}),s=J(()=>{var l;let _=[];return(l=a.value)==null||l.forEach(h=>{_.push({value:h.downloadSpeed})}),_}),b=J(()=>{var l;let _="";if(a.value){let h=((l=a.value)==null?void 0:l.length)||0;if(h>0){let g=a.value[h-1];_=u(g.uploadSpeed)+"/s"}}return _}),m=J(()=>{var l;let _="";if(a.value){let h=((l=a.value)==null?void 0:l.length)||0;if(h>0){let g=a.value[h-1];_=u(g.downloadSpeed)+"/s"}}return _});J(()=>{var l;let _=[];return(l=a.value)==null||l.forEach(h=>{_.push({value:h.downloadSpeed+h.uploadSpeed})}),_});const p=()=>Y(this,null,function*(){var _;try{const l=yield B.Network.Statistics.GET();if(l.data&&(_=l.data.result)!=null&&_.items){const h=l.data.result.slots||10;if(l.data.result.items.lengthh?a.value=l.data.result.items.slice(h-l.data.result.items.length):a.value=l.data.result.items}}catch(l){console.log(l)}}),c=qt.dateForm,u=qt.byteToSize,d=F();let v=null;const f=_=>(v=Da(_,"dark"),v.setOption({animation:!1,backgroundColor:"transparent",color:["transparent","transparent"],tooltip:{trigger:"axis",formatter:l=>{if(Array.isArray(l)){let h="";l.length>0&&(h=o(l[0].axisValue));for(let g=0;g${l[g].seriesName}: ${u(l[g].value)}/s`;return h.toString()}else{const h=l;return`${o(h.axisValue)}
${h.seriesName}: ${u(h.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(l,h){return`${u(l)}/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}}),v);return Bt(()=>Y(this,null,function*(){if(yield p(),d.value){const _=f(d.value);_.appendData;const l=d.value;_.resize({width:l.clientWidth,height:l.clientHeight}),window.addEventListener("resize",()=>{_.resize({width:l.clientWidth,height:l.clientHeight})});const h=()=>Y(this,null,function*(){v!=null&&(yield p(),v!=null&&(_.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(h,5e3)))});setTimeout(h,5e3)}})),Rt(()=>{v!=null&&(v.dispose(),v=null)}),(_,l)=>(i(),r("div",ei,[t("div",{ref_key:"el",ref:d,class:"echart"},null,512),t("div",ai,[y(b)?(i(),r("span",oi,"\u4E0A\u4F20: "+w(y(b)),1)):D("",!0),y(m)?(i(),r("span",ni,"\u4E0B\u8F7D: "+w(y(m)),1)):D("",!0)])]))}});var ri=S(ii,[["__scopeId","data-v-7edad4d2"]]);const si={},di={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"},ci=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),li=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),pi=[ci,ui,li];function fi(e,a){return i(),r("svg",di,pi)}var Dt=S(si,[["render",fi]]);let ie=0;const mi={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,ie=window.setTimeout(e,1e3))};ie=window.setTimeout(e,1e3)}},computed:{Message(){return this.message+(this.countdown?" "+this.remain+"s":"")}},methods:{Stop(){this.type!="loading"&&(this.show=!1,ie!=0&&clearTimeout(ie),this.Close())}}},le=e=>(N("data-v-8ee37a62"),e=e(),j(),e),bi={key:0,class:"loading icon"},vi=le(()=>t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",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)),gi=[vi],_i={key:1,class:"success icon"},hi=le(()=>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)),xi=[hi],ki={key:2,class:"error icon"},wi=le(()=>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)),yi=[wi],Fi={key:3,class:"warning icon"},Ci=le(()=>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)),Ei=[Ci];function $i(e,a,o,n,s,b){return i(),O(xt,{name:"el-fade-in-linear"},{default:q(()=>[s.show?(i(),r("div",{key:0,class:"toast",onClick:a[1]||(a[1]=m=>b.Stop())},[o.type=="loading"?(i(),r("div",bi,gi)):o.type=="success"?(i(),r("div",_i,xi)):o.type=="error"?(i(),r("div",ki,yi)):o.type=="warning"?(i(),r("div",Fi,Ei)):D("",!0),t("div",{class:"message",onClick:a[0]||(a[0]=it(()=>{},["stop"]))},w(b.Message),1)])):D("",!0)]),_:1})}var Di=S(mi,[["render",$i],["__scopeId","data-v-8ee37a62"]]);const Jt=new Map,Tt=e=>{const a=tt(Di,ot(K({},e),{Close:()=>{n()}})),o=document.createElement("div");document.body.append(o),a.mount(o);const n=()=>{o.remove(),Jt.get(a._uid)&&Jt.delete(a._uid)};return e.type=="loading"&&Jt.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}},k=e=>Tt(e);k.Loading=(e,a)=>Tt({type:"loading",message:e||"\u52A0\u8F7D\u4E2D...",duration:0,countdown:a||0});k.Success=e=>Tt({type:"success",message:e});k.Error=e=>Tt({type:"error",message:e});k.Warning=e=>Tt({type:"warning",message:e});k.Message=e=>Tt({message:e});k.Message=e=>Tt({message:e});k.Clear=()=>{Jt.forEach((e,a)=>{e.Close(),Jt.delete(a)})};const Bi={},Yi={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"},Ai=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),Si=[Ai];function zi(e,a){return i(),r("svg",Yi,Si)}var Pi=S(Bi,[["render",zi]]);const Ti=e=>(N("data-v-428d873e"),e=e(),j(),e),Ii={id:"actioner"},Li={key:0,class:"action-container"},Mi={class:"action-container_header"},Oi=Ti(()=>t("div",null,null,-1)),Ni={class:"title"},ji={class:"action-container_body"},qi=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){const a=e,o=F(!1);Bt(()=>{o.value=!0,document.body.setAttribute("lock-scroll","true")}),Rt(()=>{document.body.removeAttribute("lock-scroll")});const n=()=>{a.Close&&(o.value=!1,setTimeout(()=>{a.Close&&a.Close()},300))};return(s,b)=>(i(),r("div",Ii,[t("div",{class:"bg",onClick:n}),e.type!=null?zt(s.$slots,"default",{key:0},void 0,!0):(i(),r(L,{key:1},[o.value?(i(),r("div",Li,[t("div",Mi,[Oi,t("div",Ni,w(e.title),1),t("button",{class:"close",title:"\u5173\u95ED",onClick:n},[z(Pi)])]),t("div",ji,[zt(s.$slots,"default",{},void 0,!0)])])):D("",!0)],64))]))}});var Ri=S(qi,[["__scopeId","data-v-428d873e"]]);const at=T({props:{Close:{type:Function},type:{type:Number},title:String},setup(e){return(a,o)=>(i(),O(Ri,{Close:e.Close,type:e.type,title:e.title},{default:q(()=>[zt(a.$slots,"default")]),_:3},8,["Close","type","title"]))}}),yt=e=>(N("data-v-1e29e158"),e=e(),j(),e),Gi=["onSubmit"],Vi=yt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),Ui={class:"actioner-dns_body"},Wi={class:"label-item"},Zi=yt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u9009\u9879")],-1)),Hi={class:"label-item_value"},Ji=yt(()=>t("option",{value:"auto"},"\u4F7F\u7528\u8FD0\u8425\u5546\u63D0\u4F9B\u7684DNS",-1)),Ki=yt(()=>t("option",{value:"manual"},"\u81EA\u5B9A\u4E49DNS",-1)),Xi=[Ji,Ki],Qi={class:"label-item"},tr=yt(()=>t("div",{class:"label-item_key"},"DNS\u670D\u52A1\u5668\u5730\u5740",-1)),er={class:"label-item_value"},ar=["onUpdate:modelValue"],or={class:"label-item"},nr=yt(()=>t("div",{class:"label-item_key"},[t("span",null,"DNS\u670D\u52A1\u5668\u5730\u5740")],-1)),ir={class:"label-item_value"},rr={class:"label-item"},sr=yt(()=>t("div",{class:"label-item_key"},"\u5907\u7528DNS\u670D\u52A1\u5668\u5730\u5740",-1)),dr={class:"label-item_value"},cr={key:1,class:"label-message"},ur={class:"actioner-dns_footer"},lr=["disabled"],pr={key:1,class:"actioner-dns"},fr=yt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"DNS\u914D\u7F6E")],-1)),mr=yt(()=>t("div",{class:"actioner-dns_body"},[t("div",{class:"config-message"},"DNS\u914D\u7F6E\u5DF2\u4FDD\u5B58")],-1)),br=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=F(0),n=F({interfaceName:"",dnsProto:"auto",manualDnsIp:[]}),s=F(""),b=F(""),m=F(""),p=F(!1);(()=>Y(this,null,function*(){var f;p.value=!0;try{const _=yield B.Guide.DnsConfig.GET();(f=_==null?void 0:_.data)!=null&&f.result&&(n.value=_.data.result)}catch(_){m.value=_}p.value=!1}))();const u=()=>Y(this,null,function*(){m.value="";let f={};switch(n.value.dnsProto){case"auto":break;case"manual":f.manualDnsIp=[],n.value.manualDnsIp!=null&&n.value.manualDnsIp.length>0?f.manualDnsIp=n.value.manualDnsIp:(f.manualDnsIp.push(s.value),b.value&&f.manualDnsIp.push(b.value));break}f.dnsProto=n.value.dnsProto,f.interfaceName=n.value.interfaceName;const _=k.Loading("\u914D\u7F6E\u4E2D...");try{const l=yield B.Guide.DnsConfig.POST(f);if(l!=null&&l.data){const{success:h,error:g}=l==null?void 0:l.data;g&&(m.value=g),(h==null||h==0)&&(k.Success("\u914D\u7F6E\u6210\u529F"),o.value=1)}}catch(l){m.value=l}_.Close()}),d=f=>{f.preventDefault(),a.Close&&a.Close()},v=f=>{location.reload()};return(f,_)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:it(u,["prevent"])},[Vi,t("div",Ui,[t("div",Wi,[Zi,t("div",Hi,[P(t("select",{"onUpdate:modelValue":_[0]||(_[0]=l=>n.value.dnsProto=l)},Xi,512),[[Q,n.value.dnsProto]])])]),n.value.dnsProto=="manual"?(i(),r(L,{key:0},[n.value.manualDnsIp!=null&&n.value.manualDnsIp.length>0?(i(!0),r(L,{key:0},G(n.value.manualDnsIp,(l,h)=>(i(),r("div",Qi,[tr,t("div",er,[P(t("input",{type:"text",placeholder:"\u8BF7\u8F93\u5165DNS\u5730\u5740","onUpdate:modelValue":g=>n.value.manualDnsIp[h]=g},null,8,ar),[[H,n.value.manualDnsIp[h],void 0,{trim:!0}]])])]))),256)):(i(),r(L,{key:1},[t("div",or,[nr,t("div",ir,[P(t("input",{type:"text",placeholder:"\u8BF7\u8F93\u5165DNS\u5730\u5740",required:"","onUpdate:modelValue":_[1]||(_[1]=l=>s.value=l)},null,512),[[H,s.value,void 0,{trim:!0}]])])]),t("div",rr,[sr,t("div",dr,[P(t("input",{type:"text",placeholder:"\u5907\u7528DNS\u5730\u5740","onUpdate:modelValue":_[2]||(_[2]=l=>b.value=l)},null,512),[[H,b.value,void 0,{trim:!0}]])])])],64))],64)):D("",!0),m.value?(i(),r("div",cr,w(m.value),1)):D("",!0)]),t("div",ur,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:p.value},"\u786E\u8BA4",8,lr),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u53D6\u6D88")])],40,Gi)):o.value==1?(i(),r("div",pr,[fr,mr,t("div",{class:"actioner-dns_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:v},"\u5B8C\u6210")])])):D("",!0)]),_:1},8,["Close"]))}});var vr=S(br,[["__scopeId","data-v-1e29e158"]]);const ta=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(vr,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},pe=e=>(N("data-v-ed442d72"),e=e(),j(),e),gr={class:"action"},_r={class:"action-body"},hr=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)),xr=pe(()=>t("h2",{class:"title"},"\u670D\u52A1\u5DF2\u542F\u52A8",-1)),kr={class:"info"},wr=pe(()=>t("span",null,"\u524D\u5F80",-1)),yr=["href"],Fr=pe(()=>t("span",null,"\u8FDB\u884C\u6D4B\u901F",-1)),Cr=T({props:{port:Number,Close:Function},setup(e){const a=e,o=J(()=>`http://${location.hostname}:${a.port}`),n=()=>{a.Close&&(a.Close(),location.reload())};return(s,b)=>(i(),O(at,{type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[t("div",gr,[t("div",_r,[hr,xr,t("div",kr,[wr,t("a",{href:y(o),target:"_blank",rel:"noopener noreferrer"},w(y(o)),9,yr),Fr]),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 Er=S(Cr,[["__scopeId","data-v-ed442d72"]]),je=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Er,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const De=e=>(N("data-v-39248365"),e=e(),j(),e),$r=De(()=>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)),Dr={class:"app-container_status-label_text"},Br=De(()=>t("div",{class:"text_status"},"\u5DF2\u65AD\u5F00",-1)),Yr={class:"text_info"},Ar=De(()=>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)),Sr={class:"app-container_status-label_text"},zr={class:"text_info"},Pr=T({props:{item:{type:Object,required:!0},transform:{type:Number,default:0}},setup(e){const a=e,o=He(),n=F(null),s=m=>{const p=m.target,{left:c,top:u}=p.getBoundingClientRect();o.portitemStyle.show=!0,o.portitemStyle.left=c,o.portitemStyle.top=u,o.portitemStyle.portitem=a.item},b=m=>{o.portitemStyle.show=!1};return(m,p)=>(i(),r("div",{class:"app-container_status-label_bg",style:Nt(`transform: translateX(${e.transform}px);`),ref_key:"el",ref:n,onMouseenter:s,onMouseleave:b},[e.item.linkState=="DOWN"?(i(),r(L,{key:0},[$r,t("div",Dr,[Br,t("div",Yr,w(e.item.name)+" "+w(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64)):(i(),r(L,{key:1},[Ar,t("div",Sr,[t("div",null,w(e.item.linkSpeed),1),t("div",zr,w(e.item.name)+" "+w(e.item.interfaceNames?`(${e.item.interfaceNames.join(",").toLocaleUpperCase()})`:""),1)])],64))],36))}});var ea=S(Pr,[["__scopeId","data-v-39248365"]]);const aa=e=>(N("data-v-3470ca08"),e=e(),j(),e),Tr=aa(()=>t("span",null,w("<"),-1)),Ir=[Tr],Lr=aa(()=>t("span",null,w(">"),-1)),Mr=[Lr],Or=T({props:{portList:{type:Array,required:!0}},setup(e){const a=F(),o=F(0),n=F(0),s=F(0),b=F(!1),m=()=>{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 Bt(()=>{Ba(()=>{a.value&&(o.value=a.value.scrollWidth,n.value=a.value.clientWidth,b.value=o.value>n.value)})}),(c,u)=>(i(),r("div",{class:"app-interfaces",ref_key:"el",ref:a},[b.value?(i(),r(L,{key:0},[t("a",{class:"btn-f",onClick:m},Ir),t("a",{class:"btn-r",onClick:p},Mr)],64)):D("",!0),(i(!0),r(L,null,G(e.portList,(d,v)=>(i(),O(ea,{item:d,transform:s.value},null,8,["item","transform"]))),256))],512))}});var Nr=S(Or,[["__scopeId","data-v-3470ca08"]]);const jr={},qr={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"},Rr=Pt('icon_finished',2),Gr=[Rr];function Vr(e,a){return i(),r("svg",qr,Gr)}var Be=S(jr,[["render",Vr]]);const Gt=e=>(N("data-v-252d5ec7"),e=e(),j(),e),Ur=["onSubmit"],Wr=Gt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),Zr={class:"actioner-dns_body"},Hr={class:"label-item"},Jr=Gt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5F53\u524D\u8F6F\u4EF6\u6E90")],-1)),Kr={class:"label-item_value"},Xr={class:"item_info"},Qr={class:"label-item"},ts=Gt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5207\u6362\u8F6F\u4EF6\u6E90")],-1)),es={class:"label-item_value"},as=Gt(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u8F6F\u4EF6\u6E90",-1)),os=["value"],ns={class:"actioner-dns_footer"},is=["disabled"],rs={key:1,class:"actioner-dns"},ss=Gt(()=>t("div",{class:"actioner-dns_header"},[t("span",{class:"softsource_tit"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")],-1)),ds={class:"actioner-dns_body"},cs={class:"finished"},us=Gt(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),ls=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=F(0),n=F(""),s=F(),b=F();(()=>{B.Guide.SoftSourceList.GET().then(d=>{var v,f;if((v=d==null?void 0:d.data)!=null&&v.result){const _=(f=d==null?void 0:d.data)==null?void 0:f.result;b.value=_}}).then(()=>B.Guide.GetSoftSource.GET()).then(d=>{var v,f;if((v=d==null?void 0:d.data)!=null&&v.result){const _=d.data.result;s.value=_.softSource,(f=b.value)!=null&&f.softSourceList.find(l=>l.identity==_.softSource.identity)&&(n.value=_.softSource.identity)}})})();const p=d=>{d.preventDefault(),a.Close&&a.Close()},c=d=>{const v=k.Loading("\u6B63\u5728\u5207\u6362\u4E2D...");B.Guide.SoftSource.POST({softSourceIdentity:n.value}).then(f=>{if(f!=null&&f.data){if((f.data.success||0)==0){o.value=1;return}else if(f.data.error)throw f.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(f=>{k.Error(f)}).finally(()=>v.Close())},u=d=>{d.preventDefault(),location.reload()};return(d,v)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>{var f,_;return[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:it(c,["prevent"])},[Wr,t("div",Zr,[t("div",Hr,[Jr,t("div",Kr,[t("p",Xr,w((f=s.value)==null?void 0:f.name),1)])]),t("div",Qr,[ts,t("div",es,[P(t("select",{name:"",id:"","onUpdate:modelValue":v[0]||(v[0]=l=>n.value=l)},[as,(i(!0),r(L,null,G((_=b.value)==null?void 0:_.softSourceList,(l,h)=>(i(),r("option",{value:l.identity,key:h},w(l.name),9,os))),128))],512),[[Q,n.value,void 0,{trim:!0}]])])])]),t("div",ns,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:n.value==""},"\u786E\u8BA4",8,is),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:p},"\u53D6\u6D88")])],40,Ur)):D("",!0),o.value==1?(i(),r("form",rs,[ss,t("div",ds,[t("div",cs,[z(Be)]),us,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply softsource_successed",onClick:u},"\u786E\u5B9A")])])])):D("",!0)]}),_:1},8,["Close"]))}});var ps=S(ls,[["__scopeId","data-v-252d5ec7"]]);const oa=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(ps,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},ut=e=>(N("data-v-b873879c"),e=e(),j(),e),fs={class:"app-container_status-label"},ms={class:"app-container_status-label_item"},bs={class:"app-container_status-container",style:{height:"100%"}},vs={key:0,class:"app-container_status-container_body"},gs=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)),_s={class:"app-container_status-info"},hs=ut(()=>t("span",{class:"container_success"},"\u5DF2\u8FDE\u63A5\u4E92\u8054\u7F51",-1)),xs={class:"container_time"},ks={key:1,class:"app-container_status-container_body"},ws=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)),ys={class:"app-container_status-info"},Fs=ut(()=>t("span",{class:"container_failure"},"DNS\u9519\u8BEF",-1)),Cs={class:"container_time"},Es={key:2,class:"app-container_status-container_body"},$s=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)),Ds={class:"app-container_status-info"},Bs=ut(()=>t("span",{class:"container_failure"},"\u8F6F\u4EF6\u6E90\u9519\u8BEF",-1)),Ys={class:"container_time"},As={key:3,class:"app-container_status-container_body"},Ss=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)),zs={class:"app-container_status-info"},Ps=ut(()=>t("span",{class:"container_failure"},"\u672A\u8FDE\u63A5\u4E92\u8054\u7F51",-1)),Ts={class:"container_time"},Is={key:4,class:"app-container_status-container_body"},Ls=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)),Ms=ut(()=>t("div",{class:"app-container_status-info"},[t("span",{class:"container_failure"},"\u68C0\u6D4B\u4E2D...")],-1)),Os=[Ls,Ms],Ns={class:"app-container_status-label_item"},js={class:"app-container_status-container",style:{height:"100%"}},qs={class:"more_icon",title:"\u67E5\u770B\u8BBE\u5907\u4FE1\u606F"},Rs={class:"DeviceBlock"},Gs=ut(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/status/routes"},"\u8BBE\u5907\u8DEF\u7531")],-1)),Vs={class:"app-container_status-container_body"},Us=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)),Ws={class:"app-container_status-info"},Zs={class:"container_content"},Hs=ut(()=>t("span",{class:"devise"},"\u5DF2\u8FDE\u63A5\u8BBE\u5907",-1)),Js=ut(()=>t("em",null,null,-1)),Ks={class:"app-container_status-container"},Xs={class:"more_icon",title:"\u67E5\u770B\u8BBE\u5907\u4FE1\u606F"},Qs={class:"DeviceBlock"},t0={class:"app-container_title"},e0={class:"app-container_status-label_block"},a0={class:"app-container_status-label_block"},o0={class:"app-container_title"},n0={class:"app-container_status-label_block"},i0=ut(()=>t("em",null,null,-1)),r0={class:"app-container_status-container"},s0={class:"app-container_title"},d0=ut(()=>t("span",null,"\u7F51\u7EDC\u63A5\u53E3\u72B6\u6001",-1)),c0={class:"more_icon",title:"\u67E5\u770B\u7F51\u7EDC\u63A5\u53E3\u4FE1\u606F"},u0={class:"DeviceBlock"},l0=X("\u7F51\u53E3\u914D\u7F6E"),p0={class:"app-container_body"},f0=T({props:{homebox:{type:Object}},setup(e){const a=()=>{ta()},o=()=>{oa()},n=Ke(),s=J(()=>n.status),b=J(()=>n.deviceList),m=F(!1),p=F(!1),c=F(!1),u=F(!1),d=rt({portList:[],load:!1}),v=M=>{switch(M){case"pppoe":return"\u62E8\u53F7\u4E0A\u7F51";case"static":return"\u9759\u6001\u7F51\u7EDC";case"dhcp":return"DHCP"}},f=M=>{switch(M){case"manual":return"\u624B\u52A8\u914D\u7F6E";case"auto":return"\u81EA\u52A8\u83B7\u53D6";default:return""}},_=()=>{B.Network.PortList.GET().then(M=>{if(M!=null&&M.data){const{result:W}=M==null?void 0:M.data;W&&(d.portList=W.ports||[])}}).finally(()=>{d.load=!0,l()})},l=()=>{setTimeout(()=>{_()},1e4)};_();const h=qt.stampForm,g=()=>{m.value=!m.value},x=()=>{c.value=!c.value},C=()=>{u.value=!u.value},E=()=>{x(),g(),(()=>Y(this,null,function*(){p.value=!0;let W=k.Loading("");try{const Z=yield B.App.Check.POST({name:"app-meta-nlbwmon"});if(W.Close(),Z!=null&&Z.data){const{result:V,error:R}=Z.data;if(R&&k.Warning(R),V){if(V.status=="installed")location.href="/cgi-bin/luci/admin/services/nlbw";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5\u5E26\u5BBD\u76D1\u63A7\u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){W=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const U=yield A("app-meta-nlbwmon");W.Close(),U?(k.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/services/nlbw"):k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(Z){k.Error(Z)}W.Close(),p.value=!1}))()},$=()=>{x(),(()=>Y(this,null,function*(){var Z,V,R,U;p.value=!0;let W=k.Loading("");try{const nt=yield B.App.Check.POST({name:"app-meta-homebox"});if(W.Close(),nt!=null&&nt.data){const{result:Wt,error:Ct}=nt.data;if(Ct&&k.Warning(Ct),Wt){if(Wt.status=="installed"){const Ot=yield B.Network.Homebox.Enable.POST();(V=(Z=Ot==null?void 0:Ot.data)==null?void 0:Z.result)!=null&&V.port?je({port:Ot.data.result.port,setup:0}):k.Warning("\u542F\u52A8\u5931\u8D25")}else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5Homebox\u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){W=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const Ot=yield A("app-meta-homebox");if(W.Close(),Ot){k.Success("\u5B89\u88C5\u6210\u529F");const ne=yield B.Network.Homebox.Enable.POST();(U=(R=ne==null?void 0:ne.data)==null?void 0:R.result)!=null&&U.port?je({port:ne.data.result.port,setup:0}):k.Warning("\u542F\u52A8\u5931\u8D25")}else k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(nt){k.Error(nt)}W.Close(),p.value=!1}))()},A=M=>Y(this,null,function*(){return B.App.Install.POST({name:M}).then(()=>{}),new Promise((W,Z)=>Y(this,null,function*(){let V=0;const R=setInterval(()=>Y(this,null,function*(){if(V>20){clearInterval(R),Z(!1);return}const U=yield B.App.Check.POST({name:M});if(U!=null&&U.data){const{result:nt}=U.data;if((nt==null?void 0:nt.status)=="installed"){clearInterval(R),W(!0);return}}V++}),3e3)}))});return(M,W)=>{var V,R;const Z=ct("router-link");return i(),r(L,null,[t("div",fs,[t("div",ms,[t("div",bs,[y(s)!=null?(i(),r(L,{key:0},[y(s).networkInfo=="netSuccess"?(i(),r("div",vs,[gs,t("div",_s,[hs,t("span",xs,w(y(h)(y(s).uptimeStamp)),1)])])):y(s).networkInfo=="dnsFailed"?(i(),r("div",ks,[ws,t("div",ys,[Fs,t("span",Cs,w(y(h)(y(s).uptimeStamp)),1),t("div",{onClick:a,class:"container_configure"},"DNS\u914D\u7F6E")])])):y(s).networkInfo=="softSourceFailed"?(i(),r("div",Es,[$s,t("div",Ds,[Bs,t("span",Ys,w(y(h)(y(s).uptimeStamp)),1),t("div",{onClick:o,class:"container_configure"},"\u8F6F\u4EF6\u6E90\u914D\u7F6E")])])):y(s).networkInfo=="netFailed"?(i(),r("div",As,[Ss,t("div",zs,[Ps,t("span",Ts,w(y(h)(y(s).uptimeStamp)),1)])])):(i(),r("div",Is,Os))],64)):D("",!0)])]),t("div",Ns,[t("div",js,[t("span",qs,[z(Dt,{onClick:g})]),P(t("div",Rs,[t("div",{class:"menu_background",onClick:g}),t("ul",null,[Gs,t("li",null,[t("a",{onClick:E},"\u5E26\u5BBD\u76D1\u63A7")])])],512),[[wt,m.value]]),t("div",Vs,[Us,t("div",Ws,[t("span",Zs,w(((R=(V=y(b))==null?void 0:V.devices)==null?void 0:R.length)||0),1),Hs])])])])]),Js,t("div",Ks,[t("span",Xs,[z(Dt,{onClick:x})]),P(t("div",Qs,[t("div",{class:"menu_background",onClick:x}),t("ul",null,[t("li",null,[t("a",{onClick:$},"\u5185\u7F51\u6D4B\u901F")])])],512),[[wt,c.value]]),t("div",t0,[t("span",null,"IP\u5730\u5740\uFF08"+w(y(s).defaultInterface)+"\uFF09",1)]),t("div",e0,[t("span",null," IPv4\uFF1A "+w(y(s).ipv4addr)+" \uFF08"+w(v(y(s).proto||""))+"\uFF09 ",1)]),t("div",a0,[t("span",null,"IPv6\uFF1A"+w(y(s).ipv6addr),1)]),t("div",o0,[t("span",null,"DNS\uFF08"+w(f(y(s).dnsProto))+"\uFF09",1)]),(i(!0),r(L,null,G(y(s).dnsList,U=>(i(),r("div",n0,[t("span",null,w(U),1)]))),256))]),i0,t("div",r0,[t("div",s0,[d0,t("span",c0,[z(Dt,{onClick:C})]),P(t("div",u0,[t("div",{class:"menu_background",onClick:C}),t("ul",null,[t("li",null,[z(Z,{to:"/interfaceconfig"},{default:q(()=>[l0]),_:1})])])],512),[[wt,u.value]])]),t("div",p0,[y(d).load?(i(),O(Nr,{key:0,portList:y(d).portList},null,8,["portList"])):D("",!0)])])],64)}}});var m0=S(f0,[["__scopeId","data-v-b873879c"]]);const b0={class:"network-container"},v0={class:"network-container_flow"},g0={class:"network-container_flow-container"},_0={class:"network-container_status"},h0=T({setup(e){return(a,o)=>(i(),r("div",b0,[t("div",v0,[t("div",g0,[z(ri,{style:{height:"460px"}})])]),t("div",_0,[z(m0)])]))}});var x0=S(h0,[["__scopeId","data-v-78a4e41a"]]);const k0={},w0={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"},y0=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),F0=[y0];function C0(e,a){return i(),r("svg",w0,F0)}var ht=S(k0,[["render",C0]]);const E0={},$0={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=Pt('\u5206\u533A\u4FE1\u606F',2),B0=[D0];function Y0(e,a){return i(),r("svg",$0,B0)}var qe=S(E0,[["render",Y0]]);const A0={},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"},z0=Pt('\u5168\u76D8\u683C\u5F0F\u5316',2),P0=[z0];function T0(e,a){return i(),r("svg",S0,P0)}var I0=S(A0,[["render",T0]]);const Yt=e=>(N("data-v-7e52eb3f"),e=e(),j(),e),L0=["onSubmit"],M0=Yt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u786C\u76D8\u914D\u7F6E")],-1)),O0={class:"action-body"},N0={class:"disk-info"},j0=Yt(()=>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)),q0={key:0,class:"disk-info_mount-name"},R0={key:1,class:"disk-info_mount-name"},G0={key:0,class:"label-item"},V0=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),U0={class:"label-item_path"},W0={class:"label-item"},Z0=Yt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u683C\u5F0F\u5316\u9009\u9879")],-1)),H0={class:"label-item_value"},J0=["disabled"],K0={key:0,value:""},X0=Yt(()=>t("option",{value:"format"},"\u683C\u5F0F\u5316",-1)),Q0={key:1,value:"default"},td={class:"label-item_value"},ed={key:0,class:"msg"},ad={key:1,class:"msg"},od={class:"action-footer"},nd=Yt(()=>t("div",{class:"auto"},null,-1)),id=["disabled"],rd=["disabled"],sd={key:1,class:"action result"},dd={class:"action-body"},cd=Yt(()=>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)),ud=Yt(()=>t("div",{class:"action-body_msg"},"\u683C\u5F0F\u5316\u6210\u529F",-1)),ld={key:0,class:"action-body_info"},pd={key:1,class:"action-body_info"},fd=X(" \u5DF2\u7ECF\u6210\u529F\u521D\u59CB\u5316\u5206\u533A "),md={class:"btns"},bd=T({props:{action:String,disk:{type:Object},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()},b=F(!1),m=F(0),p=x=>{m.value=x},c=F(a.action=="nas"?"":"format"),u=F(),d=F(),v=()=>{switch(c.value){case"format":_();return;case"default":f();return;default:k.Warning("\u8BF7\u9009\u62E9\u9009\u7EBF");return}},f=()=>{let x="";const C=a.mount;if(C!=null&&C.mountPoint!=null&&(x=C.mountPoint),x!=""){s(x);return}k.Warning("\u65E0\u6CD5\u8BC6\u522B\u8DEF\u5F84")},_=()=>{const x=a.disk,C=a.mount;if(C){const E=C.mountPoint||C.path;if(!confirm(`\u8B66\u544A\uFF1A\u683C\u5F0F\u5316\u4F1A\u6E05\u7A7A ${E} \u5206\u533A\u6570\u636E\uFF0C\u8BF7\u4F60\u8C28\u614E\u64CD\u4F5C`)||!confirm(`\u662F\u5426\u786E\u5B9A\u683C\u5F0F\u5316 ${E}?`))return;h(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;l(x);return}k.Error("\u65E0\u6CD5\u8BC6\u522B\u6570\u636E")},l=x=>Y(this,null,function*(){if(x.name==null||x.path==""){k.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u540D\u79F0");return}if(x.path==null||x.path==""){k.Warning("\u83B7\u53D6\u4E0D\u5230\u8BBE\u5907\u8DEF\u5F84");return}b.value=!0;const C=k.Loading("\u521D\u59CB\u5316\u4E2D...");try{const E=yield B.Nas.Disk.Init.POST({name:x.name,path:x.path});if(E!=null&&E.data){const{result:$,error:A}=E==null?void 0:E.data;A&&k.Warning(A),$&&($.errorInfo?k.Warning($.errorInfo):(k.Success("\u521D\u59CB\u5316\u6210\u529F"),$.childrens&&$.childrens.length>0&&(d.value=$.childrens[0]),u.value=$,p(1)))}}catch(E){k.Error(E)}C.Close(),b.value=!1}),h=x=>Y(this,null,function*(){if(x.path==null||x.path==""){k.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}b.value=!0;const C=k.Loading("\u683C\u5F0F\u5316\u4E2D...");try{const E=yield B.Nas.Disk.Partition.Format.POST({path:x.path,uuid:x.uuid,mountPoint:x.mountPoint});if(E!=null&&E.data){const{result:$,error:A}=E==null?void 0:E.data;A&&k.Warning(A),$&&(k.Success("\u683C\u5F0F\u5316\u6210\u529F"),d.value=$,p(1))}}catch(E){k.Error(E)}C.Close(),b.value=!1}),g=()=>{if(d.value&&d.value.mountPoint){s(d.value.mountPoint);return}k.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")};return(x,C)=>(i(),O(at,{type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>{var E;return[m.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:it(v,["prevent"])},[M0,t("div",O0,[t("div",N0,[j0,e.mount?(i(),r("div",q0,[t("span",null,"\u3010"+w(e.mount.total)+"\u3011",1),t("span",null,w(e.mount.mountPoint||e.mount.path),1)])):e.disk?(i(),r("div",R0,[t("span",null,"\u3010"+w(e.disk.size)+"\u3011",1),t("span",null,w(e.disk.venderModel),1)])):D("",!0)]),e.mount?(i(),r("div",G0,[V0,t("div",U0,w(e.mount.mountPoint||e.mount.path)+"\uFF08"+w(e.mount.total)+"\uFF09",1)])):D("",!0),t("div",W0,[Z0,t("div",H0,[P(t("select",{"onUpdate:modelValue":C[0]||(C[0]=$=>c.value=$),required:"",disabled:e.action=="disk"},[e.mount!=null?(i(),r("option",K0,"\u8BF7\u9009\u62E9\u9009\u9879")):D("",!0),X0,e.mount!=null?(i(),r("option",Q0,"\u4E0D\u683C\u5F0F\u5316,\u4F7F\u7528\u539F\u6587\u4EF6\u7CFB\u7EDF")):D("",!0)],8,J0),[[Q,c.value]])]),t("div",td,[c.value=="format"?(i(),r("p",ed,"\u683C\u5F0F\u5316\u4E3AEXT4\u6587\u4EF6\u7CFB\u7EDF\uFF0C\u4F20\u8F93\u901F\u5EA6\u66F4\u5FEB")):c.value=="default"?(i(),r("p",ad)):D("",!0)])])]),t("div",od,[nd,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:b.value},"\u8FD4\u56DE",8,id),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:b.value},"\u4E0B\u4E00\u6B65",8,rd)])],40,L0)):m.value==1?(i(),r("div",sd,[t("div",dd,[cd,ud,u.value?(i(),r("div",ld,[X(" \u5DF2\u7ECF\u6210\u529F\u683C\u5F0F\u5316\u78C1\u76D8 "+w(u.value.venderModel)+" \u5E76\u6302\u8F7D\u5230 ",1),t("a",null,w((E=d.value)==null?void 0:E.mountPoint),1)])):D("",!0),d.value?(i(),r("div",pd,[fd,t("a",null,w(d.value.mountPoint),1)])):D("",!0),t("div",md,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:g},w(e.action=="nas"?"\u4E0B\u4E00\u6B65":"\u5B8C\u6210"),1)])])])):D("",!0)]}),_:1})]),_:1}))}});var vd=S(bd,[["__scopeId","data-v-7e52eb3f"]]),Ye=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(vd,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const It=e=>(N("data-v-3fc7bda2"),e=e(),j(),e),gd=["onSubmit"],_d=It(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"})],-1)),hd={class:"action-body"},xd={class:"disk-info"},kd=It(()=>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)),wd={key:0,class:"disk-info_mount-name"},yd={key:1,class:"disk-info_mount-name"},Fd={key:0,class:"label-item"},Cd=It(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A")],-1)),Ed={class:"label-item_path"},$d={class:"label-item"},Dd=It(()=>t("div",{class:"label-item_key"},[t("span",null,"\u6302\u8F7D\u70B9")],-1)),Bd={class:"label-item_value"},Yd=["value"],Ad={class:"action-footer"},Sd=It(()=>t("div",{class:"auto"},null,-1)),zd=["disabled"],Pd=["disabled"],Td={key:1,class:"action result"},Id={class:"action-body"},Ld=It(()=>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)),Md=It(()=>t("div",{class:"action-body_msg"},"\u6302\u8F7D\u6210\u529F",-1)),Od={key:0,class:"action-body_info"},Nd={class:"btns"},jd=T({props:{action:String,disk:{type:Object},mount:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){var _;const a=e,o=()=>{a.Close&&a.Close()},n=l=>{l.preventDefault(),a.Cancel&&a.Cancel(),o()},s=l=>{a.Next&&a.Next(l),o()},b=F(!1),m=F(0),p=F("/mnt/data_"+((_=a==null?void 0:a.mount)==null?void 0:_.name)),c=l=>{m.value=l};F(a.mount?"":"format"),F();const u=F(),d=()=>Y(this,null,function*(){const l=a.mount;if(l==null){k.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A");return}if(l.path==null||l.path==""){k.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533A\u8DEF\u5F84");return}if(l.uuid==null||l.uuid==""){k.Warning("\u83B7\u53D6\u4E0D\u5230\u5206\u533AID");return}b.value=!0;const h=k.Loading("\u6302\u8F7D\u4E2D...");try{const g=yield B.Nas.Disk.Partition.Mount.POST({path:l.path,uuid:l.uuid,mountPoint:p.value});if(g!=null&&g.data){const{result:x,error:C}=g==null?void 0:g.data;C&&k.Warning(C),x&&(k.Success("\u6302\u8F7D\u6210\u529F"),u.value=x,c(1))}}catch(g){k.Error(g)}h.Close(),b.value=!1}),v=()=>{if(u.value&&u.value.mountPoint){s(u.value.mountPoint);return}k.Warning("\u8BFB\u53D6\u7ED3\u679C\u5931\u8D25")},f=()=>{};return(l,h)=>(i(),O(at,{type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>{var g,x;return[m.value==0?(i(),r("form",{key:0,class:"action format",onSubmit:it(f,["prevent"])},[_d,t("div",hd,[t("div",xd,[kd,e.mount?(i(),r("div",wd,[t("span",null,"\u3010"+w(e.mount.total)+"\u3011",1),t("span",null,w(e.mount.mountPoint),1)])):e.disk?(i(),r("div",yd,[t("span",null,"\u3010"+w(e.disk.size)+"\u3011",1),t("span",null,w(e.disk.venderModel),1)])):D("",!0)]),e.mount?(i(),r("div",Fd,[Cd,t("div",Ed,w(e.mount.path)+"\uFF08"+w(e.mount.total)+"\uFF0C"+w((x=(g=e.mount)==null?void 0:g.filesystem)==null?void 0:x.toUpperCase())+"\uFF09",1)])):D("",!0),t("div",$d,[Dd,t("div",Bd,[t("input",{type:"text",value:p.value},null,8,Yd)])])]),t("div",Ad,[Sd,t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:b.value,onClick:d},"\u786E\u5B9A",8,zd),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:n,type:"button",disabled:b.value},"\u8FD4\u56DE",8,Pd)])],40,gd)):m.value==1?(i(),r("div",Td,[t("div",Id,[Ld,Md,u.value?(i(),r("div",Od,[X(" \u5DF2\u6210\u529F\u5C06\u5206\u533A "+w(u.value.path)+" \u6302\u8F7D\u5230 ",1),t("a",null,w(u.value.mountPoint),1)])):D("",!0),t("div",Nd,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",type:"button",onClick:v},w(e.action=="nas"?"\u5B8C\u6210":"\u4E0B\u4E00\u6B65"),1)])])])):D("",!0)]}),_:1})]),_:1}))}});var qd=S(jd,[["__scopeId","data-v-3fc7bda2"]]),na=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(qd,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const ia=e=>(N("data-v-6f3ddc5a"),e=e(),j(),e),Rd={class:"disk-content"},Gd={class:"disk-item"},Vd={class:"disk-item_name"},Ud={class:"disk_value"},Wd={key:0,class:"disk-item_value"},Zd={class:"value-data"},Hd={key:1,class:"disk-item_value"},Jd={key:0,class:"disk_status"},Kd={class:"disk_status_item"},Xd={key:0,class:"tooltip-trigger disk_tip"},Qd=ia(()=>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)),t1={class:"disk_status_item"},e1={key:0,class:"tooltip-trigger disk_tip"},a1=ia(()=>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)),o1=T({props:{part:{type:Object,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=J(()=>a.part.filesystem=="No FileSystem"),n=J(()=>o.value||!a.disk.isSystemRoot&&(a.part.isReadOnly||a.part.filesystem=="ntfs")&&a.part.mountPoint),s=function(){Ye({action:"disk",disk:a.disk,mount:a.part,Cancel:()=>{},Next:c=>{location.reload()}})},b=()=>{na({action:"nas",disk:a.disk,mount:a.part,Cancel:()=>{},Next:()=>{location.reload()}})},m=()=>Y(this,null,function*(){const c=k.Loading("\u5904\u7406\u4E2D...");try{const u=yield B.Nas.Disk.InitRest.POST({name:a.disk.name,path:a.disk.path});if(u!=null&&u.data){const{result:d,error:v}=u==null?void 0:u.data;v&&k.Warning(v),d&&(k.Success("\u6302\u8F7D\u6210\u529F"),location.reload())}}catch(u){k.Error(u)}c.Close()}),p=J(()=>a.part.filesystem=="Free Space");return(c,u)=>{var v;const d=ct("progress-item");return i(),r("div",Rd,[t("li",Gd,[t("div",Vd,[t("span",null,w(e.part.mountPoint||(y(p)?e.part.name:(y(o)?"\u672A\u683C\u5F0F\u5316\uFF08":"\u672A\u6302\u8F7D\uFF08")+e.part.name+"\uFF09")),1)]),t("div",Ud,[e.part.mountPoint||y(p)?(i(),r("div",Wd,[t("div",Zd,[z(d,{value:y(p)||!e.part.usage?0:e.part.usage,text:y(p)?"\u672A\u5206\u533A\uFF08"+e.part.total+"\uFF09":e.part.used+"/"+e.part.total,style:{backgroundColor:"#767676"}},null,8,["value","text"])])])):y(o)?D("",!0):(i(),r("div",Hd,[t("div",{class:"value-data",onClick:b},"\u624B\u52A8\u6302\u8F7D")])),y(p)?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:m},"\u5206\u533A\u5E76\u683C\u5F0F\u5316")):y(n)?(i(),r("button",{key:3,class:"cbi-button cbi-button-apply",onClick:s},"\u683C\u5F0F\u5316\u5206\u533A")):D("",!0)])]),e.part.mountPoint?(i(),r("li",Jd,[t("div",Kd,[t("div",null,"\u78C1\u76D8\u8BFB\u5199\u72B6\u6001\uFF1A"+w(e.part.isReadOnly?"\u53EA\u8BFB":"\u8BFB\u5199"),1),!e.part.isSystemRoot&&e.part.isReadOnly?(i(),r("div",Xd,[z(ht),Qd])):D("",!0)]),t("div",t1,[t("div",null,"\u78C1\u76D8\u683C\u5F0F\uFF1A"+w((v=e.part.filesystem)==null?void 0:v.toUpperCase()),1),e.part.filesystem=="ntfs"?(i(),r("div",e1,[z(ht),a1])):D("",!0)])])):D("",!0)])}}});var n1=S(o1,[["__scopeId","data-v-6f3ddc5a"]]);const Ae=e=>(N("data-v-4688e946"),e=e(),j(),e),i1={key:0,class:"action"},r1=Ae(()=>t("h2",{class:"title"},"\u5206\u533A\u4FE1\u606F",-1)),s1=Ae(()=>t("div",{class:"app-container_info"},[t("span",null,"\u6302\u8F7D\u70B9"),t("span",null,"\u5BB9\u91CF")],-1)),d1={class:"app-container_body"},c1=Ae(()=>t("div",{class:"auto"},null,-1)),u1=T({props:{disk:{type:Object},Close:{type:Function},Cancel:{type:Function},Next:{type:Function}},setup(e){const a=e,o=F(0),n=()=>{a.Close&&a.Close()},s=b=>{b.preventDefault(),a.Cancel&&a.Cancel(),n()};return(b,m)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[o.value==0?(i(),r("div",i1,[r1,t("ul",null,[t("li",null,[s1,t("div",d1,[e.disk?(i(!0),r(L,{key:0},G(e.disk.childrens,(p,c)=>(i(),O(n1,{key:c,part:p,disk:e.disk},null,8,["part","disk"]))),128)):D("",!0)])])]),t("div",{class:"action-footer"},[c1,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:s,type:"button"},"\u8FD4\u56DE")])])):D("",!0)]),_:1})]),_:1},8,["Close"]))}});var l1=S(u1,[["__scopeId","data-v-4688e946"]]),p1=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(l1,ot(K({},e),{Close:()=>{n()}}));o.component("progress-item",Xe),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const fe=e=>(N("data-v-1c6dcf68"),e=e(),j(),e),f1={key:0,class:"disk-item error"},m1=["title"],b1={class:"disk-item_value"},v1={class:"value-data"},g1={class:"error"},_1={key:1,class:"disk-item"},h1=["title"],x1={key:0,class:"disk_value"},k1=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)),w1=[k1],y1={key:1,class:"disk_value"},F1={class:"disk-item_value"},C1={class:"value-data"},E1=fe(()=>t("div",{class:"disk-item-tooltip"},[t("span",null,"\u4EC5\u7EDF\u8BA1\u5DF2\u6302\u8F7D\u5206\u533A")],-1)),$1={class:"disk_icon"},D1={key:0,class:"tooltip-trigger"},B1={class:"disk_tip"},Y1=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)),A1={key:1,class:"tooltip-trigger"},S1={class:"disk_tip"},z1=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)),P1={key:2,class:"disk-item load"},T1=["title"],I1={class:"disk_value"},L1={class:"disk-item_value"},M1={class:"value-data"},O1={key:3,class:"disk-item load"},N1=["title"],j1={class:"disk_value"},q1={key:0,class:"disk-item_value"},R1={class:"value-data"},G1={key:1,class:"disk-item_value"},V1={class:"value-data"},U1={class:"disk_icon"},W1=T({props:{disk:{type:Object,required:!0},smartWarning:{type:Boolean}},setup(e){const a=e,o=J(()=>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=J(()=>{const p=a.disk;let c=p.name;return p.size&&(c+=`\u3010${p.size}\u3011`),p.venderModel&&(c+=`(${p.venderModel})`),c}),s=()=>{Ye({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},b=()=>{p1({action:"disk",disk:a.disk,Cancel:()=>{},Next:()=>{location.reload()}})},m=()=>{const p=a.disk,c=p.childrens||[];na({action:"nas",disk:p,mount:c[0],Cancel:()=>{},Next:()=>{location.reload()}})};return(p,c)=>{var d,v,f,_,l;const u=ct("progress-item");return y(o)=="error"?(i(),r("li",f1,[t("div",{class:"disk-item_name",title:y(n)},[t("span",null,w(y(n)),1)],8,m1),t("div",b1,[t("div",v1,[t("span",g1,w(e.disk.errorInfo),1)])])])):y(o)=="success"?(i(),r("li",_1,[t("div",{class:"disk-item_name",title:y(n)},[t("span",null,w(y(n)),1)],8,h1),e.disk.smartWarning&&e.smartWarning?(i(),r("div",x1,w1)):(i(),r("div",y1,[t("div",F1,[t("div",C1,[z(u,{value:e.disk.usage||0,text:`${e.disk.used}/${e.disk.total}`,style:{backgroundColor:"#767676"}},null,8,["value","text"])]),E1]),t("div",$1,[e.disk.isDockerRoot&&e.disk.isSystemRoot&&e.disk.usage&&e.disk.usage>=90?(i(),r("span",D1,[t("span",B1,[z(ht)]),Y1])):D("",!0),!e.disk.isSystemRoot&&(((d=e.disk.childrens)==null?void 0:d.filter(h=>h.isReadOnly||h.filesystem=="ntfs").length)||0)>0?(i(),r("span",A1,[t("span",S1,[z(ht)]),z1])):D("",!0),!e.disk.isSystemRoot&&(((v=e.disk.childrens)==null?void 0:v.filter(h=>h.isReadOnly||h.filesystem=="ntfs").length)||0)>0?(i(),r("span",{key:2,class:"disk_infoicon",onClick:c[0]||(c[0]=h=>s())},[z(I0)])):D("",!0),t("span",{class:"disk_infoicon",onClick:c[1]||(c[1]=h=>b())},[z(qe)])])]))])):y(o)=="load"?(i(),r("li",P1,[t("div",{class:"disk-item_name",title:y(n)},[t("span",null,w(y(n)),1)],8,T1),t("div",I1,[t("div",L1,[t("div",M1,[t("button",{onClick:c[2]||(c[2]=h=>s())},"\u683C\u5F0F\u5316\u5E76\u6302\u8F7D")])])])])):y(o)=="unmounted"?(i(),r("li",O1,[t("div",{class:"disk-item_name",title:y(n)},[t("span",null,w(y(n)),1)],8,N1),t("div",j1,[((f=e.disk.childrens)==null?void 0:f.length)==1?(i(),r("div",q1,[t("div",R1,[t("button",{onClick:c[3]||(c[3]=h=>m())},"\u624B\u52A8\u6302\u8F7D")])])):D("",!0),(((_=e.disk.childrens)==null?void 0:_.length)||0)>1?(i(),r("div",G1,[t("div",V1,[t("button",{onClick:c[4]||(c[4]=h=>b())},"\u624B\u52A8\u6302\u8F7D")])])):D("",!0),t("div",U1,[(((l=e.disk.childrens)==null?void 0:l.length)||0)>1?(i(),r("span",{key:0,class:"disk_infoicon",onClick:c[5]||(c[5]=h=>b())},[z(qe)])):D("",!0)])])])):D("",!0)}}});var we=S(W1,[["__scopeId","data-v-1c6dcf68"]]);const Vt=e=>(N("data-v-7d76bdb3"),e=e(),j(),e),Z1={class:"app-container"},H1={class:"app-container_title"},J1=Vt(()=>t("span",{class:"disk_info"},"\u78C1\u76D8\u4FE1\u606F",-1)),K1={class:"more_icon",title:"\u67E5\u770B\u78C1\u76D8\u7BA1\u7406\u4FE1\u606F"},X1={class:"DeviceBlock"},Q1=Vt(()=>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)),tc={key:0},ec=Vt(()=>t("div",{class:"disk_loading_icon"},[t("div",{class:"loading icon"},[t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",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"})])]),t("span",{class:"disk_loading_info"},"\u6B63\u5728\u83B7\u53D6\u78C1\u76D8\u4FE1\u606F...")],-1)),ac=[ec],oc={key:1},nc=Vt(()=>t("div",{class:"app-container_info"},[t("span",null,"\u7CFB\u7EDF\u6839\u76EE\u5F55")],-1)),ic={class:"app-container_body"},rc={key:2},sc=Vt(()=>t("div",{class:"app-container_info"},[t("span",null,"\u5DF2\u6302\u8F7D\u78C1\u76D8")],-1)),dc={class:"app-container_body"},cc={key:3},uc=Vt(()=>t("div",{class:"app-container_info"},[t("span",null,"RAID\u8BBE\u5907")],-1)),lc={class:"app-container_body"},pc=T({setup(e){const a=F(!1),o=rt({disks:[],raidList:[]}),n=()=>{B.Nas.Disk.Status.GET().then(m=>{var p;if((p=m==null?void 0:m.data)!=null&&p.result){const c=m.data.result;o.disks=c.disks||[]}})};(()=>Y(this,null,function*(){try{const m=yield B.Raid.List.GET();if(m!=null&&m.data){const{success:p,error:c,result:u}=m.data;if(u&&(o.raidList=u.disks||[]),c)throw c}}catch(m){console.log(m)}}))(),n();const b=()=>{a.value=!a.value};return(m,p)=>{var c,u;return i(),r("div",Z1,[t("ul",null,[t("li",null,[t("div",H1,[J1,t("span",K1,[z(Dt,{onClick:b})]),P(t("div",X1,[t("div",{class:"menu_background",onClick:b}),Q1],512),[[wt,a.value]])])]),y(o).disks?D("",!0):(i(),r("li",tc,ac)),y(o).disks?(i(),r("li",oc,[nc,t("div",ic,[(i(!0),r(L,null,G((c=y(o).disks)==null?void 0:c.filter(d=>d.isSystemRoot),(d,v)=>(i(),O(we,{key:v,disk:d},null,8,["disk"]))),128))])])):D("",!0),y(o).disks?(i(),r("li",rc,[sc,t("div",dc,[(i(!0),r(L,null,G((u=y(o).disks)==null?void 0:u.filter(d=>!d.isSystemRoot),(d,v)=>(i(),O(we,{key:v,disk:d,smartWarning:!0},null,8,["disk"]))),128))])])):D("",!0),y(o).raidList.length>0?(i(),r("li",cc,[uc,t("div",lc,[(i(!0),r(L,null,G(y(o).raidList,(d,v)=>(i(),O(we,{key:v,disk:d},null,8,["disk"]))),128))])])):D("",!0)])])}}});var fc=S(pc,[["__scopeId","data-v-7d76bdb3"]]);const ra=e=>(N("data-v-2e74c162"),e=e(),j(),e),mc={class:"app-container_samba"},bc={key:0,class:"sambas-item"},vc=ra(()=>t("div",{class:"sambas-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),gc={class:"sambas-item_value"},_c=ra(()=>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)),hc={class:"samba-item"},xc={class:"samba-item_name"},kc=["title"],wc=T({props:{sambas:{type:Array}},setup(e){const a=window.location.hostname;return(o,n)=>{var s;return i(),r("ul",mc,[e.sambas?(i(),r("li",bc,[vc,t("div",gc,[t("span",null,w((s=e.sambas)!=null&&s.length?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])])):D("",!0),_c,(i(!0),r(L,null,G(e.sambas,b=>(i(),r("li",hc,[t("div",xc,[t("span",null,"smb://"+w(y(a))+"/"+w(b.shareName),1)]),t("div",{class:"samba-item_value",title:b.path},[t("span",null,w(b.path),1)],8,kc)]))),256))])}}});var yc=S(wc,[["__scopeId","data-v-2e74c162"]]);const me=e=>(N("data-v-47e88ce2"),e=e(),j(),e),Fc={class:"webdav-item"},Cc=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),Ec={class:"webdav-item_value"},$c={key:0,class:"webdav-item"},Dc=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u6302\u8F7D\u8DEF\u5F84:")],-1)),Bc={class:"webdav-item_value"},Yc={key:1,class:"webdav-item"},Ac=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u670D\u52A1\u8DEF\u5F84:")],-1)),Sc={class:"webdav-item_value"},zc=["href"],Pc={key:2,class:"webdav-item"},Tc=me(()=>t("div",{class:"webdav-item_name"},[t("span",null,"\u8D26\u53F7:")],-1)),Ic={class:"webdav-item_value"},Lc=T({props:{webdav:{type:Object}},setup(e){const a=e,o=J(()=>{var n;return`http://${location.hostname}:${(n=a.webdav)==null?void 0:n.port}`});return(n,s)=>{var b,m,p,c,u,d;return i(),r(L,null,[t("li",Fc,[Cc,t("div",Ec,[t("span",null,w((b=e.webdav)!=null&&b.path?"\u5DF2\u542F\u7528":"\u672A\u542F\u7528"),1)])]),(m=e.webdav)!=null&&m.path?(i(),r("li",$c,[Dc,t("div",Bc,[t("span",null,w((p=e.webdav)==null?void 0:p.path),1)])])):D("",!0),(c=e.webdav)!=null&&c.port?(i(),r("li",Yc,[Ac,t("div",Sc,[t("a",{href:y(o),target:"_blank",rel:"noopener noreferrer"},w(y(o)),9,zc)])])):D("",!0),(u=e.webdav)!=null&&u.username?(i(),r("li",Pc,[Tc,t("div",Ic,[t("span",null,w((d=e.webdav)==null?void 0:d.username),1)])])):D("",!0)],64)}}});var Mc=S(Lc,[["__scopeId","data-v-47e88ce2"]]);const Se=e=>(N("data-v-4a3b6e0a"),e=e(),j(),e),Oc={class:"disk-item"},Nc=Se(()=>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)),jc={class:"disk-item_f"},qc={class:"disk-item_venderModel"},Rc={class:"disk-item_used"},Gc=Se(()=>t("div",{class:"auto"},null,-1)),Vc={class:"disk-item-r"},Uc={class:"disk-children"},Wc=["onClick"],Zc=Se(()=>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)),Hc={key:0},Jc={key:1},Kc=T({props:{disk:{type:Object,required:!0},currDisk:{type:Object},currMountPoint:{type:Object},onDisk:{type:Function,required:!0}},setup(e){var s,b;const a=e,o=F(!1);a.currDisk!=null&&((s=a.currDisk)==null?void 0:s.venderModel)==((b=a.disk)==null?void 0:b.venderModel)&&(o.value=!0);const n=m=>{o.value=!o.value,a.onDisk(m,null)};return(m,p)=>{var c;return i(),r("ul",Oc,[t("li",{class:dt(["disk-info",{on:e.disk.venderModel==((c=e.currDisk)==null?void 0:c.venderModel),nopoint:e.disk.childrens==null||e.disk.childrens.length==0}]),onClick:p[0]||(p[0]=u=>n(e.disk))},[Nc,t("div",jc,[t("div",qc,w(e.disk.venderModel),1),t("div",Rc,w(e.disk.used)+"/"+w(e.disk.size),1)]),Gc,t("div",Vc,w(e.disk.path),1)],2),P(t("div",Uc,[(i(!0),r(L,null,G(e.disk.childrens,u=>{var d,v;return i(),r("li",{class:dt(["disk-children_item",{on:u.uuid==((d=e.currMountPoint)==null?void 0:d.uuid)&&u.path==((v=e.currMountPoint)==null?void 0:v.path)}]),onClick:f=>e.onDisk(e.disk,u)},[Zc,u.mountPoint?(i(),r("span",Hc," \u3010"+w(u.filesystem)+"\u3011 "+w(u.mountPoint)+" \uFF08"+w(u.used)+"/"+w(u.total)+"\uFF09 ["+w(u.uuid)+"] ",1)):(i(),r("span",Jc," \u3010"+w(u.filesystem)+"\u3011 "+w(u.mountPoint||u.path||"\u672A\u6302\u8F7D\u78C1\u76D8")+" ["+w(u.uuid)+"] ",1))],10,Wc)}),256))],512),[[wt,o.value]])])}}});var Re=S(Kc,[["__scopeId","data-v-4a3b6e0a"]]);const ze=e=>(N("data-v-a31fbfcc"),e=e(),j(),e),Xc={class:"action list"},Qc=ze(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"\u8BF7\u9009\u62E9\u4E00\u4E2A\u786C\u76D8\u6216\u5206\u533A")],-1)),tu={class:"action-body"},eu={class:"disk-list"},au=ze(()=>t("div",{class:"action-msg"},[t("span",null,[X(" \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)),ou=ze(()=>t("div",{class:"auto"},null,-1)),nu=T({props:{Cancel:{type:Function},Next:{type:Function},Close:{type:Function}},setup(e){const a=e,o=F(!0),n=rt({disks:[],raids:[]});(()=>Y(this,null,function*(){const f=yield Promise.all([B.Nas.Disk.Status.GET(),B.Raid.List.GET()]);try{if(f[0]){const _=f[0];_!=null&&_.data.result&&(n.disks=(_==null?void 0:_.data.result.disks)||[])}if(f[1]){const _=f[1];_.data.result&&(n.raids=_.data.result.disks||[])}}catch(_){k.Error(`${_}`)}}))();const b=F(),m=F(),p=(f,_)=>{b.value=f,m.value=_},c=()=>{a.Close&&a.Close()},u=()=>{a.Cancel&&a.Cancel(),c()},d=f=>{a.Next&&a.Next(f),c()},v=()=>{if(b.value==null){k.Warning("\u8BF7\u9009\u62E9\u76EE\u6807\u786C\u76D8");return}if(b.value.childrens!=null&&b.value.childrens.length>0&&m.value==null){k.Warning("\u8BF7\u9009\u62E9\u786C\u76D8\u5206\u533A");return}if(m.value!=null&&(m.value.mountPoint==null||m.value.mountPoint=="")){k.Warning("\u8BE5\u5206\u533A\u5C1A\u672A\u6302\u8F7D\uFF0C\u8BF7\u5148\u53BB\u6302\u8F7D");return}o.value=!1,Ye({action:"nas",disk:b.value,mount:m.value,Cancel:()=>{o.value=!0},Next:f=>{d(f)}})};return(f,_)=>o.value?(i(),O(at,{key:0,type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[t("div",Xc,[Qc,t("div",tu,[t("div",eu,[(i(!0),r(L,null,G(y(n).disks,l=>(i(),O(Re,{disk:l,onDisk:p,currDisk:b.value,currMountPoint:m.value},null,8,["disk","currDisk","currMountPoint"]))),256)),(i(!0),r(L,null,G(y(n).raids,l=>(i(),O(Re,{disk:l,onDisk:p,currDisk:b.value,currMountPoint:m.value},null,8,["disk","currDisk","currMountPoint"]))),256))])]),au,t("div",{class:"action-footer"},[ou,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:u,type:"button"},"\u8FD4\u56DE"),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:v,type:"button"},"\u4E0B\u4E00\u6B65")])])]),_:1})]),_:1})):D("",!0)}});var iu=S(nu,[["__scopeId","data-v-a31fbfcc"]]),ru=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(iu,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const be=e=>(N("data-v-530e728c"),e=e(),j(),e),su={class:"action"},du={class:"action-body"},cu=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)),uu=be(()=>t("h2",{class:"title"},"\u670D\u52A1\u5DF2\u542F\u52A8",-1)),lu={class:"info"},pu=be(()=>t("span",null,"\u524D\u5F80",-1)),fu=["href"],mu=be(()=>t("span",null,"\u914D\u7F6E",-1)),bu=T({props:{Close:Function},setup(e){const a=e,o=F(""),n=J(()=>`http://${location.hostname}:${o.value}`);(()=>{B.Nas.Linkease.Enable.POST().then(m=>{var p,c;(p=m==null?void 0:m.data)!=null&&p.result&&(o.value=((c=m.data.result)==null?void 0:c.port)||"")})})();const b=()=>{a.Close&&a.Close(),location.reload()};return(m,p)=>(i(),O(at,{type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[t("div",su,[t("div",du,[cu,uu,t("div",lu,[pu,t("a",{href:y(n),target:"_blank",rel:"noopener noreferrer"},w(y(n)),9,fu),mu]),t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:b},"\u5173\u95ED")])])])]),_:1})]),_:1}))}});var vu=S(bu,[["__scopeId","data-v-530e728c"]]),gu=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(vu,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Xt=e=>(N("data-v-30ef6ccb"),e=e(),j(),e),_u=["onSubmit"],hu=Xt(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Webdav\u5171\u4EAB\u914D\u7F6E")],-1)),xu={class:"action-body"},ku={class:"label-item"},wu=Xt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),yu={class:"label-item_value"},Fu=["value"],Cu={class:"label-item"},Eu=Xt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),$u={class:"label-item_value"},Du={class:"label-item"},Bu=Xt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),Yu={class:"label-item_value"},Au={class:"action-footer"},Su=Xt(()=>t("div",{class:"auto"},null,-1)),zu=["disabled"],Pu=["disabled"],Tu=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=c=>{c.preventDefault(),a.Close&&a.Close()},n=F(!1),s=F({username:"root",password:"",rootPath:a.rootPath});(()=>Y(this,null,function*(){const c=k.Loading("\u52A0\u8F7D\u4E2D...");n.value=!0;try{const u=yield B.Nas.Webdav.Status.GET();if(u!=null&&u.data){const{result:d,error:v}=u.data;if(v){k.Warning(v);return}d&&(d.username&&(s.value.username=d.username),d.password&&(s.value.password=d.password))}}catch(u){k.Error(u)}n.value=!1,c.Close()}))();const m=()=>{const c=s.value;if(c.rootPath==""){k.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(c.username==""){k.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(c.password==""){k.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}p(c)},p=c=>Y(this,null,function*(){n.value=!0;const u=k.Loading("\u521B\u5EFA\u4E2D...");try{const d=yield B.Nas.Webdav.Create.POST(c);if(d!=null&&d.data){const{error:v,result:f}=d.data;v&&k.Warning(v),f&&(k.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(d){k.Error(d)}u.Close(),n.value=!1});return(c,u)=>(i(),O(at,{type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[t("form",{class:"action",onSubmit:it(m,["prevent"])},[hu,t("div",xu,[t("div",ku,[wu,t("div",yu,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,Fu)])]),t("div",Cu,[Eu,t("div",$u,[P(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":u[0]||(u[0]=d=>s.value.username=d)},null,512),[[H,s.value.username,void 0,{trim:!0}]])])]),t("div",Du,[Bu,t("div",Yu,[P(t("input",{type:"password","onUpdate:modelValue":u[1]||(u[1]=d=>s.value.password=d)},null,512),[[H,s.value.password,void 0,{trim:!0}]])])])]),t("div",Au,[Su,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,zu),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,Pu)])],40,_u)]),_:1})]),_:1}))}});var Iu=S(Tu,[["__scopeId","data-v-30ef6ccb"]]),Lu=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Iu,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const At=e=>(N("data-v-3ef9e48f"),e=e(),j(),e),Mu=["onSubmit"],Ou=At(()=>t("div",{class:"action-header"},[t("div",{class:"action-header_title"},"Samba\u5171\u4EAB\u914D\u7F6E")],-1)),Nu={class:"action-body"},ju={class:"label-item"},qu=At(()=>t("div",{class:"label-item_key"},[t("span",null,"\u670D\u52A1\u76EE\u5F55\u8DEF\u5F84")],-1)),Ru={class:"label-item_value"},Gu=["value"],Vu={class:"label-item"},Uu=At(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5171\u4EAB\u540D\uFF08\u5EFA\u8BAE\u4F7F\u7528\u82F1\u6587\u5B57\u6BCD\uFF09")],-1)),Wu={class:"label-item_value"},Zu={class:"label-item"},Hu=At(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D")],-1)),Ju={class:"label-item_value"},Ku={class:"label-item"},Xu=At(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801")],-1)),Qu={class:"label-item_value"},tl={class:"samba-item"},el={class:"samba-item_allow"},al=At(()=>t("label",{for:"allow",class:"samba-allow"},"\u5141\u8BB8\u65E7\u534F\u8BAE\u4E0E\u8EAB\u4EFD\u9A8C\u8BC1(\u4E0D\u5B89\u5168)",-1)),ol={class:"samba-item_tips"},nl={class:"tooltip-trigger"},il={class:"samba_tip"},rl=At(()=>t("span",{class:"samba_dir_tip"},"\u517C\u5BB9\u4E00\u4E9B\u7535\u89C6\u6216\u8005\u7535\u89C6\u76D2\u5B50",-1)),sl={class:"action-footer"},dl=At(()=>t("div",{class:"auto"},null,-1)),cl=["disabled"],ul=["disabled"],ll=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=p=>{p.preventDefault(),a.Close&&a.Close()},n=F(!1),s=F({shareName:"",username:"",password:"",rootPath:a.rootPath,allowLegacy:!1}),b=()=>{const p=s.value;if(p.rootPath==""){k.Warning("\u5171\u4EAB\u8DEF\u5F84\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.shareName==""){k.Warning("\u5171\u4EAB\u540D\u79F0\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.username==""){k.Warning("\u7528\u6237\u540D\u4E0D\u80FD\u4E3A\u7A7A");return}if(p.password==""){k.Warning("\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A");return}const c=qt.checkSmabaUserName(p.username);if(c!==!0){k.Warning(`${c}`);return}m(p)},m=p=>Y(this,null,function*(){n.value=!0;const c=k.Loading("\u521B\u5EFA\u4E2D...");try{const u=yield B.Nas.Samba.Create.POST(p);if(u!=null&&u.data){const{error:d,result:v}=u.data;d&&k.Warning(d),v&&(k.Success("\u521B\u5EFA\u6210\u529F"),window.setTimeout(()=>{location.reload()},1e3))}}catch(u){k.Error(u)}c.Close(),n.value=!1});return(p,c)=>(i(),O(at,{type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[t("form",{class:"action",onSubmit:it(b,["prevent"])},[Ou,t("div",Nu,[t("div",ju,[qu,t("div",Ru,[t("input",{type:"text",value:s.value.rootPath,disabled:"",required:"",style:{backgroundColor:"#eee"}},null,8,Gu)])]),t("div",Vu,[Uu,t("div",Wu,[P(t("input",{type:"text","onUpdate:modelValue":c[0]||(c[0]=u=>s.value.shareName=u),required:"",placeholder:"\u5171\u4EAB\u540D\u79F0"},null,512),[[H,s.value.shareName,void 0,{trim:!0}]])])]),t("div",Zu,[Hu,t("div",Ju,[P(t("input",{type:"text",required:"",placeholder:"\u8D26\u53F7\u7528\u6237\u540D","onUpdate:modelValue":c[1]||(c[1]=u=>s.value.username=u)},null,512),[[H,s.value.username,void 0,{trim:!0}]])])]),t("div",Ku,[Xu,t("div",Qu,[P(t("input",{type:"password","onUpdate:modelValue":c[2]||(c[2]=u=>s.value.password=u)},null,512),[[H,s.value.password,void 0,{trim:!0}]])])]),t("div",tl,[t("div",el,[P(t("input",{type:"checkbox",id:"allow","onUpdate:modelValue":c[3]||(c[3]=u=>s.value.allowLegacy=u)},null,512),[[jt,s.value.allowLegacy]]),al]),t("div",ol,[t("span",nl,[t("span",il,[z(ht)]),rl])])])]),t("div",sl,[dl,t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:o,disabled:n.value},"\u5173\u95ED",8,cl),t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:n.value},"\u521B\u5EFA",8,ul)])],40,Mu)]),_:1})]),_:1}))}});var pl=S(ll,[["__scopeId","data-v-3ef9e48f"]]),fl=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(pl,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Qt=e=>(N("data-v-567b2684"),e=e(),j(),e),ml={key:0,class:"action"},bl=Qt(()=>t("h2",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528 NAS \u914D\u7F6E\u5411\u5BFC",-1)),vl=Qt(()=>t("h3",{class:"desc"},"\u8BF7\u9009\u62E9\u9700\u8981\u6DFB\u52A0\u7684NAS\u670D\u52A1",-1)),gl=Qt(()=>t("option",{value:"linkease"},"\u8DE8\u8BBE\u5907\u5171\u4EAB\uFF08\u6613\u6709\u4E91\uFF09",-1)),_l=Qt(()=>t("option",{value:"samba"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Samba\uFF09",-1)),hl=Qt(()=>t("option",{value:"webdav"},"\u5C40\u57DF\u7F51\u6587\u4EF6\u5171\u4EAB\uFF08Webdav\uFF09",-1)),xl=[gl,_l,hl],kl={class:"btns"},wl=["disabled"],yl=T({props:{setup:Number,Close:{type:Function,required:!0}},setup(e){const a=e,o=F(!0),n=F("linkease"),s=F(!1),b=F(a.setup||0),m=()=>{a.Close&&a.Close()},p=()=>Y(this,null,function*(){switch(n.value){case"webdav":yield c();break;case"samba":yield d();break;case"linkease":yield u();break}}),c=()=>Y(this,null,function*(){s.value=!0;const g=k.Loading("\u914D\u7F6E\u4E2D...");try{const x=yield B.App.Check.POST({name:"gowebdav"});if(g.Close(),x!=null&&x.data){const{result:C,error:E}=x.data;if(E&&k.Warning(E),C){if(C.status=="installed"){f();return}if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 GoWebdav \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){const $=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D..."),A=yield v("app-meta-gowebdav");$.Close(),A?f():k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(x){k.Error(x)}g.Close(),s.value=!1}),u=()=>Y(this,null,function*(){s.value=!0;const g=k.Loading("\u914D\u7F6E\u4E2D...");try{const x=yield B.App.Check.POST({name:"linkease"});if(g.Close(),x!=null&&x.data){const{result:C,error:E}=x.data;if(E&&k.Warning(E),C){if(C.status=="installed"){_();return}if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 \u6613\u6709\u4E91 \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){const $=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D..."),A=yield v("app-meta-linkease");$.Close(),A?_():k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(x){k.Error(x)}g.Close(),s.value=!1}),d=()=>Y(this,null,function*(){s.value=!0;const g=k.Loading("\u914D\u7F6E\u4E2D...");f(),g.Close(),s.value=!1}),v=g=>Y(this,null,function*(){return B.App.Install.POST({name:g}).then(()=>{}),new Promise((x,C)=>Y(this,null,function*(){let E=0;const $=setInterval(()=>Y(this,null,function*(){if(E>10){clearInterval($),C(!1);return}const A=yield B.App.Check.POST({name:g});if(A!=null&&A.data){const{result:M}=A.data;if((M==null?void 0:M.status)=="installed"){clearInterval($),x(!0);return}}E++}),3e3)}))}),f=()=>{s.value=!1,o.value=!1,ru({Cancel:()=>{o.value=!0},Next:g=>{switch(n.value){case"webdav":l(g);break;case"samba":h(g);break}}})},_=()=>{gu({}),m()},l=g=>{Lu({rootPath:g}),m()},h=g=>{fl({rootPath:g}),m()};return(g,x)=>o.value?(i(),O(at,{key:0,Close:e.Close,type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[b.value==0?(i(),r("div",ml,[bl,vl,t("form",null,[t("label",null,[P(t("select",{"onUpdate:modelValue":x[0]||(x[0]=C=>n.value=C)},xl,512),[[Q,n.value]])])]),t("div",kl,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:p,type:"button",disabled:s.value},"\u4E0B\u4E00\u6B65",8,wl),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:m,type:"button"},"\u53D6\u6D88")])])):D("",!0)]),_:1})]),_:1},8,["Close"])):D("",!0)}});var Fl=S(yl,[["__scopeId","data-v-567b2684"]]),sa=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(Fl,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}};const Pe=e=>(N("data-v-edf68726"),e=e(),j(),e),Cl={class:"app-container_linkease"},El={class:"linkease-item"},$l=Pe(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),Dl={class:"linkease-item_value"},Bl={key:0,class:"configure"},Yl={key:0,class:"linkease-item"},Al=Pe(()=>t("div",{class:"linkease-item_name"},[t("span",null,"\u670D\u52A1\u5730\u5740:")],-1)),Sl={class:"linkease-item_value"},zl=["href"],Pl=Pe(()=>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)),Tl=T({props:{linkease:{type:Object}},setup(e){const a=e,o=J(()=>{var s;return`http://${location.hostname}:${(s=a.linkease)==null?void 0:s.port}`}),n=()=>{sa({setup:0})};return(s,b)=>{var m,p,c;return i(),r("ul",Cl,[t("li",El,[$l,t("div",Dl,[(m=e.linkease)!=null&&m.enabel?(i(),r("span",Bl,"\u5DF2\u914D\u7F6E")):(i(),r("span",{key:1,class:"configure enabel",onClick:b[0]||(b[0]=u=>n())},"\u672A\u914D\u7F6E"))])]),(p=e.linkease)!=null&&p.enabel?(i(),r(L,{key:0},[(c=e.linkease)!=null&&c.port?(i(),r("li",Yl,[Al,t("div",Sl,[t("a",{href:y(o),target:"_blank",rel:"noopener noreferrer"},w(y(o)),9,zl)])])):D("",!0)],64)):D("",!0),Pl])}}});var Il=S(Tl,[["__scopeId","data-v-edf68726"]]);const da=e=>(N("data-v-fc8a3b22"),e=e(),j(),e),Ll={class:"app-container"},Ml={class:"app-container_title"},Ol=da(()=>t("span",null,[t("span",null,"\u5B58\u50A8\u670D\u52A1")],-1)),Nl={class:"app-container_tool"},jl={class:"more_icon",title:"\u67E5\u770B\u5B58\u50A8\u670D\u52A1\u4FE1\u606F"},ql={class:"DeviceBlock"},Rl=da(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/services/samba4"},"SAMBA\u9AD8\u7EA7\u914D\u7F6E")],-1)),Gl={class:"app-container_body"},Vl={class:"app-container_nas-menu"},Ul=T({setup(e){const a=F(!1),o=F("linkease"),n=F(),s=Je();(()=>{B.Nas.Service.Status.GET().then(d=>{var v;if((v=d==null?void 0:d.data)!=null&&v.result){const f=d.data.result;n.value=f,f.webdav&&(s.webdav=f.webdav)}})})();const m=()=>{sa({setup:0})},p=()=>{a.value=!a.value},c=()=>{p(),(()=>Y(this,null,function*(){let v=k.Loading("");try{const f=yield B.App.Check.POST({name:"app-meta-gowebdav"});if(v.Close(),f!=null&&f.data){const{result:_,error:l}=f.data;if(l&&k.Warning(l),_){if(_.status=="installed")location.href="/cgi-bin/luci/admin/nas/gowebdav";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5GoWebDAV\u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){v=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const h=yield u("app-meta-gowebdav");v.Close(),h?(k.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/nas/gowebdav"):k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(f){k.Error(f)}v.Close()}))()},u=d=>Y(this,null,function*(){return B.App.Install.POST({name:d}).then(()=>{}),new Promise((v,f)=>Y(this,null,function*(){let _=0;const l=setInterval(()=>Y(this,null,function*(){if(_>20){clearInterval(l),f(!1);return}const h=yield B.App.Check.POST({name:d});if(h!=null&&h.data){const{result:g}=h.data;if((g==null?void 0:g.status)=="installed"){clearInterval(l),v(!0);return}}_++}),3e3)}))});return(d,v)=>{var f,_,l;return i(),r("div",Ll,[t("div",Ml,[Ol,t("div",Nl,[t("div",{class:"app-container_configure",onClick:m},"\u5FEB\u901F\u914D\u7F6E"),t("span",jl,[z(Dt,{onClick:p})])]),P(t("div",ql,[t("div",{class:"menu_background",onClick:p}),t("ul",null,[Rl,t("li",null,[t("a",{onClick:c},"WebDAV\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[wt,a.value]])]),t("div",Gl,[t("ul",Vl,[t("button",{onClick:v[0]||(v[0]=h=>o.value="linkease"),class:dt({on:o.value=="linkease"})},"\u6613\u6709\u4E91",2),t("button",{onClick:v[1]||(v[1]=h=>o.value="samba"),class:dt({on:o.value=="samba"})},"SAMBA",2),t("button",{onClick:v[2]||(v[2]=h=>o.value="webdav"),class:dt({on:o.value=="webdav"})},"WEBDAV",2)]),o.value=="samba"?(i(),O(yc,{key:0,sambas:(f=n.value)==null?void 0:f.sambas},null,8,["sambas"])):o.value=="webdav"?(i(),O(Mc,{key:1,webdav:(_=n.value)==null?void 0:_.webdav},null,8,["webdav"])):o.value=="linkease"?(i(),O(Il,{key:2,linkease:(l=n.value)==null?void 0:l.linkease},null,8,["linkease"])):D("",!0)])])}}});var Wl=S(Ul,[["__scopeId","data-v-fc8a3b22"]]);const ve=e=>(N("data-v-4272377e"),e=e(),j(),e),Zl={class:"app-container_docker"},Hl={class:"docker-item"},Jl=ve(()=>t("div",{class:"docker-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),Kl={key:0,class:"docker-item_value"},Xl=ve(()=>t("span",{class:"configure"},"\u672A\u5B89\u88C5",-1)),Ql=[Xl],t2={key:1,class:"docker-item_value"},e2={class:"input-switch"},a2=["value","disabled"],o2=ve(()=>t("em",null,null,-1)),n2=[o2],i2={key:0,class:"docker-item"},r2=ve(()=>t("div",{class:"docker-item_name"},[t("span",null,"Docker\u6839\u76EE\u5F55\uFF1A")],-1)),s2={class:"docker-item_value"},d2={class:"configure enabel"},c2={key:0},u2={class:"tooltip-trigger"},l2={class:"docker_tip"},p2={class:"tooltip-text tooltip-top"},f2={class:"docker_dir_tip"},m2=T({props:{docker:{type:Object}},setup(e){var b;const a=e,o=J(()=>{var m;return((m=a.docker)==null?void 0:m.status)!="not installed"}),n=rt({enable:((b=a.docker)==null?void 0:b.status)=="running",disabled:!1}),s=()=>Y(this,null,function*(){n.disabled=!0;try{const m=yield B.Guide.DockerSwitch.POST({enable:n.enable});if(m!=null&&m.data){const{success:p,error:c}=m.data;if(c)throw n.enable=!n.enable,c;(p||0)==0}}catch(m){k.Error(`${m}`)}finally{n.disabled=!1}});return(m,p)=>{var c,u,d,v;return i(),r("ul",Zl,[t("li",Hl,[Jl,(c=a.docker)!=null&&c.status?(i(),r(L,{key:0},[y(o)?(i(),r("div",t2,[t("label",e2,[P(t("input",{type:"checkbox",hidden:"",value:!y(n).enable,"onUpdate:modelValue":p[0]||(p[0]=f=>y(n).enable=f),disabled:y(n).disabled,onChange:s},null,40,a2),[[jt,y(n).enable]]),t("span",{class:dt(y(n).enable?"enable":"close")},n2,2)])])):(i(),r("div",Kl,Ql))],64)):D("",!0)]),((u=e.docker)==null?void 0:u.status)=="running"?(i(),r("li",i2,[r2,t("div",s2,[t("span",d2,w((d=e.docker)==null?void 0:d.path),1),(v=e.docker)!=null&&v.errorInfo?(i(),r("span",c2,[t("span",u2,[t("span",l2,[z(ht)]),t("div",null,[t("div",p2,[t("span",f2,w(e.docker.errorInfo),1)])])])])):D("",!0)])])):D("",!0)])}}});var b2=S(m2,[["__scopeId","data-v-4272377e"]]);const v2={},g2={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"},_2=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),h2=[_2];function x2(e,a){return i(),r("svg",g2,h2)}var k2=S(v2,[["render",x2]]);const pt=e=>(N("data-v-08e0f5d4"),e=e(),j(),e),w2={key:0,class:"action"},y2=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),F2=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)),C2={key:1,class:"action"},E2=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),$2=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)),D2={class:"roots"},B2=pt(()=>t("span",{class:"roots_tit"},"Docker\u6839\u76EE\u5F55\uFF1A",-1)),Y2={class:"root"},A2={class:"move"},S2=pt(()=>t("span",{class:"roots_tit"},"\u8FC1\u79FB\u5230\uFF1A",-1)),z2={key:0},P2=["onSubmit"],T2={class:"select-editable"},I2=pt(()=>t("option",{selected:"",value:null},"\u8BF7\u9009\u62E9\u8FC1\u79FB\u5730\u5740",-1)),L2=["value"],M2=pt(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),O2={key:1,class:"tips"},N2={class:"tips_content"},j2=pt(()=>t("span",{class:"tip"},"\u68C0\u6D4B\u5230\u60A8\u8FD8\u6CA1\u6709\u6302\u8F7D\u5916\u7F6E\u786C\u76D8\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)),q2={key:0,class:"btns"},R2={key:1,class:"btns"},G2={key:2,class:"action docker_success"},V2=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),U2={class:"finished"},W2=pt(()=>t("p",{class:"successed"},"\u8FC1\u79FB\u6210\u529F\uFF01",-1)),Z2={key:3,class:"action docker_download"},H2=pt(()=>t("h2",{class:"title"},"Docker\u8FC1\u79FB\u5411\u5BFC",-1)),J2={class:"finished"},K2=pt(()=>t("p",{class:"successed"},"\u8BE5\u76EE\u6807\u8DEF\u5F84\u4E0D\u4E3A\u7A7A",-1)),X2={class:"docker_moves"},Q2={class:"moves change"},t5=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)),e5={class:"moves"},a5=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)),o5={class:"btns"},n5=T({props:{rootPath:{type:String,required:!0},Close:Function},setup(e){const a=e,o=F(),n=F(),s=F(0),b=F("null"),m=F(""),p=F(),c=F(!1),u=F("");(()=>{B.Nas.Disk.Status.GET().then(x=>{x!=null&&x.data.result&&(p.value=x==null?void 0:x.data.result)}),B.Guide.DockerStatus.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const E=x.data.result;o.value=E}}),B.Guide.DockerPartitionList.GET().then(x=>{var C;if((C=x==null?void 0:x.data)!=null&&C.result){const E=x.data.result;n.value=E}})})();const v=x=>{let C=b.value;if(C=="useInput"&&(C=m.value),C==null||C=="null"||C=="")return;const E=k.Loading("\u6B63\u5728\u8FC1\u79FB\u4E2D...");B.Guide.DockerTransfer.POST({path:C,force:x,overwriteDir:!!u.value}).then($=>{var A;if($!=null&&$.data){if(($.data.success||0)==0){if((A=$.data.result)!=null&&A.emptyPathWarning){c.value=!0,s.value=2;return}s.value=1;return}else if($.data.error)throw $.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch($=>{k.Error($)}).finally(()=>E.Close())},f=()=>{c.value=!1,v(!1)},_=x=>{x.preventDefault(),a.Close&&a.Close()},l=x=>{x.preventDefault(),location.reload()},h=x=>{x.preventDefault(),s.value=0},g=x=>{x.preventDefault(),v(!0)};return(x,C)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>{var E,$,A,M,W,Z;return[t("div",null,[s.value==-1?(i(),r("div",w2,[y2,F2,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:_},"\u53D6\u6D88")])])):s.value==0?(i(),r("div",C2,[E2,$2,t("div",D2,[B2,t("span",Y2,w((E=o.value)==null?void 0:E.path),1)]),t("div",A2,[S2,(A=($=n.value)==null?void 0:$.partitionList)!=null&&A.length?(i(),r("div",z2,[t("form",{onSubmit:it(f,["prevent"])},[t("label",null,[t("div",T2,[P(t("select",{"onUpdate:modelValue":C[0]||(C[0]=V=>b.value=V)},[I2,(i(!0),r(L,null,G((M=n.value)==null?void 0:M.partitionList,(V,R)=>(i(),r("option",{value:V,key:R},w(V),9,L2))),128)),M2],512),[[Q,b.value,void 0,{trim:!0}]]),b.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":C[1]||(C[1]=V=>m.value=V),required:"",placeholder:"\u8BF7\u8F93\u5165\u8FC1\u79FB\u5730\u5740"},null,512)),[[H,m.value,void 0,{trim:!0}]]):D("",!0)])])],40,P2)])):n.value?(i(),r("div",O2,[t("div",N2,[z(ht),j2])])):D("",!0)]),(Z=(W=n.value)==null?void 0:W.partitionList)!=null&&Z.length?(i(),r("div",q2,[t("button",{class:"cbi-button cbi-button-apply",onClick:f},"\u786E\u5B9A"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:_},"\u53D6\u6D88")])):(i(),r("div",R2,[t("button",{class:"cbi-button cbi-button-apply",onClick:_},"\u786E\u5B9A")]))])):s.value==1?(i(),r("div",G2,[V2,t("div",U2,[z(Be)]),W2,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:l},"\u786E\u5B9A")])])):s.value==2?(i(),r("div",Z2,[H2,t("div",J2,[z(k2)]),K2,t("div",X2,[t("div",Q2,[P(t("input",{type:"radio",id:"move",name:"moves","onUpdate:modelValue":C[2]||(C[2]=V=>u.value=V),value:""},null,512),[[vt,u.value]]),t5]),t("div",e5,[P(t("input",{type:"radio",id:"cover",name:"moves","onUpdate:modelValue":C[3]||(C[3]=V=>u.value=V),value:"true"},null,512),[[vt,u.value]]),a5])]),t("div",o5,[c.value?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:g},"\u786E\u5B9A")):D("",!0),t("button",{class:"cbi-button cbi-button-apply",onClick:h},"\u8FD4\u56DE"),c.value?D("",!0):(i(),r("button",{key:1,class:"cbi-button cbi-button-remove app-btn app-back",type:"button",onClick:l},"\u53D6\u6D88"))])])):D("",!0)])]}),_:1},8,["Close"]))}});var i5=S(n5,[["__scopeId","data-v-08e0f5d4"]]);const r5=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(i5,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},ca=e=>(N("data-v-40eef1a3"),e=e(),j(),e),s5={class:"app-container"},d5={class:"app-container_title"},c5=ca(()=>t("span",null,[t("span",null,"Docker")],-1)),u5={class:"app-container_tool"},l5={key:1,class:"more_icon",title:"\u67E5\u770BDocker\u4FE1\u606F"},p5={class:"DeviceBlock"},f5=ca(()=>t("ul",null,[t("li",null,[t("a",{href:"/cgi-bin/luci/admin/docker/overview"},"Docker\u9AD8\u7EA7\u914D\u7F6E")])],-1)),m5=T({props:{docker:{type:Object}},setup(e){const a=F(!1),o=F(),n=F(!1),s=()=>{n.value=!n.value},b=()=>{r5()};return(()=>{B.Guide.DockerStatus.GET().then(p=>{var c;if((c=p==null?void 0:p.data)!=null&&c.result){const u=p.data.result;o.value=u}}).finally(()=>{a.value=!0})})(),(p,c)=>{var u,d;return i(),r("div",s5,[t("div",d5,[c5,t("div",u5,[((u=o.value)==null?void 0:u.status)!="not installed"?(i(),r("div",{key:0,class:"app-container_configure",onClick:b},"\u5FEB\u901F\u914D\u7F6E ")):D("",!0),((d=o.value)==null?void 0:d.status)==="running"?(i(),r("span",l5,[z(Dt,{onClick:s})])):D("",!0)]),P(t("div",p5,[t("div",{class:"menu_background",onClick:s}),f5],512),[[wt,n.value]])]),t("div",null,[a.value?(i(),O(b2,{key:0,docker:o.value},null,8,["docker"])):D("",!0)])])}}});var b5=S(m5,[["__scopeId","data-v-40eef1a3"]]);const ge=e=>(N("data-v-b0aac542"),e=e(),j(),e),v5={class:"app-container_aria2"},g5={class:"aria2-item"},_5=ge(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),h5={class:"aria2-item_value"},x5={key:0,class:"configure"},k5={key:1,class:"configure enabel"},w5={class:"aria2-item"},y5=ge(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u4E0B\u8F7D\u5730\u5740:")],-1)),F5={class:"aria2-item_value"},C5={class:"aria2-item"},E5=ge(()=>t("div",{class:"aria2-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),$5={class:"aria2-item_value"},D5=["href"],B5=ge(()=>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=T({props:{aria2:{type:Object}},setup(e){const a=e,o=J(()=>{var n;return`http://${location.host}${(n=a.aria2)==null?void 0:n.webPath}`});return(n,s)=>{var b,m,p;return i(),r("ul",v5,[t("li",g5,[_5,t("div",h5,[((b=e.aria2)==null?void 0:b.status)=="running"?(i(),r("span",x5,"\u5DF2\u542F\u52A8")):(i(),r("span",k5,"\u672A\u542F\u52A8"))])]),((m=e.aria2)==null?void 0:m.status)=="running"?(i(),r(L,{key:0},[t("li",w5,[y5,t("div",F5,[t("span",null,w((p=e.aria2)==null?void 0:p.downloadPath),1)])]),t("li",C5,[E5,t("div",$5,[t("a",{href:y(o),target:"_blank",rel:"noopener noreferrer"},w(y(o)),9,D5)])])],64)):D("",!0),B5])}}});var A5=S(Y5,[["__scopeId","data-v-b0aac542"]]);const Te=e=>(N("data-v-52e2b49c"),e=e(),j(),e),S5={class:"app-container_qbittorrent"},z5={class:"qbittorrent-item"},P5=Te(()=>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=Te(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u4E0B\u8F7D\u5730\u5740:")],-1)),N5={class:"qbittorrent-item_value"},j5={class:"qbittorrent-item"},q5=Te(()=>t("div",{class:"qbittorrent-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),R5={class:"qbittorrent-item_value"},G5=["href"],V5=T({props:{qbittorrent:{type:Object}},setup(e){const a=e,o=J(()=>{var n;return`http://${location.host}${(n=a.qbittorrent)==null?void 0:n.webPath}`});return(n,s)=>{var b,m,p;return i(),r("ul",S5,[t("li",z5,[P5,t("div",T5,[((b=e.qbittorrent)==null?void 0:b.status)=="running"?(i(),r("span",I5,"\u5DF2\u542F\u52A8")):(i(),r("span",L5,"\u672A\u542F\u52A8"))])]),((m=e.qbittorrent)==null?void 0:m.status)=="running"?(i(),r(L,{key:0},[t("li",M5,[O5,t("div",N5,[t("span",null,w((p=e.qbittorrent)==null?void 0:p.downloadPath),1)])]),t("li",j5,[q5,t("div",R5,[t("a",{href:y(o),target:"_blank",rel:"noopener noreferrer"},w(y(o)),9,G5)])])],64)):D("",!0)])}}});var U5=S(V5,[["__scopeId","data-v-52e2b49c"]]);const Ie=e=>(N("data-v-78784f5e"),e=e(),j(),e),W5={class:"app-container_transmission"},Z5={class:"transmission-item"},H5=Ie(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u5F53\u524D\u72B6\u6001:")],-1)),J5={class:"transmission-item_value"},K5={key:0,class:"configure"},X5={key:1,class:"configure enabel"},Q5={class:"transmission-item"},t6=Ie(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u4E0B\u8F7D\u5730\u5740:")],-1)),e6={class:"transmission-item_value"},a6={class:"transmission-item"},o6=Ie(()=>t("div",{class:"transmission-item_name"},[t("span",null,"\u7F51\u7EDC\u5730\u5740:")],-1)),n6={class:"transmission-item_value"},i6=["href"],r6=T({props:{transmission:{type:Object}},setup(e){const a=e,o=J(()=>{var n;return`http://${location.host}${(n=a.transmission)==null?void 0:n.webPath}`});return(n,s)=>{var b,m,p;return i(),r("ul",W5,[t("li",Z5,[H5,t("div",J5,[((b=e.transmission)==null?void 0:b.status)=="running"?(i(),r("span",K5,"\u5DF2\u542F\u52A8")):(i(),r("span",X5,"\u672A\u542F\u52A8"))])]),((m=e.transmission)==null?void 0:m.status)=="running"?(i(),r(L,{key:0},[t("li",Q5,[t6,t("div",e6,[t("span",null,w((p=e.transmission)==null?void 0:p.downloadPath),1)])]),t("li",a6,[o6,t("div",n6,[t("a",{href:y(o),target:"_blank",rel:"noopener noreferrer"},w(y(o)),9,i6)])])],64)):D("",!0)])}}});var s6=S(r6,[["__scopeId","data-v-78784f5e"]]);const d6={},c6={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"},u6=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),l6=[u6];function p6(e,a){return i(),r("svg",c6,l6)}var re=S(d6,[["render",p6]]);const et=e=>(N("data-v-7ea0bbfc"),e=e(),j(),e),f6={key:0,class:"action"},m6=et(()=>t("h2",{class:"title"},"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",-1)),b6={class:"load_service"},v6=et(()=>t("span",null,"\u4E0B\u8F7D\u670D\u52A1\uFF1A",-1)),g6={class:"load_radios"},_6=et(()=>t("label",{for:"Aria2"},"Aria2",-1)),h6={class:"load_radios"},x6=et(()=>t("label",{for:"qB"},"qBittorrent",-1)),k6={class:"load_radios"},w6=et(()=>t("label",{for:"Ts"},"Transmission",-1)),y6={key:0},F6={class:"load"},C6={class:"left"},E6={class:"tooltip-trigger"},$6=et(()=>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\uFF1Amnt/sda1/download")])],-1)),D6=et(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),B6=["onSubmit"],Y6={class:"select-editable"},A6=et(()=>t("option",{selected:"true",value:null},"\u8BF7\u9009\u62E9\u4E0B\u8F7D\u76EE\u5F55",-1)),S6=["value"],z6=et(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),P6={class:"RPC"},T6={class:"left"},I6={class:"tooltip-trigger"},L6=et(()=>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)),M6=et(()=>t("span",null,"RPC \u4EE4\u724C\uFF1A",-1)),O6={class:"Tracker"},N6=et(()=>t("span",null,"\u9644\u52A0\u7684 BT Tracker\uFF1A",-1)),j6=et(()=>t("label",{for:"default"},"\u9ED8\u8BA4",-1)),q6=et(()=>t("label",{for:"add"},"\u81EA\u5DF1\u6DFB\u52A0",-1)),R6={key:1},G6={class:"load"},V6={class:"left"},U6={class:"tooltip-trigger"},W6=et(()=>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\uFF1Amnt/sda1/download")])],-1)),Z6=et(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),H6=["onSubmit"],J6={class:"select-editable"},K6=et(()=>t("option",{selected:"true",value:null},"\u8BF7\u9009\u62E9\u4E0B\u8F7D\u76EE\u5F55",-1)),X6=["value"],Q6=et(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),t3={key:2},e3={class:"load"},a3={class:"left"},o3={class:"tooltip-trigger"},n3=et(()=>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\uFF1Amnt/sda1/download")])],-1)),i3=et(()=>t("span",null,"\u4E0B\u8F7D\u76EE\u5F55\uFF1A",-1)),r3=["onSubmit"],s3={class:"select-editable"},d3=et(()=>t("option",{selected:"true",value:null},"\u8BF7\u9009\u62E9\u4E0B\u8F7D\u76EE\u5F55",-1)),c3=["value"],u3=et(()=>t("option",{value:"useInput"},"- -\u81EA\u5B9A\u4E49- -",-1)),l3={class:"btns"},p3={key:1,class:"action"},f3={class:"title"},m3={class:"finished"},b3=et(()=>t("p",{class:"successed"},"\u914D\u7F6E\u6210\u529F\uFF01",-1)),v3=T({props:{services:{type:Object,required:!0},partitionList:{type:Array,required:!0},defaultTab:{type:String,required:!1},Close:Function},setup(e){const a=e,o=F(""),n=F(""),s=F("null"),b=F(""),m=F("default"),p=F("Aria2"),c=F("null"),u=F(""),d=F("null"),v=F(""),f=F(0);Bt(()=>{var W,Z,V,R,U,nt,Wt;switch(a.defaultTab){case"aria2":p.value="Aria2";break;case"qbittorrent":p.value="qBittorrent";break;case"transmission":p.value="transmission";break}const E=((W=a.services.aria2)==null?void 0:W.downloadPath)||((Z=a.services.qbittorrent)==null?void 0:Z.downloadPath)||((V=a.services.transmission)==null?void 0:V.downloadPath);E&&(a.partitionList.find(Ct=>Ct==E)?s.value=E:(b.value=E,s.value="useInput"));const $=(R=a.services.aria2)==null?void 0:R.rpcToken;$&&(o.value=$);const A=((U=a.services.qbittorrent)==null?void 0:U.downloadPath)||E||((nt=a.services.transmission)==null?void 0:nt.downloadPath);A&&(a.partitionList.find(Ct=>Ct==A)?c.value=A:(u.value=A,c.value="useInput"));const M=((Wt=a.services.transmission)==null?void 0:Wt.downloadPath)||E||A;M&&(a.partitionList.find(Ct=>Ct==M)?d.value=M:(v.value=M,d.value="useInput"))});const _=()=>{let E=s.value;if(E=="useInput"&&(E=b.value),E==null||E=="null"||E=="")return;(()=>Y(this,null,function*(){let A=k.Loading("\u68C0\u67E5\u4E2D...");try{const M=yield B.App.Check.POST({name:"app-meta-aria2"});if(A.Close(),M!=null&&M.data){const{result:W,error:Z}=M.data;if(Z&&k.Warning(Z),W){const V=()=>{A=k.Loading("\u914D\u7F6E\u4E2D..."),B.Guide.Aria2Init.POST({downloadPath:E,rpcToken:o.value,btTracker:m.value=="add"?n.value:""}).then(R=>{var U;if(R!=null&&R.data){if((R.data.success||0)==0){f.value=1;return}else if((U=R.data)!=null&&U.error)throw R.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(R=>k.Error(R)).finally(()=>A.Close())};if(W.status=="installed")V();else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Aria2 \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){A=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const R=yield g("app-meta-aria2");A.Close(),R?V():k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(M){A.Close(),k.Error(M)}}))()},l=()=>{let E=c.value;if(E=="useInput"&&(E=u.value),E==null||E=="null"||E=="")return;(()=>Y(this,null,function*(){let A=k.Loading("\u68C0\u67E5\u4E2D...");try{const M=yield B.App.Check.POST({name:"app-meta-qbittorrent"});if(A.Close(),M!=null&&M.data){const{result:W,error:Z}=M.data;if(Z&&k.Warning(Z),W){if(W.status=="installed"){const V=B.Guide.qbitorrentInit.POST({downloadPath:E}).then(R=>{var U;if(R!=null&&R.data){if((R.data.success||0)==0){f.value=1;return}else if((U=R.data)!=null&&U.error)throw R.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(R=>k.Error(R)).finally(()=>A.Close())}else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 qBittorrent \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){A=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const V=yield g("app-meta-qbittorrent");if(A.Close(),V){k.Success("\u5B89\u88C5\u6210\u529F");const R=B.Guide.qbitorrentInit.POST({downloadPath:E}).then(U=>{var nt;if(U!=null&&U.data){if((U.data.success||0)==0){f.value=1;return}else if((nt=U.data)!=null&&nt.error)throw U.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(U=>k.Error(U)).finally(()=>A.Close())}else k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(M){k.Error(M)}}))()},h=()=>{let E=d.value;if(E=="useInput"&&(E=v.value),E==null||E=="null"||E=="")return;(()=>Y(this,null,function*(){let A=k.Loading("\u914D\u7F6E\u4E2D...");try{const M=yield B.App.Check.POST({name:"app-meta-transmission"});if(A.Close(),M!=null&&M.data){const{result:W,error:Z}=M.data;if(Z&&k.Warning(Z),W){if(W.status=="installed"){const V=B.Guide.transmissionInit.POST({downloadPath:E}).then(R=>{var U;if(R!=null&&R.data){if((R.data.success||0)==0){f.value=1;return}else if((U=R.data)!=null&&U.error)throw R.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(R=>k.Error(R)).finally(()=>A.Close())}else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Transmission \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){A=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const V=yield g("app-meta-transmission");if(A.Close(),V){k.Success("\u5B89\u88C5\u6210\u529F");const R=B.Guide.transmissionInit.POST({downloadPath:E}).then(U=>{var nt;if(U!=null&&U.data){if((U.data.success||0)==0){f.value=1;return}else if((nt=U.data)!=null&&nt.error)throw U.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).catch(U=>k.Error(U)).finally(()=>A.Close())}else k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(M){k.Error(M)}A.Close()}))()},g=E=>Y(this,null,function*(){return B.App.Install.POST({name:E}).then(()=>{}),new Promise(($,A)=>Y(this,null,function*(){let M=0;const W=setInterval(()=>Y(this,null,function*(){if(M>20){clearInterval(W),A(!1);return}const Z=yield B.App.Check.POST({name:E});if(Z!=null&&Z.data){const{result:V}=Z.data;if((V==null?void 0:V.status)=="installed"){clearInterval(W),$(!0);return}}M++}),3e3)}))}),x=E=>{E.preventDefault(),a.Close&&a.Close()},C=E=>{E.preventDefault(),location.reload()};return(E,$)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[z(xt,{name:"rotate",mode:"out-in"},{default:q(()=>[f.value==0?(i(),r("div",f6,[m6,t("ul",null,[t("li",null,[t("div",b6,[v6,t("div",g6,[P(t("input",{type:"radio",value:"Aria2","onUpdate:modelValue":$[0]||($[0]=A=>p.value=A),name:"download",id:"Aria2"},null,512),[[vt,p.value]]),_6]),t("div",h6,[P(t("input",{type:"radio",value:"qBittorrent","onUpdate:modelValue":$[1]||($[1]=A=>p.value=A),name:"download",id:"qB"},null,512),[[vt,p.value]]),x6]),t("div",k6,[P(t("input",{type:"radio",value:"transmission","onUpdate:modelValue":$[2]||($[2]=A=>p.value=A),name:"download",id:"Ts"},null,512),[[vt,p.value]]),w6])])])]),p.value=="Aria2"?(i(),r("ul",y6,[t("li",null,[t("div",F6,[t("div",C6,[t("span",E6,[z(re),$6]),D6]),t("form",{onSubmit:it(_,["prevent"])},[t("label",null,[t("div",Y6,[P(t("select",{"onUpdate:modelValue":$[3]||($[3]=A=>s.value=A),autocomplete:"off"},[A6,(i(!0),r(L,null,G(e.partitionList,(A,M)=>(i(),r("option",{value:A,key:M},w(A),9,S6))),128)),z6],512),[[Q,s.value,void 0,{trim:!0}]]),s.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":$[4]||($[4]=A=>b.value=A),required:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u8F7D\u76EE\u5F55"},null,512)),[[H,b.value,void 0,{trim:!0}]]):D("",!0)])])],40,B6)])]),t("li",null,[t("div",P6,[t("div",T6,[t("span",I6,[z(re),L6]),M6]),P(t("input",{type:"text",class:"RPC_input",placeholder:"\u8BF7\u8F93\u5165RPC\u4EE4\u724C","onUpdate:modelValue":$[5]||($[5]=A=>o.value=A)},null,512),[[H,o.value,void 0,{trim:!0}]])])]),t("li",null,[t("div",O6,[N6,P(t("input",{type:"radio",value:"default",name:"BT",id:"default","onUpdate:modelValue":$[6]||($[6]=A=>m.value=A)},null,512),[[vt,m.value]]),j6,P(t("input",{type:"radio",value:"add",name:"BT",id:"add","onUpdate:modelValue":$[7]||($[7]=A=>m.value=A)},null,512),[[vt,m.value]]),q6])]),t("li",null,[m.value=="add"?P((i(),r("textarea",{key:0,class:"Tracker_input","onUpdate:modelValue":$[8]||($[8]=A=>n.value=A),rows:"4",placeholder:"\u8BF7\u8F93\u5165bt\u670D\u52A1\u5668\u5730\u5740"},null,512)),[[H,n.value,void 0,{trim:!0}]]):D("",!0)])])):D("",!0),p.value=="qBittorrent"?(i(),r("ul",R6,[t("li",null,[t("div",G6,[t("div",V6,[t("span",U6,[z(re),W6]),Z6]),t("form",{onSubmit:it(l,["prevent"])},[t("label",null,[t("div",J6,[P(t("select",{"onUpdate:modelValue":$[9]||($[9]=A=>c.value=A),autocomplete:"off"},[K6,(i(!0),r(L,null,G(e.partitionList,(A,M)=>(i(),r("option",{value:A,key:M},w(A),9,X6))),128)),Q6],512),[[Q,c.value,void 0,{trim:!0}]]),c.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":$[10]||($[10]=A=>u.value=A),required:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u8F7D\u76EE\u5F55"},null,512)),[[H,u.value,void 0,{trim:!0}]]):D("",!0)])])],40,H6)])])])):D("",!0),p.value=="transmission"?(i(),r("ul",t3,[t("li",null,[t("div",e3,[t("div",a3,[t("span",o3,[z(re),n3]),i3]),t("form",{onSubmit:it(h,["prevent"])},[t("label",null,[t("div",s3,[P(t("select",{"onUpdate:modelValue":$[11]||($[11]=A=>d.value=A),autocomplete:"off"},[d3,(i(!0),r(L,null,G(e.partitionList,(A,M)=>(i(),r("option",{value:A,key:M},w(A),9,c3))),128)),u3],512),[[Q,d.value,void 0,{trim:!0}]]),d.value=="useInput"?P((i(),r("input",{key:0,type:"text","onUpdate:modelValue":$[12]||($[12]=A=>v.value=A),required:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u8F7D\u76EE\u5F55"},null,512)),[[H,v.value,void 0,{trim:!0}]]):D("",!0)])])],40,r3)])])])):D("",!0),t("div",l3,[p.value=="Aria2"?(i(),r("button",{key:0,class:"cbi-button cbi-button-apply",onClick:_},"\u542F\u7528")):D("",!0),p.value=="qBittorrent"?(i(),r("button",{key:1,class:"cbi-button cbi-button-apply",onClick:l},"\u542F\u7528")):D("",!0),p.value=="transmission"?(i(),r("button",{key:2,class:"cbi-button cbi-button-apply",onClick:h},"\u542F\u7528")):D("",!0),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:x},"\u53D6\u6D88")])])):f.value==1?(i(),r("div",p3,[t("h2",f3,w(p.value)+"\u4E0B\u8F7D\u670D\u52A1\u914D\u7F6E\u5411\u5BFC",1),t("div",m3,[z(Be)]),b3,t("div",{class:"btns"},[t("button",{class:"cbi-button cbi-button-apply",onClick:C},"\u786E\u5B9A")])])):D("",!0)]),_:1})]),_:1},8,["Close"]))}});var g3=S(v3,[["__scopeId","data-v-7ea0bbfc"]]);const _3=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(g3,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},h3=e=>(N("data-v-3c1d13ee"),e=e(),j(),e),x3={class:"app-container"},k3={class:"app-container_title"},w3=h3(()=>t("span",null,[t("span",null,"\u4E0B\u8F7D\u670D\u52A1")],-1)),y3={class:"app-container_tool"},F3=["disabled"],C3={class:"more_icon",title:"\u67E5\u770B\u9AD8\u7EA7\u914D\u7F6E"},E3={class:"DeviceBlock"},$3={class:"app-container_body"},D3={class:"app-container_nas-menu"},B3=T({setup(e){F(!1);const a=F("aria2"),o=F();Je(),(()=>{B.Guide.DownloadService.Status.GET().then(f=>{var _;if((_=f==null?void 0:f.data)!=null&&_.result){const l=f.data.result;o.value=l}})})();const s=F(!1),b=F(!1),m=()=>{b.value=!b.value},p=()=>{B.Guide.DownloadpPartition.List.GET().then(f=>{var l,h;let _=[];(h=(l=f==null?void 0:f.data)==null?void 0:l.result)!=null&&h.partitionList&&(_=f.data.result.partitionList),_3({services:o.value,partitionList:_,defaultTab:a.value})})},c=()=>{m(),(()=>Y(this,null,function*(){let _=k.Loading("");try{const l=yield B.App.Check.POST({name:"app-meta-aria2"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&k.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/services/aria2";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Aria2 \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-aria2");_.Close(),x?(k.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/services/aria2"):k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){k.Error(l)}_.Close()}))()},u=()=>{m(),(()=>Y(this,null,function*(){let _=k.Loading("");try{const l=yield B.App.Check.POST({name:"app-meta-qbittorrent"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&k.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/nas/qBittorrent";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 qBittorrent \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-qbittorrent");_.Close(),x?k.Success("\u5B89\u88C5\u6210\u529F"):k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){k.Error(l)}_.Close()}))()},d=()=>{m(),(()=>Y(this,null,function*(){let _=k.Loading("");try{const l=yield B.App.Check.POST({name:"app-meta-transmission"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&k.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/services/transmission";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5 Transmission \u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-transmission");_.Close(),x?k.Success("\u5B89\u88C5\u6210\u529F"):k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){k.Error(l)}_.Close()}))()},v=f=>Y(this,null,function*(){return B.App.Install.POST({name:f}).then(()=>{}),new Promise((_,l)=>Y(this,null,function*(){let h=0;const g=setInterval(()=>Y(this,null,function*(){if(h>20){clearInterval(g),l(!1);return}const x=yield B.App.Check.POST({name:f});if(x!=null&&x.data){const{result:C}=x.data;if((C==null?void 0:C.status)=="installed"){clearInterval(g),_(!0);return}}h++}),3e3)}))});return(f,_)=>{var l,h,g;return i(),r("div",x3,[t("div",k3,[w3,t("div",y3,[o.value?(i(),r("div",{key:0,class:"app-container_configure",onClick:p,disabled:s.value},"\u5FEB\u901F\u914D\u7F6E ",8,F3)):D("",!0),t("span",C3,[z(Dt,{onClick:m})])]),P(t("div",E3,[t("div",{class:"menu_background",onClick:m}),t("ul",null,[t("li",null,[t("a",{onClick:c},"Aria2\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:u},"qBittorrent\u9AD8\u7EA7\u914D\u7F6E")]),t("li",null,[t("a",{onClick:d},"Transmission\u9AD8\u7EA7\u914D\u7F6E")])])],512),[[wt,b.value]])]),t("div",$3,[t("ul",D3,[t("button",{onClick:_[0]||(_[0]=x=>a.value="aria2"),class:dt({on:a.value=="aria2"})},"Aria2",2),t("button",{onClick:_[1]||(_[1]=x=>a.value="qbittorrent"),class:dt({on:a.value=="qbittorrent"})},"qBittorrent",2),t("button",{onClick:_[2]||(_[2]=x=>a.value="transmission"),class:dt({on:a.value=="transmission"})},"Transmission",2)]),a.value=="aria2"?(i(),O(A5,{key:0,aria2:(l=o.value)==null?void 0:l.aria2},null,8,["aria2"])):a.value=="qbittorrent"?(i(),O(U5,{key:1,qbittorrent:(h=o.value)==null?void 0:h.qbittorrent},null,8,["qbittorrent"])):a.value=="transmission"?(i(),O(s6,{key:2,transmission:(g=o.value)==null?void 0:g.transmission},null,8,["transmission"])):D("",!0)])])}}});var Y3=S(B3,[["__scopeId","data-v-3c1d13ee"]]);const Ft=e=>(N("data-v-43beecef"),e=e(),j(),e),A3={class:"actioner-container"},S3=Ft(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),z3={class:"actioner-container_body"},P3={class:"label-item"},T3=Ft(()=>t("span",null,"DDNSTO",-1)),I3=Ft(()=>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)),L3={class:"label-item"},M3=Ft(()=>t("span",null,"\u963F\u91CC\u4E91",-1)),O3=Ft(()=>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)),N3={class:"label-item"},j3=Ft(()=>t("span",null,"Dnspod",-1)),q3=Ft(()=>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)),R3={class:"label-item"},G3=Ft(()=>t("span",null,"\u82B1\u751F\u58F3",-1)),V3=Ft(()=>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)),U3=T({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=F(o.active),b=()=>{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(m,p)=>(i(),r("div",A3,[S3,t("div",z3,[t("div",P3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[0]||(p[0]=c=>s.value=c),value:"ddnsto"},null,512),[[vt,s.value]]),T3]),I3]),t("div",L3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[1]||(p[1]=c=>s.value=c),value:"ali"},null,512),[[vt,s.value]]),M3]),O3]),t("div",N3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[2]||(p[2]=c=>s.value=c),value:"dnspod"},null,512),[[vt,s.value]]),j3]),q3]),t("div",R3,[t("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":p[3]||(p[3]=c=>s.value=c),value:"oray"},null,512),[[vt,s.value]]),G3]),V3])]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:n},"\u53D6\u6D88"),t("div",{class:"next",onClick:b},"\u4E0B\u4E00\u6B65")])]))}});var W3=S(U3,[["__scopeId","data-v-43beecef"]]);const te=e=>(N("data-v-43dd65a2"),e=e(),j(),e),Z3={class:"actioner-container"},H3={class:"actioner-container_body"},J3=te(()=>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)),K3=te(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),X3=te(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),Q3={class:"body-info"},t4=te(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),e4=["href"],a4=te(()=>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)),o4=T({props:{target:{type:String,required:!0},onSetup:{type:Function,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",Z3,[t("div",H3,[J3,K3,X3,t("div",Q3,[t4,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},w(e.target),9,e4)]),a4]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var n4=S(o4,[["__scopeId","data-v-43dd65a2"]]);const ua=e=>(N("data-v-7790f1da"),e=e(),j(),e),i4={class:"actioner-container"},r4=ua(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),s4=ua(()=>t("div",{class:"actioner-container_body ddnsto-login"},[t("iframe",{src:"https://www.kooldns.cn/bind/#/auth?send=1&source=openwrt&callback=*"})],-1)),d4=T({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 b=s.data.sign,m=s.data.token;b&&m&&(removeEventListener("message",n),a.onDdnstoConfig(b,m),a.onSetup("ddnsto-run"))}};return Bt(()=>{window.addEventListener("message",n)}),Rt(()=>{removeEventListener("message",n)}),(s,b)=>(i(),r("div",i4,[r4,s4,t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u53D6\u6D88")])]))}});var c4=S(d4,[["__scopeId","data-v-7790f1da"]]);const u4=e=>(N("data-v-7b3ee72a"),e=e(),j(),e),l4={class:"actioner-container"},p4=u4(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),f4={class:"actioner-container_body ddnsto-bind"},m4=["src"],b4=T({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=J(()=>{const{domain:m,token:p,sign:c,routerId:u,netaddr:d}=o.config,v=encodeURIComponent(m),f=encodeURIComponent(d);return`https://www.kooldns.cn/bind/#/domain?domain=${v}&sign=${c}&token=${p}&routerId=${u}&netaddr=${f}`}),s=m=>{if(m.data){const{auth:p,url:c}=m.data;p==="ddnsto"&&c&&b(c)}},b=m=>Y(this,null,function*(){var p;try{const c=yield B.Guide.DdnstoAddress.POST({address:m});c!=null&&c.data&&(((p=c==null?void 0:c.data)==null?void 0:p.success)||0)==0&&(a("update:domain",m),o.onSetup("ddnsto-save"))}catch(c){}});return Bt(()=>{window.addEventListener("message",s)}),Rt(()=>{removeEventListener("message",s)}),(m,p)=>(i(),r("div",l4,[p4,t("div",f4,[t("iframe",{src:y(n)},null,8,m4)])]))}});var v4=S(b4,[["__scopeId","data-v-7b3ee72a"]]);const ee=e=>(N("data-v-7f5a8953"),e=e(),j(),e),g4={class:"actioner-container"},_4={class:"actioner-container_body"},h4=ee(()=>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)),x4=ee(()=>t("div",{class:"body-title"},"\u6DFB\u52A0\u6210\u529F",-1)),k4=ee(()=>t("p",{class:"body-tips"},"\u8BF7\u7A0D\u7B491\u5206\u949F\u751F\u6548\u540E\u518D\u4F7F\u7528\u3002",-1)),w4={class:"body-info"},y4=ee(()=>t("span",null,"\u8BBF\u95EE\u5730\u5740\uFF1A",-1)),F4=["href"],C4=ee(()=>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)),E4=T({props:{onSetup:{type:Function,required:!0},target:{type:String,required:!0}},setup(e){const a=()=>{location.reload()};return(o,n)=>(i(),r("div",g4,[t("div",_4,[h4,x4,k4,t("div",w4,[y4,t("a",{href:e.target,target:"_blank",rel:"noopener noreferrer"},w(e.target),9,F4)]),C4]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:a},"\u5173\u95ED")])]))}});var $4=S(E4,[["__scopeId","data-v-7f5a8953"]]);const D4=e=>(N("data-v-9824e3c0"),e=e(),j(),e),B4={class:"actioner-container"},Y4=D4(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),A4={class:"actioner-container_body"},S4={class:"actioner-container_footer"},z4=T({props:{onSetup:{type:Function,required:!0}},setup(e){const a=e,o=()=>{a.onSetup()},n=()=>Y(this,null,function*(){if(m.value)return;m.value=!0;const u=k.Loading("\u5B89\u88C5\u4E2D..."),d=yield c("app-meta-ddnsto");if(u.Close(),d){a.onSetup("ddnsto-login");return}else s.value="\u5B89\u88C5\u5931\u8D25";m.value=!1}),s=F("\u6B63\u5728\u68C0\u6D4B\u4E2D..."),b=F(!1),m=F(!1),p=()=>Y(this,null,function*(){try{const u=yield B.App.Check.POST({name:"app-meta-ddnsto"});if(u!=null&&u.data){const{result:d,error:v}=u.data;if(v){s.value=v;return}if(d){if(d.status=="installed"){a.onSetup("ddnsto-login");return}d.status=="uninstalled"&&(s.value="\u9700\u8981\u5B89\u88C5DDNSTO\u63D2\u4EF6\uFF0C\u70B9\u51FB\u201C\u786E\u5B9A\u201D\u5F00\u59CB\u5B89\u88C5")}}}catch(u){s.value=u}b.value=!0}),c=u=>Y(this,null,function*(){return B.App.Install.POST({name:u}).then(()=>{}),new Promise((d,v)=>Y(this,null,function*(){let f=0;const _=setInterval(()=>Y(this,null,function*(){if(f>10){clearInterval(_),v(!1);return}const l=yield B.App.Check.POST({name:u});if(l!=null&&l.data){const{result:h}=l.data;if((h==null?void 0:h.status)=="installed"){clearInterval(_),d(!0);return}}f++}),3e3)}))});return p(),(u,d)=>(i(),r("div",B4,[Y4,t("div",A4,[t("span",null,w(s.value),1)]),t("div",S4,[b.value?(i(),r(L,{key:0},[t("div",{class:"close",onClick:o},"\u53D6\u6D88"),t("div",{class:"next",onClick:n},"\u786E\u5B9A")],64)):D("",!0)])]))}});var P4=S(z4,[["__scopeId","data-v-9824e3c0"]]);const T4=e=>(N("data-v-467bb030"),e=e(),j(),e),I4={class:"actioner-container"},L4=T4(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),M4={class:"actioner-container_body"},O4=T({props:{onSetup:{type:Function,required:!0},token:{type:String,required:!0},onDdnstoLocalConfig:{type:Function,required:!0}},setup(e){const a=e,o=F("\u6B63\u5728\u68C0\u6D4B\u63D2\u4EF6\u662F\u5426\u5DF2\u542F\u52A8...");(c=>Y(this,null,function*(){var u;try{const d=yield B.Guide.Ddnsto.POST({token:a.token});d!=null&&d.data&&(d.data.error&&(o.value=d.data.error),(((u=d==null?void 0:d.data)==null?void 0:u.success)||0)==0&&b())}catch(d){o.value=d}}))(a.token);const s=F(),b=()=>Y(this,null,function*(){const c=()=>Y(this,null,function*(){if((yield m())===!0){p();return}s.value=window.setTimeout(c,2e3)});c()}),m=()=>Y(this,null,function*(){return new Promise(c=>Y(this,null,function*(){try{const u=yield B.App.Check.POST({name:"ddnsto",checkRunning:!0});if(u!=null&&u.data){u.data.error&&(o.value=u.data.error);const d=u.data.result;if((d==null?void 0:d.status)=="running"){c(!0);return}}c(!1)}catch(u){o.value=u,c(!1)}}))});Rt(()=>{s.value&&clearInterval(s.value)});const p=()=>Y(this,null,function*(){var c;try{const u=yield B.Guide.DdntoConfig.GET();if(u!=null&&u.data&&(u.data.error&&(o.value=u.data.error),(((c=u==null?void 0:u.data)==null?void 0:c.success)||0)==0&&u.data.result)){const d=u.data.result;a.onDdnstoLocalConfig(d.netAddr,d.deviceId),a.onSetup("ddnsto-bind")}}catch(u){o.value=u}});return(c,u)=>(i(),r("div",I4,[L4,t("div",M4,w(o.value),1)]))}});var N4=S(O4,[["__scopeId","data-v-467bb030"]]);const j4={class:"action-main"},q4=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=F("ddnsto-install"),n=c=>{c!=null?o.value=c:s()},s=()=>{a.Close&&a.Close()},b=rt({sign:"",token:"",domain:a.url,netaddr:"",routerId:""}),m=(c,u)=>{b.sign=c,b.token=u},p=(c,u)=>{b.netaddr=c,b.routerId=u};return(c,u)=>(i(),O(at,{type:1},{default:q(()=>[t("div",j4,[o.value=="ddnsto-install"?(i(),O(P4,{key:0,onSetup:n})):o.value=="ddnsto-login"?(i(),O(c4,{key:1,onSetup:n,onDdnstoConfig:m})):o.value=="ddnsto-run"?(i(),O(N4,{key:2,onSetup:n,token:y(b).token,onDdnstoLocalConfig:p},null,8,["token"])):o.value=="ddnsto-bind"?(i(),O(v4,{key:3,onSetup:n,config:{token:y(b).token,sign:y(b).sign,domain:y(b).domain,netaddr:y(b).netaddr,routerId:y(b).routerId},domain:y(b).domain,"onUpdate:domain":u[0]||(u[0]=d=>y(b).domain=d)},null,8,["config","domain"])):o.value=="ddnsto-save"?(i(),O($4,{key:4,onSetup:n,target:y(b).domain},null,8,["target"])):D("",!0)])]),_:1}))}});var R4=S(q4,[["__scopeId","data-v-7a6bd385"]]);const G4=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(R4,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},V4={class:"action"},U4={class:"action-header"},W4=["innerHTML"],Z4={class:"action-footer"},H4=T({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(b,m)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[t("div",V4,[t("div",U4,w(e.title),1),t("div",{class:"action-body",innerHTML:e.content},null,8,W4),t("div",Z4,[e.clear?(i(),r("div",{key:0,class:"clear",onClick:n},w(e.clearTitle),1)):D("",!0),t("div",{class:"next",onClick:o},w(e.nextTitle),1),e.continuer?(i(),r("div",{key:1,class:"next",onClick:s},w(e.continuerTitle),1)):D("",!0)])])]),_:1},8,["Close"]))}});var J4=S(H4,[["__scopeId","data-v-4358e88c"]]);const de=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(J4,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},st=e=>(N("data-v-9435cfa6"),e=e(),j(),e),K4={class:"actioner-container"},X4=["onSubmit"],Q4=st(()=>t("div",{class:"actioner-container_header"},[t("span",null,"\u57DF\u540D\u914D\u7F6E\u5411\u5BFC")],-1)),t8={key:0,class:"title_info"},e8=st(()=>t("p",null," \u963F\u91CC\u4E91 ",-1)),a8=st(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),o8=st(()=>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)),n8=[e8,a8,o8],i8={key:1,class:"title_info"},r8=st(()=>t("p",null," dnspod ",-1)),s8=st(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),d8=st(()=>t("a",{href:"https://doc.linkease.com/zh/guide/istoreos/basic/domain.html#dnspod",target:"_blank"},"\u67E5\u770B\u6559\u7A0B>>",-1)),c8=[r8,s8,d8],u8={key:2,class:"title_info"},l8=st(()=>t("p",null," \u82B1\u751F\u58F3 ",-1)),p8=st(()=>t("span",null," \u4E3A\u62E5\u6709\u52A8\u6001IP\u7684\u4E3B\u673A\u914D\u7F6E\u4E00\u4E2A\u56FA\u5B9A\u7684\u53EF\u8BBF\u95EE\u57DF\u540D ",-1)),f8=st(()=>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)),m8=[l8,p8,f8],b8={class:"label-item"},v8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u5730\u5740\u7248\u672C\uFF1A")],-1)),g8={class:"label-item_value"},_8=st(()=>t("option",{value:"ipv4"},"IPv4\u5730\u5740",-1)),h8=st(()=>t("option",{value:"ipv6"},"IPv6\u5730\u5740",-1)),x8=[_8,h8],k8=st(()=>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)),w8={class:"label-item"},y8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"\u57DF\u540D\uFF1A")],-1)),F8={class:"label-item_value"},C8={class:"label-item"},E8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"\u7528\u6237\u540D\uFF1A")],-1)),$8={class:"label-item_value"},D8={class:"label-item"},B8=st(()=>t("div",{class:"label-item_key"},[t("span",null,"\u5BC6\u7801\uFF1A")],-1)),Y8={class:"label-item_value"},A8={class:"actioner-container_footer"},S8=["disabled"],z8=T({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=F("ipv4"),s=F(o.name),b=F(""),m=F(""),p=F(""),c=F(!1),u=()=>{o.onSetup("index")},d=()=>{c.value=!0;const l=k.Loading("\u68C0\u6D4B\u4E2D...");B.Network.CheckPublickNet.POST({ipVersion:n.value}).then(h=>{var g,x;if(h!=null&&h.data){if((g=h==null?void 0:h.data)!=null&&g.error){k.Warning(h==null?void 0:h.data.error);return}if((((x=h==null?void 0:h.data)==null?void 0:x.success)||0)==0){const C=h.data.result;C&&C.address?_():v();return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(h=>{k.Error(h)}).finally(()=>{l.Close(),c.value=!1})},v=()=>{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(){f()},continuer(){_()},clear(){}})},f=()=>{o.onSetup("ddnsto")},_=()=>{c.value=!0;const l=k.Loading("\u914D\u7F6E\u4E2D...");B.Guide.PostDdns.POST({ipVersion:n.value,serviceName:s.value,domain:b.value,userName:m.value,password:p.value}).then(h=>{if(h!=null&&h.data){const{error:g,scope:x,success:C}=h.data;if(g=="-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(g){k.Warning(g);return}if((C||0)==0){a("update:target",b.value),o.onSetup("ddns-success");return}}throw"\u672A\u77E5\u9519\u8BEF"}).catch(h=>{k.Error(h)}).finally(()=>{l.Close(),c.value=!1})};return(l,h)=>(i(),r("div",K4,[t("form",{class:"actioner-dns",onSubmit:it(d,["prevent"])},[Q4,t("div",{class:dt(["actioner-container_body",e.name])},[e.name=="ali"?(i(),r("div",t8,n8)):e.name=="dnspod"?(i(),r("div",i8,c8)):e.name=="oray"?(i(),r("div",u8,m8)):D("",!0),t("div",b8,[v8,t("div",g8,[P(t("select",{name:"",id:"","onUpdate:modelValue":h[0]||(h[0]=g=>n.value=g)},x8,512),[[Q,n.value]])]),k8]),t("div",w8,[y8,t("div",F8,[P(t("input",{type:"text",placeholder:"myhost.example.com","onUpdate:modelValue":h[1]||(h[1]=g=>b.value=g),required:""},null,512),[[H,b.value,void 0,{trim:!0}]])])]),t("div",C8,[E8,t("div",$8,[P(t("input",{type:"text","onUpdate:modelValue":h[2]||(h[2]=g=>m.value=g),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u540D",required:""},null,512),[[H,m.value,void 0,{trim:!0}]])])]),t("div",D8,[B8,t("div",Y8,[P(t("input",{type:"password","onUpdate:modelValue":h[3]||(h[3]=g=>p.value=g),placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",required:""},null,512),[[H,p.value,void 0,{trim:!0}]])])])],2),t("div",A8,[t("div",{class:"close",onClick:u,type:"button"},"\u8FD4\u56DE"),t("button",{class:"next save",type:"submit",disabled:c.value},"\u4FDD\u5B58",8,S8)])],40,X4)]))}});var ye=S(z8,[["__scopeId","data-v-9435cfa6"]]);const P8={class:"action-main"},T8=T({props:{Close:{type:Function,required:!0},url:{type:String,required:!0}},setup(e){const a=e,o=F(""),n=F("index"),s=c=>{if(c!=null){if(c=="ddnsto"){b();return}n.value=c}else m()},b=()=>{m(),G4({url:a.url})},m=()=>{a.Close&&a.Close()},p=F("ddnsto");return(c,u)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[t("div",P8,[n.value=="index"?(i(),O(W3,{key:0,onSetup:s,active:p.value,"onUpdate:active":u[0]||(u[0]=d=>p.value=d)},null,8,["active"])):n.value=="ddns-ali"?(i(),O(ye,{key:1,onSetup:s,target:o.value,"onUpdate:target":u[1]||(u[1]=d=>o.value=d),name:"ali"},null,8,["target"])):n.value=="ddns-dnspod"?(i(),O(ye,{key:2,onSetup:s,target:o.value,"onUpdate:target":u[2]||(u[2]=d=>o.value=d),name:"dnspod"},null,8,["target"])):n.value=="ddns-oray"?(i(),O(ye,{key:3,onSetup:s,target:o.value,"onUpdate:target":u[3]||(u[3]=d=>o.value=d),name:"oray"},null,8,["target"])):n.value=="ddns-success"?(i(),O(n4,{key:4,onSetup:s,target:o.value},null,8,["target"])):D("",!0)])]),_:1},8,["Close"]))}});var I8=S(T8,[["__scopeId","data-v-6f1d92d9"]]);const L8=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(I8,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},Lt=e=>(N("data-v-10ce7ce8"),e=e(),j(),e),M8={class:"app-container"},O8=Lt(()=>t("span",null,[t("span",null,"\u8FDC\u7A0B\u57DF\u540D")],-1)),N8={class:"app-container_domain"},j8={class:"domain-item"},q8=Lt(()=>t("div",{class:"domain-item_name"},[t("span",null,"DDNSTO\uFF1A")],-1)),R8={class:"domain-item_value"},G8=["href","title"],V8=Lt(()=>t("a",{class:"item_btn",href:"https://www.kooldns.cn/app/#/devices",target:"_blank"},"\u63A7\u5236\u53F0",-1)),U8={class:"domain-item"},W8=Lt(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv4\uFF1A")],-1)),Z8={class:"domain-item_value"},H8={key:0},J8=["href"],K8={key:2,href:"/cgi-bin/luci/admin/services/ddns"},X8=Lt(()=>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)),Q8=[X8],t7={class:"domain-item"},e7=Lt(()=>t("div",{class:"domain-item_name"},[t("span",null,"myddns_ipv6\uFF1A")],-1)),a7={class:"domain-item_value"},o7={key:0},n7=["href"],i7={key:2,href:"/cgi-bin/luci/admin/services/ddns"},r7=Lt(()=>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)),s7=[r7],d7=T({setup(e){let a=!1,o;const n=F({}),s=function(){!a||B.Guide.GetDdns.GET().then(c=>{var u;c!=null&&c.data&&(((u=c==null?void 0:c.data)==null?void 0:u.success)||0)==0&&c.data.result&&(n.value=c.data.result)}).then(()=>{!a||(o=window.setTimeout(s,3e3))})};Bt(()=>{a=!0,s()}),Rt(()=>{o!==void 0&&window.clearTimeout(o),a=!1});const b=()=>{L8({url:n.value.ddnstoDomain})},m=J(()=>{const c=n.value.ipv4Domain;return c!=null&&c!=""&&c!="Stopped"?`http://${c}`:c}),p=J(()=>{const c=n.value.ipv6Domain;return c!=null&&c!=""&&c!="Stopped"?`http://${c}`:c});return(c,u)=>{var d,v,f;return i(),r("div",M8,[t("div",{class:"app-container_title"},[O8,t("div",{class:"app-container_tool"},[t("div",{class:"app-container_configure",onClick:b},"\u5FEB\u901F\u914D\u7F6E")])]),t("ul",N8,[t("li",j8,[q8,t("div",R8,[t("a",{class:"configure",href:(d=n.value)==null?void 0:d.ddnstoDomain,target:"_blank",rel:"noopener noreferrer",title:(v=n.value)==null?void 0:v.ddnstoDomain},w((f=n.value)==null?void 0:f.ddnstoDomain),9,G8),V8])]),t("li",U8,[W8,t("div",Z8,[y(m)=="Stopped"?(i(),r("span",H8,w(y(m)),1)):(i(),r("a",{key:1,class:"configure",href:y(m),target:"_blank",rel:"noopener noreferrer"},w(y(m)),9,J8)),y(m)?(i(),r("a",K8,Q8)):D("",!0)])]),t("li",t7,[e7,t("div",a7,[y(p)=="Stopped"?(i(),r("span",o7,w(y(p)),1)):(i(),r("a",{key:1,class:"configure",href:y(p),target:"_blank",rel:"noopener noreferrer"},w(y(p)),9,n7)),y(p)?(i(),r("a",i7,s7)):D("",!0)])])])])}}});var c7=S(d7,[["__scopeId","data-v-10ce7ce8"]]);const se=e=>!Array.isArray(window.quickstart_features)||window.quickstart_features.indexOf(e)!=-1,u7={class:"nas-container"},l7={class:"nas-container_card"},p7={class:"nas-container_card"},f7={key:0,class:"nas-container_card"},m7={class:"nas-container_card"},b7={class:"nas-container_card"},v7=T({setup(e){return(a,o)=>(i(),r("div",u7,[t("div",l7,[z(fc)]),t("div",p7,[z(Wl)]),y(se)("dockerd")?(i(),r("div",f7,[z(b5)])):D("",!0),t("div",m7,[z(Y3)]),t("div",b7,[z(c7)])]))}});var g7=S(v7,[["__scopeId","data-v-66cc4e33"]]);const kt=e=>(N("data-v-1e34b94b"),e=e(),j(),e),_7={class:"app-container"},h7={class:"app-container_title"},x7=kt(()=>t("span",null,"\u7CFB\u7EDF\u4FE1\u606F",-1)),k7={class:"more_icon",title:"\u67E5\u770B\u7CFB\u7EDF\u4FE1\u606F"},w7={class:"DeviceBlock"},y7=kt(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/system/flash"},"\u5907\u4EFD\u5347\u7EA7")],-1)),F7=kt(()=>t("li",null,[t("a",{href:"/cgi-bin/luci/admin/store/pages/maintance"},"\u63D2\u4EF6\u5907\u4EFD")],-1)),C7={class:"item-label"},E7=kt(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u6E29\u5EA6")],-1)),$7={class:"item-label_value"},D7={class:"item-label"},B7=kt(()=>t("div",{class:"item-label_key"},[t("span",null,"CPU\u4F7F\u7528\u7387")],-1)),Y7={class:"item-label_value"},A7={class:"item-label"},S7=kt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u5B58\u4F7F\u7528\u7387")],-1)),z7={class:"item-label_value"},P7={class:"item-label"},T7=kt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u56FA\u4EF6\u7248\u672C")],-1)),I7={class:"item-label_value"},L7={class:"item-label"},M7=kt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5185\u6838\u7248\u672C")],-1)),O7={class:"item-label_value"},N7={class:"item-label"},j7=kt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u5DF2\u542F\u52A8")],-1)),q7={class:"item-label_value"},R7={class:"item-label"},G7=kt(()=>t("div",{class:"item-label_key"},[t("span",null,"\u7CFB\u7EDF\u65F6\u95F4")],-1)),V7={class:"item-label_value"},U7=T({setup(e){const a=$e(),o=J(()=>a.version),n=J(()=>a.systemStatus),s=F(!1),b=J(()=>{var f;return((f=n.value)==null?void 0:f.cpuUsage)||0}),m=J(()=>{var f;return((f=n.value)==null?void 0:f.cpuTemperature)||0}),p=J(()=>{var _;const f=((_=n.value)==null?void 0:_.memAvailablePercentage)||100;return 100-f}),c=qt.stampForm;Bt(()=>{});const u=()=>{s.value=!s.value},d=()=>{u(),(()=>Y(this,null,function*(){let _=k.Loading("");try{const l=yield B.App.Check.POST({name:"app-meta-netdata"});if(_.Close(),l!=null&&l.data){const{result:h,error:g}=l.data;if(g&&k.Warning(g),h){if(h.status=="installed")location.href="/cgi-bin/luci/admin/status/netdata";else if(confirm("\u68C0\u6D4B\u5230\u4F60\u5C1A\u672A\u5B89\u88C5NetData\u5B9E\u65F6\u76D1\u63A7\u63D2\u4EF6,\u662F\u5426\u5B89\u88C5\uFF1F")){_=k.Loading("\u6B63\u5728\u5B89\u88C5\u4E2D...");const x=yield v("app-meta-netdata");_.Close(),x?(k.Success("\u5B89\u88C5\u6210\u529F"),location.href="/cgi-bin/luci/admin/status/netdata"):k.Warning("\u5B89\u88C5\u5931\u8D25")}}}}catch(l){k.Error(l)}_.Close()}))()},v=f=>Y(this,null,function*(){return B.App.Install.POST({name:f}).then(()=>{}),new Promise((_,l)=>Y(this,null,function*(){let h=0;const g=setInterval(()=>Y(this,null,function*(){if(h>20){clearInterval(g),l(!1);return}const x=yield B.App.Check.POST({name:f});if(x!=null&&x.data){const{result:C}=x.data;if((C==null?void 0:C.status)=="installed"){clearInterval(g),_(!0);return}}h++}),3e3)}))});return(f,_)=>{var h,g,x,C;const l=ct("progress-item");return i(),r("div",_7,[t("div",h7,[x7,t("span",k7,[z(Dt,{onClick:u})]),P(t("div",w7,[t("div",{class:"menu_background",onClick:u}),t("ul",null,[t("li",null,[t("a",{onClick:d},"\u7CFB\u7EDF\u76D1\u63A7")]),y7,F7])],512),[[wt,s.value]])]),t("div",C7,[E7,t("div",$7,[z(l,{value:y(m)/1.5,text:`${y(m)}\u2103`},null,8,["value","text"])])]),t("div",D7,[B7,t("div",Y7,[z(l,{value:y(b),text:`${y(b)}%`},null,8,["value","text"])])]),t("div",A7,[S7,t("div",z7,[z(l,{value:y(p),text:`${y(p)}%`},null,8,["value","text"])])]),t("div",P7,[T7,t("div",I7,[t("span",null,w((h=y(o))==null?void 0:h.firmwareVersion),1)])]),t("div",L7,[M7,t("div",O7,[t("span",null,w((g=y(o))==null?void 0:g.kernelVersion),1)])]),t("div",N7,[j7,t("div",q7,[t("span",null,w(y(c)((x=y(n))==null?void 0:x.uptime)),1)])]),t("div",R7,[G7,t("div",V7,[t("span",null,w((C=y(n))==null?void 0:C.localtime),1)])])])}}});var W7=S(U7,[["__scopeId","data-v-1e34b94b"]]);const Z7={},H7={t:"1649907260906",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},J7=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),K7=[J7];function X7(e,a){return i(),r("svg",H7,K7)}var Q7=S(Z7,[["render",X7]]);const tp={},ep={t:"1649902779464",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2617","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},ap=t("path",{d:"M309.794 819.848h404.239c169.953 0 307.726-137.774 307.726-307.727s-137.774-307.726-307.726-307.726h-404.239c-169.952 0-307.726 137.773-307.726 307.726s137.774 307.727 307.726 307.727zM309.445 233.5c154.23 0 279.268 125.031 279.268 279.268s-125.039 279.268-279.268 279.268c-154.24 0-279.269-125.033-279.269-279.268 0-154.238 125.030-279.268 279.269-279.268z",fill:"#bbb","p-id":"2618","data-spm-anchor-id":"a313x.7781069.0.i0",class:"selected"},null,-1),op=[ap];function np(e,a){return i(),r("svg",ep,op)}var ip=S(tp,[["render",np]]);const rp=e=>ce.isValid(e),$t=e=>{const a=ce.IPv4.parse(e).toByteArray();return a[0]<<24|a[1]<<16|a[2]<<8|a[3]},Ge=e=>ce.fromByteArray([e>>24&255,e>>16&255,e>>8&255,e&255]).toString(),sp=e=>{if(!ce.IPv4.isIPv4(e))return!1;let a=0,o=$t(e);for(let n=31;n>=0&&(o&1<{let s=$t(e)&$t(a),b=$t(o),m=$t(n),c=~$t(a);return bs+1&&m{let o=$t(a),n=$t(e)&o,s=~o,b;return s>=105?(b=n|s-5,n=n|100):s>=3?(b=n|s-1,n=n|2):(n=n|1,b=n),[Ge(n),Ge(b)]};var Et={isValidMask:sp,isValidIP:rp,isValidMaskRange:dp,calcMaskRange:cp};const gt=e=>(N("data-v-b8956f32"),e=e(),j(),e),up=["onSubmit"],lp=gt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u5185\u7F51\u914D\u7F6E")],-1)),pp={class:"actioner-dns_body"},fp={class:"label-item"},mp=gt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5730\u5740")],-1)),bp={class:"label-item_value"},vp={class:"label-item"},gp=gt(()=>t("div",{class:"label-item_key"},[t("span",null,"IPv4\u5B50\u7F51\u63A9\u7801")],-1)),_p={class:"label-item_value"},hp={class:"mobie_icon"},xp={key:1,class:"dhcp_info"},kp={key:2,class:"dhcp_info"},wp={class:"label-item"},yp=gt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u8D77\u59CB\u5730\u5740")],-1)),Fp={class:"label-item_value"},Cp={class:"label-item"},Ep=gt(()=>t("div",{class:"label-item_key"},[t("span",null,"IP\u6C60\u7ED3\u675F\u5730\u5740")],-1)),$p={class:"label-item_value"},Dp={class:"actioner-dns_footer"},Bp=["disabled"],Yp={key:1,class:"actioner-dns"},Ap=gt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u66F4\u6362\u914D\u7F6E")],-1)),Sp={class:"actioner-dns_body"},zp={key:0,class:"setting_status"},Pp=gt(()=>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)),Tp=gt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u6210\u529F",-1)),Ip=["href"],Lp={key:1,class:"setting_status"},Mp=gt(()=>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)),Op=gt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u5931\u8D25",-1)),Np=gt(()=>t("p",null,"\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E",-1)),jp={key:2,class:"setting_status"},qp=gt(()=>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)),Rp=gt(()=>t("div",{class:"config-message"},"\u914D\u7F6E\u8D85\u65F6",-1)),Gp=gt(()=>t("p",null,"\u8BF7\u5C1D\u8BD5\u91CD\u65B0\u914D\u7F6E",-1)),Vp=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=F(0),n=F({lanIp:"",netMask:"255.255.255.0",enableDhcp:!1,dhcpStart:"",dhcpEnd:""});F("");const s=F(!1);F(!0),F(!1);const b=F(""),m=F(2),p=F("timeout"),c=()=>{n.value.enableDhcp=!1},u=()=>{n.value.enableDhcp=!0};let d=!0;(()=>{B.Guide.GetLan.GET().then(g=>{g.data.result&&(g.data.result.enableDhcp=g.data.result.enableDhcp||!1,n.value=g.data.result,g.data.result.lanIp!==location.hostname&&(d=!1))})})();const f=()=>{const g=n.value;if(!Et.isValidIP(g.lanIp)){k.Error("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!Et.isValidMask(g.netMask)){k.Error("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}const x=Et.calcMaskRange(g.lanIp,g.netMask);g.dhcpStart=x[0],g.dhcpEnd=x[1],n.value=g},_=()=>{const g=n.value;if(!Et.isValidIP(g.lanIp)){k.Error("IPv4\u5730\u5740\u683C\u5F0F\u9519\u8BEF");return}if(!Et.isValidMask(g.netMask)){k.Error("IPv4\u5B50\u7F51\u63A9\u7801\u683C\u5F0F\u9519\u8BEF");return}if(g.enableDhcp&&!Et.isValidIP(g.dhcpStart)||!Et.isValidIP(g.dhcpEnd)||!Et.isValidMaskRange(g.lanIp,g.netMask,g.dhcpStart,g.dhcpEnd)){k.Error("DHCP\u7684IP\u6C60\u683C\u5F0F\u9519\u8BEF\u6216\u8D85\u51FA\u5B50\u7F51\u8303\u56F4");return}const x=k.Loading("\u6B63\u5728\u914D\u7F6E\u2026\u8BF7\u7A0D\u7B49",30);B.Guide.LanIp.POST(g).then(C=>{var E;if(C!=null&&C.data){if((C.data.success||0)==0)return;if((E=C.data)!=null&&E.error)throw C.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).then(()=>new Promise((C,E)=>{const $=new Date().getTime()+3e4,A=d?location.protocol+"//"+g.lanIp+(location.port?":"+location.port:""):location.origin,M=A+"/luci-static/resources/icons/loading.gif",W=()=>{new Date().getTime()>$?(p.value="timeout",o.value=1,C()):window.setTimeout(V,2e3)},Z=()=>{b.value=A+location.pathname,p.value="success",o.value=1,C(),window.setTimeout(()=>{m.value=1},1e3),window.setTimeout(()=>{location.href=b.value},2e3)},V=()=>{console.log("check online ",M);const R=new Image;R.onload=Z,R.onerror=W,R.src=M};window.setTimeout(V,5e3)})).catch(C=>{p.value="fail",o.value=1,k.Error(C)}).finally(()=>x.Close())},l=g=>{g.preventDefault(),a.Close&&a.Close()},h=g=>{location.reload()};return(g,x)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:it(_,["prevent"])},[lp,t("div",pp,[t("div",fp,[mp,t("div",bp,[P(t("input",{type:"text",placeholder:"192.168.100.1","onUpdate:modelValue":x[0]||(x[0]=C=>n.value.lanIp=C),onChange:f},null,544),[[H,n.value.lanIp,void 0,{trim:!0}]])])]),t("div",vp,[gp,t("div",_p,[P(t("input",{type:"text",placeholder:"255.255.255.0","onUpdate:modelValue":x[1]||(x[1]=C=>n.value.netMask=C),onChange:f},null,544),[[H,n.value.netMask,void 0,{trim:!0}]])])]),t("div",hp,[n.value.enableDhcp?(i(),r("span",{key:0,onClick:c},[z(Q7)])):D("",!0),t("span",null,[n.value.enableDhcp?D("",!0):(i(),O(ip,{key:0,onClick:u}))]),n.value.enableDhcp?(i(),r("span",xp,"\u4FEE\u6539DHCP\u670D\u52A1")):(i(),r("span",kp,"\u4FDD\u6301DHCP\u670D\u52A1\u8BBE\u7F6E"))]),n.value.enableDhcp?(i(),r(L,{key:0},[t("div",wp,[yp,t("div",Fp,[P(t("input",{type:"text",placeholder:"192.168.100.100","onUpdate:modelValue":x[2]||(x[2]=C=>n.value.dhcpStart=C)},null,512),[[H,n.value.dhcpStart,void 0,{trim:!0}]])])]),t("div",Cp,[Ep,t("div",$p,[P(t("input",{type:"text",placeholder:"192.168.100.100","onUpdate:modelValue":x[3]||(x[3]=C=>n.value.dhcpEnd=C)},null,512),[[H,n.value.dhcpEnd,void 0,{trim:!0}]])])])],64)):D("",!0)]),t("div",Dp,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:s.value},"\u786E\u8BA4",8,Bp),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:l},"\u53D6\u6D88")])],40,up)):o.value==1?(i(),r("div",Yp,[Ap,t("div",Sp,[p.value=="success"?(i(),r("div",zp,[Pp,Tp,t("a",{href:b.value,class:"NewAdress"},w(m.value)+"s\u540E \u8DF3\u8F6C\u65B0\u5730\u5740",9,Ip)])):p.value=="fail"?(i(),r("div",Lp,[Mp,Op,Np,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},"\u6211\u77E5\u9053\u4E86")])):p.value=="timeout"?(i(),r("div",jp,[qp,Rp,Gp,t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},"\u6211\u77E5\u9053\u4E86")])):D("",!0)])])):D("",!0)]),_:1},8,["Close"]))}});var Up=S(Vp,[["__scopeId","data-v-b8956f32"]]);const Wp=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Up,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},lt=e=>(N("data-v-193c9490"),e=e(),j(),e),Zp=lt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),Hp={class:"actioner-dns_body"},Jp=lt(()=>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)),Kp={key:0,class:"disk_loading_icon"},Xp=lt(()=>t("div",{class:"loading icon"},[t("svg",{t:"1631799919469",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"3453",width:"80",height:"80"},[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)),Qp=lt(()=>t("span",{class:"disk_loading_info"},"\u6B63\u5728\u52A0\u8F7D\u4E2D...",-1)),tf=[Xp,Qp],ef={key:1,class:"disk_tips"},af=lt(()=>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)),of={class:"label-item"},nf=lt(()=>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)),rf={class:"label-item_value"},sf=lt(()=>t("option",{value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u78C1\u76D8",-1)),df=["value"],cf={class:"label-item"},uf=lt(()=>t("div",{class:"label-item_key"},[t("span",null,"\u76EE\u6807\u5206\u533A\uFF08\u5206\u533A\u5927\u5C0F\u987B\u5927\u4E8E8G\uFF0C\u5C06\u6B64\u5206\u533A\u4F5C\u4E3A\u5916\u90E8 overlay \u4F7F\u7528\uFF09")],-1)),lf={class:"label-item_value"},pf=lt(()=>t("option",{selected:"true",value:""},"\u8BF7\u9009\u62E9\u76EE\u6807\u5206\u533A",-1)),ff=["value","disabled"],mf={class:"sandbox_tips"},bf=lt(()=>t("span",null,"\u6B64\u64CD\u4F5C\u4F1A\u5C06\u4F1A\u5220\u9664\u8BE5\u5206\u533A\u5168\u90E8\u6570\u636E",-1)),vf={class:"actioner-dns_footer"},gf=["disabled"],_f={key:1,class:"actioner-tips"},hf=lt(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u6E29\u99A8\u63D0\u793A")],-1)),xf=lt(()=>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\u4F1A\u683C\u5F0F\u5316\u6210EXT4,\u91CD\u542F\u540E\u53EF\u8FDB\u5165\u6C99\u7BB1\u6A21\u5F0F\uFF0C\u662F\u5426\u7EE7\u7EED\uFF1F")],-1)),kf=["onSubmit"],wf=lt(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),yf={class:"actioner-dns_body"},Ff=lt(()=>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)),Cf={class:"sandbox_info timeout"},Ef=X("\u5373\u5C06\u91CD\u542F\u8BBE\u5907 "),$f=lt(()=>t("p",{class:"sandbox_roboot_tips"},[X("\u7B49\u5F85\u8BBE\u5907\u91CD\u542F\uFF0C\u91CD\u542F\u5B8C\u6210\u540E"),t("span",{class:"sandbox_roboot_refresh"},"\u8BF7\u5237\u65B0\u754C\u9762")],-1)),Df={key:3,class:"actioner-tips"},Bf=lt(()=>t("div",{class:"actioner-tips_header"},[t("span",null,"\u9519\u8BEF")],-1)),Yf={class:"actioner-tips_body"},Af={class:"sandbox_info"},Sf=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=F(0);F("disk");const n=F(""),s=F(3),b=F(""),m=F([]),p=F(""),c=F(null);(()=>{B.Nas.SandboxDisks.GET().then(x=>{var C;if(x!=null&&x.data&&(C=x.data)!=null&&C.result){c.value=x.data.result;return}throw"\u52A0\u8F7D\u78C1\u76D8\u4FE1\u606F\u5931\u8D25"}).catch(x=>{n.value=x,o.value=3})})();const d=()=>B.System.Reboot.POST({name:b.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"}),v=x=>{var C,E;p.value="",m.value=b.value&&((E=(C=c.value)==null?void 0:C.disks.find($=>$.path==b.value))==null?void 0:E.childrens)||[]},f=()=>{s.value>0&&(s.value-=1,window.setTimeout(f,1e3))},_=x=>{x.preventDefault(),a.Close&&a.Close()},l=()=>{new Promise((x,C)=>{const E="/luci-static/resources/icons/loading.gif",$=()=>{window.setTimeout(A,2e3)},A=()=>{const M=new Image;M.onload=x,M.onerror=$,M.src=E};window.setTimeout(A,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},h=x=>{const C=k.Loading("\u52A0\u8F7D\u4E2D...");B.Nas.Sandbox.POST({path:p.value}).then(E=>{var $;if(E!=null&&E.data){if((E.data.success||0)==0)return o.value=2,window.setTimeout(f,1e3),d();if(($=E.data)!=null&&$.error)throw E.data.error}throw"\u672A\u77E5\u9519\u8BEF"}).then(l).catch(E=>k.Error(E)).finally(()=>C.Close())},g=()=>{o.value=0};return(x,C)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("form",{key:0,class:"actioner-dns",onSubmit:C[2]||(C[2]=it(E=>o.value=1,["prevent"]))},[Zp,t("div",Hp,[Jp,c.value?D("",!0):(i(),r("div",Kp,tf)),c.value&&c.value.disks.length==0?(i(),r("div",ef,[z(ht),af])):D("",!0),c.value&&c.value.disks.length>0?(i(),r(L,{key:2},[t("div",of,[nf,t("div",rf,[P(t("select",{name:"",id:"",onChange:v,"onUpdate:modelValue":C[0]||(C[0]=E=>b.value=E)},[sf,(i(!0),r(L,null,G(c.value.disks,(E,$)=>(i(),r("option",{value:E.path,key:$},w(E.venderModel)+"\uFF08"+w(E.size)+"\uFF09 ",9,df))),128))],544),[[Q,b.value]])])]),t("div",cf,[uf,t("div",lf,[P(t("select",{name:"",id:"","onUpdate:modelValue":C[1]||(C[1]=E=>p.value=E)},[pf,(i(!0),r(L,null,G(m.value,(E,$)=>(i(),r("option",{value:E.path,key:$,disabled:E.sizeInt<(1<<30)*2},w(E.name)+"\uFF08"+w(E.filesystem||"\u672A\u683C\u5F0F\u5316")+"\uFF09"+w(E.total),9,ff))),128))],512),[[Q,p.value]])])]),t("div",mf,[z(ht),bf])],64)):D("",!0)]),t("div",vf,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:!p.value},"\u5F00\u542F\u6C99\u7BB1",8,gf),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:_},"\u53D6\u6D88")])],32)):D("",!0),o.value==1?(i(),r("div",_f,[hf,xf,t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:h},"\u7EE7\u7EED"),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])])):D("",!0),o.value==2?(i(),r("form",{key:2,class:"actioner-dns",onSubmit:it(h,["prevent"])},[wf,t("div",yf,[Ff,t("p",Cf,[Ef,t("span",null,"\uFF08"+w(s.value)+"s\uFF09",1)]),$f])],40,kf)):D("",!0),o.value==3?(i(),r("div",Df,[Bf,t("div",Yf,[t("p",Af,w(n.value),1)]),t("div",{class:"actioner-tips_footer"},[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:g},"\u53D6\u6D88")])])):D("",!0)]),_:1},8,["Close"]))}});var zf=S(Sf,[["__scopeId","data-v-193c9490"]]);const Pf=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(zf,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},la=e=>(N("data-v-62461857"),e=e(),j(),e),Tf={key:0,class:"actioner-dns"},If=la(()=>t("div",{class:"actioner-dns_header"},[t("span",null,"\u6C99\u7BB1\u6A21\u5F0F\u914D\u7F6E\u5411\u5BFC")],-1)),Lf=la(()=>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"},[X("\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"},[X(" \u5982\u9700"),t("b",null,"\u4E34\u65F6"),X("\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"),X(" \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)),Mf={class:"actioner-dns_footer"},Of=["disabled"],Nf=["disabled"],jf=["disabled"],qf=T({props:{Close:{type:Function,required:!0}},setup(e){const a=e,o=F(0),n=F(!1),s=()=>{new Promise((u,d)=>{const v="/luci-static/resources/icons/loading.gif",f=()=>{window.setTimeout(_,2e3)},_=()=>{const l=new Image;l.onload=u,l.onerror=f,l.src=v};window.setTimeout(_,1e4)}).then(()=>{window.setTimeout(()=>{location.reload()},2e3)})},b=()=>{n.value=!0;const u=k.Loading("\u63D0\u4EA4\u4E2D...");B.Nas.SandboxCommit.POST().then(d=>{var v,f;if(d!=null&&d.data)if((((v=d==null?void 0:d.data)==null?void 0:v.success)||0)==0){k.Loading("\u8BBE\u5907\u91CD\u542F\u4E2D...");return}else(f=d==null?void 0:d.data)!=null&&f.error&&alert(d.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(d=>{k.Error(d),n.value=!1}).finally(()=>u.Close())},m=()=>{n.value=!0;const u=k.Loading("\u91CD\u7F6E\u4E2D...");B.Nas.SandboxReset.POST().then(d=>{var v,f;if(d!=null&&d.data)if((((v=d==null?void 0:d.data)==null?void 0:v.success)||0)==0){k.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(f=d==null?void 0:d.data)!=null&&f.error&&alert(d.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(d=>{k.Error(d),n.value=!1}).finally(()=>u.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 u=k.Loading("\u6267\u884C\u4E2D...");B.Nas.SandboxExit.POST().then(d=>{var v,f;if(d!=null&&d.data)if((((v=d==null?void 0:d.data)==null?void 0:v.success)||0)==0){k.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(f=d==null?void 0:d.data)!=null&&f.error&&alert(d.data.error);throw"\u672A\u77E5\u9519\u8BEF"}).then(s).catch(d=>{k.Error(d),n.value=!1}).finally(()=>u.Close())},c=u=>{u.preventDefault(),a.Close&&a.Close()};return(u,d)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[o.value==0?(i(),r("div",Tf,[If,Lf,t("div",Mf,[t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:b,disabled:n.value},"\u63D0\u4EA4",8,Of),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:m,disabled:n.value},"\u91CD\u7F6E",8,Nf),t("button",{class:"cbi-button cbi-button-apply app-btn",onClick:p,disabled:n.value},"\u9000\u51FA",8,jf),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:c},"\u53D6\u6D88")])])):D("",!0)]),_:1},8,["Close"]))}});var Rf=S(qf,[["__scopeId","data-v-62461857"]]);const Gf=()=>{const e=document.createElement("div");document.body.appendChild(e);const a=tt(Rf,{Close:()=>{o()}});a.mount(e);const o=()=>{a.unmount(),e.remove()};return{Close:o}},Vf={class:"nav-container"},Uf=["onClick"],Wf={key:0,class:"btn_styles color3 app-update-button",onclick:"window.location.href='/cgi-bin/luci/admin/system/ota'"},Zf=X(" \u56FA\u4EF6\u66F4\u65B0 "),Hf={key:0},Jf=T({setup(e){const a=$e(),o=J(()=>a.checkUpdate.needUpdate);F(!1),F(!0);const n=F(),s=()=>{ta()},b=()=>{Pf()},m=()=>{Gf()},p=()=>{alert("\u8BE5\u56FA\u4EF6\u4E0D\u652F\u6301\u6C99\u7BB1\u6A21\u5F0F")},c=()=>{Wp()},u=()=>{oa()},d=()=>{window.open(`http://${window.location.hostname}:7681/`,"_blank")};return se("sandbox")&&B.Nas.GetSandbox.GET().then(f=>{var _,l,h;f!=null&&f.data&&((((_=f==null?void 0:f.data)==null?void 0:_.success)||0)==0?(l=f==null?void 0:f.data)!=null&&l.result&&(n.value=f.data.result):(h=f==null?void 0:f.data)!=null&&h.error&&alert(f.data.error))}).catch(f=>k.Error(f)),(v,f)=>{var l,h,g;const _=ct("router-link");return i(),r("div",Vf,[z(_,{to:"/network",custom:""},{default:q(({navigate:x})=>[t("button",{class:"btn_styles color1",onClick:x},"\u7F51\u7EDC\u5411\u5BFC",8,Uf)]),_:1}),t("button",{class:"btn_styles color2 app-btn-ttyd",onClick:d},"\u7EC8\u7AEF"),y(se)("ota")?(i(),r("button",Wf,[Zf,y(o)?(i(),r("i",Hf)):D("",!0)])):D("",!0),t("button",{class:"btn_styles color4",onClick:c},"\u5185\u7F51\u914D\u7F6E"),t("button",{class:"btn_styles color5",onClick:s},"DNS\u914D\u7F6E"),t("button",{class:"btn_styles color1",onClick:u},"\u8F6F\u4EF6\u6E90\u914D\u7F6E"),y(se)("sandbox")?(i(),r(L,{key:1},[((l=n.value)==null?void 0:l.status)=="unsupport"?(i(),r("button",{key:0,class:"btn_styles color2",onClick:p},"\u5F00\u542F\u6C99\u7BB1")):((h=n.value)==null?void 0:h.status)=="stopped"?(i(),r("button",{key:1,class:"btn_styles color3",onClick:b},"\u5F00\u542F\u6C99\u7BB1")):((g=n.value)==null?void 0:g.status)=="running"?(i(),r("button",{key:2,class:"btn_styles color4",onClick:m},"\u6C99\u7BB1\u5F00\u542F\u4E2D")):D("",!0)],64)):D("",!0)])}}});var Kf=S(Jf,[["__scopeId","data-v-4eb14922"]]);const _e=e=>(N("data-v-31aed265"),e=e(),j(),e),Xf={id:"page"},Qf=_e(()=>t("em",null,null,-1)),t9=_e(()=>t("em",null,null,-1)),e9=_e(()=>t("em",null,null,-1)),a9=_e(()=>t("em",null,null,-1)),o9=T({setup(e){return Ua(),(a,o)=>(i(),r("div",Xf,[Qf,z(x0),t9,z(Kf),z(g7),e9,z(W7),a9]))}});var n9=S(o9,[["__scopeId","data-v-31aed265"]]);const i9={};function r9(e,a){const o=ct("router-view");return i(),O(o)}var s9=S(i9,[["render",r9]]);const d9={},c9={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"},u9=Pt('icon_router',3),l9=[u9];function p9(e,a){return i(),r("svg",c9,l9)}var f9=S(d9,[["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=Pt('icon_dial',3),g9=[v9];function _9(e,a){return i(),r("svg",b9,g9)}var h9=S(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=Pt('icon_side router',3),y9=[w9];function F9(e,a){return i(),r("svg",k9,y9)}var C9=S(x9,[["render",F9]]);const Ut=e=>(N("data-v-082ffcaf"),e=e(),j(),e),E9={id:"page"},$9=Ut(()=>t("div",{class:"title"},"\u6B22\u8FCE\u4F7F\u7528\u7F51\u7EDC\u914D\u7F6E\u5411\u5BFC",-1)),D9=Ut(()=>t("div",{class:"desc"},"\u9009\u62E9\u4E00\u79CD\u8FDE\u63A5\u65B9\u5F0F\u4EE5\u5F00\u59CB",-1)),B9={class:"network-containers"},Y9={class:"network-container_item"},A9={class:"cover"},S9={class:"thumbnail"},z9=Ut(()=>t("span",null,"\u5BBD\u5E26\u62E8\u53F7\u8FDE\u63A5",-1)),P9={class:"network-container_item"},T9={class:"cover"},I9={class:"thumbnail"},L9=Ut(()=>t("span",null,"\u8FDE\u63A5\u73B0\u6709\u8DEF\u7531\u5668",-1)),M9={class:"network-container_item"},O9={class:"cover"},N9={class:"thumbnail"},j9=Ut(()=>t("span",null,"\u914D\u7F6E\u4E3A\u65C1\u8DEF\u7531",-1)),q9=Ut(()=>t("div",{class:"info"},[X(" \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)),R9=T({setup(e){return(a,o)=>{const n=ct("router-link");return i(),r("div",E9,[$9,D9,t("div",B9,[t("div",Y9,[z(n,{to:"/network/pppoe"},{default:q(()=>[t("div",A9,[t("div",S9,[z(h9),z9])])]),_:1})]),t("div",P9,[z(n,{to:"/network/dhcp"},{default:q(()=>[t("div",T9,[t("div",I9,[z(f9),L9])])]),_:1})]),t("div",M9,[z(n,{to:"/network/gateway"},{default:q(()=>[t("div",O9,[t("div",N9,[z(C9),j9])])]),_:1})])]),q9])}}});var G9=S(R9,[["__scopeId","data-v-082ffcaf"]]);const ae=e=>(N("data-v-4a938506"),e=e(),j(),e),V9={key:0,id:"page"},U9=ae(()=>t("h2",{class:"title"},"\u914D\u7F6E\u5BBD\u5E26\u8D26\u53F7",-1)),W9=ae(()=>t("h3",{class:"desc"},"\u8BF7\u786E\u4FDD\u60A8\u5DF2\u5C06\u8DEF\u7531 WAN \u53E3\u8FDE\u63A5\u5230\u5149\u732B",-1)),Z9=["onSubmit"],H9=ae(()=>t("div",{class:"label-key"},[t("span",null,"\u5BBD\u5E26\u8D26\u53F7")],-1)),J9=["disabled"],K9=ae(()=>t("div",{class:"label-key"},[t("span",null,"\u5BC6\u7801")],-1)),X9=["disabled"],Q9={key:0,class:"msg"},tm={class:"btns"},em=["disabled"],am=["onClick"],om={key:1,id:"page"},nm=ae(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),im={class:"btns"},rm=["onClick"],sm=["onClick"],dm=T({setup(e){const a=F(0),o=F({account:"",password:""}),n=F(""),s=F(!1);(()=>Y(this,null,function*(){var p;s.value=!0;try{const c=yield B.Guide.Pppoe.GET();(p=c==null?void 0:c.data)!=null&&p.result&&(o.value=c.data.result)}catch(c){n.value=c}s.value=!1}))();const m=()=>Y(this,null,function*(){const p=o.value.account||"",c=o.value.password||"";if(p==""){n.value="\u8D26\u53F7\u4E0D\u80FD\u4E3A\u7A7A";return}if(c==""){n.value="\u5BC6\u7801\u4E0D\u80FD\u4E3A\u7A7A";return}s.value=!0;const u=k.Loading("\u914D\u7F6E\u4E2D...");try{const d=yield B.Guide.Pppoe.POST({account:p,password:c});if(d!=null&&d.data){const{error:v,success:f}=d.data;v&&(n.value=v),(f==null||f==0)&&(k.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(d){n.value=d}s.value=!1,u.Close()});return(p,c)=>{const u=ct("router-link");return a.value==0?(i(),r("div",V9,[U9,W9,t("form",{onSubmit:it(m,["prevent"])},[t("label",null,[H9,P(t("input",{type:"text","onUpdate:modelValue":c[0]||(c[0]=d=>o.value.account=d),placeholder:"\u5BBD\u5E26\u8D26\u53F7",required:"",disabled:s.value},null,8,J9),[[H,o.value.account,void 0,{trim:!0}]])]),t("label",null,[K9,P(t("input",{type:"password","onUpdate:modelValue":c[1]||(c[1]=d=>o.value.password=d),placeholder:"\u5BBD\u5E26\u5BC6\u7801",required:"",disabled:s.value},null,8,X9),[[H,o.value.password,void 0,{trim:!0}]])]),n.value?(i(),r("div",Q9,w(n.value),1)):D("",!0),t("div",tm,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:s.value},"\u4FDD\u5B58\u914D\u7F6E",8,em),z(u,{to:"/network",custom:""},{default:q(({navigate:d})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u8FD4\u56DE",8,am)]),_:1})])],40,Z9)])):a.value==1?(i(),r("div",om,[nm,t("div",im,[z(u,{to:"/",custom:""},{default:q(({navigate:d})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:d},"\u8FDB\u5165\u63A7\u5236\u53F0",8,rm)]),_:1}),z(u,{to:"/network",custom:""},{default:q(({navigate:d})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:d},"\u8FD4\u56DE",8,sm)]),_:1})])])):D("",!0)}}});var cm=S(dm,[["__scopeId","data-v-4a938506"]]);const ft=e=>(N("data-v-6c09be9e"),e=e(),j(),e),um={key:0,id:"page"},lm=ft(()=>t("h2",{class:"title"},"\u914D\u7F6E\u4E92\u8054\u7F51",-1)),pm=ft(()=>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)),fm=["onSubmit"],mm=ft(()=>t("div",{class:"label-key"},[t("span",null,"WAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),bm=ft(()=>t("option",{value:"dhcp"},"\u81EA\u52A8\u83B7\u53D6IP\u5730\u5740\uFF08DHCP\uFF09",-1)),vm=ft(()=>t("option",{value:"static"},"\u9759\u6001IP\u5730\u5740",-1)),gm=[bm,vm],_m=ft(()=>t("div",{class:"label-key"},[t("span",null,"IP\u5730\u5740")],-1)),hm=["disabled"],xm={key:0,class:"msg"},km=ft(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),wm=["disabled"],ym={key:1,class:"msg"},Fm=ft(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),Cm=["disabled"],Em=ft(()=>t("div",{class:"label-key"},[t("span",null,"DNS \u914D\u7F6E\u65B9\u5F0F")],-1)),$m=ft(()=>t("option",{value:"auto"},"\u81EA\u52A8\u83B7\u53D6\uFF08DHCP\uFF09",-1)),Dm=ft(()=>t("option",{value:"manual"},"\u624B\u5DE5\u914D\u7F6E",-1)),Bm=[$m,Dm],Ym=ft(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),Am=["onUpdate:modelValue","disabled"],Sm=ft(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),zm=["disabled"],Pm=ft(()=>t("div",{class:"label-key"},"\u5907\u7528DNS\u670D\u52A1\u5668",-1)),Tm=["disabled"],Im={key:2,class:"msgs"},Lm={class:"btns"},Mm=["disabled"],Om=["onClick"],Nm={key:1,id:"page"},jm=ft(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),qm={class:"btns"},Rm=["onClick"],Gm=["onClick"],Vm=T({setup(e){const a=F(0),o=F({}),n=F(""),s=F(""),b=F(""),m=F(""),p=F(!1),c=F(""),u=F(""),d=qt.checkIsIP;(()=>Y(this,null,function*(){var x,C;p.value=!0;try{const E=yield Promise.all([B.Guide.ClientModel.GET(),B.Network.Status.GET()]);if(E[0]){const $=E[0];(x=$==null?void 0:$.data)!=null&&x.result&&(o.value=$.data.result)}if(E[1]){const $=E[1];if((C=$==null?void 0:$.data)!=null&&C.result){const A=$.data.result;A.ipv4addr&&(n.value=A.ipv4addr)}}}catch(E){s.value=E}p.value=!1}))();const f=x=>{x.target.value=="static"&&((o.value.staticIp==null||o.value.staticIp=="")&&(o.value.staticIp=n.value),(o.value.subnetMask==null||o.value.subnetMask=="")&&(o.value.subnetMask="255.255.255.0"))},_=x=>{x.target.value=="manual"},l=x=>{const C=x.target;if(C.value==""){c.value="";return}d(C.value)?c.value="":c.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684IP\u5730\u5740"},h=x=>{const C=x.target;if(C.value==""){u.value="";return}d(C.value)?u.value="":u.value="\u8BF7\u8F93\u5165\u5408\u6CD5\u7684\u5730\u5740"},g=()=>Y(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(b.value),m.value&&x.manualDnsIp.push(m.value));break}x.dnsProto=o.value.dnsProto,x.wanProto=o.value.wanProto;const C=k.Loading("\u914D\u7F6E\u4E2D....");p.value=!0;try{const E=yield B.Guide.ClientModel.POST(x);if(E!=null&&E.data){const{success:$,error:A}=E==null?void 0:E.data;A&&(s.value=A),($==null||$==0)&&(k.Success("\u914D\u7F6E\u6210\u529F"),a.value=1)}}catch(E){s.value=E}p.value=!1,C.Close()});return(x,C)=>{const E=ct("router-link");return a.value==0?(i(),r("div",um,[lm,pm,t("form",{onSubmit:it(g,["prevent"])},[t("label",null,[mm,P(t("select",{"onUpdate:modelValue":C[0]||(C[0]=$=>o.value.wanProto=$),onInput:f},gm,544),[[Q,o.value.wanProto]])]),o.value.wanProto=="static"?(i(),r(L,{key:0},[t("label",null,[_m,P(t("input",{type:"text","onUpdate:modelValue":C[1]||(C[1]=$=>o.value.staticIp=$),placeholder:"\u9759\u6001IP\u5730\u5740",required:"",disabled:p.value,onInput:l},null,40,hm),[[H,o.value.staticIp,void 0,{trim:!0}]])]),c.value?(i(),r("p",xm,w(c.value),1)):D("",!0),t("label",null,[km,P(t("input",{type:"text","onUpdate:modelValue":C[2]||(C[2]=$=>o.value.subnetMask=$),placeholder:"\u5B50\u7F51\u63A9\u7801",required:"",disabled:p.value,onInput:h},null,40,wm),[[H,o.value.subnetMask,void 0,{trim:!0}]])]),u.value?(i(),r("p",ym,w(u.value),1)):D("",!0),t("label",null,[Fm,P(t("input",{type:"text","onUpdate:modelValue":C[3]||(C[3]=$=>o.value.gateway=$),placeholder:"\u7F51\u5173\u5730\u5740",required:"",disabled:p.value},null,8,Cm),[[H,o.value.gateway,void 0,{trim:!0}]])])],64)):D("",!0),t("label",null,[Em,P(t("select",{"onUpdate:modelValue":C[4]||(C[4]=$=>o.value.dnsProto=$),onInput:_},Bm,544),[[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},G(o.value.manualDnsIp,($,A)=>(i(),r("label",null,[Ym,P(t("input",{type:"text","onUpdate:modelValue":M=>o.value.manualDnsIp[A]=M,placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:p.value},null,8,Am),[[H,o.value.manualDnsIp[A],void 0,{trim:!0}]])]))),256)):(i(),r(L,{key:1},[t("label",null,[Sm,P(t("input",{type:"text","onUpdate:modelValue":C[5]||(C[5]=$=>b.value=$),placeholder:"DNS\u670D\u52A1\u5668",required:"",disabled:p.value},null,8,zm),[[H,b.value,void 0,{trim:!0}]])]),t("label",null,[Pm,P(t("input",{type:"text","onUpdate:modelValue":C[6]||(C[6]=$=>m.value=$),placeholder:"\u5907\u7528DNS\u670D\u52A1\u5668",disabled:p.value},null,8,Tm),[[H,m.value,void 0,{trim:!0}]])])],64))],64)):D("",!0),s.value?(i(),r("div",Im,w(s.value),1)):D("",!0),t("div",Lm,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:p.value},"\u4FDD\u5B58\u914D\u7F6E",8,Mm),z(E,{to:"/network",custom:""},{default:q(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,Om)]),_:1})])],40,fm)])):a.value==1?(i(),r("div",Nm,[jm,t("div",qm,[z(E,{to:"/",custom:""},{default:q(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:$},"\u8FDB\u5165\u63A7\u5236\u53F0",8,Rm)]),_:1}),z(E,{to:"/network",custom:""},{default:q(({navigate:$})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:$},"\u8FD4\u56DE",8,Gm)]),_:1})])])):D("",!0)}}});var Um=S(Vm,[["__scopeId","data-v-6c09be9e"]]);const mt=e=>(N("data-v-50358ebb"),e=e(),j(),e),Wm={key:0,id:"page"},Zm=mt(()=>t("h2",{class:"title"},"\u65C1\u8DEF\u7531\u914D\u7F6E\u524D\u7684\u51C6\u5907\u5DE5\u4F5C",-1)),Hm=mt(()=>t("code",null,[X(" \u65C1\u8DEF\u7531\u6A21\u5F0F\uFF0C\u4E5F\u53EB\u5355\u81C2\u8DEF\u7531\u6A21\u5F0F\u3002 "),t("br"),X("\u60A8\u53EF\u4EE5\u7528\u4E0A\u4E00\u7EA7\u8DEF\u7531\u62E8\u53F7\uFF0C\u7136\u540E\u7531ARS2\u6765\u5B9E\u73B0\u4E00\u4E9B\u9AD8\u7EA7\u529F\u80FD\u3002 ")],-1)),Jm=mt(()=>t("h3",{class:"desc"},"\u8BF7\u60A8\u83B7\u5F97\u4E3B\u8DEF\u7531\u5668\u7684IP\u5730\u5740\uFF08\u4F8B\u5982 192.168.2.1 \uFF09\uFF0C\u8BB0\u5F55\u4EE5\u5907\u4F7F\u7528",-1)),Km=mt(()=>t("div",{class:"info"},[X(" \u4F60\u53EF\u4EE5\u67E5\u770B\u6211\u4EEC\u7684 "),t("a",{target:"_blank",href:"https://doc.linkease.com/zh/guide/easepi/common.html#%E6%97%81%E8%B7%AF%E7%94%B1%E6%A8%A1%E5%BC%8F"},"\u914D\u7F6E\u6559\u7A0B")],-1)),Xm={class:"btns"},Qm=["disabled"],tb=["onClick"],eb={key:1,id:"page"},ab=mt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u65C1\u8DEF\u7531\u7F51\u7EDC",-1)),ob=mt(()=>t("h3",{class:"desc"},"\u73B0\u5728\uFF0C\u8BF7\u4F60\u914D\u7F6E\u65C1\u8DEF\u7531\u4FE1\u606F",-1)),nb=["onSubmit"],ib=mt(()=>t("div",{class:"label-key"},[t("span",null,"LAN \u63A5\u53E3\u914D\u7F6E\u65B9\u5F0F")],-1)),rb={class:"label-value"},sb=mt(()=>t("option",null,"\u65C1\u8DEF\u7531\u6A21\u5F0F\u4EC5\u652F\u6301\u9759\u6001IP\u5730\u5740",-1)),db=[sb],cb=mt(()=>t("div",{class:"label-key"},[t("span",null,"IP \u5730\u5740\uFF08\u8BF7\u548C\u4E0A\u4E00\u6B65\u8BB0\u5F55\u7684\u4E3B\u8DEF\u7531\u5730\u5740\u5728\u540C\u4E00\u7F51\u6BB5\uFF09")],-1)),ub=["disabled"],lb=mt(()=>t("div",{class:"label-key"},[t("span",null,"\u5B50\u7F51\u63A9\u7801")],-1)),pb=["disabled"],fb=mt(()=>t("div",{class:"label-key"},[t("span",null,"\u7F51\u5173\u5730\u5740")],-1)),mb=["disabled"],bb=mt(()=>t("div",{class:"label-key"},[t("span",null,"DNS\u670D\u52A1\u5668")],-1)),vb=["disabled"],gb={key:0,class:"msgs"},_b={class:"chose_dhcp"},hb={class:"chose_dhcp_icon"},xb=mt(()=>t("svg",{t:"1649907260906",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2793","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},[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"})],-1)),kb=[xb],wb=mt(()=>t("svg",{t:"1649907515643",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2971","xmlns:xlink":"http://www.w3.org/1999/xlink",width:"40",height:"40"},[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"})],-1)),yb=[wb],Fb={key:0,class:"dhcp_info"},Cb={class:"btns"},Eb=["disabled"],$b=["onClick"],Db={key:2,id:"page"},Bb=mt(()=>t("h2",{class:"title"},"\u914D\u7F6E\u6210\u529F",-1)),Yb={class:"btns"},Ab=["onClick"],Sb=["onClick"],zb=T({setup(e){const a=F(0),o=F(!1),n=F(""),s=F({subnetMask:"255.255.255.0",staticDnsIp:"223.5.5.5",staticLanIp:"",gateway:"",enableDhcp:!0}),b=()=>{s.value.enableDhcp=!1},m=()=>{s.value.enableDhcp=!0},p=u=>{a.value=u},c=()=>Y(this,null,function*(){const u=s.value,d=k.Loading("\u914D\u7F6E\u4E2D...");try{const v=yield B.Guide.GatewayRouter.POST(u);if(v!=null&&v.data){const{success:f,error:_}=v==null?void 0:v.data;_&&(n.value=_),(f==null||f==0)&&(k.Success("\u914D\u7F6E\u6210\u529F"),a.value=2)}}catch(v){n.value=v}d.Close()});return(u,d)=>{const v=ct("router-link");return a.value==0?(i(),r("div",Wm,[Zm,Hm,Jm,Km,t("div",Xm,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:o.value,onClick:d[0]||(d[0]=f=>p(1))},"\u4E0B\u4E00\u6B65",8,Qm),z(v,{to:"/network",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},"\u8FD4\u56DE",8,tb)]),_:1})])])):a.value==1?(i(),r("div",eb,[ab,ob,t("form",{onSubmit:it(c,["prevent"])},[t("label",null,[ib,t("div",rb,[t("select",{disabled:"",style:Nt({backgroundColor:"rgba(215, 215, 215, 1)",color:"#333"})},db,4)])]),t("label",null,[cb,P(t("input",{type:"text","onUpdate:modelValue":d[1]||(d[1]=f=>s.value.staticLanIp=f),placeholder:"IP\u5730\u5740",required:"",disabled:o.value},null,8,ub),[[H,s.value.staticLanIp,void 0,{trim:!0}]])]),t("label",null,[lb,P(t("input",{type:"text","onUpdate:modelValue":d[2]||(d[2]=f=>s.value.subnetMask=f),placeholder:"\u5B50\u7F51\u63A9\u7801",required:"",disabled:o.value},null,8,pb),[[H,s.value.subnetMask,void 0,{trim:!0}]])]),t("label",null,[fb,P(t("input",{type:"text","onUpdate:modelValue":d[3]||(d[3]=f=>s.value.gateway=f),placeholder:"\u7F51\u5173\u5730\u5740",required:"",disabled:o.value},null,8,mb),[[H,s.value.gateway,void 0,{trim:!0}]])]),t("label",null,[bb,P(t("input",{type:"text","onUpdate:modelValue":d[4]||(d[4]=f=>s.value.staticDnsIp=f),placeholder:"223.5.5.5",required:"",disabled:o.value},null,8,vb),[[H,s.value.staticDnsIp,void 0,{trim:!0}]])]),n.value?(i(),r("div",gb,w(n.value),1)):D("",!0),t("div",_b,[t("div",hb,[s.value.enableDhcp?(i(),r("span",{key:0,class:"mobie_open",onClick:b},kb)):D("",!0),s.value.enableDhcp?D("",!0):(i(),r("span",{key:1,class:"mobie_close",onClick:m},yb))]),s.value.enableDhcp?(i(),r("span",Fb,"\u662F\u5426\u63D0\u4F9B DHCP\uFF08\u5982\u679C\u662F\u63D0\u4F9B DHCP\uFF0C\u5219\u9700\u8981\u5173\u95ED\u4E3B\u8DEF\u7531 DHCP\uFF09")):D("",!0)]),t("div",Cb,[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",disabled:o.value},"\u4FDD\u5B58\u914D\u7F6E",8,Eb),z(v,{to:"/network",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},"\u8FD4\u56DE",8,$b)]),_:1})])],40,nb)])):a.value==2?(i(),r("div",Db,[Bb,t("div",Yb,[z(v,{to:"/",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-apply app-btn app-next",onClick:f},"\u8FDB\u5165\u63A7\u5236\u53F0",8,Ab)]),_:1}),z(v,{to:"/network",custom:""},{default:q(({navigate:f})=>[t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:f},"\u8FD4\u56DE",8,Sb)]),_:1})])])):D("",!0)}}});var Pb=S(zb,[["__scopeId","data-v-50358ebb"]]);const St=e=>(N("data-v-7fc91c6d"),e=e(),j(),e),Tb={class:"actioner-container"},Ib=St(()=>t("div",{class:"actioner-container_header"},[t("span",null,"RAID\u521B\u5EFA\u5411\u5BFC")],-1)),Lb={class:"actioner-container_body"},Mb=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)),Ob={class:"label-item"},Nb=St(()=>t("div",{class:"label-item_key"},[t("span",null,"RAID\u7EA7\u522B\uFF1A")],-1)),jb={class:"label-item_value"},qb=["value"],Rb={class:"label-item_tips"},Gb={class:"label-item"},Vb=St(()=>t("div",{class:"label-item_key"},[t("span",null,"\u78C1\u76D8\u9635\u5217\u6210\u5458\uFF1A")],-1)),Ub={key:0,class:"label-item_value"},Wb=St(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),Zb=[Wb],Hb={key:1,class:"label-item_value"},Jb=["value"],Kb={key:1,class:"msg-warning"},Xb={class:"label-item_tips"},Qb=X(" \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 "),tv={class:"actioner-container_footer"},ev=["disabled"],av=["disabled"],ov={key:1,class:"actioner-container_body setup-loading"},nv=St(()=>t("span",null,"\u6B63\u5728\u521B\u5EFA\u4E2D...",-1)),iv={class:"actioner-container_body setup-error"},rv={class:"actioner-container_footer"},sv=["disabled"],dv={class:"actioner-container_body setup-success"},cv=St(()=>t("div",{class:"body-title"},"\u521B\u5EFA\u6210\u529F",-1)),uv=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,[X(" \u53EF\u524D\u5F80 "),t("a",{href:"/cgi-bin/luci/",target:"_blank",rel:"noopener noreferrer"},"\u9996\u9875-\u78C1\u76D8\u4FE1\u606F"),X(" \u8FDB\u884C\u6302\u8F7D ")])],-1)),lv=T({props:{Close:{type:Function,required:!0},success:{type:Function}},setup(e){const a=e,o=()=>{a.Close()},n=()=>{a.success&&a.success()},s=F("init"),b=F(""),m=[{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=F("raid5"),c=F([]),u=h=>{let g="";return m.forEach(x=>{x.name===h&&(g=x.info)}),g},d=F(!1),v=rt({loading:!1,members:[]}),f=h=>{};(()=>Y(this,null,function*(){v.loading=!0;try{const h=yield B.Raid.CreateList.GET();if(h!=null&&h.data){const{success:g,error:x,result:C}=h.data;if(C&&(v.members=C.members||[]),x)throw x}}catch(h){console.log(h)}finally{v.loading=!1}}))();const l=()=>Y(this,null,function*(){const h=m.filter(x=>x.name===p.value)[0],g=c.value;if(!h){k.Warning("\u8BF7\u9009\u62E9raid\u7C7B\u578B");return}if(g.length==0){k.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}if(h.select>g.length){k.Warning("\u8BF7\u9009\u62E9\u81F3\u5C11"+h.select+"\u5757\u78C1\u76D8");return}if(!!confirm(`\u662F\u5426\u7ACB\u5373\u521B\u5EFA ${h.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 ${h.name}\uFF1F\u8BE5\u64CD\u4F5C\u4E0D\u53EF\u9006,\u8BF7\u8C28\u614E\u64CD\u4F5C`)){d.value=!0,s.value="loading";try{const x=yield B.Raid.Create.POST({level:h.name,devicePaths:g});if(x.data){const{success:C,error:E,result:$}=x.data;if(E)throw E;(C||0)==0&&(s.value="success",n())}}catch(x){b.value=x,s.value="error"}finally{d.value=!1}}});return(h,g)=>{const x=ct("icon-loading"),C=ct("icon-error"),E=ct("icon-success");return i(),r("div",Tb,[Ib,s.value=="init"?(i(),r(L,{key:0},[t("div",Lb,[Mb,t("div",Ob,[Nb,t("div",jb,[P(t("select",{"onUpdate:modelValue":g[0]||(g[0]=$=>p.value=$),onChange:f},[(i(),r(L,null,G(m,$=>t("option",{value:$.name},w($.title),9,qb)),64))],544),[[Q,p.value]])]),t("div",Rb,[z(ht),X(" "+w(u(p.value)),1)])]),t("div",Gb,[Vb,y(v).loading?(i(),r("div",Ub,Zb)):(i(),r("div",Hb,[y(v).members.length>0?(i(!0),r(L,{key:0},G(y(v).members,$=>(i(),r("label",null,[P(t("input",{type:"checkbox","onUpdate:modelValue":g[1]||(g[1]=A=>c.value=A),value:$.path},null,8,Jb),[[jt,c.value]]),X(" \u3010"+w($.model)+"\u3011"+w($.name)+" "+w($.path)+" ["+w($.sizeStr)+"] ",1)]))),256)):(i(),r("span",Kb," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))])),t("div",Xb,[z(ht),Qb])])]),t("div",tv,[t("div",{class:"close",onClick:o,disabled:d.value},"\u53D6\u6D88",8,ev),t("div",{class:"next",onClick:l,disabled:d.value},"\u521B\u5EFA",8,av)])],64)):s.value=="loading"?(i(),r("div",ov,[z(x,{size:60,color:"#666"}),nv])):s.value=="error"?(i(),r(L,{key:2},[t("div",iv,[z(C),t("span",null,w(b.value),1)]),t("div",rv,[t("div",{class:"close",onClick:o},"\u5173\u95ED"),t("div",{class:"next",onClick:l,disabled:d.value},"\u91CD\u65B0\u521B\u5EFA",8,sv)])],64)):s.value=="success"?(i(),r(L,{key:3},[t("div",dv,[z(E),cv,uv]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])],64)):D("",!0)])}}});var pv=S(lv,[["__scopeId","data-v-7fc91c6d"]]);const fv={class:"actioner-container"},mv={class:"actioner-container_body"},bv=["value"],vv=T({props:{Close:{type:Function,required:!0},raid:{type:Object,required:!0}},setup(e){const a=e,o=()=>{a.Close()},n=F("");return(()=>{B.Raid.Detail.POST({path:a.raid.path}).then(b=>{if(b.data){const{result:m,error:p}=b.data;p?n.value=p:n.value=(m==null?void 0:m.detail)||""}}).catch(b=>{n.value=b.message})})(),(b,m)=>(i(),r("div",fv,[t("div",mv,[t("textarea",{value:n.value},null,8,bv)]),t("div",{class:"actioner-container_footer"},[t("div",{class:"close",onClick:o},"\u5173\u95ED")])]))}});var gv=S(vv,[["__scopeId","data-v-51f9d7a2"]]);const Le=e=>(N("data-v-c07c8244"),e=e(),j(),e),_v={class:"actioner-container"},hv={class:"actioner-container_header"},xv={class:"actioner-container_body"},kv={class:"label-item"},wv=Le(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),yv={class:"label-item_value"},Fv={disabled:""},Cv={class:"label-item"},Ev=Le(()=>t("div",{class:"label-item_key"}," \u9009\u62E9\u786C\u76D8\uFF08\u9009\u62E9\u88AB\u6DFB\u52A0\u5230RAID\u7684\u786C\u76D8\uFF09\uFF1A ",-1)),$v={key:0,class:"label-item_value"},Dv=Le(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),Bv=[Dv],Yv={key:1,class:"label-item_value"},Av=["value"],Sv={key:1,class:"msg-warning"},zv={class:"actioner-container_footer"},Pv=["disabled"],Tv=["disabled"],Iv=T({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=()=>Y(this,null,function*(){const u=p.value;if(u==""){k.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}m.value=!0;const d=k.Loading("\u4FDD\u5B58\u4E2D...");try{const v=yield B.Raid.Add.POST({path:a.raid.path,memberPath:u});if(v.data){const{error:f,success:_}=v.data;if(f)throw f;(_||0)==0&&(k.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(v){k.Error(`${v}`)}finally{m.value=!1,d.Close()}}),b=rt({loading:!1,members:[]}),m=F(!1),p=F("");return(()=>Y(this,null,function*(){b.loading=!0,m.value=!0;try{const u=yield B.Raid.CreateList.GET();if(u!=null&&u.data){const{success:d,error:v,result:f}=u.data;if(f&&(b.members=f.members||[]),v)throw v}}catch(u){console.log(u)}finally{m.value=!1,b.loading=!1}}))(),(u,d)=>(i(),r("div",_v,[t("div",hv,[t("span",null,"RAID - "+w(e.raid.name)+" \u4FEE\u6539",1)]),t("div",xv,[t("div",kv,[wv,t("div",yv,[t("select",Fv,[t("option",null,w(e.raid.name)+"_"+w(e.raid.venderModel)+" ("+w(e.raid.path)+"\uFF0C"+w(e.raid.level)+"\uFF0C"+w(e.raid.size)+") ",1)])])]),t("div",Cv,[Ev,y(b).loading?(i(),r("div",$v,Bv)):(i(),r("div",Yv,[y(b).members.length>0?(i(!0),r(L,{key:0},G(y(b).members,v=>(i(),r("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":d[0]||(d[0]=f=>p.value=f),value:v.path},null,8,Av),[[vt,p.value]]),X(" \u3010"+w(v.model)+"\u3011"+w(v.name)+" "+w(v.path)+" ["+w(v.sizeStr)+"] ",1)]))),256)):(i(),r("span",Sv," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",zv,[t("div",{class:"close",onClick:o,disabled:m.value},"\u53D6\u6D88",8,Pv),t("div",{class:"next",onClick:s,disabled:m.value},"\u4FDD\u5B58",8,Tv)])]))}});var Lv=S(Iv,[["__scopeId","data-v-c07c8244"]]);const pa=e=>(N("data-v-13dc2cd6"),e=e(),j(),e),Mv={class:"actioner-container"},Ov={class:"actioner-container_header"},Nv={class:"actioner-container_body"},jv={class:"label-item"},qv=pa(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),Rv={class:"label-item_value"},Gv={disabled:""},Vv={class:"label-item"},Uv=pa(()=>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)),Wv={class:"label-item_value"},Zv=["value"],Hv={class:"actioner-container_footer"},Jv=["disabled"],Kv=["disabled"],Xv=T({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=()=>Y(this,null,function*(){const p=m.value;if(p==""){k.Warning("\u8BF7\u9009\u62E9\u8981\u5220\u9664\u7684\u786C\u76D8");return}b.value=!0;const c=k.Loading("\u4FDD\u5B58\u4E2D...");try{const u=yield B.Raid.Remove.POST({path:a.raid.path,memberPath:p});if(u.data){const{error:d,success:v}=u.data;if(d)throw d;(v||0)==0&&(k.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(u){k.Error(`${u}`)}finally{b.value=!1,c.Close()}}),b=F(!1),m=F("");return(p,c)=>(i(),r("div",Mv,[t("div",Ov,[t("span",null,"RAID - "+w(e.raid.name)+" \u79FB\u9664",1)]),t("div",Nv,[t("div",jv,[qv,t("div",Rv,[t("select",Gv,[t("option",null,w(e.raid.name)+"_"+w(e.raid.venderModel)+" ("+w(e.raid.path)+"\uFF0C"+w(e.raid.level)+"\uFF0C"+w(e.raid.size)+") ",1)])])]),t("div",Vv,[Uv,t("div",Wv,[(i(!0),r(L,null,G(e.raid.members,u=>(i(),r("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":c[0]||(c[0]=d=>m.value=d),value:u},null,8,Zv),[[vt,m.value]]),X(" "+w(u),1)]))),256))])])]),t("div",Hv,[t("div",{class:"close",onClick:o,disabled:b.value},"\u53D6\u6D88",8,Jv),t("div",{class:"next",onClick:s,disabled:b.value},"\u4FDD\u5B58",8,Kv)])]))}});var Qv=S(Xv,[["__scopeId","data-v-13dc2cd6"]]);const Me=e=>(N("data-v-5643983d"),e=e(),j(),e),tg={class:"actioner-container"},eg={class:"actioner-container_header"},ag={class:"actioner-container_body"},og={class:"label-item"},ng=Me(()=>t("div",{class:"label-item_key"}," \u8BBE\u5907 ",-1)),ig={class:"label-item_value"},rg={disabled:""},sg={class:"label-item"},dg=Me(()=>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)),cg={key:0,class:"label-item_value"},ug=Me(()=>t("span",{class:"msg-warning"}," \u68C0\u6D4B\u4E2D... ",-1)),lg=[ug],pg={key:1,class:"label-item_value"},fg=["value"],mg={key:1,class:"msg-warning"},bg={class:"actioner-container_footer"},vg=["disabled"],gg=["disabled"],_g=T({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=()=>Y(this,null,function*(){const u=p.value;if(u==""){k.Warning("\u8BF7\u9009\u62E9\u8981\u6DFB\u52A0\u7684\u786C\u76D8");return}m.value=!0;const d=k.Loading("\u4FDD\u5B58\u4E2D...");try{const v=yield B.Raid.Recover.POST({path:a.raid.path,memberPath:u});if(v.data){const{error:f,success:_}=v.data;if(f)throw f;(_||0)==0&&(k.Success("\u4FDD\u5B58\u6210\u529F"),n(),o())}}catch(v){k.Error(`${v}`)}finally{m.value=!1,d.Close()}}),b=rt({loading:!1,members:[]}),m=F(!1),p=F("");return(()=>Y(this,null,function*(){b.loading=!0,m.value=!0;try{const u=yield B.Raid.CreateList.GET();if(u!=null&&u.data){const{success:d,error:v,result:f}=u.data;if(f&&(b.members=f.members||[]),v)throw v}}catch(u){console.log(u)}finally{m.value=!1,b.loading=!1}}))(),(u,d)=>(i(),r("div",tg,[t("div",eg,[t("span",null,"RAID - "+w(e.raid.name)+" \u6062\u590D",1)]),t("div",ag,[t("div",og,[ng,t("div",ig,[t("select",rg,[t("option",null,w(e.raid.name)+"_"+w(e.raid.venderModel)+" ("+w(e.raid.path)+"\uFF0C"+w(e.raid.level)+"\uFF0C"+w(e.raid.size)+") ",1)])])]),t("div",sg,[dg,y(b).loading?(i(),r("div",cg,lg)):(i(),r("div",pg,[y(b).members.length>0?(i(!0),r(L,{key:0},G(y(b).members,v=>(i(),r("label",null,[P(t("input",{type:"radio","onUpdate:modelValue":d[0]||(d[0]=f=>p.value=f),value:v.path},null,8,fg),[[vt,p.value]]),X(" \u3010"+w(v.model)+"\u3011"+w(v.name)+" "+w(v.path)+" ["+w(v.sizeStr)+"] ",1)]))),256)):(i(),r("span",mg," \u68C0\u6D4B\u4E0D\u5230\u53EF\u7528\u78C1\u76D8\u9635\u5217\u6210\u5458... "))]))])]),t("div",bg,[t("div",{class:"close",onClick:o,disabled:m.value},"\u53D6\u6D88",8,vg),t("div",{class:"next",onClick:s,disabled:m.value},"\u4FDD\u5B58",8,gg)])]))}});var hg=S(_g,[["__scopeId","data-v-5643983d"]]);const xg={class:"action-main"},kg=T({props:{Close:{type:Function,required:!0},setup:{type:String,default:"create"},raid:{type:Object},success:{type:Function}},setup(e){return(a,o)=>(i(),O(at,{type:2},{default:q(()=>[t("div",xg,[e.setup=="create"?(i(),O(pv,{key:0,Close:e.Close},null,8,["Close"])):e.setup=="info"&&e.raid!=null?(i(),O(gv,{key:1,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="edit"&&e.raid!=null?(i(),O(Lv,{key:2,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="remove"&&e.raid!=null?(i(),O(Qv,{key:3,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):e.setup=="recover"&&e.raid!=null?(i(),O(hg,{key:4,Close:e.Close,raid:e.raid,success:e.success},null,8,["Close","raid","success"])):D("",!0)])]),_:1}))}});var wg=S(kg,[["__scopeId","data-v-6ef94d02"]]);const Ht=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(wg,ot(K({},e),{Close:()=>{n()}}));o.use(Qe),o.mount(a);const n=()=>{o.unmount(),a.remove()};return{Close:n}},oe=e=>(N("data-v-aae61368"),e=e(),j(),e),yg={id:"page"},Fg=oe(()=>t("h2",{name:"content"}," RAID\u7BA1\u7406",-1)),Cg=oe(()=>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)),Eg={class:"btns"},$g=["disabled"],Dg={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Bg={class:"table cbi-section-table"},Yg={style:{}},Ag=oe(()=>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)),Sg={class:"tr cbi-section-table-row"},zg={class:"td cbi-value-field"},Pg={class:"td cbi-value-field"},Tg=["title"],Ig={class:"item-status"},Lg={key:0,class:"item-status"},Mg={class:"td cbi-value-field"},Og={class:"td cbi-value-field"},Ng={class:"td cbi-value-field"},jg=oe(()=>t("br",null,null,-1)),qg={class:"td cbi-value-field"},Rg=oe(()=>t("br",null,null,-1)),Gg={key:1,href:"/cgi-bin/luci/admin/quickstart/pages/"},Vg={class:"td cbi-section-table-cell nowrap cbi-section-actions"},Ug=["disabled","onClick"],Wg=["disabled","onClick"],Zg=["onClick"],Hg=["onClick"],Jg=["onClick"],Kg=T({setup(e){const a=rt({disksList:[]}),o=()=>Y(this,null,function*(){try{const l=yield B.Raid.List.GET();if(l!=null&&l.data){const{success:h,error:g,result:x}=l.data;if(x&&(a.disksList=x.disks||[]),g)throw g}}catch(l){console.log(l)}});o();const n=setInterval(()=>{o()},5e3);Ce(()=>{clearInterval(n)});const s=l=>{switch(l.level){case"raid0":case"jbod":return!0}return l.status.indexOf("degraded")!=-1||l.status.indexOf("resyncing(")!=-1},b=l=>{let h=[];return l.childrens&&l.childrens.forEach(g=>{g.mountPoint&&h.push(`${g.name}(${g.mountPoint})`)}),h},m=()=>Y(this,null,function*(){Ht({setup:"create",success:()=>{o()}})}),p=l=>{Ht({setup:"info",raid:l})},c=l=>Y(this,null,function*(){if(l.childrens&&l.childrens.length>0&&l.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 ${l.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 ${l.name} \u5417?`))return;const h=k.Loading("\u5220\u9664\u4E2D...");try{const g=yield B.Raid.Delete.POST({path:l.path,members:l.members});if(g.data){const{success:x,error:C}=g.data;if(C)throw C;(x||0)==0&&(k.Success("\u5220\u9664\u6210\u529F"),o())}}catch(g){k.Error(`${g}`)}finally{h.Close()}}),u=l=>{Ht({setup:"edit",raid:l,success:()=>{o()}})},d=l=>{Ht({setup:"remove",raid:l,success:()=>{o()}})},v=l=>{Ht({setup:"recover",raid:l,success:()=>{o()}})},f=F(!1),_=()=>{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:()=>Y(this,null,function*(){f.value=!0;const l=k.Loading("\u626B\u63CF\u4E2D...");try{const h=yield B.Raid.Autofix.GET();if(h.data){const{error:g,success:x}=h.data;if(g)throw g;(x||0)==0&&(k.Success("\u6062\u590D\u5B8C\u6210"),o())}}catch(h){k.Error(`${h}`)}finally{l.Close(),f.value=!1}}),clearTitle:"\u53D6\u6D88",clear:()=>{}})};return(l,h)=>(i(),r("div",yg,[Fg,Cg,t("div",Eg,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[0]||(h[0]=g=>m())},"\u521B\u5EFARAID"),t("button",{class:"btn cbi-button cbi-button-apply",onClick:h[1]||(h[1]=g=>_()),disabled:f.value},"\u626B\u63CF\u6062\u590DRAID",8,$g)]),t("div",null,[t("div",Dg,[t("table",Bg,[t("tbody",Yg,[Ag,(i(!0),r(L,null,G(y(a).disksList,g=>(i(),r("tr",Sg,[t("td",zg,[t("b",null,w(g.name),1)]),t("td",Pg,[t("b",null,w(g.path),1)]),t("td",{class:"td cbi-value-field",title:g.status+g.rebuildStatus},[t("b",Ig,w(g.status),1),g.rebuildStatus?(i(),r("b",Lg,w(`(${g.rebuildStatus})`),1)):D("",!0)],8,Tg),t("td",Mg,[t("b",null,w(g.level),1)]),t("td",Og,[t("b",null,w(g.size),1)]),t("td",Ng,[(i(!0),r(L,null,G(g.members,x=>(i(),r("b",null,[X(w(x)+" ",1),jg]))),256))]),t("td",qg,[b(g).length>0?(i(!0),r(L,{key:0},G(b(g),x=>(i(),r("b",null,[X(w(x)+" ",1),Rg]))),256)):(i(),r("a",Gg,"\u53BB\u6302\u8F7D"))]),t("td",Vg,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6269\u5145",disabled:s(g),onClick:x=>u(g)},"\u6269\u5145",8,Ug),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u79FB\u9664",disabled:s(g),onClick:x=>d(g)},"\u79FB\u9664",8,Wg),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u6062\u590D",onClick:x=>v(g)},"\u6062\u590D",8,Zg),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:x=>p(g)},"\u8BE6\u60C5",8,Hg),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=>c(g)},"\u5220\u9664",8,Jg)])]))),256))])])])])]))}});var Xg=S(Kg,[["__scopeId","data-v-aae61368"]]);const fa=e=>(N("data-v-2bc40d1c"),e=e(),j(),e),Qg={id:"page"},t_=fa(()=>t("h2",{name:"content"},"S.M.A.R.T.",-1)),e_=fa(()=>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)),a_={class:"tabs"},o_=["href","onClick"],n_=T({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=F(!1),n=rt({global:{enable:!1,powermode:"never",tmpDiff:0,tmpMax:0},devices:[],tasks:[]}),s=p=>{const{global:c,devices:u,tasks:d}=p;c&&(n.global.enable=c.enable||!1,n.global.powermode=c.powermode||"never"),n.devices=u||[],n.tasks=d||[]};(()=>Y(this,null,function*(){try{const p=yield B.Smart.Config.GET();if(p.data){const{result:c}=p.data;c&&s(c)}}catch(p){}finally{o.value=!0}}))();const m=p=>Y(this,null,function*(){const c=k.Loading("\u4FDD\u5B58\u4E2D...");try{const u=yield B.Smart.Config.POST(p);if(u.data){console.log(u.data);const{success:d,error:v,result:f}=u.data;if(v)throw v;(d||0)==0&&(k.Success("\u4FDD\u5B58\u6210\u529F"),f&&s(f))}}catch(u){k.Error(`${u}`)}finally{c.Close()}});return(p,c)=>{const u=ct("router-link"),d=ct("router-view");return i(),r("div",Qg,[t_,e_,t("ul",a_,[(i(),r(L,null,G(a,v=>z(u,{to:v.to,custom:"",key:v.to},{default:q(({route:f,href:_,navigate:l,isActive:h,isExactActive:g})=>[t("li",{class:dt({"active cbi-tab":h&&g})},[t("a",{href:_,onClick:l},w(v.name),9,o_)],2)]),_:2},1032,["to"])),64))]),o.value?(i(),O(d,{key:0,name:"default"},{default:q(({Component:v,route:f})=>[(i(),O(Ya,null,{default:q(()=>[(i(),O(Aa(v),{key:f.path,config:y(n),saveData:m},null,8,["config"]))]),_:2},1024))]),_:1})):D("",!0)])}}});var i_=S(n_,[["__scopeId","data-v-2bc40d1c"]]);const r_={class:"action-main"},s_=T({setup(e){return(a,o)=>(i(),O(at,{type:2},{default:q(()=>[t("div",r_,[zt(a.$slots,"default",{},void 0,!0)])]),_:3}))}});var he=S(s_,[["__scopeId","data-v-742230ae"]]);const d_={class:"actioner-container"},c_={class:"actioner-container_header"},u_={class:"actioner-container_body"},l_={class:"cbi-value"},p_=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),f_={class:"cbi-value-field"},m_={class:"cbi-value-description"},b_={class:"cbi-value"},v_=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),g_={class:"cbi-value-field"},__={class:"cbi-checkbox"},h_=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),x_=t("option",{value:0},"\u7981\u7528",-1),k_=["value"],w_=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),y_={class:"cbi-value"},F_=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),C_={class:"cbi-value-field"},E_={class:"cbi-checkbox"},$_=t("option",{value:-1},"\u4F7F\u7528\u5168\u5C40\u914D\u7F6E",-1),D_=t("option",{value:0},"\u7981\u7528",-1),B_=["value"],Y_=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),A_={class:"actioner-container_footer"},S_=["disabled"],z_=["disabled"],P_=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0},device:{type:Object},next:{type:Function,required:!0}},setup(e){var m,p,c;const a=e;console.log(a.device);const o=F(!1),n=rt({tmpDiff:((m=a.device)==null?void 0:m.tmpDiff)||0,tmpMax:((p=a.device)==null?void 0:p.tmpMax)||0,devicePath:((c=a.device)==null?void 0:c.devicePath)||""}),s=()=>{o.value=!0,a.close()},b=()=>Y(this,null,function*(){o.value=!0;try{yield a.next({tmpDiff:n.tmpDiff,tmpMax:n.tmpMax,devicePath:n.devicePath}),o.value=!1,s()}catch(u){}});return(u,d)=>(i(),O(he,null,{default:q(()=>[t("div",d_,[t("div",c_,[t("span",null," S.M.A.R.T. \xBB \u8BBE\u5907 \xBB "+w(e.disk.path),1)]),t("div",u_,[t("div",l_,[p_,t("div",f_,[t("div",m_,w(e.disk.model)+" [ "+w(e.disk.path)+"\uFF0C"+w(e.disk.sizeStr)+" ] ",1)])]),t("div",b_,[v_,t("div",g_,[t("div",__,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":d[0]||(d[0]=v=>y(n).tmpDiff=v)},[h_,x_,(i(),r(L,null,G(20,v=>t("option",{value:v},w(v)+"\xB0C",9,k_)),64))],512),[[Q,y(n).tmpDiff,void 0,{number:!0}]])]),w_])]),t("div",y_,[F_,t("div",C_,[t("div",E_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":d[1]||(d[1]=v=>y(n).tmpMax=v)},[$_,D_,(i(),r(L,null,G(20,v=>t("option",{value:v*5},w(v*5)+"\xB0C",9,B_)),64))],512),[[Q,y(n).tmpMax,void 0,{number:!0}]])]),Y_])])]),t("div",A_,[t("button",{class:"close",onClick:s,disabled:o.value},"\u53D6\u6D88",8,S_),t("button",{class:"next",onClick:b,disabled:o.value},"\u4FDD\u5B58",8,z_)])])]),_:1}))}}),T_={class:"actioner-container"},I_=t("div",{class:"actioner-container_header"},[t("span",null," \u521B\u5EFA\u8BA1\u5212\u4EFB\u52A1 ")],-1),L_={class:"actioner-container_body"},M_={class:"cbi-value"},O_=t("label",{class:"cbi-value-title"}," \u78C1\u76D8 ",-1),N_={class:"cbi-value-field"},j_={class:"cbi-checkbox"},q_=t("option",{value:""},"\u9009\u62E9\u78C1\u76D8",-1),R_=["value"],G_={class:"cbi-value"},V_=t("label",{class:"cbi-value-title"}," \u7C7B\u578B ",-1),U_={class:"cbi-value-field"},W_={class:"cbi-checkbox"},Z_=t("option",{value:"short"},"\u77ED\u6682\u81EA\u68C0",-1),H_=t("option",{value:"long"},"\u957F\u65F6\u81EA\u68C0",-1),J_=t("option",{value:"conveyance"},"\u4F20\u8F93\u65F6\u81EA\u68C0",-1),K_=t("option",{value:"offline"},"\u79BB\u7EBF\u65F6\u81EA\u68C0",-1),X_=[Z_,H_,J_,K_],Q_={class:"cbi-value"},th=t("label",{class:"cbi-value-title"}," \u5C0F\u65F6 ",-1),eh={class:"cbi-value-field"},ah={class:"cbi-checkbox"},oh=t("option",{value:"*"},"*",-1),nh=["value"],ih=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5C0F\u65F6 ",-1),rh={class:"cbi-value"},sh=t("label",{class:"cbi-value-title"}," \u5929 ",-1),dh={class:"cbi-value-field"},ch={class:"cbi-checkbox"},uh=t("option",{value:"*"},"*",-1),lh=["value"],ph=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u5929 ",-1),fh={class:"cbi-value"},mh=t("label",{class:"cbi-value-title"}," \u6708 ",-1),bh={class:"cbi-value-field"},vh={class:"cbi-checkbox"},gh=t("option",{value:"*"},"*",-1),_h=["value"],hh=t("div",{class:"cbi-value-description"}," * \u8868\u793A\u6BCF\u6708 ",-1),xh={class:"actioner-container_footer"},kh=["disabled"],wh=["disabled"],yh=T({props:{close:{type:Function,required:!0},config:{type:Object,required:!0},next:{type:Function,required:!0}},setup(e){const a=e,o=F(!1),n=rt({type:"short",devicePath:"",month:"*",dayPerMonth:"*",hour:"*"}),s=F([]);(()=>Y(this,null,function*(){try{const c=yield B.Smart.List.GET();if(c.data){const{result:u,error:d}=c.data;u&&u.disks&&(s.value=u.disks)}}catch(c){}}))();const m=()=>{o.value=!0,a.close()},p=()=>Y(this,null,function*(){if(n.devicePath==""){k.Warning("\u8BF7\u9009\u62E9\u78C1\u76D8");return}o.value=!0;try{yield a.next(n),m()}catch(c){}finally{o.value=!1}});return(c,u)=>(i(),O(he,null,{default:q(()=>[t("div",T_,[I_,t("div",L_,[t("div",M_,[O_,t("div",N_,[t("div",j_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[0]||(u[0]=d=>y(n).devicePath=d)},[q_,(i(!0),r(L,null,G(s.value,d=>(i(),r("option",{value:d.path},w(d.model)+" [ "+w(d.path)+"\uFF0C"+w(d.sizeStr)+" ] ",9,R_))),256))],512),[[Q,y(n).devicePath,void 0,{trim:!0}]])])])]),t("div",G_,[V_,t("div",U_,[t("div",W_,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[1]||(u[1]=d=>y(n).type=d)},X_,512),[[Q,y(n).type,void 0,{trim:!0}]])])])]),t("div",Q_,[th,t("div",eh,[t("div",ah,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[2]||(u[2]=d=>y(n).hour=d)},[oh,(i(),r(L,null,G(24,(d,v)=>t("option",{value:`${v}`},w(v),9,nh)),64))],512),[[Q,y(n).hour,void 0,{trim:!0}]])]),ih])]),t("div",rh,[sh,t("div",dh,[t("div",ch,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[3]||(u[3]=d=>y(n).dayPerMonth=d)},[uh,(i(),r(L,null,G(31,d=>t("option",{value:`${d}`},w(d),9,lh)),64))],512),[[Q,y(n).dayPerMonth,void 0,{trim:!0}]])]),ph])]),t("div",fh,[mh,t("div",bh,[t("div",vh,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":u[4]||(u[4]=d=>y(n).month=d)},[gh,(i(),r(L,null,G(12,(d,v)=>t("option",{value:`${d}`},w(d),9,_h)),64))],512),[[Q,y(n).month,void 0,{trim:!0}]])]),hh])])]),t("div",xh,[t("button",{class:"close",onClick:m,disabled:o.value},"\u53D6\u6D88",8,kh),t("button",{class:"next",onClick:p,disabled:o.value},"\u4FDD\u5B58",8,wh)])])]),_:1}))}}),Fh=e=>(N("data-v-45dd818a"),e=e(),j(),e),Ch={class:"actioner-container"},Eh=Fh(()=>t("div",{class:"actioner-container_header"},[t("span",null," \u8FD0\u884C\u8C03\u8BD5 ")],-1)),$h={class:"actioner-container_body"},Dh=["value"],Bh={class:"actioner-container_footer"},Yh=["disabled"],Ah=["disabled"],Sh=T({props:{close:{type:Function,required:!0},task:{type:Object,required:!0}},setup(e){const a=e,o=F(!1),n=F(""),s=F(""),b=F(""),m=()=>Y(this,null,function*(){n.value+=".";try{const d=yield B.Smart.Test.Result.POST({type:"selftest",devicePath:a.task.devicePath||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(b.value=v.result),f&&(b.value=f)}}catch(d){d&&(b.value=d)}});m();const p=setInterval(()=>Y(this,null,function*(){yield m()}),5e3);Ce(()=>{clearInterval(p)});const c=()=>{o.value=!0,clearInterval(p),a.close()},u=()=>Y(this,null,function*(){o.value=!0;try{const d=yield B.Smart.Test.POST({type:a.task.type||"short",devicePath:a.task.devicePath||""});if(d.data){const{success:v,error:f,result:_}=d.data;f&&(s.value=f),_&&_.result&&(s.value=_.result)}}catch(d){s.value=d}finally{}});return(d,v)=>(i(),O(he,null,{default:q(()=>[t("div",Ch,[Eh,t("div",$h,[t("textarea",{value:s.value+` `+b.value+` -`+n.value,disabled:""},null,8,bh)]),t("div",vh,[t("div",{class:"close",onClick:c,disabled:o.value},"\u5173\u95ED",8,gh),o.value?D("",!0):(i(),r("div",{key:0,class:"next",onClick:u,disabled:o.value},"\u8FD0\u884C",8,_h))])])]),_:1}))}});var xh=S(hh,[["__scopeId","data-v-45dd818a"]]);const Lt=e=>(N("data-v-7d3ebf99"),e=e(),j(),e),kh={class:"actioner-container"},wh={class:"actioner-container_header"},yh={class:"tabs"},Fh=Lt(()=>t("a",null,"\u8BBE\u5907\u4FE1\u606F",-1)),Ch=[Fh],Eh=Lt(()=>t("a",null,"\u5C5E\u6027",-1)),$h=[Eh],Dh=Lt(()=>t("a",null,"\u81EA\u68C0\u65E5\u5FD7",-1)),Bh=[Dh],Yh=Lt(()=>t("a",null,"\u6269\u5C55\u4FE1\u606F",-1)),Ah=[Yh],Sh={class:"actioner-container_body"},zh={key:0,class:"table"},Ph={class:"tr"},Th=Lt(()=>t("td",{class:"td left"},"\u8BBE\u5907",-1)),Ih={class:"td left"},Lh={class:"tr"},Mh=Lt(()=>t("td",{class:"td left"},"\u578B\u53F7",-1)),Oh={class:"td left"},Nh={class:"tr"},jh=Lt(()=>t("td",{class:"td left"},"\u5E8F\u53F7",-1)),qh={class:"td left"},Rh=["value"],Gh=["value"],Vh=["value"],Uh={class:"actioner-container_footer"},Wh=["disabled"],Zh=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=y(!1),n=y("info"),s=d=>{switch(n.value=d,d){case"info":break;case"attribute":c();break;case"log":p();break;case"extend":u();break}},b=()=>{o.value=!0,a.close()},m=it({log:"",attribute:"",extend:""}),p=()=>A(this,null,function*(){try{const d=yield Y.Smart.Test.Result.POST({type:"selftest",devicePath:a.disk.path||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(m.log=v.result),f&&(m.log=f)}}catch(d){m.log=d}}),c=()=>A(this,null,function*(){try{const d=yield Y.Smart.Attribute.Result.POST({devicePath:a.disk.path||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(m.attribute=v.result),f&&(m.attribute=f)}}catch(d){m.attribute=d}}),u=()=>A(this,null,function*(){try{const d=yield Y.Smart.Extend.Result.POST({devicePath:a.disk.path||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(m.extend=v.result),f&&(m.extend=f)}}catch(d){m.extend=d}});return(d,v)=>(i(),M(be,null,{default:q(()=>[t("div",kh,[t("div",wh,[t("ul",yh,[t("li",{class:dt({"active cbi-tab":n.value=="info"}),onClick:v[0]||(v[0]=f=>s("info"))},Ch,2),t("li",{class:dt({"active cbi-tab":n.value=="attribute"}),onClick:v[1]||(v[1]=f=>s("attribute"))},$h,2),t("li",{class:dt({"active cbi-tab":n.value=="log"}),onClick:v[2]||(v[2]=f=>s("log"))},Bh,2),t("li",{class:dt({"active cbi-tab":n.value=="extend"}),onClick:v[3]||(v[3]=f=>s("extend"))},Ah,2)])]),t("div",Sh,[n.value=="info"?(i(),r("table",zh,[t("tr",Ph,[Th,t("td",Ih,k(e.disk.path),1)]),t("tr",Lh,[Mh,t("td",Oh,k(e.disk.model),1)]),t("tr",Nh,[jh,t("td",qh,k(e.disk.serial),1)])])):n.value=="attribute"?(i(),r("textarea",{key:1,disabled:"",value:F(m).attribute},null,8,Rh)):n.value=="log"?(i(),r("textarea",{key:2,disabled:"",value:F(m).log},null,8,Gh)):n.value=="extend"?(i(),r("textarea",{key:3,disabled:"",value:F(m).extend},null,8,Vh)):D("",!0)]),t("div",Uh,[t("div",{class:"close",onClick:b,disabled:o.value},"\u5173\u95ED",8,Wh)])])]),_:1}))}});var Hh=S(Zh,[["__scopeId","data-v-7d3ebf99"]]);const Jh=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(k_,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};se(o,a)},Kh=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(uh,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};se(o,a)},Xh=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(xh,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};se(o,a)},Qh=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(Hh,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};se(o,a)},tx={class:"cbi-section"},ex={class:"cbi-value"},ax=t("label",{class:"cbi-value-title"}," \u542F\u7528 ",-1),ox={class:"cbi-value-field"},nx={class:"cbi-checkbox"},ix=["value"],rx={class:"cbi-value"},sx=t("label",{class:"cbi-value-title"}," \u7535\u6E90\u6A21\u5F0F ",-1),dx={class:"cbi-value-field"},cx={class:"cbi-checkbox"},ux=t("option",{value:"never"},"\u6C38\u4E0D",-1),lx=t("option",{value:"sleep"},"\u7761\u7720",-1),px=t("option",{value:"standby"},"\u5F85\u673A",-1),fx=t("option",{value:"idle"},"\u95F2\u7F6E",-1),mx=[ux,lx,px,fx],bx=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),vx={class:"cbi-value"},gx=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),_x={class:"cbi-value-field"},hx={class:"cbi-checkbox"},xx=t("option",{value:0},"\u7981\u7528",-1),kx=["value"],wx=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),yx={class:"cbi-value"},Fx=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),Cx={class:"cbi-value-field"},Ex={class:"cbi-checkbox"},$x=t("option",{value:0},"\u7981\u7528",-1),Dx=["value"],Bx=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),Yx={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Ax={class:"table cbi-section-table"},Sx=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),zx={class:"tr cbi-section-table-row"},Px={class:"td cbi-value-field"},Tx={class:"td cbi-value-field"},Ix={class:"td cbi-value-field"},Lx={class:"td cbi-value-field"},Mx={class:"td cbi-value-field"},Ox={class:"td cbi-value-field"},Nx={class:"td cbi-value-field"},jx={class:"td cbi-value-field"},qx=["onClick"],Rx=["onClick"],Gx=T({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(e){return A(this,null,function*(){let a,o;const n=e,s=it(n.config),b=()=>{s.global.tmpDiff=n.config.global.tmpDiff||0,s.global.tmpMax=n.config.global.tmpMax||0,s.global.enable=n.config.global.enable||!1,s.global.powermode=n.config.global.powermode||"never",s.devices=n.config.devices||[],s.tasks=n.config.tasks||[]},m=y([]),p=()=>A(this,null,function*(){try{const f=yield Y.Smart.List.GET();if(f.data){const{result:_,error:l}=f.data;_&&_.disks&&(m.value=_.disks||[])}}catch(f){}});[a,o]=Re(()=>p()),yield a,o();const c=setInterval(()=>A(this,null,function*(){yield p()}),5e3);ke(()=>{clearInterval(c)});const u=()=>A(this,null,function*(){yield n.saveData({global:s.global,devices:n.config.devices,tasks:n.config.tasks}),b()}),d=f=>{Qh({disk:f})},v=(f,_)=>A(this,null,function*(){let l=null,h=-1;if(s.devices){for(let g=0;gA(this,null,function*(){g.tmpDiff==-1&&(g.tmpDiff=s.global.tmpDiff),g.tmpMax==-1&&(g.tmpMax=s.global.tmpMax),g.devicePath==""&&(g.devicePath=f.path);let x=[...s.devices];h>=0&&(x[h]=g);const C=new Map;x.forEach(E=>{E.devicePath!=null&&C.set(E.devicePath,null)});for(let E=0;E(i(),r(L,null,[t("fieldset",tx,[t("div",ex,[ax,t("div",ox,[t("div",nx,[P(t("input",{type:"checkbox","onUpdate:modelValue":_[0]||(_[0]=l=>F(s).global.enable=l),value:!F(s).global.enable},null,8,ix),[[Ot,F(s).global.enable]])])])]),t("div",rx,[sx,t("div",dx,[t("div",cx,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[1]||(_[1]=l=>F(s).global.powermode=l)},mx,512),[[Q,F(s).global.powermode,void 0,{trim:!0}]])]),bx])]),t("div",vx,[gx,t("div",_x,[t("div",hx,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[2]||(_[2]=l=>F(s).global.tmpDiff=l)},[xx,(i(),r(L,null,G(15,l=>t("option",{value:l},k(l)+"\xB0C",9,kx)),64))],512),[[Q,F(s).global.tmpDiff,void 0,{number:!0}]])]),wx])]),t("div",yx,[Fx,t("div",Cx,[t("div",Ex,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[3]||(_[3]=l=>F(s).global.tmpMax=l)},[$x,(i(),r(L,null,G(20,l=>t("option",{value:l*5},k(l*5)+"\xB0C",9,Dx)),64))],512),[[Q,F(s).global.tmpMax,void 0,{number:!0}]])]),Bx])])]),t("div",Yx,[t("table",Ax,[Sx,t("tbody",null,[(i(!0),r(L,null,G(m.value,(l,h)=>(i(),r("tr",zx,[t("td",Px,[t("b",null,k(l.path),1)]),t("td",Tx,[t("b",null,k(l.model),1)]),t("td",Ix,[t("b",null,k(l.serial),1)]),t("td",Lx,[t("b",null,k(l.sizeStr),1)]),t("td",Mx,[t("b",null,k(l.temp),1)]),t("td",Ox,[t("b",null,k(l.status),1)]),t("td",Nx,[t("b",null,k(l.health),1)]),t("td",jx,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:g=>v(l)},"\u7F16\u8F91",8,qx),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:g=>d(l)},"\u8BE6\u60C5",8,Rx)])]))),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:u})])],64))})}}),Vx={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Ux={class:"table cbi-section-table"},Wx=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),Zx={class:"tr cbi-section-table-row"},Hx={class:"td cbi-value-field"},Jx={class:"td cbi-value-field"},Kx={class:"td cbi-value-field"},Xx={class:"td cbi-value-field"},Qx=["onClick"],tk=["onClick"],ek=T({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=()=>{Kh({config:a.config,disks:[],next:p=>A(this,null,function*(){yield a.saveData({tasks:[...o.tasks,p],global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]})})},b=p=>A(this,null,function*(){const c=[...o.tasks];c.splice(p,1),yield a.saveData({tasks:c,global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]}),m=p=>{Xh({task:p})};return(p,c)=>(i(),r(L,null,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:c[0]||(c[0]=u=>s())},"\u65B0\u5EFA"),t("div",Vx,[t("table",Ux,[Wx,t("tbody",null,[(i(!0),r(L,null,G(F(o).tasks,(u,d)=>(i(),r("tr",Zx,[t("td",Hx,[t("b",null,k(u.devicePath),1)]),t("td",Jx,[t("b",null,k(n(u.type)),1)]),t("td",Kx,[t("b",null,k(u.month)+"/"+k(u.dayPerMonth)+"/"+k(u.hour),1)]),t("td",Xx,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8C03\u8BD5",onClick:v=>m(u)},"\u9884\u89C8",8,Qx),t("button",{class:"cbi-button cbi-button-remove",title:"\u5220\u9664",onClick:v=>b(d)},"\u5220\u9664",8,tk)])]))),256))])])])],64))}}),ak={class:"cbi-section"},ok=["value"],nk=T({setup(e){return A(this,null,function*(){let a,o;const n=y(""),s=()=>A(this,null,function*(){try{const b=yield Y.Smart.Log.GET();if(b.data){const{result:m,error:p}=b.data;m&&m.result&&(n.value=m.result),p&&(n.value=p)}}catch(b){n.value=b}});return[a,o]=Re(()=>s()),yield a,o(),(b,m)=>(i(),r("fieldset",ak,[t("textarea",{value:n.value,disabled:""},null,8,ok)]))})}});var ik=S(nk,[["__scopeId","data-v-76197cba"]]);const rk={},sk={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"},dk=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),ck=[dk];function uk(e,a){return i(),r("svg",sk,ck)}var je=S(rk,[["render",uk]]);const ve=e=>(N("data-v-51cceeb4"),e=e(),j(),e),lk=["onSubmit"],pk={class:"actioner-dns_header"},fk={key:0},mk={key:1},bk={class:"actioner-dns_body"},vk={class:"label-item"},gk=ve(()=>t("div",{class:"label-item_key"},[t("span",null,"\u540D\u79F0")],-1)),_k={class:"label-item_value"},hk={class:"label-item"},xk=ve(()=>t("div",{class:"label-item_key"},[t("span",null,"\u534F\u8BAE\uFF08\u7F51\u7EDC\u83B7\u53D6\u65B9\u5F0F\uFF09")],-1)),kk={class:"label-item_value"},wk=ve(()=>t("option",{value:"dhcp"},"DHCP\u5BA2\u6237\u7AEF",-1)),yk={key:0,value:"pppoe"},Fk=ve(()=>t("option",{value:"static"},"\u9759\u6001\u5730\u5740",-1)),Ck={class:"actioner-dns_footer"},Ek=["disabled"],$k=T({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=()=>A(this,null,function*(){w.Loading("\u914D\u7F6E\u4E2D...").Close(),a.next(n.value),b()}),b=()=>{a.Close&&a.Close()};return(m,p)=>(i(),M(at,{Close:e.Close,type:1},{default:q(()=>[t("form",{class:"actioner-dns",onSubmit:nt(s,["prevent"])},[t("div",pk,[e.name=="wan"?(i(),r("span",fk,k(e.e=="edit"?"\u7F16\u8F91WAN":"\u6DFB\u52A0WAN"),1)):(i(),r("span",mk,k(e.e=="edit"?"\u7F16\u8F91LAN":"\u6DFB\u52A0LAN"),1))]),t("div",bk,[t("div",vk,[gk,t("div",_k,[t("span",null,k(n.value.name.toLocaleUpperCase()),1)])]),t("div",hk,[xk,t("div",kk,[P(t("select",{"onUpdate:modelValue":p[0]||(p[0]=c=>n.value.proto=c)},[wk,e.name=="wan"?(i(),r("option",yk,"PPPoE")):D("",!0),Fk],512),[[Q,n.value.proto]])])])]),t("div",Ck,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:o.value},"\u4FDD\u5B58",8,Ek),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:b},"\u53D6\u6D88")])],40,lk)]),_:1},8,["Close"]))}});var Dk=S($k,[["__scopeId","data-v-51cceeb4"]]);const qe=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=et(Dk,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()}},gt=e=>(N("data-v-589588f0"),e=e(),j(),e),Bk={id:"page"},Yk=gt(()=>t("h2",{name:"content"}," \u7F51\u53E3\u914D\u7F6E",-1)),Ak={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Sk={class:"table cbi-section-table"},zk={width:"200"},Pk=gt(()=>t("col",null,null,-1)),Tk=gt(()=>t("col",null,null,-1)),Ik=gt(()=>t("col",{width:"200"},null,-1)),Lk={class:"tr cbi-section-table-cell"},Mk={class:"th cbi-section-table-cell interface-device","data-widget":"value"},Ok={class:"interface-device-flex"},Nk=gt(()=>t("th",{style:{width:"10px"}},null,-1)),jk=gt(()=>t("th",{style:{width:"32px"}},null,-1)),qk=gt(()=>t("th",null,null,-1)),Rk={class:"tr cbi-section-table-row cbi-rowstyle-1"},Gk={class:"td cbi-value-field interface-device info"},Vk=["name","value","onUpdate:modelValue","onInput"],Uk=gt(()=>t("td",{class:"td cbi-value-field"},null,-1)),Wk={class:"td cbi-value-field"},Zk={class:"td cbi-value-field btns"},Hk=["onClick"],Jk=["onClick"],Kk={class:"tr cbi-section-table-row cbi-rowstyle-1"},Xk={class:"td cbi-value-field"},Qk=gt(()=>t("td",{class:"td cbi-value-field"},null,-1)),tw=gt(()=>t("td",{class:"td cbi-value-field"},null,-1)),ew={class:"tr cbi-section-table-row cbi-rowstyle-1"},aw={class:"td cbi-value-field interface-device info","data-widget":"value"},ow=["name","value","onUpdate:modelValue","onInput"],nw=gt(()=>t("td",{class:"td cbi-value-field"},null,-1)),iw={class:"td cbi-value-field"},rw={class:"td cbi-value-field btns"},sw=["onClick"],dw=["onClick"],cw={class:"tr cbi-section-table-row cbi-rowstyle-1"},uw={class:"td cbi-value-field"},lw=gt(()=>t("td",{class:"td cbi-value-field"},null,-1)),pw=gt(()=>t("td",{class:"td cbi-value-field"},null,-1)),fw={class:"cbi-page-actions control-group"},mw=["disabled"],bw=T({setup(e){const a=it({devices:[],interfaces:[]}),o=y(!1),n=it({lan:[],wan:[]});(()=>{Y.Network.GetInterfaceConfig.GET().then(v=>{if(v.data){const{result:f}=v.data;if(f){a.devices=f.devices||[],a.interfaces=f.interfaces||[];for(let _=0;_{v=="wan"?n.wan.splice(f,1):v=="lan"&&n.lan.splice(f,1)},m=(v,f)=>{if(f==null){let _=v=="wan"?n.wan.length:n.lan.length;_==6&&v=="wan"&&_++,qe({e:"add",name:v,inface:{name:v+`${_}`,proto:"dhcp",ipv4Addr:"",ipv6Addr:"",portName:"",deviceNames:[],ports:[],firewallType:v},next:l=>{v=="wan"?n.wan.push(l):n.lan.push(l),w.Message("\u8BF7\u5728\u4FDD\u5B58\u4EE5\u540E\u524D\u5F80'\u7F51\u7EDC-\u63A5\u53E3'\u9875\u9762\u914D\u7F6E\u63A5\u53E3\u8BE6\u7EC6\u53C2\u6570")}})}else qe({e:"edit",name:v,inface:v=="wan"?n.wan[f]:n.lan[f],next:_=>{v=="wan"?n.wan[f]=_:n.lan[f]=_}})},p=(v,f)=>v?v.indexOf(f):-1,c=(v,f)=>{const l=v.target.value;for(let g=0;g{const l=v.target.value;for(let h=0;hA(this,null,function*(){o.value=!0;const v=[];for(let _=0;_(i(),r("div",Bk,[Yk,t("div",null,[t("div",Ak,[t("table",Sk,[t("colgroup",null,[(i(!0),r(L,null,G(F(a).devices,_=>(i(),r("col",zk))),256)),Pk,Tk,Ik]),t("thead",null,[t("tr",Lk,[(i(!0),r(L,null,G(F(a).devices,_=>(i(),r("th",Mk,[t("div",Ok,[z(Ke,{item:_},null,8,["item"])])]))),256)),Nk,jk,qk])]),t("tbody",null,[(i(!0),r(L,null,G(F(n).lan,(_,l)=>(i(),r("tr",Rk,[(i(!0),r(L,null,G(F(a).devices,h=>(i(),r("td",Gk,[P(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":g=>_.deviceNames=g,onInput:g=>c(g,l)},null,40,Vk),[[Ot,_.deviceNames]])]))),256)),Uk,t("td",Wk,[t("b",null,k(_.name),1)]),t("td",Zk,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:h=>m("lan",l)},"\u7F16\u8F91",8,Hk),l!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>b("lan",l)},"\u5220\u9664 ",8,Jk)):D("",!0)])]))),256)),t("tr",Kk,[(i(!0),r(L,null,G(F(a).devices,_=>(i(),r("td",Xk))),256)),Qk,tw,t("td",{class:"td cbi-value-field btns",onClick:f[0]||(f[0]=_=>m("lan"))},[z(je,{class:"icon"})])]),(i(!0),r(L,null,G(F(n).wan,(_,l)=>(i(),r("tr",ew,[(i(!0),r(L,null,G(F(a).devices,h=>(i(),r("td",aw,[P(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":g=>_.deviceNames=g,onInput:g=>u(g,l)},null,40,ow),[[Ot,_.deviceNames]])]))),256)),nw,t("td",iw,[t("b",null,k(_.name),1)]),t("td",rw,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:h=>m("wan",l)},"\u7F16\u8F91",8,sw),l!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>b("wan",l)},"\u5220\u9664",8,dw)):D("",!0)])]))),256)),t("tr",cw,[(i(!0),r(L,null,G(F(a).devices,_=>(i(),r("td",uw))),256)),lw,pw,t("td",{class:"td cbi-value-field btns",onClick:f[1]||(f[1]=_=>m("wan"))},[z(je,{class:"icon"})])])])])]),t("div",fw,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:"\u4FDD\u5B58\u5E76\u5E94\u7528",onClick:d,disabled:o.value},null,8,mw)])])]))}});var vw=S(bw,[["__scopeId","data-v-589588f0"]]);const gw=()=>window.vue_base||"/cgi-bin/luci/admin/quickstart/pages",ua=Da({history:Ba(gw()),routes:[{name:"IndexPage",path:"/",meta:{title:"\u63A7\u5236\u53F0"},component:Vf},{name:"NetworkPage",path:"/network",meta:{title:"\u7F51\u7EDC\u8BBE\u7F6E\u5411\u5BFC"},component:Zf,children:[{path:"",component:A9},{path:"pppoe",component:J9},{path:"dhcp",component:zm},{path:"gateway",component:kb}]},{name:"RaidPage",path:"/raid",meta:{title:"raid\u5411\u5BFC"},component:Og},{name:"SmartPage",path:"/smart",meta:{title:"smart\u68C0\u6D4B"},component:Ug,children:[{path:"",component:Gx},{path:"task",component:ek},{path:"log",component:ik}]},{path:"/interfaceconfig",component:vw}]});ua.beforeEach((e,a)=>(e.meta.title,!0));const mt=et(Wa);mt.component("svg-menu",to);mt.component("svg-system",ro);mt.component("svg-download",fo);mt.component("svg-store",ko);mt.component("svg-info",$o);mt.component("svg-disk",Ko);mt.component("svg-nav",on);mt.component("progress-item",Ze);mt.component("svg-view-show",pn);mt.component("svg-view-hidden",_n);mt.component("article-item",Cn);mt.use(He);mt.use(ua);mt.use(Ya());mt.mount("#app")});export default _w(); +`+n.value,disabled:""},null,8,Dh)]),t("div",Bh,[t("div",{class:"close",onClick:c,disabled:o.value},"\u5173\u95ED",8,Yh),o.value?D("",!0):(i(),r("div",{key:0,class:"next",onClick:u,disabled:o.value},"\u8FD0\u884C",8,Ah))])])]),_:1}))}});var zh=S(Sh,[["__scopeId","data-v-45dd818a"]]);const Mt=e=>(N("data-v-7d3ebf99"),e=e(),j(),e),Ph={class:"actioner-container"},Th={class:"actioner-container_header"},Ih={class:"tabs"},Lh=Mt(()=>t("a",null,"\u8BBE\u5907\u4FE1\u606F",-1)),Mh=[Lh],Oh=Mt(()=>t("a",null,"\u5C5E\u6027",-1)),Nh=[Oh],jh=Mt(()=>t("a",null,"\u81EA\u68C0\u65E5\u5FD7",-1)),qh=[jh],Rh=Mt(()=>t("a",null,"\u6269\u5C55\u4FE1\u606F",-1)),Gh=[Rh],Vh={class:"actioner-container_body"},Uh={key:0,class:"table"},Wh={class:"tr"},Zh=Mt(()=>t("td",{class:"td left"},"\u8BBE\u5907",-1)),Hh={class:"td left"},Jh={class:"tr"},Kh=Mt(()=>t("td",{class:"td left"},"\u578B\u53F7",-1)),Xh={class:"td left"},Qh={class:"tr"},tx=Mt(()=>t("td",{class:"td left"},"\u5E8F\u53F7",-1)),ex={class:"td left"},ax=["value"],ox=["value"],nx=["value"],ix={class:"actioner-container_footer"},rx=["disabled"],sx=T({props:{close:{type:Function,required:!0},disk:{type:Object,required:!0}},setup(e){const a=e,o=F(!1),n=F("info"),s=d=>{switch(n.value=d,d){case"info":break;case"attribute":c();break;case"log":p();break;case"extend":u();break}},b=()=>{o.value=!0,a.close()},m=rt({log:"",attribute:"",extend:""}),p=()=>Y(this,null,function*(){try{const d=yield B.Smart.Test.Result.POST({type:"selftest",devicePath:a.disk.path||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(m.log=v.result),f&&(m.log=f)}}catch(d){m.log=d}}),c=()=>Y(this,null,function*(){try{const d=yield B.Smart.Attribute.Result.POST({devicePath:a.disk.path||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(m.attribute=v.result),f&&(m.attribute=f)}}catch(d){m.attribute=d}}),u=()=>Y(this,null,function*(){try{const d=yield B.Smart.Extend.Result.POST({devicePath:a.disk.path||""});if(d.data){const{result:v,error:f}=d.data;v&&v.result&&(m.extend=v.result),f&&(m.extend=f)}}catch(d){m.extend=d}});return(d,v)=>(i(),O(he,null,{default:q(()=>[t("div",Ph,[t("div",Th,[t("ul",Ih,[t("li",{class:dt({"active cbi-tab":n.value=="info"}),onClick:v[0]||(v[0]=f=>s("info"))},Mh,2),t("li",{class:dt({"active cbi-tab":n.value=="attribute"}),onClick:v[1]||(v[1]=f=>s("attribute"))},Nh,2),t("li",{class:dt({"active cbi-tab":n.value=="log"}),onClick:v[2]||(v[2]=f=>s("log"))},qh,2),t("li",{class:dt({"active cbi-tab":n.value=="extend"}),onClick:v[3]||(v[3]=f=>s("extend"))},Gh,2)])]),t("div",Vh,[n.value=="info"?(i(),r("table",Uh,[t("tr",Wh,[Zh,t("td",Hh,w(e.disk.path),1)]),t("tr",Jh,[Kh,t("td",Xh,w(e.disk.model),1)]),t("tr",Qh,[tx,t("td",ex,w(e.disk.serial),1)])])):n.value=="attribute"?(i(),r("textarea",{key:1,disabled:"",value:y(m).attribute},null,8,ax)):n.value=="log"?(i(),r("textarea",{key:2,disabled:"",value:y(m).log},null,8,ox)):n.value=="extend"?(i(),r("textarea",{key:3,disabled:"",value:y(m).extend},null,8,nx)):D("",!0)]),t("div",ix,[t("div",{class:"close",onClick:b,disabled:o.value},"\u5173\u95ED",8,rx)])])]),_:1}))}});var dx=S(sx,[["__scopeId","data-v-7d3ebf99"]]);const cx=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(P_,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},ux=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(yh,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},lx=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(zh,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},px=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=z(dx,ot(K({},e),{close:()=>{n()}})),n=()=>{a.remove()};ue(o,a)},fx={class:"cbi-section"},mx={class:"cbi-value"},bx=t("label",{class:"cbi-value-title"}," \u542F\u7528 ",-1),vx={class:"cbi-value-field"},gx={class:"cbi-checkbox"},_x=["value"],hx={class:"cbi-value"},xx=t("label",{class:"cbi-value-title"}," \u7535\u6E90\u6A21\u5F0F ",-1),kx={class:"cbi-value-field"},wx={class:"cbi-checkbox"},yx=t("option",{value:"never"},"\u6C38\u4E0D",-1),Fx=t("option",{value:"sleep"},"\u7761\u7720",-1),Cx=t("option",{value:"standby"},"\u5F85\u673A",-1),Ex=t("option",{value:"idle"},"\u95F2\u7F6E",-1),$x=[yx,Fx,Cx,Ex],Dx=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),Bx={class:"cbi-value"},Yx=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u5DEE\u5F02\uFF09 ",-1),Ax={class:"cbi-value-field"},Sx={class:"cbi-checkbox"},zx=t("option",{value:0},"\u7981\u7528",-1),Px=["value"],Tx=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),Ix={class:"cbi-value"},Lx=t("label",{class:"cbi-value-title"}," \u6E29\u5EA6\u76D1\u6D4B\uFF08\u6700\u5927\uFF09 ",-1),Mx={class:"cbi-value-field"},Ox={class:"cbi-checkbox"},Nx=t("option",{value:0},"\u7981\u7528",-1),jx=["value"],qx=t("div",{class:"cbi-value-description"}," \u5982\u679C\u6E29\u5EA6\u5927\u4E8E\u6216\u7B49\u4E8E N \u6444\u6C0F\u5EA6\u5219\u62A5\u544A. ",-1),Rx={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Gx={class:"table cbi-section-table"},Vx=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),Ux={class:"tr cbi-section-table-row"},Wx={class:"td cbi-value-field"},Zx={class:"td cbi-value-field"},Hx={class:"td cbi-value-field"},Jx={class:"td cbi-value-field"},Kx={class:"td cbi-value-field"},Xx={class:"td cbi-value-field"},Qx={class:"td cbi-value-field"},tk={class:"td cbi-value-field"},ek=["onClick"],ak=["onClick"],ok=T({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(e){return Y(this,null,function*(){let a,o;const n=e,s=rt(n.config),b=()=>{s.global.tmpDiff=n.config.global.tmpDiff||0,s.global.tmpMax=n.config.global.tmpMax||0,s.global.enable=n.config.global.enable||!1,s.global.powermode=n.config.global.powermode||"never",s.devices=n.config.devices||[],s.tasks=n.config.tasks||[]},m=F([]),p=()=>Y(this,null,function*(){try{const f=yield B.Smart.List.GET();if(f.data){const{result:_,error:l}=f.data;_&&_.disks&&(m.value=_.disks||[])}}catch(f){}});[a,o]=We(()=>p()),yield a,o();const c=setInterval(()=>Y(this,null,function*(){yield p()}),5e3);Ce(()=>{clearInterval(c)});const u=()=>Y(this,null,function*(){yield n.saveData({global:s.global,devices:n.config.devices,tasks:n.config.tasks}),b()}),d=f=>{px({disk:f})},v=(f,_)=>Y(this,null,function*(){let l=null,h=-1;if(s.devices){for(let g=0;gY(this,null,function*(){g.tmpDiff==-1&&(g.tmpDiff=s.global.tmpDiff),g.tmpMax==-1&&(g.tmpMax=s.global.tmpMax),g.devicePath==""&&(g.devicePath=f.path);let x=[...s.devices];h>=0&&(x[h]=g);const C=new Map;x.forEach(E=>{E.devicePath!=null&&C.set(E.devicePath,null)});for(let E=0;E(i(),r(L,null,[t("fieldset",fx,[t("div",mx,[bx,t("div",vx,[t("div",gx,[P(t("input",{type:"checkbox","onUpdate:modelValue":_[0]||(_[0]=l=>y(s).global.enable=l),value:!y(s).global.enable},null,8,_x),[[jt,y(s).global.enable]])])])]),t("div",hx,[xx,t("div",kx,[t("div",wx,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[1]||(_[1]=l=>y(s).global.powermode=l)},$x,512),[[Q,y(s).global.powermode,void 0,{trim:!0}]])]),Dx])]),t("div",Bx,[Yx,t("div",Ax,[t("div",Sx,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[2]||(_[2]=l=>y(s).global.tmpDiff=l)},[zx,(i(),r(L,null,G(15,l=>t("option",{value:l},w(l)+"\xB0C",9,Px)),64))],512),[[Q,y(s).global.tmpDiff,void 0,{number:!0}]])]),Tx])]),t("div",Ix,[Lx,t("div",Mx,[t("div",Ox,[P(t("select",{class:"cbi-input-select","onUpdate:modelValue":_[3]||(_[3]=l=>y(s).global.tmpMax=l)},[Nx,(i(),r(L,null,G(20,l=>t("option",{value:l*5},w(l*5)+"\xB0C",9,jx)),64))],512),[[Q,y(s).global.tmpMax,void 0,{number:!0}]])]),qx])])]),t("div",Rx,[t("table",Gx,[Vx,t("tbody",null,[(i(!0),r(L,null,G(m.value,(l,h)=>(i(),r("tr",Ux,[t("td",Wx,[t("b",null,w(l.path),1)]),t("td",Zx,[t("b",null,w(l.model),1)]),t("td",Hx,[t("b",null,w(l.serial),1)]),t("td",Jx,[t("b",null,w(l.sizeStr),1)]),t("td",Kx,[t("b",null,w(l.temp),1)]),t("td",Xx,[t("b",null,w(l.status),1)]),t("td",Qx,[t("b",null,w(l.health),1)]),t("td",tk,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:g=>v(l)},"\u7F16\u8F91",8,ek),t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8BE6\u60C5",onClick:g=>d(l)},"\u8BE6\u60C5",8,ak)])]))),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:u})])],64))})}}),nk={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},ik={class:"table cbi-section-table"},rk=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),sk={class:"tr cbi-section-table-row"},dk={class:"td cbi-value-field"},ck={class:"td cbi-value-field"},uk={class:"td cbi-value-field"},lk={class:"td cbi-value-field"},pk=["onClick"],fk=["onClick"],mk=T({props:{config:{type:Object,required:!0},saveData:{type:Function,required:!0}},setup(e){const a=e,o=rt(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=()=>{ux({config:a.config,disks:[],next:p=>Y(this,null,function*(){yield a.saveData({tasks:[...o.tasks,p],global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]})})},b=p=>Y(this,null,function*(){const c=[...o.tasks];c.splice(p,1),yield a.saveData({tasks:c,global:a.config.global,devices:a.config.devices}),o.tasks=a.config.tasks||[]}),m=p=>{lx({task:p})};return(p,c)=>(i(),r(L,null,[t("button",{class:"btn cbi-button cbi-button-apply",onClick:c[0]||(c[0]=u=>s())},"\u65B0\u5EFA"),t("div",nk,[t("table",ik,[rk,t("tbody",null,[(i(!0),r(L,null,G(y(o).tasks,(u,d)=>(i(),r("tr",sk,[t("td",dk,[t("b",null,w(u.devicePath),1)]),t("td",ck,[t("b",null,w(n(u.type)),1)]),t("td",uk,[t("b",null,w(u.month)+"/"+w(u.dayPerMonth)+"/"+w(u.hour),1)]),t("td",lk,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u8C03\u8BD5",onClick:v=>m(u)},"\u9884\u89C8",8,pk),t("button",{class:"cbi-button cbi-button-remove",title:"\u5220\u9664",onClick:v=>b(d)},"\u5220\u9664",8,fk)])]))),256))])])])],64))}}),bk={class:"cbi-section"},vk=["value"],gk=T({setup(e){return Y(this,null,function*(){let a,o;const n=F(""),s=()=>Y(this,null,function*(){try{const b=yield B.Smart.Log.GET();if(b.data){const{result:m,error:p}=b.data;m&&m.result&&(n.value=m.result),p&&(n.value=p)}}catch(b){n.value=b}});return[a,o]=We(()=>s()),yield a,o(),(b,m)=>(i(),r("fieldset",bk,[t("textarea",{value:n.value,disabled:""},null,8,vk)]))})}});var _k=S(gk,[["__scopeId","data-v-76197cba"]]);const hk={},xk={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"},kk=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),wk=[kk];function yk(e,a){return i(),r("svg",xk,wk)}var Ve=S(hk,[["render",yk]]);const xe=e=>(N("data-v-51cceeb4"),e=e(),j(),e),Fk=["onSubmit"],Ck={class:"actioner-dns_header"},Ek={key:0},$k={key:1},Dk={class:"actioner-dns_body"},Bk={class:"label-item"},Yk=xe(()=>t("div",{class:"label-item_key"},[t("span",null,"\u540D\u79F0")],-1)),Ak={class:"label-item_value"},Sk={class:"label-item"},zk=xe(()=>t("div",{class:"label-item_key"},[t("span",null,"\u534F\u8BAE\uFF08\u7F51\u7EDC\u83B7\u53D6\u65B9\u5F0F\uFF09")],-1)),Pk={class:"label-item_value"},Tk=xe(()=>t("option",{value:"dhcp"},"DHCP\u5BA2\u6237\u7AEF",-1)),Ik={key:0,value:"pppoe"},Lk=xe(()=>t("option",{value:"static"},"\u9759\u6001\u5730\u5740",-1)),Mk={class:"actioner-dns_footer"},Ok=["disabled"],Nk=T({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=F(!1),n=F(a.inface),s=()=>Y(this,null,function*(){k.Loading("\u914D\u7F6E\u4E2D...").Close(),a.next(n.value),b()}),b=()=>{a.Close&&a.Close()};return(m,p)=>(i(),O(at,{Close:e.Close,type:1},{default:q(()=>[t("form",{class:"actioner-dns",onSubmit:it(s,["prevent"])},[t("div",Ck,[e.name=="wan"?(i(),r("span",Ek,w(e.e=="edit"?"\u7F16\u8F91WAN":"\u6DFB\u52A0WAN"),1)):(i(),r("span",$k,w(e.e=="edit"?"\u7F16\u8F91LAN":"\u6DFB\u52A0LAN"),1))]),t("div",Dk,[t("div",Bk,[Yk,t("div",Ak,[t("span",null,w(n.value.name.toLocaleUpperCase()),1)])]),t("div",Sk,[zk,t("div",Pk,[P(t("select",{"onUpdate:modelValue":p[0]||(p[0]=c=>n.value.proto=c)},[Tk,e.name=="wan"?(i(),r("option",Ik,"PPPoE")):D("",!0),Lk],512),[[Q,n.value.proto]])])])]),t("div",Mk,[t("button",{class:"cbi-button cbi-button-apply app-btn",disabled:o.value},"\u4FDD\u5B58",8,Ok),t("button",{class:"cbi-button cbi-button-remove app-btn app-back",onClick:b},"\u53D6\u6D88")])],40,Fk)]),_:1},8,["Close"]))}});var jk=S(Nk,[["__scopeId","data-v-51cceeb4"]]);const Ue=e=>{const a=document.createElement("div");document.body.appendChild(a);const o=tt(jk,ot(K({},e),{Close:()=>{n()}}));o.mount(a);const n=()=>{o.unmount(),a.remove()}},_t=e=>(N("data-v-589588f0"),e=e(),j(),e),qk={id:"page"},Rk=_t(()=>t("h2",{name:"content"}," \u7F51\u53E3\u914D\u7F6E",-1)),Gk={class:"cbi-section cbi-tblsection",id:"cbi-nfs-mount"},Vk={class:"table cbi-section-table"},Uk={width:"200"},Wk=_t(()=>t("col",null,null,-1)),Zk=_t(()=>t("col",null,null,-1)),Hk=_t(()=>t("col",{width:"200"},null,-1)),Jk={class:"tr cbi-section-table-cell"},Kk={class:"th cbi-section-table-cell interface-device","data-widget":"value"},Xk={class:"interface-device-flex"},Qk=_t(()=>t("th",{style:{width:"10px"}},null,-1)),tw=_t(()=>t("th",{style:{width:"32px"}},null,-1)),ew=_t(()=>t("th",null,null,-1)),aw={class:"tr cbi-section-table-row cbi-rowstyle-1"},ow={class:"td cbi-value-field interface-device info"},nw=["name","value","onUpdate:modelValue","onInput"],iw=_t(()=>t("td",{class:"td cbi-value-field"},null,-1)),rw={class:"td cbi-value-field"},sw={class:"td cbi-value-field btns"},dw=["onClick"],cw=["onClick"],uw={class:"tr cbi-section-table-row cbi-rowstyle-1"},lw={class:"td cbi-value-field"},pw=_t(()=>t("td",{class:"td cbi-value-field"},null,-1)),fw=_t(()=>t("td",{class:"td cbi-value-field"},null,-1)),mw={class:"tr cbi-section-table-row cbi-rowstyle-1"},bw={class:"td cbi-value-field interface-device info","data-widget":"value"},vw=["name","value","onUpdate:modelValue","onInput"],gw=_t(()=>t("td",{class:"td cbi-value-field"},null,-1)),_w={class:"td cbi-value-field"},hw={class:"td cbi-value-field btns"},xw=["onClick"],kw=["onClick"],ww={class:"tr cbi-section-table-row cbi-rowstyle-1"},yw={class:"td cbi-value-field"},Fw=_t(()=>t("td",{class:"td cbi-value-field"},null,-1)),Cw=_t(()=>t("td",{class:"td cbi-value-field"},null,-1)),Ew={class:"cbi-page-actions control-group"},$w=["disabled"],Dw=T({setup(e){const a=rt({devices:[],interfaces:[]}),o=F(!1),n=rt({lan:[],wan:[]});(()=>{B.Network.GetInterfaceConfig.GET().then(v=>{if(v.data){const{result:f}=v.data;if(f){a.devices=f.devices||[],a.interfaces=f.interfaces||[];for(let _=0;_{v=="wan"?n.wan.splice(f,1):v=="lan"&&n.lan.splice(f,1)},m=(v,f)=>{if(f==null){let _=v=="wan"?n.wan.length:n.lan.length;_==6&&v=="wan"&&_++,Ue({e:"add",name:v,inface:{name:v+`${_}`,proto:"dhcp",ipv4Addr:"",ipv6Addr:"",portName:"",deviceNames:[],ports:[],firewallType:v},next:l=>{v=="wan"?n.wan.push(l):n.lan.push(l),k.Message("\u8BF7\u5728\u4FDD\u5B58\u4EE5\u540E\u524D\u5F80'\u7F51\u7EDC-\u63A5\u53E3'\u9875\u9762\u914D\u7F6E\u63A5\u53E3\u8BE6\u7EC6\u53C2\u6570")}})}else Ue({e:"edit",name:v,inface:v=="wan"?n.wan[f]:n.lan[f],next:_=>{v=="wan"?n.wan[f]=_:n.lan[f]=_}})},p=(v,f)=>v?v.indexOf(f):-1,c=(v,f)=>{const l=v.target.value;for(let g=0;g{const l=v.target.value;for(let h=0;hY(this,null,function*(){o.value=!0;const v=[];for(let _=0;_(i(),r("div",qk,[Rk,t("div",null,[t("div",Gk,[t("table",Vk,[t("colgroup",null,[(i(!0),r(L,null,G(y(a).devices,_=>(i(),r("col",Uk))),256)),Wk,Zk,Hk]),t("thead",null,[t("tr",Jk,[(i(!0),r(L,null,G(y(a).devices,_=>(i(),r("th",Kk,[t("div",Xk,[z(ea,{item:_},null,8,["item"])])]))),256)),Qk,tw,ew])]),t("tbody",null,[(i(!0),r(L,null,G(y(n).lan,(_,l)=>(i(),r("tr",aw,[(i(!0),r(L,null,G(y(a).devices,h=>(i(),r("td",ow,[P(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":g=>_.deviceNames=g,onInput:g=>c(g,l)},null,40,nw),[[jt,_.deviceNames]])]))),256)),iw,t("td",rw,[t("b",null,w(_.name),1)]),t("td",sw,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:h=>m("lan",l)},"\u7F16\u8F91",8,dw),l!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>b("lan",l)},"\u5220\u9664 ",8,cw)):D("",!0)])]))),256)),t("tr",uw,[(i(!0),r(L,null,G(y(a).devices,_=>(i(),r("td",lw))),256)),pw,fw,t("td",{class:"td cbi-value-field btns",onClick:f[0]||(f[0]=_=>m("lan"))},[z(Ve,{class:"icon"})])]),(i(!0),r(L,null,G(y(n).wan,(_,l)=>(i(),r("tr",mw,[(i(!0),r(L,null,G(y(a).devices,h=>(i(),r("td",bw,[P(t("input",{type:"checkbox",name:h.name,value:h.name,"onUpdate:modelValue":g=>_.deviceNames=g,onInput:g=>u(g,l)},null,40,vw),[[jt,_.deviceNames]])]))),256)),gw,t("td",_w,[t("b",null,w(_.name),1)]),t("td",hw,[t("button",{class:"btn cbi-button cbi-button-apply",title:"\u7F16\u8F91",onClick:h=>m("wan",l)},"\u7F16\u8F91",8,xw),l!=0?(i(),r("button",{key:0,class:"cbi-button cbi-button-remove",onClick:h=>b("wan",l)},"\u5220\u9664",8,kw)):D("",!0)])]))),256)),t("tr",ww,[(i(!0),r(L,null,G(y(a).devices,_=>(i(),r("td",yw))),256)),Fw,Cw,t("td",{class:"td cbi-value-field btns",onClick:f[1]||(f[1]=_=>m("wan"))},[z(Ve,{class:"icon"})])])])])]),t("div",Ew,[t("input",{class:"btn cbi-button cbi-button-apply",type:"button",value:"\u4FDD\u5B58\u5E76\u5E94\u7528",onClick:d,disabled:o.value},null,8,$w)])])]))}});var Bw=S(Dw,[["__scopeId","data-v-589588f0"]]);const Yw=()=>window.vue_base||"/cgi-bin/luci/admin/quickstart/pages",ma=Sa({history:za(Yw()),routes:[{name:"IndexPage",path:"/",meta:{title:"\u63A7\u5236\u53F0"},component:n9},{name:"NetworkPage",path:"/network",meta:{title:"\u7F51\u7EDC\u8BBE\u7F6E\u5411\u5BFC"},component:s9,children:[{path:"",component:G9},{path:"pppoe",component:cm},{path:"dhcp",component:Um},{path:"gateway",component:Pb}]},{name:"RaidPage",path:"/raid",meta:{title:"raid\u5411\u5BFC"},component:Xg},{name:"SmartPage",path:"/smart",meta:{title:"smart\u68C0\u6D4B"},component:i_,children:[{path:"",component:ok},{path:"task",component:mk},{path:"log",component:_k}]},{path:"/interfaceconfig",component:Bw}]});ma.beforeEach((e,a)=>(e.meta.title,!0));const bt=tt(Ka);bt.component("svg-menu",no);bt.component("svg-system",lo);bt.component("svg-download",go);bt.component("svg-store",Co);bt.component("svg-info",Ao);bt.component("svg-disk",en);bt.component("svg-nav",dn);bt.component("progress-item",Xe);bt.component("svg-view-show",vn);bt.component("svg-view-hidden",wn);bt.component("article-item",Bn);bt.use(Qe);bt.use(ma);bt.use(Pa());bt.mount("#app")});export default Aw(); diff --git a/luci-app-quickstart/root/www/luci-static/quickstart/style.css b/luci-app-quickstart/root/www/luci-static/quickstart/style.css index 5884dcbc2..6bfba2a52 100644 --- a/luci-app-quickstart/root/www/luci-static/quickstart/style.css +++ b/luci-app-quickstart/root/www/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-de8ae0e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-de8ae0e6{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-de8ae0e6{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-de8ae0e6]{animation:rotateEnter-de8ae0e6 .7s;position:relative}.rotate-leave-active[data-v-de8ae0e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-de8ae0e6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.progress[data-v-de8ae0e6]{width:100%;display:block;position:relative;background-color:#eee;border-radius:4px;height:18px;line-height:18px;cursor:pointer;overflow:hidden}.progress .progress-value[data-v-de8ae0e6]{transition:.5s;position:absolute;left:0;top:0;bottom:0;height:100%;text-align:center;color:#fff;vertical-align:middle;font-size:12px}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-0c4a2195{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0c4a2195{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-0c4a2195{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-0c4a2195]{animation:rotateEnter-0c4a2195 .7s;position:relative}.rotate-leave-active[data-v-0c4a2195]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0c4a2195]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-0c4a2195{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)}}.loading[data-v-0c4a2195]{animation:turn-0c4a2195 5s linear infinite;width:50px;height:50px;margin:15px 0;background:none!important}.loading svg[data-v-0c4a2195]{width:100%;height:100%}.loading svg path[data-v-0c4a2195]{fill:#fff}@keyframes bganimation-7edad4d2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7edad4d2{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-7edad4d2{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-7edad4d2]{animation:rotateEnter-7edad4d2 .7s;position:relative}.rotate-leave-active[data-v-7edad4d2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7edad4d2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.flow[data-v-7edad4d2]{position:relative}.flow .echart[data-v-7edad4d2]{width:100%;height:100%}.flow .flow-data[data-v-7edad4d2]{position:absolute;right:10px;top:10px}.flow .flow-data span[data-v-7edad4d2]{display:block;color:#0009;font-size:12px;margin-bottom:5px;font-weight:600;font-family:PingFangSC-Semibold,PingFang SC}@keyframes bganimation-8ee37a62{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8ee37a62{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-8ee37a62{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-8ee37a62]{animation:rotateEnter-8ee37a62 .7s;position:relative}.rotate-leave-active[data-v-8ee37a62]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8ee37a62]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-8ee37a62{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)}}.toast[data-v-8ee37a62]{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-8ee37a62]{width:50px;height:50px;margin:15px 0;background:none!important}.toast div.icon svg[data-v-8ee37a62]{width:100%;height:100%}.toast div.icon svg path[data-v-8ee37a62]{fill:#fff}.toast .loading[data-v-8ee37a62]{animation:turn-8ee37a62 5s linear infinite}.toast .message[data-v-8ee37a62]{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-1e29e158]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-1e29e158]{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-1e29e158]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-1e29e158]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-1e29e158]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29e158]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29e158]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-1e29e158]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-1e29e158],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-1e29e158]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-1e29e158]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-1e29e158]{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-1e29e158]{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-1e29e158]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-1e29e158{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e29e158{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-1e29e158{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-1e29e158]{animation:rotateEnter-1e29e158 .7s;position:relative}.rotate-leave-active[data-v-1e29e158]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e29e158]{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[data-v-1e29e158]{width:190%}.actioner-dns .actioner-dns_body[data-v-1e29e158]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-1e29e158]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-1e29e158]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-1e29e158]{width:100%}}.action[data-v-ed442d72]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action .action-body[data-v-ed442d72]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-ed442d72]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-ed442d72]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-ed442d72]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-ed442d72]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-ed442d72{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-ed442d72{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-ed442d72{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-ed442d72]{animation:rotateEnter-ed442d72 .7s;position:relative}.rotate-leave-active[data-v-ed442d72]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-ed442d72]{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-ed442d72]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-ed442d72]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-ed442d72]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-ed442d72]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-ed442d72]{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-252d5ec7]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-252d5ec7]{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-252d5ec7]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-252d5ec7]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-252d5ec7]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-252d5ec7]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-252d5ec7]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-252d5ec7]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-252d5ec7],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-252d5ec7]{height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-252d5ec7]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-252d5ec7]{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-252d5ec7]{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-252d5ec7]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-dns .select-editable[data-v-252d5ec7]{position:relative;border:solid grey 1px;width:100%}.actioner-dns .select-editable select[data-v-252d5ec7]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.actioner-dns .select-editable input[data-v-252d5ec7]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.actioner-dns .select-editable select[data-v-252d5ec7]:focus,.actioner-dns .select-editable input[data-v-252d5ec7]:focus{outline:none}.actioner-dns[data-v-252d5ec7] ::placeholder{color:#999}.successed[data-v-252d5ec7]{text-align:center;font-size:14px;margin-bottom:104px}.finished[data-v-252d5ec7]{display:flex;justify-content:center;margin:80px 80px 28px}.docker_moves[data-v-252d5ec7]{text-align:center}.docker_moves .moves[data-v-252d5ec7]{margin-top:10px}.docker_moves .moves input[data-v-252d5ec7]{cursor:pointer}.docker_moves .moves label[data-v-252d5ec7]{margin-left:10px;cursor:pointer}.btns[data-v-252d5ec7]{text-align:center}.item_info[data-v-252d5ec7]{margin-left:10px}.softsource_tit[data-v-252d5ec7]{margin:0 auto}.softsource_successed[data-v-252d5ec7]{width:20%!important}@keyframes bganimation-252d5ec7{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-252d5ec7{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-252d5ec7{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-252d5ec7]{animation:rotateEnter-252d5ec7 .7s;position:relative}.rotate-leave-active[data-v-252d5ec7]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-252d5ec7]{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[data-v-252d5ec7]{width:190%}.actioner-dns .actioner-dns_body[data-v-252d5ec7]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-252d5ec7]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-252d5ec7]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-252d5ec7]{width:100%}}@keyframes bganimation-58cb1f32{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-58cb1f32{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-58cb1f32{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-58cb1f32]{animation:rotateEnter-58cb1f32 .7s;position:relative}.rotate-leave-active[data-v-58cb1f32]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-58cb1f32]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}em[data-v-58cb1f32]{display:block;margin:.5rem 0;width:100%}.app-container_status-container[data-v-58cb1f32]{width:100%;background-color:#fff;padding:10px 30px;border-radius:6px;position:relative}.app-container_status-container .more_icon[data-v-58cb1f32]{position:absolute;right:22px;cursor:pointer}.app-container_status-container .more_icon svg[data-v-58cb1f32]{position:relative;z-index:9999}.app-container_status-container .DeviceBlock[data-v-58cb1f32]{position:absolute;z-index:999;width:60%;right:22px}.app-container_status-container .DeviceBlock ul[data-v-58cb1f32]{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-58cb1f32]{line-height:28px}.app-container_status-container .DeviceBlock ul li a[data-v-58cb1f32]{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-58cb1f32]{cursor:pointer}.app-container_status-container .DeviceBlock ul li[data-v-58cb1f32]:hover{background-color:#eee}.app-container_status-container .DeviceBlock li[data-v-58cb1f32]:last-child{margin-top:5px}.app-container_status-container span.container_success[data-v-58cb1f32]{display:block;font-size:15px;font-family:PingFangSC-Medium,PingFang SC}.app-container_status-container span.container_failure[data-v-58cb1f32]{display:block;font-size:1.2em}.app-container_status-container .container_configure[data-v-58cb1f32]{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-58cb1f32]{font-size:1.25rem;color:#333;display:block}.app-container_status-container span.container_content[data-v-58cb1f32]{font-size:1.25rem;color:#666}.app-container_status-container .devise[data-v-58cb1f32]{display:block;font-size:12px;color:#727272}.app-container_status-container span.container_time[data-v-58cb1f32]{font-size:12px;color:#727272;margin-top:3px;display:block}.app-container_status-label[data-v-58cb1f32]{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.app-container_status-label .app-container_status-label_item[data-v-58cb1f32]{flex:0 0 100%;max-width:calc(50% - 10px);margin-bottom:1rem}.app-container_status-label_block[data-v-58cb1f32]{display:block;color:#000;margin:10px 0 8px}.app-container_status-container_body[data-v-58cb1f32]{width:100%;height:100%;text-align:center;display:flex;align-items:center;align-content:center}.app-container_status-container_body svg[data-v-58cb1f32]{min-width:32px}.app-container_status-container_body .app-container_status-info[data-v-58cb1f32]{margin-left:10px;text-align:left;margin-right:10px;min-width:57px}.app-container_status-container_body svg[data-v-58cb1f32]{width:50px;height:50px}.app-container_status-container_body span[data-v-58cb1f32]{width:100%;margin:5px 0}.menu_background[data-v-58cb1f32]{position:fixed;inset:0}.app-container_body[data-v-58cb1f32]{width:100%}.network-container[data-v-78a4e41a]{width:100%;display:flex;flex-wrap:wrap}.network-container .network-container_flow[data-v-78a4e41a]{flex:0 0 100%;max-width:60%;padding-right:10px}.network-container .network-container_flow .network-container_flow-container[data-v-78a4e41a]{border-radius:6px;overflow:hidden;position:relative;background-color:#fff;box-shadow:0 0 10px 1px #373f6924}.network-container .network-container_status[data-v-78a4e41a]{flex:0 0 100%;max-width:40%;padding-left:10px;display:flex;flex-wrap:wrap}@keyframes bganimation-78a4e41a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-78a4e41a{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-78a4e41a{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-78a4e41a]{animation:rotateEnter-78a4e41a .7s;position:relative}.rotate-leave-active[data-v-78a4e41a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-78a4e41a]{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-78a4e41a]{width:100%}.network-container .network-container_flow[data-v-78a4e41a]{flex:0 0 100%;max-width:100%;padding-right:0}.network-container .network-container_status[data-v-78a4e41a]{flex:0 0 100%;max-width:100%;padding-left:0;margin-top:1rem}}.action .action-footer button[data-v-7e52eb3f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-7e52eb3f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7e52eb3f{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-7e52eb3f{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-7e52eb3f]{animation:rotateEnter-7e52eb3f .7s;position:relative}.rotate-leave-active[data-v-7e52eb3f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7e52eb3f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-7e52eb3f]{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-7e52eb3f]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-7e52eb3f]{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-7e52eb3f]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-7e52eb3f]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-7e52eb3f]{flex:auto}.action.format .disk-list[data-v-7e52eb3f]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-7e52eb3f]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-7e52eb3f]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-7e52eb3f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-7e52eb3f]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-7e52eb3f]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-7e52eb3f],.action.format .label-item .label-item_value input[data-v-7e52eb3f]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-7e52eb3f]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-7e52eb3f]{flex:auto}.action.format p.msg[data-v-7e52eb3f]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-7e52eb3f]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-7e52eb3f]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-7e52eb3f]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-7e52eb3f]{margin:1rem 0;font-size:1.5em;color:#333}.action.result[data-v-7e52eb3f]{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-7e52eb3f]{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-7e52eb3f]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-7e52eb3f]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-7e52eb3f]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-7e52eb3f]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-7e52eb3f]{color:#0000fb}.action.result .btns[data-v-7e52eb3f]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-7e52eb3f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7e52eb3f{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-7e52eb3f{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-7e52eb3f]{animation:rotateEnter-7e52eb3f .7s;position:relative}.rotate-leave-active[data-v-7e52eb3f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7e52eb3f]{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-7e52eb3f]{width:168%}}@media screen and (max-width: 900px){.action.format[data-v-7e52eb3f]{width:146%}}@media screen and (max-width: 800px){.action.format[data-v-7e52eb3f]{width:136%}}@media screen and (max-width: 700px){.action.format[data-v-7e52eb3f]{width:116%}}@media screen and (max-width: 500px){.action.format[data-v-7e52eb3f]{width:100%}}.action .action-footer button[data-v-3fc7bda2]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3fc7bda2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3fc7bda2{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-3fc7bda2{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-3fc7bda2]{animation:rotateEnter-3fc7bda2 .7s;position:relative}.rotate-leave-active[data-v-3fc7bda2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3fc7bda2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-3fc7bda2]{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-3fc7bda2]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-3fc7bda2]{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-3fc7bda2]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-3fc7bda2]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-3fc7bda2]{flex:auto}.action.format .disk-list[data-v-3fc7bda2]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-3fc7bda2]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-3fc7bda2]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-3fc7bda2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-3fc7bda2]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-3fc7bda2]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-3fc7bda2],.action.format .label-item .label-item_value input[data-v-3fc7bda2]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-3fc7bda2]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-3fc7bda2]{flex:auto}.action.format p.msg[data-v-3fc7bda2]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-3fc7bda2]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-3fc7bda2]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-3fc7bda2]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-3fc7bda2]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-3fc7bda2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3fc7bda2{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-3fc7bda2{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-3fc7bda2]{animation:rotateEnter-3fc7bda2 .7s;position:relative}.rotate-leave-active[data-v-3fc7bda2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3fc7bda2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-3fc7bda2]{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-3fc7bda2]{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-3fc7bda2]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-3fc7bda2]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-3fc7bda2]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-3fc7bda2]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-3fc7bda2]{color:#0000fb}.action.result .btns[data-v-3fc7bda2]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-6f3ddc5a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f3ddc5a{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-6f3ddc5a{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-6f3ddc5a]{animation:rotateEnter-6f3ddc5a .7s;position:relative}.rotate-leave-active[data-v-6f3ddc5a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f3ddc5a]{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-6f3ddc5a]{color:red}.disk-content[data-v-6f3ddc5a]{padding:1rem;border:1px solid #cfcfcf;margin:16px 0}.disk-content li.disk-item[data-v-6f3ddc5a]{width:100%;display:flex;align-items:center}.disk-content li.disk-item .disk-item_name[data-v-6f3ddc5a]{flex:0 0 50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.disk-content li.disk-item .disk_value[data-v-6f3ddc5a]{flex:0 0 50%;display:flex;justify-content:space-between;align-items:center}.disk-content li.disk-item .disk_value .cbi-button[data-v-6f3ddc5a]{margin-left:10px}.disk-content li.disk-item .disk_value .disk-item_value[data-v-6f3ddc5a]{flex:auto;padding-left:10px;position:relative}.disk-content li.disk-item .disk_value .disk-item_value .value-data[data-v-6f3ddc5a]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%;color:#297ff3;cursor:pointer}.disk-content li.disk-item .disk_value .disk-item_value .value-data button[data-v-6f3ddc5a]{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-6f3ddc5a]:hover{opacity:.7}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-6f3ddc5a]{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-6f3ddc5a]: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-6f3ddc5a]{visibility:visible;transition:.7s;opacity:1}.disk-content li.disk_status[data-v-6f3ddc5a]{display:flex;text-align:center;padding-left:52%;font-size:12px;padding-top:6px}.disk-content li.disk_status .disk_status_item[data-v-6f3ddc5a]{display:flex;margin-right:20px}.disk-content li.disk_status .disk_status_item .disk_tip[data-v-6f3ddc5a]{display:flex;align-items:center}.disk_infoicon[data-v-6f3ddc5a]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-6f3ddc5a]{flex:none}.tooltip-trigger[data-v-6f3ddc5a]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-6f3ddc5a]{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-6f3ddc5a]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-6f3ddc5a]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-6f3ddc5a]{visibility:visible;opacity:1}.tooltip-top[data-v-6f3ddc5a]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-6f3ddc5a]: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-6f3ddc5a]: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-6f3ddc5a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f3ddc5a{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-6f3ddc5a{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-6f3ddc5a]{animation:rotateEnter-6f3ddc5a .7s;position:relative}.rotate-leave-active[data-v-6f3ddc5a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f3ddc5a]{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-6f3ddc5a]{width:148%}.disk-content li.disk-item .disk_value[data-v-6f3ddc5a]{display:block}.disk-content li.disk_status[data-v-6f3ddc5a]{flex-wrap:wrap}}@media screen and (max-width: 700px){.disk-content li.disk-item .disk_value[data-v-6f3ddc5a]{display:block}}@media screen and (max-width: 700px){.disk-content li.disk_status[data-v-6f3ddc5a]{flex-wrap:wrap;width:113%}}@media screen and (max-width: 400px){.disk-content li.disk_status[data-v-6f3ddc5a]{flex-wrap:wrap;width:155%;padding:0 68px}}.action[data-v-4688e946]{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-4688e946]{overflow:auto}.action ul .app-container_info[data-v-4688e946]{display:flex;justify-content:space-between;max-width:56%;margin-top:18px;font-weight:600}.action ul .app-container_body[data-v-4688e946]{width:100%;height:100%}.action .action-footer[data-v-4688e946]{text-align:center;margin-top:46px}.action .action-footer button[data-v-4688e946]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-4688e946{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4688e946{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-4688e946{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-4688e946]{animation:rotateEnter-4688e946 .7s;position:relative}.rotate-leave-active[data-v-4688e946]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4688e946]{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-4688e946]{width:160%}}@media screen and (max-width: 800px){.action[data-v-4688e946]{width:138%}}@media screen and (max-width: 700px){.action[data-v-4688e946]{width:132%}}@media screen and (max-width: 600px){.action[data-v-4688e946]{width:116%}}@media screen and (max-width: 500px){.action[data-v-4688e946]{width:100%}}@media screen and (max-width: 400px){.action[data-v-4688e946]{width:90%}}@media screen and (max-width: 300px){.action[data-v-4688e946]{width:100%}}@keyframes bganimation-1c6dcf68{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1c6dcf68{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-1c6dcf68{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-1c6dcf68]{animation:rotateEnter-1c6dcf68 .7s;position:relative}.rotate-leave-active[data-v-1c6dcf68]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1c6dcf68]{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-1c6dcf68]{color:red}li.disk-item[data-v-1c6dcf68]{width:100%;display:flex;margin:1rem 0;align-items:center}li.disk-item .disk-item_name[data-v-1c6dcf68]{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-1c6dcf68]{padding-left:1rem;align-self:center;align-items:center;cursor:help;flex:none;display:flex}li.disk-item .disk_value[data-v-1c6dcf68]{display:flex;justify-content:flex-end;width:50%}li.disk-item .disk_value .disk-item_value[data-v-1c6dcf68]{flex:auto;padding-left:10px;position:relative}li.disk-item .disk_value .disk-item_value .value-data[data-v-1c6dcf68]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%}li.disk-item .disk_value .disk-item_value .value-data button[data-v-1c6dcf68]{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-1c6dcf68]:hover{opacity:.7}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-1c6dcf68]{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-1c6dcf68]: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-1c6dcf68]{visibility:visible;transition:.7s;opacity:1}.disk_infoicon[data-v-1c6dcf68]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-1c6dcf68]{flex:none}.tooltip-trigger[data-v-1c6dcf68]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-1c6dcf68]{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-1c6dcf68]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-1c6dcf68]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-1c6dcf68]{visibility:visible;opacity:1}.tooltip-top[data-v-1c6dcf68]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-1c6dcf68]: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-1c6dcf68]: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-7d76bdb3{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7d76bdb3{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-7d76bdb3{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-7d76bdb3]{animation:rotateEnter-7d76bdb3 .7s;position:relative}.rotate-leave-active[data-v-7d76bdb3]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7d76bdb3]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-7d76bdb3{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)}}.app-container[data-v-7d76bdb3]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%}.app-container ul[data-v-7d76bdb3]{flex:0 0 100%;width:100%}.app-container ul .app-container_title[data-v-7d76bdb3]{display:flex;justify-content:space-between;align-items:center}.app-container ul .app-container_title .more_icon[data-v-7d76bdb3]{cursor:pointer;position:absolute;right:22px}.app-container ul .app-container_title .DeviceBlock[data-v-7d76bdb3]{position:absolute;z-index:999;width:30%;right:22px}.app-container ul .app-container_title .DeviceBlock ul[data-v-7d76bdb3]{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-7d76bdb3]{margin:6px 0;cursor:pointer;line-height:28px}.app-container ul .app-container_title .DeviceBlock ul li a[data-v-7d76bdb3]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.app-container ul .app-container_title .DeviceBlock ul li[data-v-7d76bdb3]:hover{background-color:#eee}.app-container ul .disk_loading_icon[data-v-7d76bdb3]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.app-container ul .disk_loading_icon .loading[data-v-7d76bdb3]{display:inline-block;animation:turn-7d76bdb3 3s linear infinite}.app-container ul .disk_loading_icon .loading svg[data-v-7d76bdb3]{width:38px;height:38px}.app-container ul .disk_loading_icon .disk_loading_info[data-v-7d76bdb3]{margin-top:5px}.refresh[data-v-7d76bdb3]{margin-left:20px}.app-container_info[data-v-7d76bdb3]{font-size:14px;font-weight:700;height:31px;line-height:52px}.app-container_body[data-v-7d76bdb3]{width:100%;height:100%}.menu_background[data-v-7d76bdb3]{position:fixed;inset:0}@keyframes bganimation-2e74c162{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2e74c162{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-2e74c162{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-2e74c162]{animation:rotateEnter-2e74c162 .7s;position:relative}.rotate-leave-active[data-v-2e74c162]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2e74c162]{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-2e74c162]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.sambas-item .sambas-item_name[data-v-2e74c162]{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-2e74c162]{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-2e74c162]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}.app-container_samba li.samba-item .samba-item_name[data-v-2e74c162]{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-2e74c162]{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-2e74c162]{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-2e74c162]:hover{opacity:.7}.tit[data-v-2e74c162]{color:#1e1e1e;font-weight:700;font-size:16px}@keyframes bganimation-47e88ce2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-47e88ce2{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-47e88ce2{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-47e88ce2]{animation:rotateEnter-47e88ce2 .7s;position:relative}.rotate-leave-active[data-v-47e88ce2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-47e88ce2]{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-47e88ce2]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.webdav-item .webdav-item_name[data-v-47e88ce2]{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-47e88ce2]{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-a31fbfcc]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.list[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:70px;line-height:70px}.action.list .action-header .action-header_title[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:calc(100% - 176px)}.action.list .action-msg[data-v-a31fbfcc]{width:100%;height:36px;line-height:36px;text-align:center}.action.list .action-footer[data-v-a31fbfcc]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.list .action-footer .auto[data-v-a31fbfcc]{flex:auto}.action.list .disk-list[data-v-a31fbfcc]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-a31fbfcc]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-a31fbfcc]{flex:auto}.action.format .disk-list[data-v-a31fbfcc]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-a31fbfcc]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-a31fbfcc]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-a31fbfcc]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-a31fbfcc]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-a31fbfcc]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-a31fbfcc],.action.format .label-item .label-item_value input[data-v-a31fbfcc]{width:100%;height:36px}.action.format .auto[data-v-a31fbfcc]{flex:auto}.action.format p.msg[data-v-a31fbfcc]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-a31fbfcc]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-a31fbfcc]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-a31fbfcc]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-a31fbfcc]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:70px;line-height:70px}.action.result .action-header .action-header_title[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:calc(100% - 140px);overflow:auto}.action.result .action-body .format-result[data-v-a31fbfcc]{width:100%;text-align:center;font-size:2em;color:#333;margin:1rem 0}.action.result .action-body .format-info[data-v-a31fbfcc]{width:100%;text-align:center;font-size:1.3em}.action.result .action-body .format-info a[data-v-a31fbfcc]{color:#f70324}.action.result .action-footer[data-v-a31fbfcc]{width:100%;height:70px;line-height:70px;color:#333}.action.result .auto[data-v-a31fbfcc]{flex:auto}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{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-a31fbfcc]{width:136%}}@media screen and (max-width: 900px){.action.list[data-v-a31fbfcc]{width:126%}}@media screen and (max-width: 800px){.action.list[data-v-a31fbfcc]{width:112%}}@media screen and (max-width: 700px){.action.list[data-v-a31fbfcc]{width:100%}}@media screen and (max-width: 500px){.action.list[data-v-a31fbfcc]{width:80%}}@keyframes bganimation-530e728c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-530e728c{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-530e728c{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-530e728c]{animation:rotateEnter-530e728c .7s;position:relative}.rotate-leave-active[data-v-530e728c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-530e728c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-530e728c]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action .action-body[data-v-530e728c]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-530e728c]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-530e728c]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-530e728c]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-530e728c]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-530e728c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-530e728c{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-530e728c{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-530e728c]{animation:rotateEnter-530e728c .7s;position:relative}.rotate-leave-active[data-v-530e728c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-530e728c]{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-530e728c]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-530e728c]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-530e728c]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-530e728c]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-530e728c]{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-567b2684{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-567b2684{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-567b2684{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-567b2684]{animation:rotateEnter-567b2684 .7s;position:relative}.rotate-leave-active[data-v-567b2684]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-567b2684]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-567b2684]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action h2.title[data-v-567b2684]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action h3.desc[data-v-567b2684]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:1rem 0;text-align:center}.action form[data-v-567b2684]{width:100%;display:block;padding:2rem 0}.action form label[data-v-567b2684]{width:100%;display:block;margin:1rem 0}.action form label input[data-v-567b2684],.action form label select[data-v-567b2684]{width:100%;display:block;height:42px}.action .btns[data-v-567b2684]{width:100%;margin-top:3rem}.action .btns button[data-v-567b2684]{display:block;width:100%!important;margin:.5rem 0}.action li.disk-item[data-v-567b2684]{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-567b2684]:hover{background-color:#eee}.action li.disk-item .disk-item_f[data-v-567b2684]{display:flex;flex-wrap:wrap}.action li.disk-item .disk-item_f .disk-item_venderModel[data-v-567b2684],.action li.disk-item .disk-item_f .disk-item_used[data-v-567b2684]{width:100%}@keyframes bganimation-567b2684{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-567b2684{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-567b2684{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-567b2684]{animation:rotateEnter-567b2684 .7s;position:relative}.rotate-leave-active[data-v-567b2684]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-567b2684]{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-567b2684]{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-fc8a3b22{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-fc8a3b22{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-fc8a3b22{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-fc8a3b22]{animation:rotateEnter-fc8a3b22 .7s;position:relative}.rotate-leave-active[data-v-fc8a3b22]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-fc8a3b22]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-fc8a3b22]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-fc8a3b22]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-fc8a3b22]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-fc8a3b22]{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-fc8a3b22]{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-fc8a3b22] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-fc8a3b22]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-fc8a3b22]{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-fc8a3b22]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-fc8a3b22]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-fc8a3b22]:hover{background-color:#eee}.app-container .app-container_title button[data-v-fc8a3b22]{margin-left:10px}.app-container .app-container_body[data-v-fc8a3b22]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-fc8a3b22]{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-fc8a3b22]{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-fc8a3b22],.app-container ul.app-container_nas-menu button[data-v-fc8a3b22]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-fc8a3b22]{position:fixed;inset:0}@keyframes bganimation-4272377e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4272377e{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-4272377e{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-4272377e]{animation:rotateEnter-4272377e .7s;position:relative}.rotate-leave-active[data-v-4272377e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4272377e]{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-4272377e]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0}li.docker-item .docker-item_name[data-v-4272377e]{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-4272377e]{flex:0 0 100%;max-width:50%;padding-left:10px;float:left;display:flex}li.docker-item .docker-item_value .configure[data-v-4272377e]{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-4272377e]{color:#888;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_root[data-v-4272377e]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.docker_tip svg[data-v-4272377e]{vertical-align:bottom;margin-left:22px}.tooltip-trigger[data-v-4272377e]{position:relative;display:inline-block;cursor:help;margin-right:6px}.tooltip-trigger .tooltip-text[data-v-4272377e]{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-4272377e]{color:#fff}.tooltip-trigger .tooltip-text .docker_dir_tip[data-v-4272377e]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-4272377e]{visibility:visible;opacity:1}.tooltip-top[data-v-4272377e]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.tooltip-right[data-v-4272377e]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.tooltip-left[data-v-4272377e]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.tooltip-top[data-v-4272377e]: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-4272377e]: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-4272377e]{display:inline-block;cursor:pointer;position:relative}.input-switch span[data-v-4272377e]{display:block;position:relative;width:50px;height:20px;border-radius:10px;padding:2px}.input-switch span em[data-v-4272377e]{display:block;width:16px;height:16px;background-color:#fff;border-radius:10px}.input-switch span.enable[data-v-4272377e]{background-color:#297ff3;transition:.3s}.input-switch span.enable em[data-v-4272377e]{transform:translate(30px);transition:.3s}.input-switch span.close[data-v-4272377e]{background-color:#cecece;transition:.3s}.input-switch span.close em[data-v-4272377e]{transform:translate(0);transition:.3s}@keyframes bganimation-08e0f5d4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-08e0f5d4{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-08e0f5d4{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-08e0f5d4]{animation:rotateEnter-08e0f5d4 .7s;position:relative}.rotate-leave-active[data-v-08e0f5d4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-08e0f5d4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-08e0f5d4]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action h2.title[data-v-08e0f5d4]{width:100%;display:block;color:#1e1e1e;font-size:22px;padding:0;margin:0;text-align:center}.action .roots[data-v-08e0f5d4]{display:flex;max-width:342px;align-items:center;margin-top:32px;margin-bottom:16px}.action .roots .root[data-v-08e0f5d4]{color:#000000d4;font-size:14px;text-align:center}.action .move[data-v-08e0f5d4]{display:flex;justify-content:left;align-items:center}.action .change[data-v-08e0f5d4]{width:678px}.action .desc[data-v-08e0f5d4]{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-08e0f5d4]{width:100%;display:block}.action .tips[data-v-08e0f5d4]{width:477px}.action .tips .tip[data-v-08e0f5d4]{color:#faad14;padding-left:6px}.action .btns[data-v-08e0f5d4]{width:100%;margin:104px auto 0}.action .btns button[data-v-08e0f5d4]{display:block;width:100%!important}.action .roots_tit[data-v-08e0f5d4]{color:#000000d4;font-size:14px;font-weight:700;width:118px;text-align:right}.action .successed[data-v-08e0f5d4]{text-align:center;font-size:14px}.action .finished[data-v-08e0f5d4]{display:flex;justify-content:center;margin:80px 80px 28px}.action .docker_moves[data-v-08e0f5d4]{text-align:center}.action .docker_moves .moves[data-v-08e0f5d4]{margin-top:10px}.action .docker_moves .moves input[data-v-08e0f5d4]{cursor:pointer}.action .docker_moves .moves label[data-v-08e0f5d4]{margin-left:10px;cursor:pointer}.select-editable[data-v-08e0f5d4]{position:relative;border:solid grey 1px;width:438px;height:34px}.select-editable select[data-v-08e0f5d4]{position:absolute;top:0;left:0;font-size:14px;border:none;width:100%;height:100%;margin:0}.select-editable input[data-v-08e0f5d4]{position:absolute;top:0;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-08e0f5d4]:focus,.select-editable input[data-v-08e0f5d4]:focus{outline:none}[data-v-08e0f5d4]::placeholder{color:#999}@keyframes bganimation-08e0f5d4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-08e0f5d4{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-08e0f5d4{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-08e0f5d4]{animation:rotateEnter-08e0f5d4 .7s;position:relative}.rotate-leave-active[data-v-08e0f5d4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-08e0f5d4]{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 .roots[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap;width:102px}.action .move[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap;width:100px}.action .move .roots_tit[data-v-08e0f5d4]{text-align:left}.docker_download .docker_moves[data-v-08e0f5d4]{display:flex;justify-content:center;flex-wrap:wrap}}@media screen and (max-width: 900px){.action[data-v-08e0f5d4]{width:116%}.action .roots[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap;width:102px}.action .move[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .move .roots_tit[data-v-08e0f5d4]{text-align:left}.docker_download[data-v-08e0f5d4]{width:80%}}@media screen and (max-width: 800px){.action[data-v-08e0f5d4]{width:102%}.action .btns[data-v-08e0f5d4]{margin-top:34px}.docker_download[data-v-08e0f5d4]{width:76%}}@media screen and (max-width: 700px){.action[data-v-08e0f5d4]{width:90%}.action .btns[data-v-08e0f5d4]{margin-top:34px}.action .select-editable[data-v-08e0f5d4]{width:351px}.action .docker_moves[data-v-08e0f5d4]{display:flex;justify-content:center;flex-wrap:wrap}.docker_download[data-v-08e0f5d4]{width:60%}}@media screen and (max-width: 500px){.action[data-v-08e0f5d4]{width:80%}.action .btns[data-v-08e0f5d4]{margin-top:34px}.action .finished[data-v-08e0f5d4]{width:48px;margin:0 auto}.action .select-editable[data-v-08e0f5d4]{width:251px}.docker_download[data-v-08e0f5d4]{width:50%;padding:15px 10px}}@media screen and (max-width: 400px){.action[data-v-08e0f5d4]{width:80%}.action .finished[data-v-08e0f5d4]{width:48px;margin:0 auto}.action .select-editable[data-v-08e0f5d4]{width:151px;padding:15px 10px}}@media screen and (max-width: 400px){.action .btns[data-v-08e0f5d4]{margin-top:34px}.docker_success[data-v-08e0f5d4]{width:130%}.docker_download[data-v-08e0f5d4]{width:32%;padding:15px 10px}.docker_download .finished[data-v-08e0f5d4]{width:48px;margin:0 auto}}@keyframes bganimation-40eef1a3{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-40eef1a3{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-40eef1a3{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-40eef1a3]{animation:rotateEnter-40eef1a3 .7s;position:relative}.rotate-leave-active[data-v-40eef1a3]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-40eef1a3]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-40eef1a3]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container .app-container_title[data-v-40eef1a3]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-40eef1a3]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-40eef1a3]{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-40eef1a3]{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-40eef1a3] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-40eef1a3]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-40eef1a3]{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-40eef1a3]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-40eef1a3]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-40eef1a3]:hover{background-color:#eee}.app-container button[data-v-40eef1a3],.app-container .refresh[data-v-40eef1a3]{margin-left:20px}.app-container .app-container_body[data-v-40eef1a3]{width:100%;height:100%}.menu_background[data-v-40eef1a3]{position:fixed;inset:0}@keyframes bganimation-b0aac542{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b0aac542{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-b0aac542{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-b0aac542]{animation:rotateEnter-b0aac542 .7s;position:relative}.rotate-leave-active[data-v-b0aac542]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b0aac542]{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-b0aac542]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.aria2-item .aria2-item_name[data-v-b0aac542]{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-b0aac542]{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-b0aac542]{color:#297ff3;padding:3px}li.aria2-item .aria2-item_value .configure.enabel[data-v-b0aac542]{color:#888}.use-url_app[data-v-b0aac542]{padding-bottom:14px}.use-url_app a[data-v-b0aac542]{text-decoration:none;color:#297ff3}@keyframes bganimation-52e2b49c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-52e2b49c{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-52e2b49c{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-52e2b49c]{animation:rotateEnter-52e2b49c .7s;position:relative}.rotate-leave-active[data-v-52e2b49c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-52e2b49c]{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-52e2b49c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.qbittorrent-item .qbittorrent-item_name[data-v-52e2b49c]{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-52e2b49c]{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-52e2b49c]{color:#297ff3;padding:3px}li.qbittorrent-item .qbittorrent-item_value .configure.enabel[data-v-52e2b49c]{color:#888}a[data-v-52e2b49c]{text-decoration:none;color:#297ff3}@keyframes bganimation-78784f5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-78784f5e{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-78784f5e{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-78784f5e]{animation:rotateEnter-78784f5e .7s;position:relative}.rotate-leave-active[data-v-78784f5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-78784f5e]{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-78784f5e]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.transmission-item .transmission-item_name[data-v-78784f5e]{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-78784f5e]{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-78784f5e]{color:#297ff3;padding:3px}li.transmission-item .transmission-item_value .configure.enabel[data-v-78784f5e]{color:#888}a[data-v-78784f5e]{text-decoration:none;color:#297ff3}@keyframes bganimation-7ea0bbfc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ea0bbfc{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-7ea0bbfc{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-7ea0bbfc]{animation:rotateEnter-7ea0bbfc .7s;position:relative}.rotate-leave-active[data-v-7ea0bbfc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ea0bbfc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-7ea0bbfc]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:1rem 10%;border-radius:6px}.action p[data-v-7ea0bbfc]{color:#999;font-size:14px}.action input[data-v-7ea0bbfc]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC}.action h2.title[data-v-7ea0bbfc]{width:100%;color:#1e1e1e;font-size:22px;font-family:PingFangSC-Medium,PingFang SC;padding:0;margin:0;text-align:center}.action span[data-v-7ea0bbfc]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4;font-weight:700}.action .load[data-v-7ea0bbfc]{display:flex;justify-content:left;align-items:center;margin-top:32px}.action form[data-v-7ea0bbfc]{width:86%}.action form label[data-v-7ea0bbfc]{width:100%}.action form label input[data-v-7ea0bbfc],.action form label select[data-v-7ea0bbfc]{height:100%;font-size:14px}.action .RPC[data-v-7ea0bbfc]{margin:16px 0;display:flex;justify-content:left;align-items:center}.action .RPC .RPC_input[data-v-7ea0bbfc]{width:85%}.action .Tracker label[data-v-7ea0bbfc]{margin-right:10px;cursor:pointer}.action .Tracker_input[data-v-7ea0bbfc]{width:80%;margin-left:132px;margin-top:22px}.action .btns[data-v-7ea0bbfc]{width:100%;margin:42px auto 0}.action .btns button[data-v-7ea0bbfc]{display:block;width:100%!important;margin:.5rem 0}.action .tooltip-trigger[data-v-7ea0bbfc]{position:relative;display:inline-block;cursor:help;margin-right:6px}.action .tooltip-trigger .tooltip-text[data-v-7ea0bbfc]{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-7ea0bbfc]{color:#fff}.action .tooltip-trigger .tooltip-text .dowload_dir_tip[data-v-7ea0bbfc]{min-width:14rem;display:inline-block}.action .tooltip-trigger:hover .tooltip-text[data-v-7ea0bbfc]{visibility:visible;opacity:1}.action .tooltip-top[data-v-7ea0bbfc]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.action .tooltip-bottom[data-v-7ea0bbfc]{top:100%;left:50%;margin-top:5px;transform:translate(-50%)}.action .tooltip-bottom .dowload_rpc_tip[data-v-7ea0bbfc]{min-width:10rem;display:inline-block}.action .tooltip-right[data-v-7ea0bbfc]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.action .tooltip-left[data-v-7ea0bbfc]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.action .tooltip-top[data-v-7ea0bbfc]: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-7ea0bbfc]: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-7ea0bbfc]{text-align:center;font-size:14px}.action .finished[data-v-7ea0bbfc]{display:flex;justify-content:center;margin:80px 80px 28px}.left[data-v-7ea0bbfc]{display:flex;align-items:center;justify-content:flex-start;width:110px}.select-editable[data-v-7ea0bbfc]{position:relative;border:solid grey 1px;width:100%}.select-editable select[data-v-7ea0bbfc]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.select-editable input[data-v-7ea0bbfc]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-7ea0bbfc]:focus,.select-editable input[data-v-7ea0bbfc]:focus{outline:none}[data-v-7ea0bbfc]::placeholder{color:#999}.load_service[data-v-7ea0bbfc]{display:flex;justify-content:flex-start;align-items:center;margin-top:24px}.load_service .load_radios[data-v-7ea0bbfc]{margin-left:10px}.load_service .load_radios input[data-v-7ea0bbfc],.load_service .load_radios label[data-v-7ea0bbfc]{cursor:pointer}@keyframes bganimation-7ea0bbfc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ea0bbfc{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-7ea0bbfc{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-7ea0bbfc]{animation:rotateEnter-7ea0bbfc .7s;position:relative}.rotate-leave-active[data-v-7ea0bbfc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ea0bbfc]{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-7ea0bbfc]{width:136%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 900px){.action[data-v-7ea0bbfc]{width:116%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 800px){.action[data-v-7ea0bbfc]{width:102%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 700px){.action[data-v-7ea0bbfc]{width:90%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 500px){.action[data-v-7ea0bbfc]{width:80%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 400px){.action[data-v-7ea0bbfc]{width:80%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@keyframes bganimation-3c1d13ee{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3c1d13ee{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-3c1d13ee{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-3c1d13ee]{animation:rotateEnter-3c1d13ee .7s;position:relative}.rotate-leave-active[data-v-3c1d13ee]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3c1d13ee]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-3c1d13ee]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-3c1d13ee]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-3c1d13ee]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-3c1d13ee]{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-3c1d13ee]{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-3c1d13ee] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-3c1d13ee]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-3c1d13ee]{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-3c1d13ee]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-3c1d13ee]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-3c1d13ee]:hover{background-color:#eee}.app-container .app-container_title button[data-v-3c1d13ee]{margin-left:10px}.app-container .app-container_body[data-v-3c1d13ee]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-3c1d13ee]{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-3c1d13ee]{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-3c1d13ee],.app-container ul.app-container_nas-menu button[data-v-3c1d13ee]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-3c1d13ee]{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-9824e3c0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9824e3c0{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-9824e3c0{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-9824e3c0]{animation:rotateEnter-9824e3c0 .7s;position:relative}.rotate-leave-active[data-v-9824e3c0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9824e3c0]{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-9824e3c0]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-467bb030{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-467bb030{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-467bb030{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-467bb030]{animation:rotateEnter-467bb030 .7s;position:relative}.rotate-leave-active[data-v-467bb030]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-467bb030]{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-467bb030]{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-10ce7ce8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-10ce7ce8{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-10ce7ce8{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-10ce7ce8]{animation:rotateEnter-10ce7ce8 .7s;position:relative}.rotate-leave-active[data-v-10ce7ce8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-10ce7ce8]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-10ce7ce8]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container a[data-v-10ce7ce8]{text-decoration:none}.app-container .app-container_title[data-v-10ce7ce8]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-10ce7ce8]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-10ce7ce8]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-10ce7ce8]{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-10ce7ce8]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-10ce7ce8]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-10ce7ce8]:hover{background-color:#eee}.app-container button[data-v-10ce7ce8],.app-container .refresh[data-v-10ce7ce8]{margin-left:20px}.app-container .app-container_body[data-v-10ce7ce8]{width:100%;height:100%}.menu_background[data-v-10ce7ce8]{position:fixed;inset:0}.app-container_domain li.domain-item[data-v-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{color:#888;overflow-x:hidden;text-overflow:ellipsis}.app-container_domain li.domain-item .domain-item_root[data-v-10ce7ce8]{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-10ce7ce8]{vertical-align:bottom;margin-left:22px}.app-container_domain .tooltip-trigger[data-v-10ce7ce8]{position:relative;display:inline-block;cursor:help;margin-right:6px}.app-container_domain .tooltip-trigger .tooltip-text[data-v-10ce7ce8]{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-10ce7ce8]{color:#fff}.app-container_domain .tooltip-trigger .tooltip-text .domain_dir_tip[data-v-10ce7ce8]{min-width:15rem;display:inline-block}.app-container_domain .tooltip-trigger:hover .tooltip-text[data-v-10ce7ce8]{visibility:visible;opacity:1}.app-container_domain .tooltip-top[data-v-10ce7ce8]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.app-container_domain .tooltip-right[data-v-10ce7ce8]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.app-container_domain .tooltip-left[data-v-10ce7ce8]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.app-container_domain .tooltip-top[data-v-10ce7ce8]: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-10ce7ce8]: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-1e34b94b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e34b94b{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-1e34b94b{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-1e34b94b]{animation:rotateEnter-1e34b94b .7s;position:relative}.rotate-leave-active[data-v-1e34b94b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e34b94b]{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-1e34b94b]{position:absolute;right:22px;cursor:pointer}.app-container_title .DeviceBlock[data-v-1e34b94b]{position:absolute;z-index:999;width:10%;right:22px;margin-top:14px}.app-container_title .DeviceBlock ul[data-v-1e34b94b]{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-1e34b94b]{margin:6px 0;line-height:28px;cursor:pointer}.app-container_title .DeviceBlock ul li a[data-v-1e34b94b]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;margin:0 20px;display:block}.app-container_title .DeviceBlock ul li[data-v-1e34b94b]:hover{background-color:#eee}.item-label[data-v-1e34b94b]{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-1e34b94b]{flex:0 0 100%;max-width:100px;text-align:left}.item-label .item-label_key span[data-v-1e34b94b]{font-size:14px;color:#333}.item-label .item-label_value[data-v-1e34b94b]{flex:1;text-align:left}.item-label .item-label_value span[data-v-1e34b94b]{font-size:14px;color:#333}.item-title span[data-v-1e34b94b]{font-size:16px;font-weight:550;color:#555}.item-flex[data-v-1e34b94b]{width:100%;display:flex;flex-wrap:wrap}.item-flex .auto[data-v-1e34b94b]{flex:auto}.item-flex button.app-editor[data-v-1e34b94b]{padding:8px 1.3rem}.menu_background[data-v-1e34b94b]{position:fixed;inset:0}@keyframes bganimation-b8956f32{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b8956f32{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-b8956f32{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-b8956f32]{animation:rotateEnter-b8956f32 .7s;position:relative}.rotate-leave-active[data-v-b8956f32]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b8956f32]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-b8956f32]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-b8956f32]{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-b8956f32]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-b8956f32]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-b8956f32]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-b8956f32]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-b8956f32]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-b8956f32]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-b8956f32],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-b8956f32]{width:100%;height:36px}.actioner-dns .actioner-dns_body .mobie_icon[data-v-b8956f32]{display:flex;justify-content:flex-start;align-items:center;cursor:pointer}.actioner-dns .actioner-dns_body .mobie_icon .dhcp_info[data-v-b8956f32]{margin-left:14px}.actioner-dns .actioner-dns_body .label-message[data-v-b8956f32]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-b8956f32]{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-b8956f32]{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-b8956f32]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.setting_status[data-v-b8956f32]{text-align:center}.setting_status p[data-v-b8956f32]{margin:10px 0}.setting_status a[data-v-b8956f32]{text-align:center;display:block;text-decoration:none}.NewAdress[data-v-b8956f32]{margin-top:10px}@keyframes bganimation-b8956f32{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b8956f32{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-b8956f32{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-b8956f32]{animation:rotateEnter-b8956f32 .7s;position:relative}.rotate-leave-active[data-v-b8956f32]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b8956f32]{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[data-v-b8956f32]{width:190%}}@media screen and (max-width: 800px){.actioner-dns[data-v-b8956f32]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-b8956f32]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-b8956f32]{width:100%}}@keyframes bganimation-193c9490{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-193c9490{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-193c9490{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-193c9490]{animation:rotateEnter-193c9490 .7s;position:relative}.rotate-leave-active[data-v-193c9490]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-193c9490]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-193c9490{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)}}.actioner-dns[data-v-193c9490]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-193c9490]{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-193c9490]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-193c9490]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_roboot_tips[data-v-193c9490]{margin-top:24px;text-align:center}.actioner-dns .actioner-dns_body .disk_loading_icon[data-v-193c9490]{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 .loading[data-v-193c9490]{display:inline-block;animation:turn-193c9490 3s linear infinite}.actioner-dns .actioner-dns_body .disk_loading_icon .loading svg[data-v-193c9490]{width:38px;height:38px}.actioner-dns .actioner-dns_body .disk_loading_icon .disk_loading_info[data-v-193c9490]{margin-top:5px}.actioner-dns .actioner-dns_body .disk_tips[data-v-193c9490]{text-align:center;font-size:16px;margin-top:159px;color:#f9ad1e}.actioner-dns .actioner-dns_body .disk_tips svg[data-v-193c9490]{vertical-align:middle}.actioner-dns .actioner-dns_body .disk_tips span[data-v-193c9490]{margin-left:6px}.actioner-dns .actioner-dns_body .sandbox_info[data-v-193c9490]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon[data-v-193c9490]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon .loading[data-v-193c9490]{display:inline-block;animation:turn-193c9490 3s linear infinite}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon .loading svg[data-v-193c9490]{width:38px;height:38px}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon .disk_loading_info[data-v-193c9490]{margin-top:5px}.actioner-dns .actioner-dns_body .label-item[data-v-193c9490]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-193c9490]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-193c9490]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-193c9490]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-193c9490]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-193c9490],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-193c9490]{width:100%;height:36px}.actioner-dns .actioner-dns_body .mobie_icon[data-v-193c9490]{display:flex;justify-content:flex-start;align-items:center;cursor:pointer}.actioner-dns .actioner-dns_body .mobie_icon .dhcp_info[data-v-193c9490]{margin-left:14px}.actioner-dns .actioner-dns_body .label-message[data-v-193c9490]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .actioner-dns_body .sandbox_tips svg[data-v-193c9490]{vertical-align:middle}.actioner-dns .actioner-dns_body .sandbox_tips span[data-v-193c9490]{font-size:12px;margin-left:4px}.actioner-dns .config-message[data-v-193c9490]{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-193c9490]{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-193c9490]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-193c9490]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-193c9490]{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-193c9490]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-193c9490]{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-193c9490]{margin-top:114px}.timeout span[data-v-193c9490],.sandbox_roboot_refresh[data-v-193c9490]{color:#5e72e4}option[data-v-193c9490]:disabled{background-color:#e0e0e0}@keyframes bganimation-193c9490{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-193c9490{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-193c9490{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-193c9490]{animation:rotateEnter-193c9490 .7s;position:relative}.rotate-leave-active[data-v-193c9490]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-193c9490]{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[data-v-193c9490]{width:104%}.actioner-tips_footer button[data-v-193c9490]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-193c9490]{width:80%}}@media screen and (max-width: 800px){.actioner-dns[data-v-193c9490]{width:60%}}@media screen and (max-width: 700px){.actioner-dns[data-v-193c9490]{width:50%}.actioner-dns .actioner-dns_body[data-v-193c9490]{min-height:42vh}.actioner-tips[data-v-193c9490]{width:47%;line-height:22px}.actioner-tips .sandbox_info[data-v-193c9490]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-193c9490]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-193c9490]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns[data-v-193c9490]{width:62%}.actioner-dns .actioner-dns_footer button[data-v-193c9490]{width:100%!important;margin-bottom:10px}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-193c9490]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns[data-v-193c9490]{width:62%}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-193c9490]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_footer button[data-v-193c9490]{width:100%!important;margin-bottom:10px}.actioner-tips .sandbox_info[data-v-193c9490]{padding:3px 10px}}@keyframes bganimation-62461857{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-62461857{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-62461857{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-62461857]{animation:rotateEnter-62461857 .7s;position:relative}.rotate-leave-active[data-v-62461857]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-62461857]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-62461857]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-62461857]{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-62461857]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-62461857]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_info[data-v-62461857]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-62461857]{font-size:16px;line-height:28px;margin:20px 0}.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-62461857]{font-size:16px;line-height:28px}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_reboot[data-v-62461857]{color:#5e72e4}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_tex[data-v-62461857]{color:red;font-size:.9em}.actioner-dns .actioner-dns_footer[data-v-62461857]{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-62461857]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-62461857]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-62461857]{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-62461857]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-62461857]{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-62461857]{margin-top:114px}.timeout span[data-v-62461857]{color:#5e72e4}@keyframes bganimation-62461857{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-62461857{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-62461857{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-62461857]{animation:rotateEnter-62461857 .7s;position:relative}.rotate-leave-active[data-v-62461857]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-62461857]{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[data-v-62461857]{width:83%}.actioner-tips_footer button[data-v-62461857]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-62461857]{width:62%}}@media screen and (max-width: 800px){.actioner-dns[data-v-62461857]{width:56%}}@media screen and (max-width: 700px){.actioner-dns[data-v-62461857]{width:50%}.actioner-dns .actioner-dns_body[data-v-62461857]{min-height:42vh}.actioner-dns .actioner-dns_footer button[data-v-62461857]{width:100%!important;margin-bottom:10px}.actioner-tips[data-v-62461857]{width:47%;line-height:22px}.actioner-tips .sandbox_info[data-v-62461857]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-62461857]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-62461857]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns[data-v-62461857]{width:62%}.actioner-dns .actioner-dns_footer button[data-v-62461857]{width:100%!important;margin-bottom:10px}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-62461857]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns[data-v-62461857]{width:62%}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-62461857]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .sandbox_info[data-v-62461857]{font-size:10px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-62461857],.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-62461857]{font-size:12px}.actioner-tips .sandbox_info[data-v-62461857]{padding:3px 10px}}@keyframes bganimation-4eb14922{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4eb14922{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-4eb14922{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-4eb14922]{animation:rotateEnter-4eb14922 .7s;position:relative}.rotate-leave-active[data-v-4eb14922]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4eb14922]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.nav-container[data-v-4eb14922]{width:100%;margin-bottom:8px}.nav-container .btn_styles[data-v-4eb14922]{width:132px;height:52px;border-radius:8px;margin-right:8px}.nav-container .app-update-button[data-v-4eb14922]{position:relative}.nav-container .app-update-button i[data-v-4eb14922]{display:inline-block;padding:3px;background-color:red;border-radius:50%}.nav-container .cover-buttob[data-v-4eb14922]{margin-left:0;margin-right:5px}.nav-container a[data-v-4eb14922]{padding:12px 1rem;margin-right:1rem;margin-bottom:1rem;display:inline-block;min-width:100px;text-align:center}.nav-container a[data-v-4eb14922]:hover{box-shadow:0 0 10px 1px #c5c5c5;transition:.3s;transform:scale(1.1)}.nav-container .app-btn-ttyd[data-v-4eb14922]:before{content:"\276f "}.nav-container .MoreMenu[data-v-4eb14922]{cursor:pointer;color:#297ff3;margin-left:20px;font-size:16px;font-weight:600}.nav-container[data-v-4eb14922]{display:flex;justify-content:start;align-items:center;flex-wrap:wrap;width:100%}.nav-container button[data-v-4eb14922]{cursor:pointer;margin-bottom:10px}.nav-container button[data-v-4eb14922]:hover{box-shadow:0 0 2px #0000001f,0 2px 2px #0003}.update[data-v-4eb14922]{visibility:hidden}.color1[data-v-4eb14922]{border:1px solid #553AFE;color:#533afe;background:rgba(85,58,254,.16)}.color2[data-v-4eb14922]{background:#2b2b2b;border:#444;color:#fff}.color3[data-v-4eb14922]{border:1px solid #FF6A67;background:rgba(255,107,103,.16);color:#ff6a67}.color4[data-v-4eb14922]{border:1px solid #3688FF;background:rgba(51,134,255,.16);color:#3688ff}.color5[data-v-4eb14922]{border:1px solid #FE3ACC;background:rgba(254,58,204,.16);color:#fe3acc}@keyframes bganimation-31aed265{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31aed265{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-31aed265{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-31aed265]{animation:rotateEnter-31aed265 .7s;position:relative}.rotate-leave-active[data-v-31aed265]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31aed265]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-31aed265]{margin-top:48px}em[data-v-31aed265]{margin:.3125rem 0;width:100%;display:block;height:1px;background-color:#eeeeee2e}[data-v-31aed265] .app-container_title{width:100%;height:34px;display:flex;flex-wrap:wrap;align-items:center;color:#1e1e1e;font-size:1.5em}@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-4a938506{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4a938506{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-4a938506{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-4a938506]{animation:rotateEnter-4a938506 .7s;position:relative}.rotate-leave-active[data-v-4a938506]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4a938506]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-4a938506]{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-4a938506]{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-4a938506]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page form[data-v-4a938506]{display:block;width:100%;margin:3rem 0}#page form label[data-v-4a938506]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-4a938506]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-4a938506]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-4a938506]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-4a938506]{width:100%;display:block;height:42px}#page .msg[data-v-4a938506]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page .btns[data-v-4a938506]{width:100%;margin-top:3rem}#page .btns button[data-v-4a938506]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-6c09be9e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6c09be9e{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-6c09be9e{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-6c09be9e]{animation:rotateEnter-6c09be9e .7s;position:relative}.rotate-leave-active[data-v-6c09be9e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6c09be9e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-6c09be9e]{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-6c09be9e]{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-6c09be9e]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page form[data-v-6c09be9e]{display:block;width:100%;margin:3rem 0}#page form label[data-v-6c09be9e]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-6c09be9e]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-6c09be9e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-6c09be9e]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-6c09be9e],#page form label select[data-v-6c09be9e]{width:100%;display:block;height:42px}#page .msgs[data-v-6c09be9e]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-6c09be9e]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-6c09be9e]{width:100%;margin-top:3rem}#page .btns button[data-v-6c09be9e]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-50358ebb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-50358ebb{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-50358ebb{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-50358ebb]{animation:rotateEnter-50358ebb .7s;position:relative}.rotate-leave-active[data-v-50358ebb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-50358ebb]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-50358ebb]{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-50358ebb]{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-50358ebb]{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-50358ebb]{background-color:#eee;display:block;width:100%;font-size:1.3em;padding:1rem;line-height:2;margin:2rem 0}#page div.info[data-v-50358ebb]{width:100%;display:block;margin:1rem 0;font-size:1.3em;text-align:left}#page .msgs[data-v-50358ebb]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-50358ebb]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-50358ebb]{width:100%;display:block;margin-top:3rem}#page .btns button[data-v-50358ebb]{display:block;width:100%!important;margin:.5rem 0}#page form[data-v-50358ebb]{display:block;width:100%;margin:3rem 0}#page form label[data-v-50358ebb]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-50358ebb]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-50358ebb]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-50358ebb]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-50358ebb],#page form label select[data-v-50358ebb]{width:100%;display:block;height:42px}.chose_dhcp[data-v-50358ebb]{display:flex;justify-content:flex-start;align-items:center}.chose_dhcp .chose_dhcp_icon[data-v-50358ebb]{cursor:pointer}.chose_dhcp .dhcp_info[data-v-50358ebb]{margin-left:16px}@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-aae61368{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-aae61368{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-aae61368{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-aae61368]{animation:rotateEnter-aae61368 .7s;position:relative}.rotate-leave-active[data-v-aae61368]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-aae61368]{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-aae61368]{margin-bottom:32px}.item-status[data-v-aae61368]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}@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-45dd818a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-45dd818a{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-45dd818a{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-45dd818a]{animation:rotateEnter-45dd818a .7s;position:relative}.rotate-leave-active[data-v-45dd818a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-45dd818a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-45dd818a]{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-51cceeb4]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-51cceeb4]{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-51cceeb4]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-51cceeb4]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-51cceeb4]{width:100%;font-size:16px;color:#666;margin-bottom:10px}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-51cceeb4]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-51cceeb4]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-51cceeb4]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-51cceeb4],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-51cceeb4]{width:100%;min-height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-51cceeb4]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-51cceeb4]{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-51cceeb4]{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-51cceeb4]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-51cceeb4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-51cceeb4{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-51cceeb4{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-51cceeb4]{animation:rotateEnter-51cceeb4 .7s;position:relative}.rotate-leave-active[data-v-51cceeb4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-51cceeb4]{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[data-v-51cceeb4]{width:190%}.actioner-dns .actioner-dns_body[data-v-51cceeb4]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-51cceeb4]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-51cceeb4]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-51cceeb4]{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-de8ae0e6{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-de8ae0e6{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-de8ae0e6{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-de8ae0e6]{animation:rotateEnter-de8ae0e6 .7s;position:relative}.rotate-leave-active[data-v-de8ae0e6]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-de8ae0e6]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.progress[data-v-de8ae0e6]{width:100%;display:block;position:relative;background-color:#eee;border-radius:4px;height:18px;line-height:18px;cursor:pointer;overflow:hidden}.progress .progress-value[data-v-de8ae0e6]{transition:.5s;position:absolute;left:0;top:0;bottom:0;height:100%;text-align:center;color:#fff;vertical-align:middle;font-size:12px}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-0c4a2195{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-0c4a2195{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-0c4a2195{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-0c4a2195]{animation:rotateEnter-0c4a2195 .7s;position:relative}.rotate-leave-active[data-v-0c4a2195]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-0c4a2195]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-0c4a2195{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)}}.loading[data-v-0c4a2195]{animation:turn-0c4a2195 5s linear infinite;width:50px;height:50px;margin:15px 0;background:none!important}.loading svg[data-v-0c4a2195]{width:100%;height:100%}.loading svg path[data-v-0c4a2195]{fill:#fff}@keyframes bganimation-7edad4d2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7edad4d2{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-7edad4d2{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-7edad4d2]{animation:rotateEnter-7edad4d2 .7s;position:relative}.rotate-leave-active[data-v-7edad4d2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7edad4d2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.flow[data-v-7edad4d2]{position:relative}.flow .echart[data-v-7edad4d2]{width:100%;height:100%}.flow .flow-data[data-v-7edad4d2]{position:absolute;right:10px;top:10px}.flow .flow-data span[data-v-7edad4d2]{display:block;color:#0009;font-size:12px;margin-bottom:5px;font-weight:600;font-family:PingFangSC-Semibold,PingFang SC}@keyframes bganimation-8ee37a62{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-8ee37a62{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-8ee37a62{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-8ee37a62]{animation:rotateEnter-8ee37a62 .7s;position:relative}.rotate-leave-active[data-v-8ee37a62]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-8ee37a62]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-8ee37a62{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)}}.toast[data-v-8ee37a62]{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-8ee37a62]{width:50px;height:50px;margin:15px 0;background:none!important}.toast div.icon svg[data-v-8ee37a62]{width:100%;height:100%}.toast div.icon svg path[data-v-8ee37a62]{fill:#fff}.toast .loading[data-v-8ee37a62]{animation:turn-8ee37a62 5s linear infinite}.toast .message[data-v-8ee37a62]{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-1e29e158]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-1e29e158]{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-1e29e158]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-1e29e158]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-1e29e158]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29e158]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-1e29e158]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-1e29e158]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-1e29e158],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-1e29e158]{width:100%;height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-1e29e158]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-1e29e158]{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-1e29e158]{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-1e29e158]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-1e29e158{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e29e158{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-1e29e158{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-1e29e158]{animation:rotateEnter-1e29e158 .7s;position:relative}.rotate-leave-active[data-v-1e29e158]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e29e158]{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[data-v-1e29e158]{width:190%}.actioner-dns .actioner-dns_body[data-v-1e29e158]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-1e29e158]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-1e29e158]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-1e29e158]{width:100%}}.action[data-v-ed442d72]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action .action-body[data-v-ed442d72]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-ed442d72]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-ed442d72]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-ed442d72]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-ed442d72]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-ed442d72{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-ed442d72{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-ed442d72{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-ed442d72]{animation:rotateEnter-ed442d72 .7s;position:relative}.rotate-leave-active[data-v-ed442d72]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-ed442d72]{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-ed442d72]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-ed442d72]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-ed442d72]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-ed442d72]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-ed442d72]{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-252d5ec7]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-252d5ec7]{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-252d5ec7]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-252d5ec7]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-252d5ec7]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-252d5ec7]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-252d5ec7]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-252d5ec7]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-252d5ec7],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-252d5ec7]{height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-252d5ec7]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-252d5ec7]{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-252d5ec7]{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-252d5ec7]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-dns .select-editable[data-v-252d5ec7]{position:relative;border:solid grey 1px;width:100%}.actioner-dns .select-editable select[data-v-252d5ec7]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.actioner-dns .select-editable input[data-v-252d5ec7]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.actioner-dns .select-editable select[data-v-252d5ec7]:focus,.actioner-dns .select-editable input[data-v-252d5ec7]:focus{outline:none}.actioner-dns[data-v-252d5ec7] ::placeholder{color:#999}.successed[data-v-252d5ec7]{text-align:center;font-size:14px;margin-bottom:104px}.finished[data-v-252d5ec7]{display:flex;justify-content:center;margin:80px 80px 28px}.docker_moves[data-v-252d5ec7]{text-align:center}.docker_moves .moves[data-v-252d5ec7]{margin-top:10px}.docker_moves .moves input[data-v-252d5ec7]{cursor:pointer}.docker_moves .moves label[data-v-252d5ec7]{margin-left:10px;cursor:pointer}.btns[data-v-252d5ec7]{text-align:center}.item_info[data-v-252d5ec7]{margin-left:10px}.softsource_tit[data-v-252d5ec7]{margin:0 auto}.softsource_successed[data-v-252d5ec7]{width:20%!important}@keyframes bganimation-252d5ec7{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-252d5ec7{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-252d5ec7{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-252d5ec7]{animation:rotateEnter-252d5ec7 .7s;position:relative}.rotate-leave-active[data-v-252d5ec7]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-252d5ec7]{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[data-v-252d5ec7]{width:190%}.actioner-dns .actioner-dns_body[data-v-252d5ec7]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-252d5ec7]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-252d5ec7]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-252d5ec7]{width:100%}}@keyframes bganimation-b873879c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b873879c{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-b873879c{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-b873879c]{animation:rotateEnter-b873879c .7s;position:relative}.rotate-leave-active[data-v-b873879c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b873879c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}em[data-v-b873879c]{display:block;margin:.5rem 0;width:100%}.app-container_status-container[data-v-b873879c]{width:100%;background-color:#fff;padding:10px 30px;border-radius:6px;position:relative}.app-container_status-container .more_icon[data-v-b873879c]{position:absolute;right:22px;cursor:pointer}.app-container_status-container .more_icon svg[data-v-b873879c]{position:relative;z-index:9999}.app-container_status-container .DeviceBlock[data-v-b873879c]{position:absolute;z-index:999;width:60%;right:22px}.app-container_status-container .DeviceBlock ul[data-v-b873879c]{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-b873879c]{line-height:28px}.app-container_status-container .DeviceBlock ul li a[data-v-b873879c]{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-b873879c]{cursor:pointer}.app-container_status-container .DeviceBlock ul li[data-v-b873879c]:hover{background-color:#eee}.app-container_status-container .DeviceBlock li[data-v-b873879c]:last-child{margin-top:5px}.app-container_status-container span.container_success[data-v-b873879c]{display:block;font-size:15px;font-family:PingFangSC-Medium,PingFang SC}.app-container_status-container span.container_failure[data-v-b873879c]{display:block;font-size:1.2em}.app-container_status-container .container_configure[data-v-b873879c]{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-b873879c]{font-size:1.25rem;color:#333;display:block}.app-container_status-container span.container_content[data-v-b873879c]{font-size:1.25rem;color:#666}.app-container_status-container .devise[data-v-b873879c]{display:block;font-size:12px;color:#727272}.app-container_status-container span.container_time[data-v-b873879c]{font-size:12px;color:#727272;margin-top:3px;display:block}.app-container_status-label[data-v-b873879c]{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.app-container_status-label .app-container_status-label_item[data-v-b873879c]{flex:0 0 100%;max-width:calc(50% - 10px);margin-bottom:1rem}.app-container_status-label_block[data-v-b873879c]{display:block;color:#000;margin:10px 0 8px}.app-container_status-container_body[data-v-b873879c]{width:100%;height:100%;text-align:center;display:flex;align-items:center;align-content:center}.app-container_status-container_body svg[data-v-b873879c]{min-width:32px}.app-container_status-container_body .app-container_status-info[data-v-b873879c]{margin-left:10px;text-align:left;margin-right:10px;min-width:57px}.app-container_status-container_body svg[data-v-b873879c]{width:50px;height:50px}.app-container_status-container_body span[data-v-b873879c]{width:100%;margin:5px 0}.menu_background[data-v-b873879c]{position:fixed;inset:0}.app-container_body[data-v-b873879c]{width:100%}.network-container[data-v-78a4e41a]{width:100%;display:flex;flex-wrap:wrap}.network-container .network-container_flow[data-v-78a4e41a]{flex:0 0 100%;max-width:60%;padding-right:10px}.network-container .network-container_flow .network-container_flow-container[data-v-78a4e41a]{border-radius:6px;overflow:hidden;position:relative;background-color:#fff;box-shadow:0 0 10px 1px #373f6924}.network-container .network-container_status[data-v-78a4e41a]{flex:0 0 100%;max-width:40%;padding-left:10px;display:flex;flex-wrap:wrap}@keyframes bganimation-78a4e41a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-78a4e41a{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-78a4e41a{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-78a4e41a]{animation:rotateEnter-78a4e41a .7s;position:relative}.rotate-leave-active[data-v-78a4e41a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-78a4e41a]{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-78a4e41a]{width:100%}.network-container .network-container_flow[data-v-78a4e41a]{flex:0 0 100%;max-width:100%;padding-right:0}.network-container .network-container_status[data-v-78a4e41a]{flex:0 0 100%;max-width:100%;padding-left:0;margin-top:1rem}}.action .action-footer button[data-v-7e52eb3f]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-7e52eb3f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7e52eb3f{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-7e52eb3f{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-7e52eb3f]{animation:rotateEnter-7e52eb3f .7s;position:relative}.rotate-leave-active[data-v-7e52eb3f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7e52eb3f]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-7e52eb3f]{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-7e52eb3f]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-7e52eb3f]{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-7e52eb3f]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-7e52eb3f]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-7e52eb3f]{flex:auto}.action.format .disk-list[data-v-7e52eb3f]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-7e52eb3f]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-7e52eb3f]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-7e52eb3f]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-7e52eb3f]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-7e52eb3f]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-7e52eb3f],.action.format .label-item .label-item_value input[data-v-7e52eb3f]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-7e52eb3f]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-7e52eb3f]{flex:auto}.action.format p.msg[data-v-7e52eb3f]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-7e52eb3f]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-7e52eb3f]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-7e52eb3f]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-7e52eb3f]{margin:1rem 0;font-size:1.5em;color:#333}.action.result[data-v-7e52eb3f]{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-7e52eb3f]{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-7e52eb3f]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-7e52eb3f]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-7e52eb3f]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-7e52eb3f]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-7e52eb3f]{color:#0000fb}.action.result .btns[data-v-7e52eb3f]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-7e52eb3f{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7e52eb3f{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-7e52eb3f{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-7e52eb3f]{animation:rotateEnter-7e52eb3f .7s;position:relative}.rotate-leave-active[data-v-7e52eb3f]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7e52eb3f]{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-7e52eb3f]{width:168%}}@media screen and (max-width: 900px){.action.format[data-v-7e52eb3f]{width:146%}}@media screen and (max-width: 800px){.action.format[data-v-7e52eb3f]{width:136%}}@media screen and (max-width: 700px){.action.format[data-v-7e52eb3f]{width:116%}}@media screen and (max-width: 500px){.action.format[data-v-7e52eb3f]{width:100%}}.action .action-footer button[data-v-3fc7bda2]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-3fc7bda2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3fc7bda2{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-3fc7bda2{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-3fc7bda2]{animation:rotateEnter-3fc7bda2 .7s;position:relative}.rotate-leave-active[data-v-3fc7bda2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3fc7bda2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-3fc7bda2]{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-3fc7bda2]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-3fc7bda2]{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-3fc7bda2]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-3fc7bda2]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-3fc7bda2]{flex:auto}.action.format .disk-list[data-v-3fc7bda2]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-3fc7bda2]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-3fc7bda2]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-3fc7bda2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-3fc7bda2]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-3fc7bda2]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-3fc7bda2],.action.format .label-item .label-item_value input[data-v-3fc7bda2]{width:100%;height:36px}.action.format .label-item .label-item_path[data-v-3fc7bda2]{padding:0 14px;background-color:#e5e5e5;width:100%;height:28px;line-height:28px;margin-top:10px}.action.format .auto[data-v-3fc7bda2]{flex:auto}.action.format p.msg[data-v-3fc7bda2]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-3fc7bda2]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-3fc7bda2]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-3fc7bda2]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-3fc7bda2]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-3fc7bda2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3fc7bda2{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-3fc7bda2{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-3fc7bda2]{animation:rotateEnter-3fc7bda2 .7s;position:relative}.rotate-leave-active[data-v-3fc7bda2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3fc7bda2]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-3fc7bda2]{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-3fc7bda2]{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-3fc7bda2]{width:100px;height:100px}.action.result .action-body .action-body_icon svg.icon[data-v-3fc7bda2]{width:100%;height:100%}.action.result .action-body .action-body_msg[data-v-3fc7bda2]{font-size:2em;color:#666;text-align:center;width:100%;margin:1rem 0}.action.result .action-body .action-body_info[data-v-3fc7bda2]{margin:1rem 0;width:100%;text-align:center;color:#666;font-size:1.2em}.action.result .action-body .action-body_info a[data-v-3fc7bda2]{color:#0000fb}.action.result .btns[data-v-3fc7bda2]{width:100%;text-align:center;margin:1rem 0}@keyframes bganimation-6f3ddc5a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f3ddc5a{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-6f3ddc5a{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-6f3ddc5a]{animation:rotateEnter-6f3ddc5a .7s;position:relative}.rotate-leave-active[data-v-6f3ddc5a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f3ddc5a]{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-6f3ddc5a]{color:red}.disk-content[data-v-6f3ddc5a]{padding:1rem;border:1px solid #cfcfcf;margin:16px 0}.disk-content li.disk-item[data-v-6f3ddc5a]{width:100%;display:flex;align-items:center}.disk-content li.disk-item .disk-item_name[data-v-6f3ddc5a]{flex:0 0 50%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-right:10px}.disk-content li.disk-item .disk_value[data-v-6f3ddc5a]{flex:0 0 50%;display:flex;justify-content:space-between;align-items:center}.disk-content li.disk-item .disk_value .cbi-button[data-v-6f3ddc5a]{margin-left:10px}.disk-content li.disk-item .disk_value .disk-item_value[data-v-6f3ddc5a]{flex:auto;padding-left:10px;position:relative}.disk-content li.disk-item .disk_value .disk-item_value .value-data[data-v-6f3ddc5a]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%;color:#297ff3;cursor:pointer}.disk-content li.disk-item .disk_value .disk-item_value .value-data button[data-v-6f3ddc5a]{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-6f3ddc5a]:hover{opacity:.7}.disk-content li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-6f3ddc5a]{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-6f3ddc5a]: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-6f3ddc5a]{visibility:visible;transition:.7s;opacity:1}.disk-content li.disk_status[data-v-6f3ddc5a]{display:flex;text-align:center;padding-left:52%;font-size:12px;padding-top:6px}.disk-content li.disk_status .disk_status_item[data-v-6f3ddc5a]{display:flex;margin-right:20px}.disk-content li.disk_status .disk_status_item .disk_tip[data-v-6f3ddc5a]{display:flex;align-items:center}.disk_infoicon[data-v-6f3ddc5a]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-6f3ddc5a]{flex:none}.tooltip-trigger[data-v-6f3ddc5a]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-6f3ddc5a]{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-6f3ddc5a]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-6f3ddc5a]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-6f3ddc5a]{visibility:visible;opacity:1}.tooltip-top[data-v-6f3ddc5a]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-6f3ddc5a]: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-6f3ddc5a]: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-6f3ddc5a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6f3ddc5a{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-6f3ddc5a{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-6f3ddc5a]{animation:rotateEnter-6f3ddc5a .7s;position:relative}.rotate-leave-active[data-v-6f3ddc5a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6f3ddc5a]{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-6f3ddc5a]{width:148%}.disk-content li.disk-item .disk_value[data-v-6f3ddc5a]{display:block}.disk-content li.disk_status[data-v-6f3ddc5a]{flex-wrap:wrap}}@media screen and (max-width: 700px){.disk-content li.disk-item .disk_value[data-v-6f3ddc5a]{display:block}}@media screen and (max-width: 700px){.disk-content li.disk_status[data-v-6f3ddc5a]{flex-wrap:wrap;width:113%}}@media screen and (max-width: 400px){.disk-content li.disk_status[data-v-6f3ddc5a]{flex-wrap:wrap;width:155%;padding:0 68px}}.action[data-v-4688e946]{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-4688e946]{overflow:auto}.action ul .app-container_info[data-v-4688e946]{display:flex;justify-content:space-between;max-width:56%;margin-top:18px;font-weight:600}.action ul .app-container_body[data-v-4688e946]{width:100%;height:100%}.action .action-footer[data-v-4688e946]{text-align:center;margin-top:46px}.action .action-footer button[data-v-4688e946]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-4688e946{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4688e946{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-4688e946{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-4688e946]{animation:rotateEnter-4688e946 .7s;position:relative}.rotate-leave-active[data-v-4688e946]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4688e946]{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-4688e946]{width:160%}}@media screen and (max-width: 800px){.action[data-v-4688e946]{width:138%}}@media screen and (max-width: 700px){.action[data-v-4688e946]{width:132%}}@media screen and (max-width: 600px){.action[data-v-4688e946]{width:116%}}@media screen and (max-width: 500px){.action[data-v-4688e946]{width:100%}}@media screen and (max-width: 400px){.action[data-v-4688e946]{width:90%}}@media screen and (max-width: 300px){.action[data-v-4688e946]{width:100%}}@keyframes bganimation-1c6dcf68{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1c6dcf68{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-1c6dcf68{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-1c6dcf68]{animation:rotateEnter-1c6dcf68 .7s;position:relative}.rotate-leave-active[data-v-1c6dcf68]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1c6dcf68]{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-1c6dcf68]{color:red}li.disk-item[data-v-1c6dcf68]{width:100%;display:flex;margin:1rem 0;align-items:center}li.disk-item .disk-item_name[data-v-1c6dcf68]{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-1c6dcf68]{padding-left:1rem;align-self:center;align-items:center;cursor:help;flex:none;display:flex}li.disk-item .disk_value[data-v-1c6dcf68]{display:flex;justify-content:flex-end;width:50%}li.disk-item .disk_value .disk-item_value[data-v-1c6dcf68]{flex:auto;padding-left:10px;position:relative}li.disk-item .disk_value .disk-item_value .value-data[data-v-1c6dcf68]{width:100%;text-overflow:ellipsis;white-space:nowrap;height:100%}li.disk-item .disk_value .disk-item_value .value-data button[data-v-1c6dcf68]{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-1c6dcf68]:hover{opacity:.7}li.disk-item .disk_value .disk-item_value .disk-item-tooltip[data-v-1c6dcf68]{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-1c6dcf68]: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-1c6dcf68]{visibility:visible;transition:.7s;opacity:1}.disk_infoicon[data-v-1c6dcf68]{margin-left:10px;cursor:pointer}.tooltip-trigger[data-v-1c6dcf68]{flex:none}.tooltip-trigger[data-v-1c6dcf68]{position:relative;display:inline-block;cursor:help;margin-right:6px;margin-left:10px}.tooltip-trigger .tooltip-text[data-v-1c6dcf68]{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-1c6dcf68]{color:#fff}.tooltip-trigger .tooltip-text .disk_dir_tip[data-v-1c6dcf68]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-1c6dcf68]{visibility:visible;opacity:1}.tooltip-top[data-v-1c6dcf68]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.tooltip-top[data-v-1c6dcf68]: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-1c6dcf68]: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-7d76bdb3{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7d76bdb3{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-7d76bdb3{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-7d76bdb3]{animation:rotateEnter-7d76bdb3 .7s;position:relative}.rotate-leave-active[data-v-7d76bdb3]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7d76bdb3]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-7d76bdb3{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)}}.app-container[data-v-7d76bdb3]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%}.app-container ul[data-v-7d76bdb3]{flex:0 0 100%;width:100%}.app-container ul .app-container_title[data-v-7d76bdb3]{display:flex;justify-content:space-between;align-items:center}.app-container ul .app-container_title .more_icon[data-v-7d76bdb3]{cursor:pointer;position:absolute;right:22px}.app-container ul .app-container_title .DeviceBlock[data-v-7d76bdb3]{position:absolute;z-index:999;width:30%;right:22px}.app-container ul .app-container_title .DeviceBlock ul[data-v-7d76bdb3]{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-7d76bdb3]{margin:6px 0;cursor:pointer;line-height:28px}.app-container ul .app-container_title .DeviceBlock ul li a[data-v-7d76bdb3]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;display:block}.app-container ul .app-container_title .DeviceBlock ul li[data-v-7d76bdb3]:hover{background-color:#eee}.app-container ul .disk_loading_icon[data-v-7d76bdb3]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.app-container ul .disk_loading_icon .loading[data-v-7d76bdb3]{display:inline-block;animation:turn-7d76bdb3 3s linear infinite}.app-container ul .disk_loading_icon .loading svg[data-v-7d76bdb3]{width:38px;height:38px}.app-container ul .disk_loading_icon .disk_loading_info[data-v-7d76bdb3]{margin-top:5px}.refresh[data-v-7d76bdb3]{margin-left:20px}.app-container_info[data-v-7d76bdb3]{font-size:14px;font-weight:700;height:31px;line-height:52px}.app-container_body[data-v-7d76bdb3]{width:100%;height:100%}.menu_background[data-v-7d76bdb3]{position:fixed;inset:0}@keyframes bganimation-2e74c162{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-2e74c162{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-2e74c162{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-2e74c162]{animation:rotateEnter-2e74c162 .7s;position:relative}.rotate-leave-active[data-v-2e74c162]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-2e74c162]{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-2e74c162]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.sambas-item .sambas-item_name[data-v-2e74c162]{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-2e74c162]{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-2e74c162]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}.app-container_samba li.samba-item .samba-item_name[data-v-2e74c162]{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-2e74c162]{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-2e74c162]{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-2e74c162]:hover{opacity:.7}.tit[data-v-2e74c162]{color:#1e1e1e;font-weight:700;font-size:16px}@keyframes bganimation-47e88ce2{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-47e88ce2{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-47e88ce2{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-47e88ce2]{animation:rotateEnter-47e88ce2 .7s;position:relative}.rotate-leave-active[data-v-47e88ce2]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-47e88ce2]{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-47e88ce2]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.webdav-item .webdav-item_name[data-v-47e88ce2]{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-47e88ce2]{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-a31fbfcc]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.list[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:70px;line-height:70px}.action.list .action-header .action-header_title[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:calc(100% - 176px)}.action.list .action-msg[data-v-a31fbfcc]{width:100%;height:36px;line-height:36px;text-align:center}.action.list .action-footer[data-v-a31fbfcc]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.list .action-footer .auto[data-v-a31fbfcc]{flex:auto}.action.list .disk-list[data-v-a31fbfcc]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.format[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:70px;line-height:70px}.action.format .action-header .action-header_title[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:calc(100% - 140px);overflow:auto}.action.format .action-footer[data-v-a31fbfcc]{width:100%;height:70px;line-height:70px;color:#333;display:flex;flex-wrap:wrap;align-items:center}.action.format .action-footer .auto[data-v-a31fbfcc]{flex:auto}.action.format .disk-list[data-v-a31fbfcc]{width:100%;height:100%;border:1px solid #dfe1e5;overflow:auto}.action.format .label-item[data-v-a31fbfcc]{width:100%;margin:1rem 0}.action.format .label-item .label-item_key[data-v-a31fbfcc]{width:100%;font-size:16px;color:#666}.action.format .label-item .label-item_key span[data-v-a31fbfcc]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.action.format .label-item .label-item_key span[data-v-a31fbfcc]:before{content:"*";color:#f56c6c;margin-right:4px}.action.format .label-item .label-item_value[data-v-a31fbfcc]{width:100%;margin-top:5px}.action.format .label-item .label-item_value select[data-v-a31fbfcc],.action.format .label-item .label-item_value input[data-v-a31fbfcc]{width:100%;height:36px}.action.format .auto[data-v-a31fbfcc]{flex:auto}.action.format p.msg[data-v-a31fbfcc]{margin:.5rem 0;color:red}.action.format .disk-info[data-v-a31fbfcc]{width:100%;text-align:center}.action.format .disk-info .disk-info_icon[data-v-a31fbfcc]{width:100px;height:100px;margin:0 auto}.action.format .disk-info .disk-info_icon svg[data-v-a31fbfcc]{width:100%;height:100%}.action.format .disk-info .disk-info_mount-name[data-v-a31fbfcc]{margin:1rem 0;font-size:1.5em;color:#333}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action.result[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:70px;line-height:70px}.action.result .action-header .action-header_title[data-v-a31fbfcc]{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-a31fbfcc]{width:100%;height:calc(100% - 140px);overflow:auto}.action.result .action-body .format-result[data-v-a31fbfcc]{width:100%;text-align:center;font-size:2em;color:#333;margin:1rem 0}.action.result .action-body .format-info[data-v-a31fbfcc]{width:100%;text-align:center;font-size:1.3em}.action.result .action-body .format-info a[data-v-a31fbfcc]{color:#f70324}.action.result .action-footer[data-v-a31fbfcc]{width:100%;height:70px;line-height:70px;color:#333}.action.result .auto[data-v-a31fbfcc]{flex:auto}@keyframes bganimation-a31fbfcc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-a31fbfcc{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-a31fbfcc{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-a31fbfcc]{animation:rotateEnter-a31fbfcc .7s;position:relative}.rotate-leave-active[data-v-a31fbfcc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-a31fbfcc]{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-a31fbfcc]{width:136%}}@media screen and (max-width: 900px){.action.list[data-v-a31fbfcc]{width:126%}}@media screen and (max-width: 800px){.action.list[data-v-a31fbfcc]{width:112%}}@media screen and (max-width: 700px){.action.list[data-v-a31fbfcc]{width:100%}}@media screen and (max-width: 500px){.action.list[data-v-a31fbfcc]{width:80%}}@keyframes bganimation-530e728c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-530e728c{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-530e728c{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-530e728c]{animation:rotateEnter-530e728c .7s;position:relative}.rotate-leave-active[data-v-530e728c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-530e728c]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-530e728c]{width:700px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action .action-body[data-v-530e728c]{width:100%;text-align:center;padding:3rem 0}.action .action-body h2.title[data-v-530e728c]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action .action-body .info[data-v-530e728c]{color:#666;font-size:1.3em;margin:1rem 0}.action .action-body .btns[data-v-530e728c]{width:100%;margin-top:3rem}.action .action-body .btns button[data-v-530e728c]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-530e728c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-530e728c{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-530e728c{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-530e728c]{animation:rotateEnter-530e728c .7s;position:relative}.rotate-leave-active[data-v-530e728c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-530e728c]{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-530e728c]{font-size:20px}}@media screen and (max-width: 900px){.action .action-body h2.title[data-v-530e728c]{font-size:20px}}@media screen and (max-width: 800px){.action .action-body h2.title[data-v-530e728c]{font-size:20px}}@media screen and (max-width: 700px){.action .action-body h2.title[data-v-530e728c]{font-size:20px}}@media screen and (max-width: 500px){.action .action-body h2.title[data-v-530e728c]{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-567b2684{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-567b2684{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-567b2684{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-567b2684]{animation:rotateEnter-567b2684 .7s;position:relative}.rotate-leave-active[data-v-567b2684]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-567b2684]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-567b2684]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action h2.title[data-v-567b2684]{width:100%;display:block;color:#1e1e1e;font-size:3em;padding:0;margin:0;text-align:center}.action h3.desc[data-v-567b2684]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:1rem 0;text-align:center}.action form[data-v-567b2684]{width:100%;display:block;padding:2rem 0}.action form label[data-v-567b2684]{width:100%;display:block;margin:1rem 0}.action form label input[data-v-567b2684],.action form label select[data-v-567b2684]{width:100%;display:block;height:42px}.action .btns[data-v-567b2684]{width:100%;margin-top:3rem}.action .btns button[data-v-567b2684]{display:block;width:100%!important;margin:.5rem 0}.action li.disk-item[data-v-567b2684]{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-567b2684]:hover{background-color:#eee}.action li.disk-item .disk-item_f[data-v-567b2684]{display:flex;flex-wrap:wrap}.action li.disk-item .disk-item_f .disk-item_venderModel[data-v-567b2684],.action li.disk-item .disk-item_f .disk-item_used[data-v-567b2684]{width:100%}@keyframes bganimation-567b2684{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-567b2684{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-567b2684{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-567b2684]{animation:rotateEnter-567b2684 .7s;position:relative}.rotate-leave-active[data-v-567b2684]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-567b2684]{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-567b2684]{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-fc8a3b22{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-fc8a3b22{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-fc8a3b22{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-fc8a3b22]{animation:rotateEnter-fc8a3b22 .7s;position:relative}.rotate-leave-active[data-v-fc8a3b22]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-fc8a3b22]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-fc8a3b22]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-fc8a3b22]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-fc8a3b22]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-fc8a3b22]{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-fc8a3b22]{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-fc8a3b22] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-fc8a3b22]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-fc8a3b22]{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-fc8a3b22]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-fc8a3b22]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-fc8a3b22]:hover{background-color:#eee}.app-container .app-container_title button[data-v-fc8a3b22]{margin-left:10px}.app-container .app-container_body[data-v-fc8a3b22]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-fc8a3b22]{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-fc8a3b22]{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-fc8a3b22],.app-container ul.app-container_nas-menu button[data-v-fc8a3b22]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-fc8a3b22]{position:fixed;inset:0}@keyframes bganimation-4272377e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4272377e{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-4272377e{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-4272377e]{animation:rotateEnter-4272377e .7s;position:relative}.rotate-leave-active[data-v-4272377e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4272377e]{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-4272377e]{width:100%;display:flex;flex-wrap:wrap;margin:1.5rem 0}li.docker-item .docker-item_name[data-v-4272377e]{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-4272377e]{flex:0 0 100%;max-width:50%;padding-left:10px;float:left;display:flex}li.docker-item .docker-item_value .configure[data-v-4272377e]{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-4272377e]{color:#888;overflow-x:hidden;text-overflow:ellipsis}li.docker-item .docker-item_root[data-v-4272377e]{display:flex;justify-content:space-between;flex-wrap:wrap;margin-top:16px;max-width:323px;flex:0 0 100%}.docker_tip svg[data-v-4272377e]{vertical-align:bottom;margin-left:22px}.tooltip-trigger[data-v-4272377e]{position:relative;display:inline-block;cursor:help;margin-right:6px}.tooltip-trigger .tooltip-text[data-v-4272377e]{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-4272377e]{color:#fff}.tooltip-trigger .tooltip-text .docker_dir_tip[data-v-4272377e]{min-width:15rem;display:inline-block}.tooltip-trigger:hover .tooltip-text[data-v-4272377e]{visibility:visible;opacity:1}.tooltip-top[data-v-4272377e]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.tooltip-right[data-v-4272377e]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.tooltip-left[data-v-4272377e]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.tooltip-top[data-v-4272377e]: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-4272377e]: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-4272377e]{display:inline-block;cursor:pointer;position:relative}.input-switch span[data-v-4272377e]{display:block;position:relative;width:50px;height:20px;border-radius:10px;padding:2px}.input-switch span em[data-v-4272377e]{display:block;width:16px;height:16px;background-color:#fff;border-radius:10px}.input-switch span.enable[data-v-4272377e]{background-color:#297ff3;transition:.3s}.input-switch span.enable em[data-v-4272377e]{transform:translate(30px);transition:.3s}.input-switch span.close[data-v-4272377e]{background-color:#cecece;transition:.3s}.input-switch span.close em[data-v-4272377e]{transform:translate(0);transition:.3s}@keyframes bganimation-08e0f5d4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-08e0f5d4{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-08e0f5d4{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-08e0f5d4]{animation:rotateEnter-08e0f5d4 .7s;position:relative}.rotate-leave-active[data-v-08e0f5d4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-08e0f5d4]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-08e0f5d4]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;overflow:auto;padding:1rem 10%;border-radius:6px}.action h2.title[data-v-08e0f5d4]{width:100%;display:block;color:#1e1e1e;font-size:22px;padding:0;margin:0;text-align:center}.action .roots[data-v-08e0f5d4]{display:flex;max-width:342px;align-items:center;margin-top:32px;margin-bottom:16px}.action .roots .root[data-v-08e0f5d4]{color:#000000d4;font-size:14px;text-align:center}.action .move[data-v-08e0f5d4]{display:flex;justify-content:left;align-items:center}.action .change[data-v-08e0f5d4]{width:678px}.action .desc[data-v-08e0f5d4]{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-08e0f5d4]{width:100%;display:block}.action .tips[data-v-08e0f5d4]{width:477px}.action .tips .tip[data-v-08e0f5d4]{color:#faad14;padding-left:6px}.action .btns[data-v-08e0f5d4]{width:100%;margin:104px auto 0}.action .btns button[data-v-08e0f5d4]{display:block;width:100%!important}.action .roots_tit[data-v-08e0f5d4]{color:#000000d4;font-size:14px;font-weight:700;width:118px;text-align:right}.action .successed[data-v-08e0f5d4]{text-align:center;font-size:14px}.action .finished[data-v-08e0f5d4]{display:flex;justify-content:center;margin:80px 80px 28px}.action .docker_moves[data-v-08e0f5d4]{text-align:center}.action .docker_moves .moves[data-v-08e0f5d4]{margin-top:10px}.action .docker_moves .moves input[data-v-08e0f5d4]{cursor:pointer}.action .docker_moves .moves label[data-v-08e0f5d4]{margin-left:10px;cursor:pointer}.select-editable[data-v-08e0f5d4]{position:relative;border:solid grey 1px;width:438px;height:34px}.select-editable select[data-v-08e0f5d4]{position:absolute;top:0;left:0;font-size:14px;border:none;width:100%;height:100%;margin:0}.select-editable input[data-v-08e0f5d4]{position:absolute;top:0;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-08e0f5d4]:focus,.select-editable input[data-v-08e0f5d4]:focus{outline:none}[data-v-08e0f5d4]::placeholder{color:#999}@keyframes bganimation-08e0f5d4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-08e0f5d4{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-08e0f5d4{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-08e0f5d4]{animation:rotateEnter-08e0f5d4 .7s;position:relative}.rotate-leave-active[data-v-08e0f5d4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-08e0f5d4]{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 .roots[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap;width:102px}.action .move[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap;width:100px}.action .move .roots_tit[data-v-08e0f5d4]{text-align:left}.docker_download .docker_moves[data-v-08e0f5d4]{display:flex;justify-content:center;flex-wrap:wrap}}@media screen and (max-width: 900px){.action[data-v-08e0f5d4]{width:116%}.action .roots[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap;width:102px}.action .move[data-v-08e0f5d4]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .move .roots_tit[data-v-08e0f5d4]{text-align:left}.docker_download[data-v-08e0f5d4]{width:80%}}@media screen and (max-width: 800px){.action[data-v-08e0f5d4]{width:102%}.action .btns[data-v-08e0f5d4]{margin-top:34px}.docker_download[data-v-08e0f5d4]{width:76%}}@media screen and (max-width: 700px){.action[data-v-08e0f5d4]{width:90%}.action .btns[data-v-08e0f5d4]{margin-top:34px}.action .select-editable[data-v-08e0f5d4]{width:351px}.action .docker_moves[data-v-08e0f5d4]{display:flex;justify-content:center;flex-wrap:wrap}.docker_download[data-v-08e0f5d4]{width:60%}}@media screen and (max-width: 500px){.action[data-v-08e0f5d4]{width:80%}.action .btns[data-v-08e0f5d4]{margin-top:34px}.action .finished[data-v-08e0f5d4]{width:48px;margin:0 auto}.action .select-editable[data-v-08e0f5d4]{width:251px}.docker_download[data-v-08e0f5d4]{width:50%;padding:15px 10px}}@media screen and (max-width: 400px){.action[data-v-08e0f5d4]{width:80%}.action .finished[data-v-08e0f5d4]{width:48px;margin:0 auto}.action .select-editable[data-v-08e0f5d4]{width:151px;padding:15px 10px}}@media screen and (max-width: 400px){.action .btns[data-v-08e0f5d4]{margin-top:34px}.docker_success[data-v-08e0f5d4]{width:130%}.docker_download[data-v-08e0f5d4]{width:32%;padding:15px 10px}.docker_download .finished[data-v-08e0f5d4]{width:48px;margin:0 auto}}@keyframes bganimation-40eef1a3{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-40eef1a3{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-40eef1a3{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-40eef1a3]{animation:rotateEnter-40eef1a3 .7s;position:relative}.rotate-leave-active[data-v-40eef1a3]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-40eef1a3]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-40eef1a3]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container .app-container_title[data-v-40eef1a3]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-40eef1a3]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-40eef1a3]{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-40eef1a3]{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-40eef1a3] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-40eef1a3]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-40eef1a3]{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-40eef1a3]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-40eef1a3]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-40eef1a3]:hover{background-color:#eee}.app-container button[data-v-40eef1a3],.app-container .refresh[data-v-40eef1a3]{margin-left:20px}.app-container .app-container_body[data-v-40eef1a3]{width:100%;height:100%}.menu_background[data-v-40eef1a3]{position:fixed;inset:0}@keyframes bganimation-b0aac542{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b0aac542{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-b0aac542{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-b0aac542]{animation:rotateEnter-b0aac542 .7s;position:relative}.rotate-leave-active[data-v-b0aac542]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b0aac542]{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-b0aac542]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.aria2-item .aria2-item_name[data-v-b0aac542]{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-b0aac542]{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-b0aac542]{color:#297ff3;padding:3px}li.aria2-item .aria2-item_value .configure.enabel[data-v-b0aac542]{color:#888}.use-url_app[data-v-b0aac542]{padding-bottom:14px}.use-url_app a[data-v-b0aac542]{text-decoration:none;color:#297ff3}@keyframes bganimation-52e2b49c{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-52e2b49c{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-52e2b49c{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-52e2b49c]{animation:rotateEnter-52e2b49c .7s;position:relative}.rotate-leave-active[data-v-52e2b49c]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-52e2b49c]{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-52e2b49c]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.qbittorrent-item .qbittorrent-item_name[data-v-52e2b49c]{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-52e2b49c]{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-52e2b49c]{color:#297ff3;padding:3px}li.qbittorrent-item .qbittorrent-item_value .configure.enabel[data-v-52e2b49c]{color:#888}a[data-v-52e2b49c]{text-decoration:none;color:#297ff3}@keyframes bganimation-78784f5e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-78784f5e{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-78784f5e{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-78784f5e]{animation:rotateEnter-78784f5e .7s;position:relative}.rotate-leave-active[data-v-78784f5e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-78784f5e]{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-78784f5e]{width:100%;display:flex;flex-wrap:wrap;margin:1rem 0}li.transmission-item .transmission-item_name[data-v-78784f5e]{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-78784f5e]{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-78784f5e]{color:#297ff3;padding:3px}li.transmission-item .transmission-item_value .configure.enabel[data-v-78784f5e]{color:#888}a[data-v-78784f5e]{text-decoration:none;color:#297ff3}@keyframes bganimation-7ea0bbfc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ea0bbfc{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-7ea0bbfc{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-7ea0bbfc]{animation:rotateEnter-7ea0bbfc .7s;position:relative}.rotate-leave-active[data-v-7ea0bbfc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ea0bbfc]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.action[data-v-7ea0bbfc]{width:860px;max-height:90%;background-color:#fff;position:relative;z-index:1000;margin:auto;padding:1rem 10%;border-radius:6px}.action p[data-v-7ea0bbfc]{color:#999;font-size:14px}.action input[data-v-7ea0bbfc]{font-size:14px;font-family:PingFangSC-Regular,PingFang SC}.action h2.title[data-v-7ea0bbfc]{width:100%;color:#1e1e1e;font-size:22px;font-family:PingFangSC-Medium,PingFang SC;padding:0;margin:0;text-align:center}.action span[data-v-7ea0bbfc]{font-size:14px;font-family:PingFangSC-Medium,PingFang SC;color:#000000d4;font-weight:700}.action .load[data-v-7ea0bbfc]{display:flex;justify-content:left;align-items:center;margin-top:32px}.action form[data-v-7ea0bbfc]{width:86%}.action form label[data-v-7ea0bbfc]{width:100%}.action form label input[data-v-7ea0bbfc],.action form label select[data-v-7ea0bbfc]{height:100%;font-size:14px}.action .RPC[data-v-7ea0bbfc]{margin:16px 0;display:flex;justify-content:left;align-items:center}.action .RPC .RPC_input[data-v-7ea0bbfc]{width:85%}.action .Tracker label[data-v-7ea0bbfc]{margin-right:10px;cursor:pointer}.action .Tracker_input[data-v-7ea0bbfc]{width:80%;margin-left:132px;margin-top:22px}.action .btns[data-v-7ea0bbfc]{width:100%;margin:42px auto 0}.action .btns button[data-v-7ea0bbfc]{display:block;width:100%!important;margin:.5rem 0}.action .tooltip-trigger[data-v-7ea0bbfc]{position:relative;display:inline-block;cursor:help;margin-right:6px}.action .tooltip-trigger .tooltip-text[data-v-7ea0bbfc]{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-7ea0bbfc]{color:#fff}.action .tooltip-trigger .tooltip-text .dowload_dir_tip[data-v-7ea0bbfc]{min-width:14rem;display:inline-block}.action .tooltip-trigger:hover .tooltip-text[data-v-7ea0bbfc]{visibility:visible;opacity:1}.action .tooltip-top[data-v-7ea0bbfc]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%)}.action .tooltip-bottom[data-v-7ea0bbfc]{top:100%;left:50%;margin-top:5px;transform:translate(-50%)}.action .tooltip-bottom .dowload_rpc_tip[data-v-7ea0bbfc]{min-width:10rem;display:inline-block}.action .tooltip-right[data-v-7ea0bbfc]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.action .tooltip-left[data-v-7ea0bbfc]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.action .tooltip-top[data-v-7ea0bbfc]: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-7ea0bbfc]: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-7ea0bbfc]{text-align:center;font-size:14px}.action .finished[data-v-7ea0bbfc]{display:flex;justify-content:center;margin:80px 80px 28px}.left[data-v-7ea0bbfc]{display:flex;align-items:center;justify-content:flex-start;width:110px}.select-editable[data-v-7ea0bbfc]{position:relative;border:solid grey 1px;width:100%}.select-editable select[data-v-7ea0bbfc]{top:0;left:0;font-size:14px;border:none;width:100%;margin:0}.select-editable input[data-v-7ea0bbfc]{position:absolute;top:-4px;left:0;width:95%;padding:1px;font-size:14px;border:none}.select-editable select[data-v-7ea0bbfc]:focus,.select-editable input[data-v-7ea0bbfc]:focus{outline:none}[data-v-7ea0bbfc]::placeholder{color:#999}.load_service[data-v-7ea0bbfc]{display:flex;justify-content:flex-start;align-items:center;margin-top:24px}.load_service .load_radios[data-v-7ea0bbfc]{margin-left:10px}.load_service .load_radios input[data-v-7ea0bbfc],.load_service .load_radios label[data-v-7ea0bbfc]{cursor:pointer}@keyframes bganimation-7ea0bbfc{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-7ea0bbfc{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-7ea0bbfc{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-7ea0bbfc]{animation:rotateEnter-7ea0bbfc .7s;position:relative}.rotate-leave-active[data-v-7ea0bbfc]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-7ea0bbfc]{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-7ea0bbfc]{width:136%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 900px){.action[data-v-7ea0bbfc]{width:116%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 800px){.action[data-v-7ea0bbfc]{width:102%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 700px){.action[data-v-7ea0bbfc]{width:90%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 500px){.action[data-v-7ea0bbfc]{width:80%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@media screen and (max-width: 400px){.action[data-v-7ea0bbfc]{width:80%}.action .load_service[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:110px}.action .load[data-v-7ea0bbfc],.action .RPC[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap}.action .Tracker[data-v-7ea0bbfc]{display:flex;justify-content:space-between;flex-wrap:wrap;width:149px}}@keyframes bganimation-3c1d13ee{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-3c1d13ee{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-3c1d13ee{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-3c1d13ee]{animation:rotateEnter-3c1d13ee .7s;position:relative}.rotate-leave-active[data-v-3c1d13ee]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-3c1d13ee]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-3c1d13ee]{position:relative;display:flex;flex-wrap:wrap;width:100%;height:100%;align-content:flex-start}.app-container .app-container_title[data-v-3c1d13ee]{width:100%;display:flex;flex-wrap:wrap;align-content:center;justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-3c1d13ee]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-3c1d13ee]{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-3c1d13ee]{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-3c1d13ee] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-3c1d13ee]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-3c1d13ee]{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-3c1d13ee]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-3c1d13ee]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-3c1d13ee]:hover{background-color:#eee}.app-container .app-container_title button[data-v-3c1d13ee]{margin-left:10px}.app-container .app-container_body[data-v-3c1d13ee]{flex:0 0 100%;width:100%;height:66%}.app-container ul.app-container_nas-menu[data-v-3c1d13ee]{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-3c1d13ee]{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-3c1d13ee],.app-container ul.app-container_nas-menu button[data-v-3c1d13ee]:hover{color:#297ff3;background-color:#d1e2f9}.menu_background[data-v-3c1d13ee]{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-9824e3c0{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-9824e3c0{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-9824e3c0{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-9824e3c0]{animation:rotateEnter-9824e3c0 .7s;position:relative}.rotate-leave-active[data-v-9824e3c0]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-9824e3c0]{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-9824e3c0]{display:flex;align-items:center;justify-content:center}@keyframes bganimation-467bb030{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-467bb030{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-467bb030{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-467bb030]{animation:rotateEnter-467bb030 .7s;position:relative}.rotate-leave-active[data-v-467bb030]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-467bb030]{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-467bb030]{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-10ce7ce8{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-10ce7ce8{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-10ce7ce8{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-10ce7ce8]{animation:rotateEnter-10ce7ce8 .7s;position:relative}.rotate-leave-active[data-v-10ce7ce8]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-10ce7ce8]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.app-container[data-v-10ce7ce8]{position:relative;flex-wrap:wrap;width:100%;height:100%}.app-container a[data-v-10ce7ce8]{text-decoration:none}.app-container .app-container_title[data-v-10ce7ce8]{justify-content:space-between}.app-container .app-container_title .app-container_tool[data-v-10ce7ce8]{display:flex;flex-wrap:wrap;align-items:center}.app-container .app-container_title .app-container_tool .app-container_configure[data-v-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8] svg path{fill:#553afe}.app-container .app-container_title .DeviceBlock[data-v-10ce7ce8]{font-size:14px;top:34px;position:absolute;z-index:999;width:40%;right:22px}.app-container .app-container_title .DeviceBlock ul[data-v-10ce7ce8]{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-10ce7ce8]{margin:6px 0;line-height:28px;cursor:pointer}.app-container .app-container_title .DeviceBlock ul li a[data-v-10ce7ce8]{color:#1e1e1e;text-decoration:none;cursor:pointer;margin:0 20px;display:block}.app-container .app-container_title .DeviceBlock ul li[data-v-10ce7ce8]:hover{background-color:#eee}.app-container button[data-v-10ce7ce8],.app-container .refresh[data-v-10ce7ce8]{margin-left:20px}.app-container .app-container_body[data-v-10ce7ce8]{width:100%;height:100%}.menu_background[data-v-10ce7ce8]{position:fixed;inset:0}.app-container_domain li.domain-item[data-v-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{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-10ce7ce8]{color:#888;overflow-x:hidden;text-overflow:ellipsis}.app-container_domain li.domain-item .domain-item_root[data-v-10ce7ce8]{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-10ce7ce8]{vertical-align:bottom;margin-left:22px}.app-container_domain .tooltip-trigger[data-v-10ce7ce8]{position:relative;display:inline-block;cursor:help;margin-right:6px}.app-container_domain .tooltip-trigger .tooltip-text[data-v-10ce7ce8]{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-10ce7ce8]{color:#fff}.app-container_domain .tooltip-trigger .tooltip-text .domain_dir_tip[data-v-10ce7ce8]{min-width:15rem;display:inline-block}.app-container_domain .tooltip-trigger:hover .tooltip-text[data-v-10ce7ce8]{visibility:visible;opacity:1}.app-container_domain .tooltip-top[data-v-10ce7ce8]{bottom:100%;left:50%;margin-bottom:5px;transform:translate(-50%);margin-left:12px}.app-container_domain .tooltip-right[data-v-10ce7ce8]{top:50%;left:100%;margin-left:5px;transform:translateY(-50%)}.app-container_domain .tooltip-left[data-v-10ce7ce8]{top:50%;right:100%;margin-right:5px;transform:translateY(-50%)}.app-container_domain .tooltip-top[data-v-10ce7ce8]: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-10ce7ce8]: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-1e34b94b{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-1e34b94b{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-1e34b94b{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-1e34b94b]{animation:rotateEnter-1e34b94b .7s;position:relative}.rotate-leave-active[data-v-1e34b94b]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-1e34b94b]{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-1e34b94b]{position:absolute;right:22px;cursor:pointer}.app-container_title .DeviceBlock[data-v-1e34b94b]{position:absolute;z-index:999;width:10%;right:22px;margin-top:14px}.app-container_title .DeviceBlock ul[data-v-1e34b94b]{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-1e34b94b]{margin:6px 0;line-height:28px;cursor:pointer}.app-container_title .DeviceBlock ul li a[data-v-1e34b94b]{color:#1e1e1e;text-decoration:none;cursor:pointer;font-size:14px;margin:0 20px;display:block}.app-container_title .DeviceBlock ul li[data-v-1e34b94b]:hover{background-color:#eee}.item-label[data-v-1e34b94b]{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-1e34b94b]{flex:0 0 100%;max-width:100px;text-align:left}.item-label .item-label_key span[data-v-1e34b94b]{font-size:14px;color:#333}.item-label .item-label_value[data-v-1e34b94b]{flex:1;text-align:left}.item-label .item-label_value span[data-v-1e34b94b]{font-size:14px;color:#333}.item-title span[data-v-1e34b94b]{font-size:16px;font-weight:550;color:#555}.item-flex[data-v-1e34b94b]{width:100%;display:flex;flex-wrap:wrap}.item-flex .auto[data-v-1e34b94b]{flex:auto}.item-flex button.app-editor[data-v-1e34b94b]{padding:8px 1.3rem}.menu_background[data-v-1e34b94b]{position:fixed;inset:0}@keyframes bganimation-b8956f32{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b8956f32{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-b8956f32{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-b8956f32]{animation:rotateEnter-b8956f32 .7s;position:relative}.rotate-leave-active[data-v-b8956f32]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b8956f32]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-b8956f32]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-b8956f32]{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-b8956f32]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-b8956f32]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-b8956f32]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-b8956f32]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-b8956f32]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-b8956f32]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-b8956f32],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-b8956f32]{width:100%;height:36px}.actioner-dns .actioner-dns_body .mobie_icon[data-v-b8956f32]{display:flex;justify-content:flex-start;align-items:center;cursor:pointer}.actioner-dns .actioner-dns_body .mobie_icon .dhcp_info[data-v-b8956f32]{margin-left:14px}.actioner-dns .actioner-dns_body .label-message[data-v-b8956f32]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-b8956f32]{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-b8956f32]{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-b8956f32]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.setting_status[data-v-b8956f32]{text-align:center}.setting_status p[data-v-b8956f32]{margin:10px 0}.setting_status a[data-v-b8956f32]{text-align:center;display:block;text-decoration:none}.NewAdress[data-v-b8956f32]{margin-top:10px}@keyframes bganimation-b8956f32{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-b8956f32{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-b8956f32{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-b8956f32]{animation:rotateEnter-b8956f32 .7s;position:relative}.rotate-leave-active[data-v-b8956f32]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-b8956f32]{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[data-v-b8956f32]{width:190%}}@media screen and (max-width: 800px){.actioner-dns[data-v-b8956f32]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-b8956f32]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-b8956f32]{width:100%}}@keyframes bganimation-193c9490{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-193c9490{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-193c9490{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-193c9490]{animation:rotateEnter-193c9490 .7s;position:relative}.rotate-leave-active[data-v-193c9490]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-193c9490]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}@keyframes turn-193c9490{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)}}.actioner-dns[data-v-193c9490]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-193c9490]{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-193c9490]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-193c9490]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_roboot_tips[data-v-193c9490]{margin-top:24px;text-align:center}.actioner-dns .actioner-dns_body .disk_loading_icon[data-v-193c9490]{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 .loading[data-v-193c9490]{display:inline-block;animation:turn-193c9490 3s linear infinite}.actioner-dns .actioner-dns_body .disk_loading_icon .loading svg[data-v-193c9490]{width:38px;height:38px}.actioner-dns .actioner-dns_body .disk_loading_icon .disk_loading_info[data-v-193c9490]{margin-top:5px}.actioner-dns .actioner-dns_body .disk_tips[data-v-193c9490]{text-align:center;font-size:16px;margin-top:159px;color:#f9ad1e}.actioner-dns .actioner-dns_body .disk_tips svg[data-v-193c9490]{vertical-align:middle}.actioner-dns .actioner-dns_body .disk_tips span[data-v-193c9490]{margin-left:6px}.actioner-dns .actioner-dns_body .sandbox_info[data-v-193c9490]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon[data-v-193c9490]{position:absolute;left:50%;transform:translate(-50%);display:flex;flex-direction:column;align-items:center;padding:10px}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon .loading[data-v-193c9490]{display:inline-block;animation:turn-193c9490 3s linear infinite}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon .loading svg[data-v-193c9490]{width:38px;height:38px}.actioner-dns .actioner-dns_body .sandbox_info .disk_loading_icon .disk_loading_info[data-v-193c9490]{margin-top:5px}.actioner-dns .actioner-dns_body .label-item[data-v-193c9490]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-193c9490]{width:100%;font-size:12px;color:#666}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-193c9490]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-193c9490]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-193c9490]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-193c9490],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-193c9490]{width:100%;height:36px}.actioner-dns .actioner-dns_body .mobie_icon[data-v-193c9490]{display:flex;justify-content:flex-start;align-items:center;cursor:pointer}.actioner-dns .actioner-dns_body .mobie_icon .dhcp_info[data-v-193c9490]{margin-left:14px}.actioner-dns .actioner-dns_body .label-message[data-v-193c9490]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .actioner-dns_body .sandbox_tips svg[data-v-193c9490]{vertical-align:middle}.actioner-dns .actioner-dns_body .sandbox_tips span[data-v-193c9490]{font-size:12px;margin-left:4px}.actioner-dns .config-message[data-v-193c9490]{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-193c9490]{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-193c9490]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-193c9490]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-193c9490]{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-193c9490]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-193c9490]{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-193c9490]{margin-top:114px}.timeout span[data-v-193c9490],.sandbox_roboot_refresh[data-v-193c9490]{color:#5e72e4}option[data-v-193c9490]:disabled{background-color:#e0e0e0}@keyframes bganimation-193c9490{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-193c9490{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-193c9490{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-193c9490]{animation:rotateEnter-193c9490 .7s;position:relative}.rotate-leave-active[data-v-193c9490]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-193c9490]{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[data-v-193c9490]{width:104%}.actioner-tips_footer button[data-v-193c9490]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-193c9490]{width:80%}}@media screen and (max-width: 800px){.actioner-dns[data-v-193c9490]{width:60%}}@media screen and (max-width: 700px){.actioner-dns[data-v-193c9490]{width:50%}.actioner-dns .actioner-dns_body[data-v-193c9490]{min-height:42vh}.actioner-tips[data-v-193c9490]{width:47%;line-height:22px}.actioner-tips .sandbox_info[data-v-193c9490]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-193c9490]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-193c9490]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns[data-v-193c9490]{width:62%}.actioner-dns .actioner-dns_footer button[data-v-193c9490]{width:100%!important;margin-bottom:10px}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-193c9490]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns[data-v-193c9490]{width:62%}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-193c9490]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_footer button[data-v-193c9490]{width:100%!important;margin-bottom:10px}.actioner-tips .sandbox_info[data-v-193c9490]{padding:3px 10px}}@keyframes bganimation-62461857{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-62461857{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-62461857{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-62461857]{animation:rotateEnter-62461857 .7s;position:relative}.rotate-leave-active[data-v-62461857]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-62461857]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.actioner-dns[data-v-62461857]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-62461857]{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-62461857]{margin:0 auto}.actioner-dns .actioner-dns_body[data-v-62461857]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .sandbox_info[data-v-62461857]{text-align:center;line-height:22px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-62461857]{font-size:16px;line-height:28px;margin:20px 0}.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-62461857]{font-size:16px;line-height:28px}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_reboot[data-v-62461857]{color:#5e72e4}.actioner-dns .actioner-dns_body .sandbox_environment_info .sandbox_environment_tex[data-v-62461857]{color:red;font-size:.9em}.actioner-dns .actioner-dns_footer[data-v-62461857]{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-62461857]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}.actioner-tips[data-v-62461857]{width:400px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-tips .actioner-tips_header[data-v-62461857]{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-62461857]{padding:62px 54px;line-height:20px}.actioner-tips .actioner-tips_footer[data-v-62461857]{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-62461857]{margin-top:114px}.timeout span[data-v-62461857]{color:#5e72e4}@keyframes bganimation-62461857{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-62461857{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-62461857{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-62461857]{animation:rotateEnter-62461857 .7s;position:relative}.rotate-leave-active[data-v-62461857]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-62461857]{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[data-v-62461857]{width:83%}.actioner-tips_footer button[data-v-62461857]{width:100%!important}}@media screen and (max-width: 900px){.actioner-dns[data-v-62461857]{width:62%}}@media screen and (max-width: 800px){.actioner-dns[data-v-62461857]{width:56%}}@media screen and (max-width: 700px){.actioner-dns[data-v-62461857]{width:50%}.actioner-dns .actioner-dns_body[data-v-62461857]{min-height:42vh}.actioner-dns .actioner-dns_footer button[data-v-62461857]{width:100%!important;margin-bottom:10px}.actioner-tips[data-v-62461857]{width:47%;line-height:22px}.actioner-tips .sandbox_info[data-v-62461857]{padding:34px 10px;font-size:10px}.actioner-tips .actioner-tips_header[data-v-62461857]{font-size:20px}.actioner-tips .actioner-tips_footer button[data-v-62461857]{width:100%!important}}@media screen and (max-width: 600px){.actioner-dns[data-v-62461857]{width:62%}.actioner-dns .actioner-dns_footer button[data-v-62461857]{width:100%!important;margin-bottom:10px}}@media screen and (max-width: 500px){.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-62461857]{width:228px;overflow:hidden;text-overflow:ellipsis}}@media screen and (max-width: 400px){.actioner-dns[data-v-62461857]{width:62%}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-62461857]{width:163px;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .sandbox_info[data-v-62461857]{font-size:10px}.actioner-dns .actioner-dns_body .sandbox_environment[data-v-62461857],.actioner-dns .actioner-dns_body .sandbox_environment_info[data-v-62461857]{font-size:12px}.actioner-tips .sandbox_info[data-v-62461857]{padding:3px 10px}}@keyframes bganimation-4eb14922{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4eb14922{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-4eb14922{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-4eb14922]{animation:rotateEnter-4eb14922 .7s;position:relative}.rotate-leave-active[data-v-4eb14922]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4eb14922]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}.nav-container[data-v-4eb14922]{width:100%;margin-bottom:8px}.nav-container .btn_styles[data-v-4eb14922]{width:132px;height:52px;border-radius:8px;margin-right:8px}.nav-container .app-update-button[data-v-4eb14922]{position:relative}.nav-container .app-update-button i[data-v-4eb14922]{display:inline-block;padding:3px;background-color:red;border-radius:50%}.nav-container .cover-buttob[data-v-4eb14922]{margin-left:0;margin-right:5px}.nav-container a[data-v-4eb14922]{padding:12px 1rem;margin-right:1rem;margin-bottom:1rem;display:inline-block;min-width:100px;text-align:center}.nav-container a[data-v-4eb14922]:hover{box-shadow:0 0 10px 1px #c5c5c5;transition:.3s;transform:scale(1.1)}.nav-container .app-btn-ttyd[data-v-4eb14922]:before{content:"\276f "}.nav-container .MoreMenu[data-v-4eb14922]{cursor:pointer;color:#297ff3;margin-left:20px;font-size:16px;font-weight:600}.nav-container[data-v-4eb14922]{display:flex;justify-content:start;align-items:center;flex-wrap:wrap;width:100%}.nav-container button[data-v-4eb14922]{cursor:pointer;margin-bottom:10px}.nav-container button[data-v-4eb14922]:hover{box-shadow:0 0 2px #0000001f,0 2px 2px #0003}.update[data-v-4eb14922]{visibility:hidden}.color1[data-v-4eb14922]{border:1px solid #553AFE;color:#533afe;background:rgba(85,58,254,.16)}.color2[data-v-4eb14922]{background:#2b2b2b;border:#444;color:#fff}.color3[data-v-4eb14922]{border:1px solid #FF6A67;background:rgba(255,107,103,.16);color:#ff6a67}.color4[data-v-4eb14922]{border:1px solid #3688FF;background:rgba(51,134,255,.16);color:#3688ff}.color5[data-v-4eb14922]{border:1px solid #FE3ACC;background:rgba(254,58,204,.16);color:#fe3acc}@keyframes bganimation-31aed265{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-31aed265{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-31aed265{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-31aed265]{animation:rotateEnter-31aed265 .7s;position:relative}.rotate-leave-active[data-v-31aed265]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-31aed265]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-31aed265]{margin-top:48px}em[data-v-31aed265]{margin:.3125rem 0;width:100%;display:block;height:1px;background-color:#eeeeee2e}[data-v-31aed265] .app-container_title{width:100%;height:34px;display:flex;flex-wrap:wrap;align-items:center;color:#1e1e1e;font-size:1.5em}@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-4a938506{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-4a938506{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-4a938506{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-4a938506]{animation:rotateEnter-4a938506 .7s;position:relative}.rotate-leave-active[data-v-4a938506]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-4a938506]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-4a938506]{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-4a938506]{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-4a938506]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page form[data-v-4a938506]{display:block;width:100%;margin:3rem 0}#page form label[data-v-4a938506]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-4a938506]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-4a938506]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-4a938506]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-4a938506]{width:100%;display:block;height:42px}#page .msg[data-v-4a938506]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page .btns[data-v-4a938506]{width:100%;margin-top:3rem}#page .btns button[data-v-4a938506]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-6c09be9e{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-6c09be9e{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-6c09be9e{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-6c09be9e]{animation:rotateEnter-6c09be9e .7s;position:relative}.rotate-leave-active[data-v-6c09be9e]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-6c09be9e]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-6c09be9e]{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-6c09be9e]{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-6c09be9e]{width:100%;display:block;color:#666;font-size:1.2em;padding:0;margin:0;text-align:left;background-color:#f4f5f7;box-shadow:none}#page form[data-v-6c09be9e]{display:block;width:100%;margin:3rem 0}#page form label[data-v-6c09be9e]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-6c09be9e]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-6c09be9e]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-6c09be9e]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-6c09be9e],#page form label select[data-v-6c09be9e]{width:100%;display:block;height:42px}#page .msgs[data-v-6c09be9e]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-6c09be9e]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-6c09be9e]{width:100%;margin-top:3rem}#page .btns button[data-v-6c09be9e]{display:block;width:100%!important;margin:.5rem 0}@keyframes bganimation-50358ebb{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-50358ebb{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-50358ebb{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-50358ebb]{animation:rotateEnter-50358ebb .7s;position:relative}.rotate-leave-active[data-v-50358ebb]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-50358ebb]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}#page[data-v-50358ebb]{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-50358ebb]{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-50358ebb]{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-50358ebb]{background-color:#eee;display:block;width:100%;font-size:1.3em;padding:1rem;line-height:2;margin:2rem 0}#page div.info[data-v-50358ebb]{width:100%;display:block;margin:1rem 0;font-size:1.3em;text-align:left}#page .msgs[data-v-50358ebb]{width:100%;display:block;height:36px;line-height:36px;color:red;font-size:1.3em}#page p.msg[data-v-50358ebb]{width:100%;display:block;color:red;font-size:1em}#page .btns[data-v-50358ebb]{width:100%;display:block;margin-top:3rem}#page .btns button[data-v-50358ebb]{display:block;width:100%!important;margin:.5rem 0}#page form[data-v-50358ebb]{display:block;width:100%;margin:3rem 0}#page form label[data-v-50358ebb]{display:block;width:100%;margin:1rem 0}#page form label .label-key[data-v-50358ebb]{display:block;width:100%;font-size:1.3em;margin-bottom:.5rem}#page form label .label-key span[data-v-50358ebb]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#page form label .label-key span[data-v-50358ebb]:before{content:"*";color:#f56c6c;margin-right:4px}#page form label input[data-v-50358ebb],#page form label select[data-v-50358ebb]{width:100%;display:block;height:42px}.chose_dhcp[data-v-50358ebb]{display:flex;justify-content:flex-start;align-items:center}.chose_dhcp .chose_dhcp_icon[data-v-50358ebb]{cursor:pointer}.chose_dhcp .dhcp_info[data-v-50358ebb]{margin-left:16px}@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-aae61368{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-aae61368{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-aae61368{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-aae61368]{animation:rotateEnter-aae61368 .7s;position:relative}.rotate-leave-active[data-v-aae61368]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-aae61368]{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-aae61368]{margin-bottom:32px}.item-status[data-v-aae61368]{word-break:break-all;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}@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-45dd818a{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-45dd818a{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-45dd818a{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-45dd818a]{animation:rotateEnter-45dd818a .7s;position:relative}.rotate-leave-active[data-v-45dd818a]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-45dd818a]{width:100%;background-color:#fff;box-shadow:0 0 10px 1px #bfbfbf24;padding:10px 30px;border-radius:6px;position:relative}textarea[data-v-45dd818a]{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-51cceeb4]{width:860px;background-color:#fff;position:relative;z-index:99999;margin:auto;overflow:auto}.actioner-dns .actioner-dns_header[data-v-51cceeb4]{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-51cceeb4]{padding:1rem;min-height:50vh}.actioner-dns .actioner-dns_body .label-item[data-v-51cceeb4]{width:100%;margin:1rem 0}.actioner-dns .actioner-dns_body .label-item .label-item_key[data-v-51cceeb4]{width:100%;font-size:16px;color:#666;margin-bottom:10px}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-51cceeb4]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.actioner-dns .actioner-dns_body .label-item .label-item_key span[data-v-51cceeb4]:before{content:"*";color:#f56c6c;margin-right:4px}.actioner-dns .actioner-dns_body .label-item .label-item_value[data-v-51cceeb4]{width:100%;margin-top:5px}.actioner-dns .actioner-dns_body .label-item .label-item_value select[data-v-51cceeb4],.actioner-dns .actioner-dns_body .label-item .label-item_value input[data-v-51cceeb4]{width:100%;min-height:36px}.actioner-dns .actioner-dns_body .label-message[data-v-51cceeb4]{width:100%;text-align:left;font-size:14px;color:red;text-align:center}.actioner-dns .config-message[data-v-51cceeb4]{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-51cceeb4]{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-51cceeb4]{display:inline-block;width:100px!important;margin:0;margin-left:1rem}@keyframes bganimation-51cceeb4{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes rotateEnter-51cceeb4{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-51cceeb4{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-51cceeb4]{animation:rotateEnter-51cceeb4 .7s;position:relative}.rotate-leave-active[data-v-51cceeb4]{opacity:0;display:none;position:relative;z-index:-999}.app-container[data-v-51cceeb4]{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[data-v-51cceeb4]{width:190%}.actioner-dns .actioner-dns_body[data-v-51cceeb4]{min-height:34vh}}@media screen and (max-width: 800px){.actioner-dns[data-v-51cceeb4]{width:160%}}@media screen and (max-width: 700px){.actioner-dns[data-v-51cceeb4]{width:132%}}@media screen and (max-width: 500px){.actioner-dns[data-v-51cceeb4]{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/my-default-settings/files/etc/nginx/uci.conf.template b/my-default-settings/files/etc/nginx/uci.conf.template index 266821c92..24b3527f9 100644 --- a/my-default-settings/files/etc/nginx/uci.conf.template +++ b/my-default-settings/files/etc/nginx/uci.conf.template @@ -18,7 +18,7 @@ http { default_type application/octet-stream; sendfile on; - client_max_body_size 1536mm; + client_max_body_size 1536m; client_header_buffer_size 512k; large_client_header_buffers 4 512k; diff --git a/natflow/Makefile b/natflow/Makefile index ecbc32297..79c9682ee 100644 --- a/natflow/Makefile +++ b/natflow/Makefile @@ -9,10 +9,10 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=natflow -PKG_VERSION:=20221001 +PKG_VERSION:=20221003 PKG_SOURCE_URL:=https://codeload.github.com/ptpt52/natflow/tar.gz/$(PKG_VERSION)? -PKG_HASH:=866d7062845b53c39c1517545e53bf5715dbf49fecc1694e2dec128038e95bf6 +PKG_HASH:=5c6f02301efa7a7a01ee3f72b8b62b6474d034ac608ca441568a8c695ea16726 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_MAINTAINER:=Chen Minqiang diff --git a/quickstart/Makefile b/quickstart/Makefile index 0c1d7cbe0..336f733eb 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.5.7 -PKG_RELEASE:=2 +PKG_VERSION:=0.5.9 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://fw.koolcenter.com/binary/quickstart/ -PKG_HASH:=87e3f9217b750e112ff13576300fc72f7b86940a74207a2c8a976d1e397d5fa2 +PKG_HASH:=df4b993344ed7ffe56d83d93d591d2127a5647d2c49aad29f0cec72314e173ac PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-binary-$(PKG_VERSION)