Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] 엑셀 업로드 사진 주소 변경 #37

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading