diff --git a/package-lock.json b/package-lock.json index 9ecbdc3..be65912 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "billing-wise", - "version": "0.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "billing-wise", - "version": "0.0.0", + "version": "1.0.1", "dependencies": { "axios": "^1.7.2", "billing-wise": "file:", diff --git a/src/assets/scss/component/table.scss b/src/assets/scss/component/table.scss index 998b512..ad0ca34 100644 --- a/src/assets/scss/component/table.scss +++ b/src/assets/scss/component/table.scss @@ -30,7 +30,7 @@ } .table-column { - // width: 100px; + // width: 150px; font-weight: bold; padding: 25px 20px; } diff --git a/src/components/common/TheNavBar.vue b/src/components/common/TheNavBar.vue index 7c5396b..a4b65b3 100644 --- a/src/components/common/TheNavBar.vue +++ b/src/components/common/TheNavBar.vue @@ -2,8 +2,14 @@ @@ -50,11 +56,16 @@ export default { .nav-info { @include flex-box(row, center, 20px); - .nav-info-item { + i { @include flex-box(row, center, 0px); + } + + .nav-info-item { + @include flex-box(row, center, 7px); background-color: white; border-radius: 5px; padding: 5px 15px; + font-size: 18px; font-weight: bold; } } diff --git a/src/components/common/info/TitleInfo.vue b/src/components/common/info/TitleInfo.vue index 91750d7..72755b6 100644 --- a/src/components/common/info/TitleInfo.vue +++ b/src/components/common/info/TitleInfo.vue @@ -27,7 +27,8 @@ export default { @include flex-box(row, center, 0px); @include white-text(16px); background: $theme-color; - width: 110px; + min-width: 90px; + width: 90px; height: 100%; border-top-left-radius: 5px; border-bottom-left-radius: 5px; diff --git a/src/components/common/input/InfoInput.vue b/src/components/common/input/InfoInput.vue index b0c805c..5f530b8 100644 --- a/src/components/common/input/InfoInput.vue +++ b/src/components/common/input/InfoInput.vue @@ -33,14 +33,15 @@ export default { @include flex-box(row, center, 0px); @include white-text(16px); background: $theme-color; - width: 140px; + min-width: 90px; + width: 90px; height: 100%; border-top-left-radius: 5px; border-bottom-left-radius: 5px; } input { - width: 100%; + flex-grow: 1; height: 100%; padding: 0px 10px; font-weight: bold; diff --git a/src/components/common/input/NumberInput.vue b/src/components/common/input/NumberInput.vue index 3caa0d6..41969ec 100644 --- a/src/components/common/input/NumberInput.vue +++ b/src/components/common/input/NumberInput.vue @@ -37,7 +37,8 @@ export default { @include flex-box(row, center, 0px); @include white-text(16px); background: $theme-color; - width: 140px; + min-width: 90px; + width: 90px; height: 100%; } diff --git a/src/components/common/select/TitleSelect.vue b/src/components/common/select/TitleSelect.vue index b0909b8..c4b952a 100644 --- a/src/components/common/select/TitleSelect.vue +++ b/src/components/common/select/TitleSelect.vue @@ -66,7 +66,8 @@ export default { @include flex-box(row, center, 0px); @include white-text(16px); background: $theme-color; - width: 140px; + min-width: 90px; + width: 90px; height: 100%; border-top-left-radius: 5px; border-bottom-left-radius: 5px; diff --git a/src/components/common/select/TitleUpSelect.vue b/src/components/common/select/TitleUpSelect.vue index 9719d29..8bd9609 100644 --- a/src/components/common/select/TitleUpSelect.vue +++ b/src/components/common/select/TitleUpSelect.vue @@ -67,7 +67,8 @@ export default { @include flex-box(row, center, 0px); @include white-text(16px); background: $theme-color; - width: 140px; + min-width: 90px; + width: 90px; height: 100%; border-top-left-radius: 5px; border-bottom-left-radius: 5px; diff --git a/src/components/consent/modal/ConsentUpdateModal.vue b/src/components/consent/modal/ConsentUpdateModal.vue index 06ec937..823b4c4 100644 --- a/src/components/consent/modal/ConsentUpdateModal.vue +++ b/src/components/consent/modal/ConsentUpdateModal.vue @@ -82,6 +82,9 @@ export default { this.owner = this.consentDetailStore.data.owner; this.bank = this.consentDetailStore.data.bank; this.bankIdx = this.bankList.findIndex((bank) => bank.name === this.consentDetailStore.data.bank); + if (this.bankIdx === -1) { + this.bankIdx = 0 + }; this.number = this.consentDetailStore.data.number; this.imgSrc = this.consentDetailStore.data.signUrl; }, diff --git a/src/components/contract/ContractCreateInfo.vue b/src/components/contract/ContractCreateInfo.vue index a39546f..65dc8f7 100644 --- a/src/components/contract/ContractCreateInfo.vue +++ b/src/components/contract/ContractCreateInfo.vue @@ -1,7 +1,6 @@