Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: mp oss form update #474

Merged
merged 1 commit into from
Dec 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/CodemirrorEditor/UploadImgDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const options = [
},
{
value: `mp`,
label: `公众号素材`,
label: `公众号图床`,
},
{
value: `formCustom`,
Expand Down Expand Up @@ -657,10 +657,10 @@ function onDrop(e: DragEvent) {
</TabsContent>
<TabsContent value="mp">
<div class="space-y-4">
<FormItem label="代理域名">
<FormItem label="代理域名" :required="isWebsite">
<Input
v-model.trim="formMp.proxyOrigin"
placeholder=""
placeholder="如:http://proxy.example.com,使用插件时可不填"
/>
</FormItem>
<FormItem label="appID" required>
Expand All @@ -669,7 +669,7 @@ function onDrop(e: DragEvent) {
placeholder="如:wx6e1234567890efa3"
/>
</FormItem>
<FormItem label="appsecret">
<FormItem label="appsecret" required>
<Input
v-model.trim="formMp.appsecret"
placeholder="如:d9f1abcdef01234567890abcdef82397"
Expand Down
Loading