Skip to content

Commit

Permalink
Merge pull request #37 from Billing-Wise/K5P-78/fix/오류화면추가
Browse files Browse the repository at this point in the history
[fix] 엑셀 업로드 사진 주소 변경
  • Loading branch information
Koneweekk authored Aug 7, 2024
2 parents f4fc578 + 9a19e29 commit 6164827
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "billing-wise",
"version": "1.0.1",
"version": "1.0.2",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/ExcelUpload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</header>
<div class="main-box">
<div class="sample-box">
<img :src="`/src/assets/images/${store.exampleImg}`" alt="">
<img :src="store.exampleImg" alt="">
<div class="guide-line">
<span>※ 위 사진처럼 이름과 형식을 맞춰서 입력해주세요</span>
<ExcelBtnVue title="양식" :func="downloadSample" />
Expand Down
2 changes: 1 addition & 1 deletion src/stores/contract/contractBulk.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineStore } from 'pinia'
export const useContractBulkStore = defineStore('contractBulk', {
state() {
return {
exampleImg: 'example_contract.png',
exampleImg: 'https://t5-bucket.s3.ap-northeast-2.amazonaws.com/excel/%EA%B3%84%EC%95%BD_%EC%97%91%EC%85%80_%EC%98%88%EC%8B%9C.png',
download: 'https://t5-bucket.s3.ap-northeast-2.amazonaws.com/excel/%EA%B3%84%EC%95%BD%EB%93%B1%EB%A1%9D.xlsx',
fileName: '계약등록.xlsx',
file: null,
Expand Down
2 changes: 1 addition & 1 deletion src/stores/member/memberBulk.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineStore } from 'pinia'
export const useMemberBulkStore = defineStore('memberBulk', {
state() {
return {
exampleImg: 'example_member.png',
exampleImg: 'https://t5-bucket.s3.ap-northeast-2.amazonaws.com/excel/%ED%9A%8C%EC%9B%90_%EC%97%91%EC%85%80_%EC%98%88%EC%8B%9C.png',
download: 'https://t5-bucket.s3.ap-northeast-2.amazonaws.com/excel/%ED%9A%8C%EC%9B%90%EB%93%B1%EB%A1%9D.xlsx',
fileName: '회원등록.xlsx',
file: null,
Expand Down

0 comments on commit 6164827

Please sign in to comment.