mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
23 lines
605 B
JavaScript
23 lines
605 B
JavaScript
/* global HelperModule i18n */
|
|
|
|
export default {
|
|
methods: {
|
|
updateViewMode(viewMode) {
|
|
this.$emit('attachment:viewMode', this.attachment.id, viewMode);
|
|
},
|
|
deleteAttachment() {
|
|
$.ajax({
|
|
url: this.attachment.attributes.urls.delete,
|
|
type: 'DELETE',
|
|
dataType: 'json',
|
|
success: (result) => {
|
|
this.$emit('attachment:delete');
|
|
HelperModule.flashAlertMsg(result.flash, 'success');
|
|
},
|
|
error: () => {
|
|
HelperModule.flashAlertMsg(this.i18n.t('general.no_permissions'), 'danger');
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|