This commit is contained in:
木瓜一块八 2025-08-15 17:14:05 +08:00
parent 968639f063
commit b70b789919
2 changed files with 4 additions and 1 deletions

View File

@ -501,7 +501,7 @@ export default Vue.extend({
//
.main-content {
padding: 16px;
// padding: 16px;
width: 100%;
max-width: 1600px;

View File

@ -599,6 +599,9 @@ export default {
let formdata = new FormData();
for (let key in this.form) {
if(key == 'img'&&this.form.img == null){
continue;
}
formdata.append(key, this.form[key]);
}
formdata.append('publish_type', this.publish_type)