박정하 박정하 04-02
250402 박정하 이슈 내역 수정
@581a47331ae77f39cb4d6681d6d73568ced55093
client/views/common/commonPlugin.js
--- client/views/common/commonPlugin.js
+++ client/views/common/commonPlugin.js
@@ -187,13 +187,8 @@
 
     // 기본 검색 객체 생성
     Vue.config.globalProperties.$getDefaultSerchItem = function (key, type) {
-
       let value1 = null;
       let value2 = null;
-      if (type === 'dates') {
-        value1 = moment().add("-1", "M").format('YYYY-MM-DD');
-        value2 = moment().format('YYYY-MM-DD');
-      }
       return {
         key: key,
         value: value1,
client/views/pages/dbConnection/DBConnectionDetail.vue
--- client/views/pages/dbConnection/DBConnectionDetail.vue
+++ client/views/pages/dbConnection/DBConnectionDetail.vue
@@ -238,8 +238,12 @@
           data: vm.connectionDB,
         });
 
-        vm.$showAlert("메세지", "삭제되었습니다.");
-        vm.$router.push("/dbConnectionList.page");
+        if (response.data.resultData.dbConnection.checkMessage.success) {
+          vm.$showAlert("메세지", "삭제되었습니다.");
+          vm.$router.push("/dbConnectionList.page");
+        } else {
+          vm.$showAlert("메세지", response.data.resultData.dbConnection.checkMessage.message);
+        }
       } catch (error) {
         vm.$showAlert(
           "에러 발생",
Add a comment
List