Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrytang67 committed Feb 23, 2020
1 parent 526af0a commit b65e731
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 6 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,16 @@ RabbitMQ (Event Bus)
Ocelot (Api Gate)
Consul (Service Discovery)
Quartz (background Job Schedule)


## 生鲜电商版小程序截图

![image](_temp/fresh/1.png)

![image](_temp/fresh/2.png)

![image](_temp/fresh/3.png)

![image](_temp/fresh/4.png)

![image](_temp/fresh/5.png)
Binary file added _temp/fresh/1.png
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 _temp/fresh/2.png
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 _temp/fresh/3.png
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 _temp/fresh/4.png
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 _temp/fresh/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 1 addition & 6 deletions uni-fresh/src/pages/user/user.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<div class="nickname" v-else @click="login">{{userInfo.nickName}}</div>
<div class="info flex-r-ac" v-if="openid">
<div class="jf">余额: {{shopMember.Balance | currency}}</div>
<img class="icon" src="/static/icon_scan.png " @click="scan" />
</div>
</div>
</div>
Expand All @@ -25,7 +24,7 @@
</view>
<view class="action">
<text class="text-grey text-sm">
{{phone}}
{{shopMember.Telphone}}
</text>
</view>
</view>
Expand Down Expand Up @@ -64,8 +63,6 @@ import { UserModule } from "@/store/modules/user";
@Component
export default class User extends BaseView {
qrShow = false;
myQr = "";
created() {}
scan() {
Expand All @@ -89,8 +86,6 @@ export default class User extends BaseView {
this.qrShow = false;
}
getPhoneNumber() {}
logout() {
UserModule.Logout();
this.toHome();
Expand Down
6 changes: 6 additions & 0 deletions uni-fresh/src/store/modules/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ class User extends VuexModule {
return this.userInfo;
}

getPhone(){
console.log(this.shopMember);

return this.shopMember.Telphone;
}

get getToken() {
return this.token;
}
Expand Down

0 comments on commit b65e731

Please sign in to comment.