[fix-11233][ui] Remove custom template switch button in chunjun component module (#11234)
- delete obsolete switch button This closes #11233
This commit is contained in:
parent
9ca1eb96c4
commit
2adfc52e55
|
|
@ -527,8 +527,7 @@ export default {
|
|||
datax_job_runtime_memory_xms: 'Low Limit Value',
|
||||
datax_job_runtime_memory_xmx: 'High Limit Value',
|
||||
datax_job_runtime_memory_unit: 'G',
|
||||
chunjun_custom_template: 'Custom Template',
|
||||
chunjun_json_template: 'JSON',
|
||||
chunjun_json_template: 'JSON script',
|
||||
current_hour: 'CurrentHour',
|
||||
last_1_hour: 'Last1Hour',
|
||||
last_2_hour: 'Last2Hours',
|
||||
|
|
|
|||
|
|
@ -520,8 +520,7 @@ export default {
|
|||
datax_job_runtime_memory_xms: '最小内存',
|
||||
datax_job_runtime_memory_xmx: '最大内存',
|
||||
datax_job_runtime_memory_unit: 'G',
|
||||
chunjun_custom_template: '自定义模板',
|
||||
chunjun_json_template: 'JSON',
|
||||
chunjun_json_template: 'JSON 脚本',
|
||||
current_hour: '当前小时',
|
||||
last_1_hour: '前1小时',
|
||||
last_2_hour: '前2小时',
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import { ref, onMounted, watch } from 'vue'
|
||||
import { ref, onMounted } from 'vue'
|
||||
import { useI18n } from 'vue-i18n'
|
||||
import type { IJsonItem } from '../types'
|
||||
import { useChunjunDeployMode } from './'
|
||||
|
|
@ -26,36 +26,15 @@ export function useChunjun(model: { [field: string]: any }): IJsonItem[] {
|
|||
const customParameterSpan = ref(0)
|
||||
|
||||
const initConstants = () => {
|
||||
if (model.customConfig) {
|
||||
jsonEditorSpan.value = 24
|
||||
customParameterSpan.value = 24
|
||||
} else {
|
||||
jsonEditorSpan.value = 0
|
||||
customParameterSpan.value = 0
|
||||
}
|
||||
jsonEditorSpan.value = 24
|
||||
customParameterSpan.value = 24
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
initConstants()
|
||||
})
|
||||
|
||||
watch(
|
||||
() => model.customConfig,
|
||||
() => {
|
||||
initConstants()
|
||||
}
|
||||
)
|
||||
|
||||
return [
|
||||
{
|
||||
type: 'switch',
|
||||
field: 'customConfig',
|
||||
value: true,
|
||||
name: t('project.node.chunjun_custom_template'),
|
||||
props: {
|
||||
disabled: true
|
||||
}
|
||||
},
|
||||
{
|
||||
type: 'editor',
|
||||
field: 'json',
|
||||
|
|
|
|||
Loading…
Reference in New Issue