Skip to content

Commit

Permalink
Merge branch 'master' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukaii committed Dec 4, 2020
2 parents dfcffb1 + 3991610 commit 415b8a1
Show file tree
Hide file tree
Showing 19 changed files with 4 additions and 4 deletions.
Binary file added public/images/tutorial/create-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/create-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/create-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/create-4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/create-5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/create-6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/create-7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/tutorial/new_1.png
Binary file not shown.
Binary file removed public/images/tutorial/new_2.png
Binary file not shown.
Binary file removed public/images/tutorial/new_3.png
Binary file not shown.
Binary file removed public/images/tutorial/new_4.png
Binary file not shown.
Binary file removed public/images/tutorial/new_5.png
Binary file not shown.
Binary file added public/images/tutorial/update-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/update-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/update-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/tutorial/update-4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/tutorial/update_1.png
Binary file not shown.
Binary file removed public/images/tutorial/update_2.png
Binary file not shown.
8 changes: 4 additions & 4 deletions src/components/TutorialModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<carousel :per-page="1" paginationActiveColor='#6E8501' paginationColor='#e3e3e3' :paginationPadding="5" ref="createCarousel">
<slide v-for="(image, index) in addImages" :key="image">
<h2>新增違章工廠({{index + 1}}/5)</h2>
<h2>新增違章工廠({{index + 1}}/7)</h2>
<img :src="image">
</slide>
</carousel>
Expand All @@ -33,7 +33,7 @@
<div id="tutorial-update-factory" v-show="isUpdate">
<carousel :per-page="1" paginationActiveColor='#6E8501' paginationColor='#e3e3e3' :paginationPadding="5" ref="updateCarousel">
<slide v-for="(image, index) in updateImages" :key="image">
<h2>補充工廠資訊({{index + 1}}/2)</h2>
<h2>補充工廠資訊({{index + 1}}/4)</h2>
<img :src="image">
</slide>
</carousel>
Expand Down Expand Up @@ -87,8 +87,8 @@ export default createComponent({
page.value = 'update'
}
const addImages = new Array(5).fill(true).map((_, index) => `/images/tutorial/new_${index + 1}.png`)
const updateImages = new Array(2).fill(true).map((_, index) => `/images/tutorial/update_${index + 1}.png`)
const addImages = new Array(7).fill(true).map((_, index) => `/images/tutorial/create-${index + 1}.jpg`)
const updateImages = new Array(4).fill(true).map((_, index) => `/images/tutorial/update-${index + 1}.jpg`)
const onDismissClick = () => {
openHome()
Expand Down

0 comments on commit 415b8a1

Please sign in to comment.