Skip to content
Snippets Groups Projects
Commit d3eb988c authored by YongJae's avatar YongJae
Browse files

Error, UI fixed

parent 34c16029
No related branches found
No related tags found
1 merge request!22Error, UI fixed
...@@ -32,7 +32,7 @@ router.post("/cancel", async (req, res) => { ...@@ -32,7 +32,7 @@ router.post("/cancel", async (req, res) => {
console.error(err); console.error(err);
return; return;
} }
transaction.buyerId = ""; transaction.buyerId = null;
transaction.on_transaction = false; transaction.on_transaction = false;
transaction.save(); transaction.save();
res.json({ result: true }); res.json({ result: true });
...@@ -43,7 +43,7 @@ router.post("/cancel", async (req, res) => { ...@@ -43,7 +43,7 @@ router.post("/cancel", async (req, res) => {
} }
}); });
router.post("/success", async (req, res) => { router.post("/end", async (req, res) => {
console.log("POST - success start"); console.log("POST - success start");
var sess = req.session; var sess = req.session;
var req_bookTitle = req.body.bookTitle; var req_bookTitle = req.body.bookTitle;
...@@ -68,8 +68,6 @@ router.post("/success", async (req, res) => { ...@@ -68,8 +68,6 @@ router.post("/success", async (req, res) => {
book.stock--; book.stock--;
book.save(); book.save();
}); });
// transaction.on_transaction = "";
// transaction.save();
res.json({ result: true }); res.json({ result: true });
} }
); );
...@@ -119,7 +117,7 @@ router.post("/sell", async (req, res) => { ...@@ -119,7 +117,7 @@ router.post("/sell", async (req, res) => {
var transaction = new Transaction(); var transaction = new Transaction();
transaction.sellerId = sellerId; transaction.sellerId = sellerId;
transaction.buyerId = ""; transaction.buyerId = null;
transaction.bookTitle = book.title; transaction.bookTitle = book.title;
transaction.on_transaction = false; transaction.on_transaction = false;
book.stock++; book.stock++;
......
<template> <template>
<div id="app" class="page-container"> <div id="app" class="page-container">
<md-app md-mode="fixed-last"> <md-app md-mode="fixed-last">
<md-app-toolbar class="md-large md-dense md-primary"> <md-app-toolbar class="md-dense md-primary">
<div class="md-toolbar-row"> <div class="md-toolbar-row">
<span class="md-title">MajorBook</span> <span class="md-title">MajorBook</span>
</div> </div>
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
<Logout /> <Logout />
</div> </div>
</div> </div>
<div class="md-toolbar-row"> <div class="md-toolbar-row">
<md-tabs class="md-primary" style="margin: auto; height: 30px"> <md-tabs class="md-primary" style="margin: auto; height: 30px">
<md-tab id="tab-home" md-label="Home" to="/home"></md-tab> <md-tab id="tab-home" md-label="Home" to="/home"></md-tab>
...@@ -67,15 +66,6 @@ export default { ...@@ -67,15 +66,6 @@ export default {
}); });
} }
} }
// computed: {
// checkLoggedIn() {
// console.log(this.checkSession());
// if (this.checkSession() === true) {
// return true;
// }
// return false;
// }
// }
}; };
</script> </script>
......
...@@ -120,8 +120,22 @@ export default { ...@@ -120,8 +120,22 @@ export default {
grade: null, grade: null,
major: null, major: null,
type: null, type: null,
option1: ["1학년", "2학년", "3학년", "4학년","전학년"], option1: ["1학년", "2학년", "3학년", "4학년", "전학년"],
option2: ["소프트웨어학과", "미디어학과", "경제학과","경영학과","수학과","산업공학과","사회학과","전자공학과","기계공학과","신소재공학과","환경안전공학과","의학전공","공통과목"], option2: [
"소프트웨어학과",
"미디어학과",
"경제학과",
"경영학과",
"수학과",
"산업공학과",
"사회학과",
"전자공학과",
"기계공학과",
"신소재공학과",
"환경안전공학과",
"의학전공",
"공통과목"
],
option3: ["전공필수", "전공선택", "교양선택", "기초과목"], option3: ["전공필수", "전공선택", "교양선택", "기초과목"],
Books: [], Books: [],
submit: { submit: {
......
...@@ -34,9 +34,7 @@ ...@@ -34,9 +34,7 @@
<div class="md-title">이 책을 구매하시겠습니까?</div> <div class="md-title">이 책을 구매하시겠습니까?</div>
</md-card-header> </md-card-header>
<md-card-actions> <md-card-actions>
<md-button class="md-raised md-primary" v-on:click="buyBook" <md-button class="md-raised md-primary" v-on:click="buyBook">구매</md-button>
>구매</md-button
>
</md-card-actions> </md-card-actions>
</md-card> </md-card>
</div> </div>
......
...@@ -34,9 +34,7 @@ ...@@ -34,9 +34,7 @@
<div class="md-title">이 책을 판매하시겠습니까?</div> <div class="md-title">이 책을 판매하시겠습니까?</div>
</md-card-header> </md-card-header>
<md-card-actions> <md-card-actions>
<md-button class="md-raised md-primary" v-on:click="sellBook" <md-button class="md-raised md-primary" v-on:click="sellBook">판매</md-button>
>판매</md-button
>
</md-card-actions> </md-card-actions>
</md-card> </md-card>
</div> </div>
......
...@@ -9,38 +9,19 @@ ...@@ -9,38 +9,19 @@
<md-field :class="getValidationClass('id')"> <md-field :class="getValidationClass('id')">
<label>ID</label> <label>ID</label>
<md-input name="ID" id="ID" v-model="user.id" :disabled="sending" /> <md-input name="ID" id="ID" v-model="user.id" :disabled="sending" />
<span class="md-error" v-if="!$v.user.id.required" <span class="md-error" v-if="!$v.user.id.required">The ID is required"</span>
>The ID is required"</span <span class="md-error" v-else-if="!$v.user.id.minlength">아이디는 다섯 자리 이상이어야 합니다.</span>
>
<span class="md-error" v-else-if="!$v.user.id.minlength"
>아이디는 다섯 자리 이상이어야 합니다.</span
>
</md-field> </md-field>
<md-field :class="getValidationClass('password')"> <md-field :class="getValidationClass('password')">
<label>Password</label> <label>Password</label>
<md-input <md-input v-model="user.password" type="password" :disabled="sending" />
v-model="user.password" <span class="md-error" v-if="!$v.user.password.required">The Password is required</span>
type="password" <span class="md-error" v-else-if="!$v.user.password.minlength">비밀번호는 세 자리 이상이어야 합니다.</span>
:disabled="sending"
/>
<span class="md-error" v-if="!$v.user.password.required"
>The Password is required</span
>
<span class="md-error" v-else-if="!$v.user.password.minlength"
>비밀번호는 세 자리 이상이어야 합니다.</span
>
</md-field> </md-field>
<md-button <md-button class="md-raised md-primary" type="submit" :disabled="sending">Login</md-button>
class="md-raised md-primary" <md-button class="md-primary" v-on:click="active = false">Close</md-button>
type="submit"
:disabled="sending"
>Login</md-button
>
<md-button class="md-primary" v-on:click="active = false"
>Close</md-button
>
</md-content> </md-content>
</form> </form>
</md-dialog> </md-dialog>
...@@ -134,7 +115,10 @@ export default { ...@@ -134,7 +115,10 @@ export default {
}; };
</script> </script>
<style> <style scoped>
.md-primary {
margin: 0;
}
.select { .select {
margin: 15px; margin: 15px;
display: inline-flex; display: inline-flex;
......
...@@ -8,84 +8,43 @@ ...@@ -8,84 +8,43 @@
<md-field :class="getValidationClass('name')"> <md-field :class="getValidationClass('name')">
<label>Name</label> <label>Name</label>
<md-input name="name" v-model="user.name" :disabled="sending" /> <md-input name="name" v-model="user.name" :disabled="sending" />
<span class="md-error" v-if="!$v.user.name.required" <span class="md-error" v-if="!$v.user.name.required">The Name is required"</span>
>The Name is required"</span <span class="md-error" v-else-if="!$v.user.name.minlength">이름은 두 자리 이상이어야 합니다.</span>
>
<span class="md-error" v-else-if="!$v.user.name.minlength"
>이름은 두 자리 이상이어야 합니다.</span
>
</md-field> </md-field>
<md-field :class="getValidationClass('id')"> <md-field :class="getValidationClass('id')">
<label for="id">ID</label> <label for="id">ID</label>
<md-input name="id" v-model="user.id" :disabled="sending" /> <md-input name="id" v-model="user.id" :disabled="sending" />
<span class="md-error" v-if="!$v.user.id.required" <span class="md-error" v-if="!$v.user.id.required">The ID is required"</span>
>The ID is required"</span <span class="md-error" v-else-if="!$v.user.id.minlength">아이디는 다섯 자리 이상이어야 합니다.</span>
>
<span class="md-error" v-else-if="!$v.user.id.minlength"
>아이디는 다섯 자리 이상이어야 합니다.</span
>
</md-field> </md-field>
<md-field <md-field :md-toggle-password="true" :class="getValidationClass('password')">
:md-toggle-password="true"
:class="getValidationClass('password')"
>
<label for="password">Password</label> <label for="password">Password</label>
<md-input <md-input name="password" v-model="user.password" type="password" :disabled="sending" />
name="password" <span class="md-error" v-if="!$v.user.password.required">The Password is required</span>
v-model="user.password" <span class="md-error" v-else-if="!$v.user.password.minlength">비밀번호는 세 자리 이상이어야 합니다.</span>
type="password"
:disabled="sending"
/>
<span class="md-error" v-if="!$v.user.password.required"
>The Password is required</span
>
<span class="md-error" v-else-if="!$v.user.password.minlength"
>비밀번호는 세 자리 이상이어야 합니다.</span
>
</md-field> </md-field>
<md-field :class="getValidationClass('email')"> <md-field :class="getValidationClass('email')">
<label for="email">Email</label> <label for="email">Email</label>
<md-input <md-input name="email" type="email" v-model="user.email" :disabled="sending" />
name="email" <span class="md-error" v-if="!$v.user.email.required">The email is required</span>
type="email" <span class="md-error" v-else-if="!$v.user.email.email">Invalid email</span>
v-model="user.email"
:disabled="sending"
/>
<span class="md-error" v-if="!$v.user.email.required"
>The email is required</span
>
<span class="md-error" v-else-if="!$v.user.email.email"
>Invalid email</span
>
</md-field> </md-field>
<md-field :class="getValidationClass('phonenumber')"> <md-field :class="getValidationClass('phonenumber')">
<label for="phonenumber">Phone Number</label> <label for="phonenumber">Phone Number</label>
<md-input <md-input name="phonenumber" v-model="user.phonenumber" :disabled="sending" />
name="phonenumber" <span class="md-error" v-if="!$v.user.phonenumber.required">The Phone Number is required</span>
v-model="user.phonenumber" <span
:disabled="sending" class="md-error"
/> v-else-if="!$v.user.phonenumber.minlength"
<span class="md-error" v-if="!$v.user.phonenumber.required" >휴대폰 번호는 10자리 이상이어야 합니다.</span>
>The Phone Number is required</span
>
<span class="md-error" v-else-if="!$v.user.phonenumber.minlength"
>휴대폰 번호는 10자리 이상이어야 합니다.</span
>
</md-field> </md-field>
<md-button <md-button class="md-raised md-primary" type="submit" :disabled="sending">Sign Up</md-button>
class="md-raised md-primary" <md-button class="md-primary" v-on:click="active = false">Close</md-button>
type="submit"
:disabled="sending"
>Sign Up</md-button
>
<md-button class="md-primary" v-on:click="active = false"
>Close</md-button
>
</md-content> </md-content>
</form> </form>
</md-dialog> </md-dialog>
...@@ -93,6 +52,9 @@ ...@@ -93,6 +52,9 @@
</template> </template>
<style scoped> <style scoped>
.md-primary {
margin: 0;
}
.select { .select {
margin: 15px; margin: 15px;
display: inline-flex; display: inline-flex;
......
...@@ -7,12 +7,9 @@ ...@@ -7,12 +7,9 @@
<md-list-item <md-list-item
v-for="transaction in transactions" v-for="transaction in transactions"
:key="transaction._id" :key="transaction._id"
v-if="transaction.buyerId == userId" v-if="transaction.buyerId == userId && transaction.buyerId != null"
> >
<md-button <md-button class="md-icon-button md-raised" style="color:#1DDB16;backgroundColor:#1DDB16">
class="md-icon-button md-raised"
style="color:#1DDB16;backgroundColor:#1DDB16"
>
<img src="../../assets/book-open-flat.png" /> <img src="../../assets/book-open-flat.png" />
</md-button> </md-button>
<div class="md-list-item-text"> <div class="md-list-item-text">
...@@ -51,19 +48,10 @@ export default { ...@@ -51,19 +48,10 @@ export default {
transactions: [], transactions: [],
userId: "" userId: ""
}), }),
computed: {
// buyerTransaction() { - v-for에 computed 안쓰면 코드 빨간색됨, 작동은 함
// return this.transactions.filter(tran => {
// if(this.buyerId === this.userId) {
// return mov;
// }
// })
// }
},
methods: { methods: {
cancelTransaction(book_Title) { cancelTransaction(book_Title) {
this.$http this.$http
.post("/api/transaction/success", { .post("/api/transaction/cancel", {
bookTitle: book_Title bookTitle: book_Title
}) })
.then(response => { .then(response => {
...@@ -76,7 +64,7 @@ export default { ...@@ -76,7 +64,7 @@ export default {
}, },
successTransaction(book_Title) { successTransaction(book_Title) {
this.$http this.$http
.post("/api/transaction/success", { .post("/api/transaction/end", {
bookTitle: book_Title bookTitle: book_Title
}) })
.then(response => { .then(response => {
......
...@@ -9,10 +9,7 @@ ...@@ -9,10 +9,7 @@
:key="transaction._id" :key="transaction._id"
v-if="transaction.sellerId == userId" v-if="transaction.sellerId == userId"
> >
<md-button <md-button class="md-icon-button md-raised" style="color:#1DDB16;backgroundColor:#1DDB16">
class="md-icon-button md-raised"
style="color:#1DDB16;backgroundColor:#1DDB16"
>
<img src="../../assets/book-open-flat.png" /> <img src="../../assets/book-open-flat.png" />
</md-button> </md-button>
<div class="md-list-item-text"> <div class="md-list-item-text">
...@@ -54,11 +51,11 @@ export default { ...@@ -54,11 +51,11 @@ export default {
methods: { methods: {
cancelTransaction(book_Title) { cancelTransaction(book_Title) {
this.$http this.$http
.post("/api/transaction/success", { .post("/api/transaction/end", {
bookTitle: book_Title bookTitle: book_Title
}) })
.then(response => { .then(response => {
alert("거래를 취소하였습니다."); alert("판매를 취소하였습니다.");
location.reload(); location.reload();
}) })
.catch(error => { .catch(error => {
...@@ -67,7 +64,7 @@ export default { ...@@ -67,7 +64,7 @@ export default {
}, },
successTransaction(book_Title) { successTransaction(book_Title) {
this.$http this.$http
.post("/api/transaction/success", { .post("/api/transaction/end", {
bookTitle: book_Title bookTitle: book_Title
}) })
.then(response => { .then(response => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment