mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 14:48:13 -05:00
✨ Feature: add smms-v2 support
This commit is contained in:
parent
32334e9bc1
commit
3f3ea69cd6
@ -42,7 +42,7 @@
|
|||||||
"keycode": "^2.2.0",
|
"keycode": "^2.2.0",
|
||||||
"lodash-id": "^0.14.0",
|
"lodash-id": "^0.14.0",
|
||||||
"lowdb": "^1.0.0",
|
"lowdb": "^1.0.0",
|
||||||
"picgo": "^1.4.6",
|
"picgo": "^1.4.7",
|
||||||
"vue": "^2.6.10",
|
"vue": "^2.6.10",
|
||||||
"vue-gallery": "^2.0.1",
|
"vue-gallery": "^2.0.1",
|
||||||
"vue-lazyload": "^1.2.6",
|
"vue-lazyload": "^1.2.6",
|
||||||
|
@ -5,12 +5,27 @@
|
|||||||
<div class="view-title">
|
<div class="view-title">
|
||||||
SM.MS设置
|
SM.MS设置
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<el-form
|
||||||
感谢SM.MS提供的优质服务
|
ref="smms"
|
||||||
</div>
|
label-position="right"
|
||||||
<div style="text-align: center; margin-top: 20px;">
|
label-width="120px"
|
||||||
<el-button type="success" @click="confirm" round :disabled="defaultPicBed === 'smms'" size="mini">设为默认图床</el-button>
|
:model="form"
|
||||||
</div>
|
size="mini">
|
||||||
|
<el-form-item
|
||||||
|
label="设定Token"
|
||||||
|
prop="token"
|
||||||
|
:rules="{
|
||||||
|
required: true, message: 'Token不能为空', trigger: 'blur'
|
||||||
|
}">
|
||||||
|
<el-input v-model="form.token" type="password" placeholder="token" @keyup.native.enter="confirm('smmsForm')"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button-group>
|
||||||
|
<el-button type="primary" @click="confirm" round>确定</el-button>
|
||||||
|
<el-button type="success" @click="setDefaultPicBed('smms')" round :disabled="defaultPicBed === 'smms'">设为默认图床</el-button>
|
||||||
|
</el-button-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
@ -23,25 +38,58 @@ import mixin from '@/utils/ConfirmButtonMixin'
|
|||||||
mixins: [mixin]
|
mixins: [mixin]
|
||||||
})
|
})
|
||||||
export default class extends Vue {
|
export default class extends Vue {
|
||||||
|
form: ISMMSConfig = {
|
||||||
|
token: ''
|
||||||
|
}
|
||||||
|
created () {
|
||||||
|
const config = this.$db.get('picBed.smms.token') as (string | boolean)
|
||||||
|
if (typeof config !== 'boolean') {
|
||||||
|
this.form.token = config
|
||||||
|
}
|
||||||
|
}
|
||||||
confirm () {
|
confirm () {
|
||||||
|
// @ts-ignore
|
||||||
|
this.$refs.smms.validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
this.letPicGoSaveData({
|
this.letPicGoSaveData({
|
||||||
'picBed.smms': true
|
'picBed.smms': this.form
|
||||||
})
|
})
|
||||||
// @ts-ignore 来自mixin
|
|
||||||
this.setDefaultPicBed('smms')
|
|
||||||
const successNotification = new window.Notification('设置结果', {
|
const successNotification = new window.Notification('设置结果', {
|
||||||
body: '设置成功'
|
body: '设置成功'
|
||||||
})
|
})
|
||||||
successNotification.onclick = () => {
|
successNotification.onclick = () => {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang='stylus'>
|
<style lang='stylus'>
|
||||||
#smms-view
|
#smms-view
|
||||||
.content
|
.el-form
|
||||||
text-align center
|
label
|
||||||
font-size 14px
|
line-height 22px
|
||||||
|
padding-bottom 0
|
||||||
color #eee
|
color #eee
|
||||||
|
.el-input__inner
|
||||||
|
border-radius 19px
|
||||||
|
&-item
|
||||||
|
margin-bottom 10.5px
|
||||||
|
.el-radio-group
|
||||||
|
width 100%
|
||||||
|
label
|
||||||
|
width 25%
|
||||||
|
.el-radio-button__inner
|
||||||
|
width 100%
|
||||||
|
.el-radio-button:first-child
|
||||||
|
.el-radio-button__inner
|
||||||
|
border-left none
|
||||||
|
border-radius 14px 0 0 14px
|
||||||
|
.el-radio-button:last-child
|
||||||
|
.el-radio-button__inner
|
||||||
|
border-left none
|
||||||
|
border-radius 0 14px 14px 0
|
||||||
</style>
|
</style>
|
||||||
|
4
src/universal/types/types.d.ts
vendored
4
src/universal/types/types.d.ts
vendored
@ -252,6 +252,10 @@ interface IQiniuConfig {
|
|||||||
path: string
|
path: string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface ISMMSConfig {
|
||||||
|
token: string
|
||||||
|
}
|
||||||
|
|
||||||
interface ITcYunConfig {
|
interface ITcYunConfig {
|
||||||
secretId: string,
|
secretId: string,
|
||||||
secretKey: string,
|
secretKey: string,
|
||||||
|
@ -8292,10 +8292,10 @@ performance-now@^2.1.0:
|
|||||||
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
||||||
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
||||||
|
|
||||||
picgo@^1.4.6:
|
picgo@^1.4.7:
|
||||||
version "1.4.6"
|
version "1.4.7"
|
||||||
resolved "https://registry.yarnpkg.com/picgo/-/picgo-1.4.6.tgz#aa90439a253c5a07068b136a0d1426f63236735b"
|
resolved "https://registry.yarnpkg.com/picgo/-/picgo-1.4.7.tgz#ef9bea9e765ef9d77daa32f8a14c84c345677ece"
|
||||||
integrity sha512-VNh5el0hkh0OrxqTPGkRAUtGmncr7cdKrjdvp6yf2Iwx+O+uJ4IHgKMmzAj+siJGTBENL0eWoujmzX07zAt30g==
|
integrity sha512-r2j/cxfKdeHn/HnN/1XwbSM/xakO8XrAM0todTAbCDd4r+zIwDcl1pms5S+8YVDqQRAd/qNE4t9XESIIjhSVtA==
|
||||||
dependencies:
|
dependencies:
|
||||||
chalk "^2.4.1"
|
chalk "^2.4.1"
|
||||||
commander "^2.17.0"
|
commander "^2.17.0"
|
||||||
|
Loading…
Reference in New Issue
Block a user