123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <view class="content">
- <view class="box">
- <view class="item top">
- <text>真实姓名</text>
- <input type="text" v-model="name" value="" placeholder="请输入真实姓名" />
- </view>
- <view class="item">
- <text>支付宝账号</text>
- <input type="text" v-model="id" value="" placeholder="请输入支付宝账号" />
- </view>
- </view>
- <view class="button" @click="confirm()">确认</view>
- </view>
- </template>
- <script>
- import { orderData, getUserInfo } from '@/api/user.js';
- import { mapState, mapMutations } from 'vuex';
- import { userEdit } from '@/api/set.js';
- export default {
- computed: {
- ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin'])
- },
- data() {
- return {
- name: '',
- id: ''
- };
- },
- onLoad() {
- if (this.userInfo.alipay_code != null) {
- this.id = this.userInfo.alipay_code;
- }
- if (this.userInfo.alipay_name != null) {
- this.name = this.userInfo.alipay_name;
- }
- },
- methods: {
- ...mapMutations('user', ['setUserInfo', 'setOrderInfo']),
- confirm() {
- let obj = this;
- if (!obj.name) {
- return this.$api.msg('请输入提款人姓名');
- }
- if (!obj.id) {
- return this.$api.msg('请输入支付宝账号');
- }
- userEdit({
- alipay_name: obj.name,
- alipay_code: obj.id
- })
- .then(e => {
- obj.$api.msg('修改成功');
- obj.getUserInfo();
- })
- .catch(e => {
- console.log(e);
- });
- },
- // 更新用户信息
- getUserInfo() {
- getUserInfo({})
- .then(({ data }) => {
- console.log(data)
- this.setUserInfo(data);
- // 获取用户数据完毕后在获取订单数据防止多次跳转到登录页
- orderData({})
- .then(({ data }) => {
- this.setOrderInfo(data);
- uni.navigateBack({
- delta: 1
- });
- })
- .catch(e => {
- this.setOrderInfo({
- complete_count: 0, //完成
- received_count: 0, //待收货
- unshipped_count: 0, //待发货
- order_count: 0, //订单总数
- unpaid_count: 0 //待付款
- });
- });
- })
- .catch(e => {
- console.log(e);
- });
- },
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- height: 100%;
- padding: 0;
- margin: 0;
- }
- .top {
- border-bottom: 1rpx solid #f3f3f3;
- }
- .box {
- background: #ffffff;
- margin: 20rpx 0 70rpx 0;
- .item {
- display: flex;
- align-items: center;
- text {
- margin: 0 40rpx 0 25rpx;
- width: 150rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 100rpx;
- }
- input {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 100rpx;
- }
- }
- }
- .button {
- text-align: center;
- width: 560rpx;
- height: 80rpx;
- background: #5dbc7c;
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #ffffff;
- line-height: 80rpx;
- margin: 0 auto;
- }
- </style>
|