|
|
@ -798,12 +798,16 @@ export default {
|
|
|
|
for (let i = 0; i < this.sourceList.length; i++) {
|
|
|
|
for (let i = 0; i < this.sourceList.length; i++) {
|
|
|
|
if (this.sourceList[i].id === v) {
|
|
|
|
if (this.sourceList[i].id === v) {
|
|
|
|
if (this.sourceList[i].sourceType === 'sqlserver') {
|
|
|
|
if (this.sourceList[i].sourceType === 'sqlserver') {
|
|
|
|
|
|
|
|
if (this.dataForm.sqlProcess === 'call ') {
|
|
|
|
this.dataForm.sqlProcess = 'exec '
|
|
|
|
this.dataForm.sqlProcess = 'exec '
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (this.dataForm.sqlProcess === 'exec ') {
|
|
|
|
this.dataForm.sqlProcess = 'call '
|
|
|
|
this.dataForm.sqlProcess = 'call '
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 打开参数配置弹窗
|
|
|
|
* 打开参数配置弹窗
|
|
|
|