Skip to content

Commit dadf387

Browse files
committed
[EDIT] 분류 기본 설정을 공백에서 전체로 변경하였습니다.
1 parent 889511c commit dadf387

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

patent-calculator/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export default {
129129
}
130130
},
131131
created() {
132-
console.log('\n' +
132+
console.info('\n' +
133133
'┌─┐┬─┐┌─┐ ┬┌─┐┌─┐┌┬┐ ┌─┐┌─┐┌─┐┌─┐┌─┐┬ \n' +
134134
'├─┘├┬┘│ │ │├┤ │ │ ├─┘├─┤└─┐│ ├─┤│ \n' +
135135
'┴ ┴└─└─┘└┘└─┘└─┘ ┴o ┴ ┴ ┴└─┘└─┘┴ ┴┴─┘ \n' +

patent-calculator/src/components/ProductAdder.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<v-stepper-items class="elevation-0">
1515
<v-stepper-content step="1" class="pt-0">
1616
<v-layout column wrap>
17-
<v-flex v-for="searchbar in searchbars" :key="searchbar.id" class="my-2">
17+
<v-flex v-for="searchbar in searchbars" :key="searchbar.id" class="my-1">
1818
<v-layout column wrap>
1919
<v-flex>
2020
<v-layout row>
@@ -108,7 +108,7 @@ export default {
108108
searchbars: [
109109
{
110110
id: 1,
111-
classification: "",
111+
classification: "전체",
112112
keywords: ""
113113
}
114114
],
@@ -191,13 +191,13 @@ export default {
191191
addForm() {
192192
this.searchbars.push({
193193
id: ++this.searchbarId,
194-
classificationEdited: -1,
194+
classification: "전체",
195195
keywords: ""
196196
});
197197
},
198198
deleteForm(searchbarId) {
199199
const deletedIndex = this.searchbars.findIndex(
200-
searchbar => searchbar["id"] == searchbarId
200+
searchbar => searchbar["id"] === searchbarId
201201
);
202202
this.searchbars.splice(deletedIndex, 1);
203203
}

patent-calculator/src/components/Search.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default {
6565
return {
6666
rowsPerPageItems: [10, 25, 100],
6767
searchbar: {
68-
classification: -1,
68+
classification: "전체",
6969
keywords: ""
7070
},
7171
searching: false,

0 commit comments

Comments
 (0)