Browse Source

增加 github 跳转

develop
CareyWong 5 years ago
parent
commit
d12f186156
  1. 13
      src/views/Subconverter.vue

13
src/views/Subconverter.vue

@ -3,7 +3,10 @@
<el-row style="margin-top: 10px"> <el-row style="margin-top: 10px">
<el-col> <el-col>
<el-card> <el-card>
<div slot="header">Subscription Converter</div> <div slot="header">
Subscription Converter
<svg-icon icon-class="github" style="margin-left: 20px" @click="goToProject" />
</div>
<el-container> <el-container>
<el-form :model="form" label-width="120px" label-position="left" style="width: 100%"> <el-form :model="form" label-width="120px" label-position="left" style="width: 100%">
<el-form-item label="模式设置:"> <el-form-item label="模式设置:">
@ -204,6 +207,7 @@
</template> </template>
<script> <script>
const project = "https://github.com/CareyWang/sub-web";
const remoteConfigSample = const remoteConfigSample =
"https://raw.githubusercontent.com/tindy2013/subconverter/master/base/config/example_external_config.ini"; "https://raw.githubusercontent.com/tindy2013/subconverter/master/base/config/example_external_config.ini";
const gayhubRelease = "https://github.com/tindy2013/subconverter/releases"; const gayhubRelease = "https://github.com/tindy2013/subconverter/releases";
@ -232,9 +236,7 @@ export default {
ssr: "ssr", ssr: "ssr",
ssd: "ssd" ssd: "ssd"
}, },
backendOptions: [ backendOptions: [{ value: "http://127.0.0.1:25500/sub?" }],
{ value: "http://127.0.0.1:25500/sub?" }
],
remoteConfig: [ remoteConfig: [
{ {
label: "universal", label: "universal",
@ -334,6 +336,9 @@ export default {
onCopy() { onCopy() {
this.$message.success("Copied!"); this.$message.success("Copied!");
}, },
goToProject() {
window.open(project);
},
gotoGayhub() { gotoGayhub() {
window.open(gayhubRelease); window.open(gayhubRelease);
}, },

Loading…
Cancel
Save