1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-13 07:04:21 +08:00

Just rename some functions for a definition more clean (#469)

This commit is contained in:
Yamel Senih 2020-04-28 20:26:28 -04:00 committed by GitHub
parent dc7221d886
commit 840692cfb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,6 +51,10 @@ export const contextMixin = {
defaultFromatExport: { defaultFromatExport: {
type: String, type: String,
default: 'xlsx' default: 'xlsx'
},
isDisplayed: {
type: Boolean,
default: false
} }
}, },
data() { data() {
@ -146,20 +150,20 @@ export const contextMixin = {
} }
return false return false
}, },
getterDataRecordsAll() { getAllDataRecords() {
return this.$store.getters.getDataRecordAndSelection(this.containerUuid) return this.$store.getters.getDataRecordAndSelection(this.containerUuid)
}, },
getDataSelection() { getDataSelection() {
return this.getterDataRecordsAll.selection return this.getAllDataRecords.selection
}, },
getDataRecord() { getDataRecord() {
return this.getterDataRecordsAll.record.filter(fieldItem => { return this.getAllDataRecords.record.filter(fieldItem => {
if (this.recordUuid === fieldItem.UUID) { if (this.recordUuid === fieldItem.UUID) {
return fieldItem return fieldItem
} }
}) })
}, },
getterDataLog() { getDataLog() {
if (this.panelType === 'window') { if (this.panelType === 'window') {
return this.$store.getters.getDataLog(this.containerUuid, this.recordUuid) return this.$store.getters.getDataLog(this.containerUuid, this.recordUuid)
} }
@ -168,7 +172,7 @@ export const contextMixin = {
processParametersExecuted() { processParametersExecuted() {
return this.$store.getters.getCachedReport(this.$route.params.instanceUuid).parameters return this.$store.getters.getCachedReport(this.$route.params.instanceUuid).parameters
}, },
getterWindowOldRoute() { getOldRouteOfWindow() {
if (this.panelType === 'window') { if (this.panelType === 'window') {
const oldRoute = this.$store.state.windowControl.windowOldRoute const oldRoute = this.$store.state.windowControl.windowOldRoute
if (!this.isEmptyValue(oldRoute.query.action) && oldRoute.query.action !== 'create-new' && this.$route.query.action === 'create-new') { if (!this.isEmptyValue(oldRoute.query.action) && oldRoute.query.action !== 'create-new' && this.$route.query.action === 'create-new') {
@ -177,7 +181,7 @@ export const contextMixin = {
} }
return false return false
}, },
metadataReport() { getReportDefinition() {
return this.$store.getters.getCachedReport(this.$route.params.instanceUuid) return this.$store.getters.getCachedReport(this.$route.params.instanceUuid)
}, },
isPersonalLock() { isPersonalLock() {
@ -204,7 +208,7 @@ export const contextMixin = {
this.generateContextMenu() this.generateContextMenu()
} }
}, },
getterDataLog(newValue, oldValue) { getDataLog(newValue, oldValue) {
if (this.panelType === 'window' && newValue !== oldValue) { if (this.panelType === 'window' && newValue !== oldValue) {
this.generateContextMenu() this.generateContextMenu()
} }
@ -380,7 +384,7 @@ export const contextMixin = {
} }
// rollback // rollback
if (itemAction.action === 'undoModifyData') { if (itemAction.action === 'undoModifyData') {
itemAction.disabled = Boolean(!this.getterDataLog && !this.getterWindowOldRoute) itemAction.disabled = Boolean(!this.getDataLog && !this.getOldRouteOfWindow)
} }
} }
}) })
@ -420,11 +424,11 @@ export const contextMixin = {
// run process associate with view (window or browser) // run process associate with view (window or browser)
this.showModal(action) this.showModal(action)
} else if (action.type === 'dataAction') { } else if (action.type === 'dataAction') {
if (action.action === 'undoModifyData' && Boolean(!this.getterDataLog) && this.getterWindowOldRoute) { if (action.action === 'undoModifyData' && Boolean(!this.getDataLog) && this.getOldRouteOfWindow) {
this.$router.push({ this.$router.push({
path: this.getterWindowOldRoute.path, path: this.getOldRouteOfWindow.path,
query: { query: {
...this.getterWindowOldRoute.query ...this.getOldRouteOfWindow.query
} }
}) })
} else { } else {
@ -641,7 +645,7 @@ export const contextMixin = {
this.$router.push({ this.$router.push({
name: ROUTES.PRINT_FORMAT_SETUP_WINDOW.uuid, name: ROUTES.PRINT_FORMAT_SETUP_WINDOW.uuid,
query: { query: {
action: this.metadataReport.output.printFormatUuid, action: this.getReportDefinition.output.printFormatUuid,
tabParent: ROUTES.PRINT_FORMAT_SETUP_WINDOW.tabParent tabParent: ROUTES.PRINT_FORMAT_SETUP_WINDOW.tabParent
} }
}) })