From 916a3cbabe4e50062fce61ff6f2f5d46c05dfbd1 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 목, 17 3월 2022 17:47:45 +0900 Subject: [PATCH] - api로 이슈 추가 시 url/ip로 업체 찾는 코드 수정 --- src/main/webapp/scripts/app/customField/customFieldAdd.controller.js | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js b/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js index 65c1549..b1ce6f2 100644 --- a/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js +++ b/src/main/webapp/scripts/app/customField/customFieldAdd.controller.js @@ -24,14 +24,20 @@ name : "", // �궗�슜�옄 �젙�쓽 �븘�뱶 紐� customFieldType : "INPUT", // �궗�슜�옄 �젙�쓽 �븘�뱶 �쑀�삎 defaultValue : "", // 湲곕낯 媛� + defaultNumValue : "", // 湲곕낯 媛� + defaultDateValue : "", // 湲곕낯 媛� + defaultIpValue : "", // 湲곕낯 媛� + defaultEmailValue : "", // 湲곕낯 媛� + defaultTelValue : "", // 湲곕낯 媛� + defaultSiteValue : "", // 湲곕낯 媛� options : [], // �샃�뀡 optionText : "", // �샃�뀡 媛� numberType : "", - ipAdress : "", + ipAddress : "", email : "", site : "", tel : "", - requiredData : "" + requiredData : false } }; @@ -48,6 +54,12 @@ $scope.vm.form.optionText = ""; $scope.vm.form.defaultValue = ""; + $scope.vm.form.defaultNumValue = ""; + $scope.vm.form.defaultDateValue = ""; + $scope.vm.form.defaultIpValue = ""; + $scope.vm.form.defaultEmailValue = ""; + $scope.vm.form.defaultTelValue = ""; + $scope.vm.form.defaultSiteValue = ""; } -- Gitblit v1.8.0