Liuyi
2024-12-20 d470e67ac1997882502b75cbfdaf359626cfaaa8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<script setup>
import { onMounted,ref} from 'vue';
import{ creatUserArchive } from '../../api/index.js'
 
const form = ref({
    id:JSON.parse(uni.getStorageSync('userInfo')).id,
    waterCardNumber:'',
    userName:'',
    userPhone:'',
    remark:'',
})
function toScan(){
    // 调用二维码扫描接口
    uni.scanCode({
        scanType: ['qrCode'],
        success: function (res) {
            console.log('条码内容:' + res.result);
            let data = res.result.split('&id=')
            form.value.waterCardNumber = data[1]
            console.log('form.value.waterCardNumber',form.value.waterCardNumber)
        }
    });
}
//校验
const formRef = ref()
const rules = ref({
    waterCardNumber: {
        rules:[
            {required: true,errorMessage: '请输入卡号'}]
    },
    userName: {
        rules:[
            {required: true,errorMessage: '请输入姓名'},
            {pattern:/^[\u4e00-\u9fa5\\.]+$/, errorMessage: '请输入中文或" . "符号'}
            ]
    },
    userPhone: {
        rules:[
            {required: true,errorMessage: '请输入您的手机号'},
            {pattern: /^1[3-9]\d{9}$/, errorMessage: '手机号格式不正确'}
            ]
    },
})
async function submit(){
    formRef.value.validate().then(async() =>{
        await creatUserArchive(form.value).then((res) =>{
            if(res.code == 200){
                uni.showToast({
                    title: '添加成功!',
                    image: '../../static/images/other/success.svg',
                    duration:2000     
                }).then(() =>{
                    uni.navigateBack()
                })
            }else if(res.code == 300){
                uni.showToast({
                    title: res.msg,
                    duration:2000,
                    icon:'none'
                })
            }else{
                uni.showToast({
                    title:'绑卡失败',
                    duration:2000,
                    icon:'none'
                })
            }
        })
    })
}
onMounted(() =>{
})
</script>
<template>
    <view class="container">
        <view class="content">
            <navbar title="绑定会员卡"></navbar>
            <view class="main">
                <view class="title">请填写卡及个人信息</view>
                <view class="form">
                    <uni-forms ref="formRef" :model="form" :rules="rules" label-width = 100>
                        <uni-forms-item class="form-item" label="卡号:" name="waterCardNumber">
                            <view class="card-item">
                                <input class="scan-input" v-model="form.waterCardNumber" placeholder="请输入卡号或扫描二维码" />
                                <image class="scan-img" @click="toScan()" src="../../static/images/addCard/code.svg" alt=""></image>
                            </view>
                        </uni-forms-item>
                        <uni-forms-item label="姓名:" name="userName">
                            <input class="input-item" v-model="form.userName" placeholder="请输入姓名" />
                        </uni-forms-item>
                        <uni-forms-item label="联系方式:" name="userPhone">
                            <input class="input-item" type="textarea" v-model="form.userPhone" placeholder="请输入手机号" />
                        </uni-forms-item>
                        <uni-forms-item label="备注:" name="remark">
                            <input class="input-item" type="textarea" v-model="form.remark" placeholder="请输入内容" />
                        </uni-forms-item>
                    </uni-forms>
                </view>
                <view class="tips">
                    <text class="tips-text">1、完成实名认证,方便遗失挂失及补卡等。</text>
                    <text>2、绑卡后,运营商可以看到您实名时填写的姓名和电话。</text>
                </view>
                <view class="subBtn" @click="submit()">提交信息</view>
            </view>
        </view>
    </view>
</template>
 
<style lang="scss" scoped>
       .container{
           width:100%;
           height:100vh;
           .content{
               width:100%;
               height:100vh;
           .main{
               width:100%;
               height: calc(100vh - 176rpx);
               background:linear-gradient(to top,#FFFFFF,#E8EFFF);
               padding:0 50rpx 38rpx;
               box-sizing:border-box;
               .title{
                   width:100%;
                   height:130rpx;
                   text-align:left;
                   line-height:130rpx;
                   // background: #e6e6e6; 
               }
               .form{
                   height: 600rpx;
                   width:100%;
                   background: #FFFFFF;
                   border-radius: 24rpx;
                   padding:30rpx 50rpx 0;
                   box-sizing: border-box;
                   .input-item{
                       line-height:100%;
                       height:100%;
                   }
                   .card-item{
                       display: flex;
                       justify-content: space-around;
                       height:100%;
                       align-items: center;
                       .scan-input{
                         width:375rpx;
                         margin-right:20rpx;
                         line-height:100%;
                         height:100%;
                         }
                         .scan-img{
                             width:56rpx;
                             height:56rpx;
                         }
                   }
               }
               .tips{
                   width: 100%;
                   padding:0 20rpx;
                   box-sizing: border-box;
                   display: flex;
                   justify-content: space-between;
                   align-items: flex-start;
                   flex-direction: column;
                   margin-top:56rpx;
                   font-weight: 300;
                   font-size:28rpx;
                   color: #484848;
                   .tips-text{
                       margin-bottom:28rpx;
                   }
               }
               .subBtn{
                   width: 100%;
                   height: 98rpx;
                   background-color:#5EA1FA;
                   border-radius: 50rpx;
                   font-weight: 300;
                   font-size: 36rpx;
                   color: #FFFFFF;
                   text-align: center;
                   line-height:98rpx;
                   margin-top: 236rpx;
                   letter-spacing:2px;
               }
           }
       }
   }
</style>