未验证 提交 2adfc52e 编写于 作者: 秋天 提交者: GitHub

[fix-11233][ui] Remove custom template switch button in chunjun component module (#11234)

- delete obsolete switch button

This closes #11233
上级 9ca1eb96
......@@ -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',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册