1
0

inbound_info_modal.html 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. {{define "inboundInfoModal"}}
  2. <a-modal id="inbound-info-modal" v-model="infoModal.visible" title='{{ i18n "pages.inbounds.details"}}' :closable="true" :mask-closable="true" :footer="null" width="600px" :class="themeSwitcher.currentTheme">
  3. <a-row>
  4. <a-col :xs="24" :md="12">
  5. <table>
  6. <tr>
  7. <td>{{ i18n "protocol" }}</td>
  8. <td>
  9. <a-tag color="purple">[[ dbInbound.protocol ]]</a-tag>
  10. </td>
  11. </tr>
  12. <tr>
  13. <td>{{ i18n "pages.inbounds.address" }}</td>
  14. <td>
  15. <a-tooltip :title="[[ dbInbound.address ]]">
  16. <a-tag class="info-large-tag">[[ dbInbound.address ]]</a-tag>
  17. </a-tooltip>
  18. </td>
  19. </tr>
  20. <tr>
  21. <td>{{ i18n "pages.inbounds.port" }}</td>
  22. <td>
  23. <a-tag>[[ dbInbound.port ]]</a-tag>
  24. </td>
  25. </tr>
  26. </table>
  27. </a-col>
  28. <a-col :xs="24" :md="12">
  29. <template v-if="dbInbound.isVMess || dbInbound.isVLess || dbInbound.isTrojan || dbInbound.isSS">
  30. <table>
  31. <tr>
  32. <td>{{ i18n "transmission" }}</td>
  33. <td>
  34. <a-tag color="green">[[ inbound.network ]]</a-tag>
  35. </td>
  36. </tr>
  37. <template v-if="inbound.isTcp || inbound.isWs || inbound.isH2 || inbound.isHttpupgrade || inbound.isSplithttp">
  38. <tr>
  39. <td>{{ i18n "host" }}</td>
  40. <td v-if="inbound.host">
  41. <a-tooltip :title="[[ inbound.host ]]">
  42. <a-tag class="info-large-tag">[[ inbound.host ]]</a-tag>
  43. </a-tooltip>
  44. </td>
  45. <td v-else>
  46. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  47. </td>
  48. </tr>
  49. </tr>
  50. <tr>
  51. <td>{{ i18n "path" }}</td>
  52. <td v-if="inbound.path">
  53. <a-tooltip :title="[[ inbound.path ]]">
  54. <a-tag class="info-large-tag">[[ inbound.path ]]</a-tag>
  55. </a-tooltip>
  56. <td v-else>
  57. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  58. </td>
  59. </tr>
  60. </template>
  61. <template v-if="inbound.isKcp">
  62. <tr>
  63. <td>kcp {{ i18n "encryption" }}</td>
  64. <td>
  65. <a-tag>[[ inbound.kcpType ]]</a-tag>
  66. </td>
  67. </tr>
  68. <tr>
  69. <td>kcp {{ i18n "password" }}</td>
  70. <td>
  71. <a-tag>[[ inbound.kcpSeed ]]</a-tag>
  72. </td>
  73. </tr>
  74. </template>
  75. <template v-if="inbound.isGrpc">
  76. <tr>
  77. <td>grpc serviceName</td>
  78. <td>
  79. <a-tooltip :title="[[ inbound.serviceName ]]">
  80. <a-tag class="info-large-tag">[[ inbound.serviceName ]]</a-tag>
  81. </a-tooltip>
  82. <tr>
  83. <td>grpc multiMode</td>
  84. <td>
  85. <a-tag>[[ inbound.stream.grpc.multiMode ]]</a-tag>
  86. </td>
  87. </tr>
  88. </template>
  89. </table>
  90. </template>
  91. </a-col>
  92. <template v-if="dbInbound.hasLink()">
  93. {{ i18n "security" }}
  94. <a-tag :color="inbound.stream.security == 'none' ? 'red' : 'green'">[[ inbound.stream.security ]]</a-tag>
  95. <br />
  96. <template v-if="inbound.stream.security != 'none'">
  97. {{ i18n "domainName" }}
  98. <a-tag v-if="inbound.serverName" :color="inbound.serverName ? 'green' : 'orange'">[[ inbound.serverName ? inbound.serverName : '' ]]</a-tag>
  99. <a-tag v-else color="orange">{{ i18n "none" }}</a-tag>
  100. </template>
  101. </template>
  102. <table v-if="dbInbound.isSS" style="margin-bottom: 10px; width: 100%;">
  103. <tr>
  104. <td>{{ i18n "encryption" }}</td>
  105. <td>
  106. <a-tag color="green">[[ inbound.settings.method ]]</a-tag>
  107. </td>
  108. </tr>
  109. <tr v-if="inbound.isSS2022">
  110. <td>{{ i18n "password" }}</td>
  111. <td>
  112. <a-tooltip :title="[[ inbound.settings.password ]]">
  113. <a-tag class="info-large-tag">[[ inbound.settings.password ]]</a-tag>
  114. </a-tooltip>
  115. </td>
  116. </tr>
  117. <tr>
  118. <td>{{ i18n "pages.inbounds.network" }}</td>
  119. <td>
  120. <a-tag color="green">[[ inbound.settings.network ]]</a-tag>
  121. </td>
  122. </tr>
  123. </table>
  124. <template v-if="infoModal.clientSettings">
  125. <a-divider>{{ i18n "pages.inbounds.client" }}</a-divider>
  126. <table style="margin-bottom: 10px;">
  127. <tr>
  128. <td>{{ i18n "pages.inbounds.email" }}</td>
  129. <td v-if="infoModal.clientSettings.email">
  130. <a-tag color="green">[[ infoModal.clientSettings.email ]]</a-tag>
  131. </td>
  132. <td v-else>
  133. <a-tag color="red">{{ i18n "none" }}</a-tag>
  134. </td>
  135. </tr>
  136. <tr v-if="infoModal.clientSettings.id">
  137. <td>ID</td>
  138. <td>
  139. <a-tag>[[ infoModal.clientSettings.id ]]</a-tag>
  140. </td>
  141. </tr>
  142. <tr v-if="dbInbound.isVMess">
  143. <td>{{ i18n "security" }}</td>
  144. <td>
  145. <a-tag>[[ infoModal.clientSettings.security ]]</a-tag>
  146. </td>
  147. </tr>
  148. <tr v-if="infoModal.inbound.canEnableTlsFlow()">
  149. <td>Flow</td>
  150. <td v-if="infoModal.clientSettings.flow">
  151. <a-tag>[[ infoModal.clientSettings.flow ]]</a-tag>
  152. </td>
  153. <td v-else>
  154. <a-tag color="orange">{{ i18n "none" }}</a-tag>
  155. </td>
  156. </tr>
  157. <tr v-if="infoModal.clientSettings.password">
  158. <td>{{ i18n "password" }}</td>
  159. <td>
  160. <a-tooltip :title="[[ infoModal.clientSettings.password ]]">
  161. <a-tag class="info-large-tag">[[ infoModal.clientSettings.password ]]</a-tag>
  162. </a-tooltip>
  163. </td>
  164. </tr>
  165. <tr>
  166. <td>{{ i18n "status" }}</td>
  167. <td>
  168. <a-tag v-if="isEnable" color="green">{{ i18n "enabled" }}</a-tag>
  169. <a-tag v-else>{{ i18n "disabled" }}</a-tag>
  170. <a-tag v-if="!isActive" color="red">{{ i18n "depleted" }}</a-tag>
  171. </td>
  172. </tr>
  173. <tr v-if="infoModal.clientStats">
  174. <td>{{ i18n "usage" }}</td>
  175. <td>
  176. <a-tag color="green">[[ sizeFormat(infoModal.clientStats.up + infoModal.clientStats.down) ]]</a-tag>
  177. <a-tag>↑ [[ sizeFormat(infoModal.clientStats.up) ]] / [[ sizeFormat(infoModal.clientStats.down) ]] ↓</a-tag>
  178. </td>
  179. </tr>
  180. </table>
  181. <table style="display: inline-table; margin-block: 10px; width: 100%; text-align: center;">
  182. <tr>
  183. <th>{{ i18n "remained" }}</th>
  184. <th>{{ i18n "pages.inbounds.totalFlow" }}</th>
  185. <th>{{ i18n "pages.inbounds.expireDate" }}</th>
  186. </tr>
  187. <tr>
  188. <td>
  189. <a-tag v-if="infoModal.clientStats && infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ getRemStats() ]] </a-tag>
  190. </td>
  191. <td>
  192. <a-tag v-if="infoModal.clientSettings.totalGB > 0" :color="statsColor(infoModal.clientStats)"> [[ sizeFormat(infoModal.clientSettings.totalGB) ]] </a-tag>
  193. <a-tag v-else color="purple" class="infinite-tag">
  194. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  195. <path d="M484.4 96C407 96 349.2 164.1 320 208.5C290.8 164.1 233 96 155.6 96C69.75 96 0 167.8 0 256s69.75 160 155.6 160C233.1 416 290.8 347.9 320 303.5C349.2 347.9 407 416 484.4 416C570.3 416 640 344.2 640 256S570.3 96 484.4 96zM155.6 368C96.25 368 48 317.8 48 256s48.25-112 107.6-112c67.75 0 120.5 82.25 137.1 112C276 285.8 223.4 368 155.6 368zM484.4 368c-67.75 0-120.5-82.25-137.1-112C364 226.2 416.6 144 484.4 144C543.8 144 592 194.2 592 256S543.8 368 484.4 368z" fill="currentColor"></path>
  196. </svg>
  197. </a-tag>
  198. </td>
  199. <td>
  200. <template v-if="infoModal.clientSettings.expiryTime > 0">
  201. <a-tag :color="usageColor(new Date().getTime(), app.expireDiff, infoModal.clientSettings.expiryTime)">
  202. <template v-if="app.datepicker === 'gregorian'">
  203. [[ DateUtil.formatMillis(infoModal.clientSettings.expiryTime) ]]
  204. </template>
  205. <template v-else>
  206. [[ DateUtil.convertToJalalian(moment(infoModal.clientSettings.expiryTime)) ]]
  207. </template>
  208. </a-tag>
  209. </template>
  210. <a-tag v-else-if="infoModal.clientSettings.expiryTime < 0" color="green">[[ infoModal.clientSettings.expiryTime / -86400000 ]] {{ i18n "pages.client.days" }}
  211. </a-tag>
  212. <a-tag v-else color="purple" class="infinite-tag">
  213. <svg height="10px" width="14px" viewBox="0 0 640 512" fill="currentColor">
  214. <path d="M484.4 96C407 96 349.2 164.1 320 208.5C290.8 164.1 233 96 155.6 96C69.75 96 0 167.8 0 256s69.75 160 155.6 160C233.1 416 290.8 347.9 320 303.5C349.2 347.9 407 416 484.4 416C570.3 416 640 344.2 640 256S570.3 96 484.4 96zM155.6 368C96.25 368 48 317.8 48 256s48.25-112 107.6-112c67.75 0 120.5 82.25 137.1 112C276 285.8 223.4 368 155.6 368zM484.4 368c-67.75 0-120.5-82.25-137.1-112C364 226.2 416.6 144 484.4 144C543.8 144 592 194.2 592 256S543.8 368 484.4 368z" fill="currentColor"></path>
  215. </svg>
  216. </a-tag>
  217. </td>
  218. </tr>
  219. </table>
  220. <template v-if="app.subSettings.enable && infoModal.clientSettings.subId">
  221. <a-divider>Subscription URL</a-divider>
  222. <tr-info-row class="tr-info-row">
  223. <tr-info-title class="tr-info-title">
  224. <a-tag color="purple">Subscription Link</a-tag>
  225. <a-tooltip title='{{ i18n "copy" }}'>
  226. <a-button size="small" icon="snippets" id="copy-sub-link" @click="copyToClipboard('copy-sub-link', infoModal.subLink)"></a-button>
  227. </a-tooltip>
  228. </tr-info-title>
  229. <a :href="[[ infoModal.subLink ]]" target="_blank">[[ infoModal.subLink ]]</a>
  230. </tr-info-row>
  231. <tr-info-row class="tr-info-row">
  232. <tr-info-title class="tr-info-title">
  233. <a-tag color="purple">Json Link</a-tag>
  234. <a-tooltip title='{{ i18n "copy" }}'>
  235. <a-button size="small" icon="snippets" id="copy-subJson-link" @click="copyToClipboard('copy-subJson-link', infoModal.subJsonLink)"></a-button>
  236. </a-tooltip>
  237. </tr-info-title>
  238. <a :href="[[ infoModal.subJsonLink ]]" target="_blank">[[ infoModal.subJsonLink ]]</a>
  239. </tr-info-row>
  240. </template>
  241. <template v-if="app.tgBotEnable && infoModal.clientSettings.tgId">
  242. <a-divider>Telegram ChatID</a-divider>
  243. <tr-info-row class="tr-info-row">
  244. <tr-info-title class="tr-info-title">
  245. <a-tag color="blue">[[ infoModal.clientSettings.tgId ]]</a-tag>
  246. <a-tooltip title='{{ i18n "copy" }}'>
  247. <a-button size="small" icon="snippets" id="copy-tg-link" @click="copyToClipboard('copy-tg-link', infoModal.clientSettings.tgId)"></a-button>
  248. </a-tooltip>
  249. </tr-info-title>
  250. </tr-info-row>
  251. </template>
  252. <template v-if="dbInbound.hasLink()">
  253. <a-divider>URL</a-divider>
  254. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  255. <tr-info-title class="tr-info-title">
  256. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  257. <a-tooltip title='{{ i18n "copy" }}'>
  258. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, link.link)"></a-button>
  259. </a-tooltip>
  260. </tr-info-title>
  261. <code>[[ link.link ]]</code>
  262. </tr-info-row>
  263. </template>
  264. </template>
  265. <template v-else>
  266. <template v-if="dbInbound.isSS && !inbound.isSSMultiUser">
  267. <a-divider>URL</a-divider>
  268. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  269. <tr-info-title class="tr-info-title">
  270. <a-tag class="tr-info-tag" color="green">[[ link.remark ]]</a-tag>
  271. <a-tooltip title='{{ i18n "copy" }}'>
  272. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, link.link)"></a-button>
  273. </a-tooltip>
  274. </tr-info-title>
  275. <code>[[ link.link ]]</code>
  276. </tr-info-row>
  277. </template>
  278. <table v-if="inbound.protocol == Protocols.DOKODEMO" class="tr-info-table">
  279. <tr>
  280. <th>{{ i18n "pages.inbounds.targetAddress" }}</th>
  281. <th>{{ i18n "pages.inbounds.destinationPort" }}</th>
  282. <th>{{ i18n "pages.inbounds.network" }}</th>
  283. <th>FollowRedirect</th>
  284. </tr>
  285. <tr>
  286. <td>
  287. <a-tag color="green">[[ inbound.settings.address ]]</a-tag>
  288. </td>
  289. <td>
  290. <a-tag color="green">[[ inbound.settings.port ]]</a-tag>
  291. </td>
  292. <td>
  293. <a-tag color="green">[[ inbound.settings.network ]]</a-tag>
  294. </td>
  295. <td>
  296. <a-tag color="green">[[ inbound.settings.followRedirect ]]</a-tag>
  297. </td>
  298. </tr>
  299. </table>
  300. <table v-if="dbInbound.isSocks" class="tr-info-table">
  301. <tr>
  302. <th>{{ i18n "password" }} Auth</th>
  303. <th>{{ i18n "pages.inbounds.enable" }} udp</th>
  304. <th>IP</th>
  305. </tr>
  306. <tr>
  307. <td>
  308. <a-tag color="green">[[ inbound.settings.auth ]]</a-tag>
  309. </td>
  310. <td>
  311. <a-tag color="green">[[ inbound.settings.udp]]</a-tag>
  312. </td>
  313. <td>
  314. <a-tag color="green">[[ inbound.settings.ip ]]</a-tag>
  315. </td>
  316. </tr>
  317. <template v-if="inbound.settings.auth == 'password'">
  318. <tr>
  319. <td></td>
  320. <td>{{ i18n "username" }}</td>
  321. <td>{{ i18n "password" }}</td>
  322. </tr>
  323. <tr v-for="account,index in inbound.settings.accounts">
  324. <td>[[ index ]]</td>
  325. <td>
  326. <a-tag color="green">[[ account.user ]]</a-tag>
  327. </td>
  328. <td>
  329. <a-tag color="green">[[ account.pass ]]</a-tag>
  330. </td>
  331. </tr>
  332. </template>
  333. </table>
  334. <table v-if="dbInbound.isHTTP" class="tr-info-table">
  335. <tr>
  336. <th></th>
  337. <th>{{ i18n "username" }}</th>
  338. <th>{{ i18n "password" }}</th>
  339. </tr>
  340. <tr v-for="account,index in inbound.settings.accounts">
  341. <td>[[ index ]]</td>
  342. <td>
  343. <a-tag color="green">[[ account.user ]]</a-tag>
  344. </td>
  345. <td>
  346. <a-tag color="green">[[ account.pass ]]</a-tag>
  347. </td>
  348. </tr>
  349. </table>
  350. <table v-if="dbInbound.isWireguard" class="tr-info-table">
  351. <tr class="client-table-odd-row">
  352. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  353. <td>[[ inbound.settings.secretKey ]]</td>
  354. </tr>
  355. <tr>
  356. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  357. <td>[[ inbound.settings.pubKey ]]</td>
  358. </tr>
  359. <tr class="client-table-odd-row">
  360. <td>MTU</td>
  361. <td>[[ inbound.settings.mtu ]]</td>
  362. </tr>
  363. <tr>
  364. <td>No Kernel Tun</td>
  365. <td>[[ inbound.settings.noKernelTun ]]</td>
  366. </tr>
  367. <template v-for="(peer, index) in inbound.settings.peers">
  368. <tr>
  369. <td colspan="2">
  370. <a-divider>Peer [[ index + 1 ]]</a-divider>
  371. </td>
  372. </tr>
  373. <tr class="client-table-odd-row">
  374. <td>{{ i18n "pages.xray.wireguard.secretKey" }}</td>
  375. <td>[[ peer.privateKey ]]</td>
  376. </tr>
  377. <tr>
  378. <td>{{ i18n "pages.xray.wireguard.publicKey" }}</td>
  379. <td>[[ peer.publicKey ]]</td>
  380. </tr>
  381. <tr class="client-table-odd-row">
  382. <td>{{ i18n "pages.xray.wireguard.psk" }}</td>
  383. <td>[[ peer.psk ]]</td>
  384. </tr>
  385. <tr>
  386. <td>{{ i18n "pages.xray.wireguard.allowedIPs" }}</td>
  387. <td>[[ peer.allowedIPs.join(",") ]]</td>
  388. </tr>
  389. <tr class="client-table-odd-row">
  390. <td>Keep Alive</td>
  391. <td>[[ peer.keepAlive ]]</td>
  392. </tr>
  393. <tr>
  394. <td colspan="2">
  395. <tr-info-row v-for="(link,index) in infoModal.links" class="tr-info-row">
  396. <tr-info-title class="tr-info-title">
  397. <a-tag color="blue">Config</a-tag>
  398. <a-tooltip title='{{ i18n "copy" }}'>
  399. <a-button style="min-width: 24px;" size="small" icon="snippets" :id="'copy-url-link-'+index" @click="copyToClipboard('copy-url-link-'+index, infoModal.links[index])"></a-button>
  400. </a-tooltip>
  401. </tr-info-title>
  402. <div v-html="infoModal.links[index].replaceAll(`\n`,`<br />`)" style="border-radius: 1rem; padding: 0.5rem;" class="client-table-odd-row">
  403. </div>
  404. </tr-info-row>
  405. </td>
  406. </tr>
  407. </table>
  408. </template>
  409. </template>
  410. </a-modal>
  411. <script>
  412. const infoModal = {
  413. visible: false,
  414. inbound: new Inbound(),
  415. dbInbound: new DBInbound(),
  416. clientSettings: null,
  417. clientStats: [],
  418. upStats: 0,
  419. downStats: 0,
  420. clipboard: null,
  421. links: [],
  422. index: null,
  423. isExpired: false,
  424. subLink: '',
  425. subJsonLink: '',
  426. show(dbInbound, index) {
  427. this.index = index;
  428. this.inbound = dbInbound.toInbound();
  429. this.dbInbound = new DBInbound(dbInbound);
  430. this.clientSettings = this.inbound.clients ? this.inbound.clients[index] : null;
  431. this.isExpired = this.inbound.clients ? this.inbound.isExpiry(index) : this.dbInbound.isExpiry;
  432. this.clientStats = this.inbound.clients ? this.dbInbound.clientStats.find(row => row.email === this.clientSettings.email) : [];
  433. if (this.inbound.protocol == Protocols.WIREGUARD) {
  434. this.links = this.inbound.genInboundLinks(dbInbound.remark).split('\r\n')
  435. } else {
  436. this.links = this.inbound.genAllLinks(this.dbInbound.remark, app.remarkModel, this.clientSettings);
  437. }
  438. if (this.clientSettings) {
  439. if (this.clientSettings.subId) {
  440. this.subLink = this.genSubLink(this.clientSettings.subId);
  441. this.subJsonLink = this.genSubJsonLink(this.clientSettings.subId);
  442. }
  443. }
  444. this.visible = true;
  445. },
  446. close() {
  447. infoModal.visible = false;
  448. },
  449. genSubLink(subID) {
  450. return app.subSettings.subURI + subID;
  451. },
  452. genSubJsonLink(subID) {
  453. return app.subSettings.subJsonURI + subID;
  454. }
  455. };
  456. const infoModalApp = new Vue({
  457. delimiters: ['[[', ']]'],
  458. el: '#inbound-info-modal',
  459. data: {
  460. infoModal,
  461. get dbInbound() {
  462. return this.infoModal.dbInbound;
  463. },
  464. get inbound() {
  465. return this.infoModal.inbound;
  466. },
  467. get isActive() {
  468. if (infoModal.clientStats) {
  469. return infoModal.clientStats.enable;
  470. }
  471. return true;
  472. },
  473. get isEnable() {
  474. if (infoModal.clientSettings) {
  475. return infoModal.clientSettings.enable;
  476. }
  477. return infoModal.dbInbound.isEnable;
  478. },
  479. },
  480. methods: {
  481. copyToClipboard(elementId, content) {
  482. this.infoModal.clipboard = new ClipboardJS('#' + elementId, {
  483. text: () => content,
  484. });
  485. this.infoModal.clipboard.on('success', () => {
  486. app.$message.success('{{ i18n "copied" }}')
  487. this.infoModal.clipboard.destroy();
  488. });
  489. },
  490. statsColor(stats) {
  491. return usageColor(stats.up + stats.down, app.trafficDiff, stats.total);
  492. },
  493. getRemStats() {
  494. remained = this.infoModal.clientStats.total - this.infoModal.clientStats.up - this.infoModal.clientStats.down;
  495. return remained > 0 ? sizeFormat(remained) : '-';
  496. },
  497. },
  498. });
  499. </script>
  500. {{end}}