Commit 89f5a50b by 제남의

aoi modal 수정

parent ed250707
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
\ No newline at end of file
...@@ -4,6 +4,7 @@ import Home from '../views/Home.vue' ...@@ -4,6 +4,7 @@ import Home from '../views/Home.vue'
import AdminMain from '../views/admin/Main.vue' import AdminMain from '../views/admin/Main.vue'
import Dashboard from '../views/admin/main/Dashboard.vue' import Dashboard from '../views/admin/main/Dashboard.vue'
import create from '../views/admin/main/Create.vue'
import Test from '../views/admin/main/Test.vue' import Test from '../views/admin/main/Test.vue'
import Test2 from '../views/admin/main/Test2.vue' import Test2 from '../views/admin/main/Test2.vue'
import Test3 from '../views/admin/main/Test3.vue' import Test3 from '../views/admin/main/Test3.vue'
...@@ -37,6 +38,13 @@ const routes = [ ...@@ -37,6 +38,13 @@ const routes = [
}, },
{ {
path: '/create',
name: 'create',
component: create
},
{
path: '/test', path: '/test',
name: 'Test', name: 'Test',
component: Test component: Test
......
...@@ -3,29 +3,56 @@ ...@@ -3,29 +3,56 @@
<!-- light / dark --> <!-- light / dark -->
<v-card <v-card
light light
class="card mx-auto my-12" class="card mx-auto my-12 pa-md-6 mx-lg-auto"
max-width="600" max-width="600"
width="600" width="600"
align="center" align="center"
height="250" height="250"
> >
<v-card-text> <h2
class="text-center"
>
AOI 장비 등록 AOI 장비 등록
</h2>
</v-card-text> <v-col
<v-btn class="ma-2 my-0" cols="12"
sm="6"
>
<v-text-field
v-model="message1"
label="시리얼넘버"
clearable
>
</v-text-field>
</v-col>
<v-col
cols="12"
sm="6"
>
<v-text-field
v-model="message1"
label="장비명"
clearable
>
</v-text-field>
</v-col>
<v-btn
class="ma-2"
large
outlined outlined
tile
color="black" color="black"
large> >
취소 취소
</v-btn> </v-btn>
<v-btn class="ma-2 my-0" <v-btn
tile class="ma-2"
large
color="primary" color="primary"
large> >
확인 등록
</v-btn> </v-btn>
</v-card> </v-card>
</v-overlay> </v-overlay>
</template> </template>
...@@ -36,7 +63,7 @@ ...@@ -36,7 +63,7 @@
<style> <style>
.text { .text {
font-size: 20px; font-size: 20px;
color: #000; color: red;
} }
.card { .card {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment