123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442 |
- <template>
- <view>
- <u-navbar title="添加子女信息" >
- </u-navbar>
- <view class="photo" @click="uploadPhoto">
- <u-avatar class="avatar"
- :src="form.headPhoto != null ? form.headPhoto : '../../assets/img/head.png'" size="160">
- </u-avatar>
- <view class="edit-photo">
- <img src="../../../assets/img/md-camera_alt@1x(1).png" alt="">
- </view>
- </view>
- <view class="change">
- 点击更换头像
- </view>
-
- <view class="gender">
- <view class="man" :class="activeClass ? 'checked' : ''" @click="genderClick">
- 男
- </view>
- <view class="woman" :class="!activeClass ? 'checked' : ''" @click="genderClick">
- 女
- </view>
-
- </view>
-
- <view class="infos">
- <view class="name">
- <input type="text" v-model="form.studentName" placeholder="请填写子女姓名">
- <view class="icon">
- <img src="../../../assets/img/riLine-user-5-line@1x.png" alt="">
- </view>
- </view>
-
- <view class="birthday" @click="show=true">
- <input type="text" v-model="form.birthday" placeholder="请选择子女生日" readonly="readonly" />
- <view class="icon">
- <img src="../../../assets/img/riLine-calendar-line@1x.png" alt="">
- </view>
- <view class="icon-right">
- <u-icon name="arrow-down" color="#0DBAC7" size="36"></u-icon>
- </view>
- </view>
- <u-picker mode="time" v-model="show" :params="params"
- @confirm="confirmTime" @cancel="cancelTime"></u-picker>
-
- </view>
-
- <u-alert-tips :show-icon="true" type="warning" :title="title" :description="description"
- :show="alertShow"></u-alert-tips>
-
- <button class="submit" @click="submit"> 提交</button>
- <button class="delete" v-if="form.studentId" @click="deleteStudent"> 删除</button>
- </view>
- </template>
- <script>
- import * as mineApi from '@/apis/youth/mine.js'
- import * as loginApi from '@/apis/login.js'
-
- export default {
- data() {
- return {
- alertShow: false,
- title: '',
- description: '',
- form: {
- studentId: '',
- studentName: '',
- gender: 1,
- birthday: '',
- headPhoto: ''
- },
- activeClass: true,
- show: false,
- params: {
- year: true,
- month: true,
- day: true,
- hour: false,
- minute: false,
- second: false,
- timestamp: true,
- },
- parentsInfo: {}
- }
- },
- onLoad(op) {
- if(op) {
- this.form.studentId = op.id;
- this.getStudentDetail();
- this.getParentsInfo();
- }
- },
- methods: {
- getParentsInfo() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- loginApi.findByOpenId({
- openId: this.carhelp.getOpenId()
- }).then((response) => {
- uni.hideLoading();
- this.parentsInfo = response.data.regUser;
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- getStudentDetail() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- mineApi.getStudentDtl({
- studentId: this.form.studentId
- }).then((response) => {
- uni.hideLoading();
- this.form.studentName = response.data.studentName;
- this.form.gender = response.data.gender;
- this.form.birthday = response.data.birthday;
- this.form.headPhoto = response.data.headPhoto;
-
- if(this.form.gender == '1') {
- this.activeClass = true;
- }else {
- this.activeClass = false;
- }
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- confirmTime(params) {
- this.form.birthday = params.year + '-' + params.month + '-' + params.day;
- this.show = false;
- },
- cancelTime() {
- this.show = false;
- },
- submit() {
- if(this.form.studentId) {
- this.getUpdateStudent();
- }else {
- this.getAddStudent();
- }
- },
- deleteStudent() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- mineApi.deleteStudent({
- studentId: this.form.studentId
- }).then((response) => {
- uni.hideLoading();
- uni.navigateBack({
-
- })
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- genderClick() {
- this.activeClass = !this.activeClass;
- if(this.activeClass) {
- this.form.gender = 1;
- }else {
- this.form.gender = 0;
- }
- },
- getAddStudent() {
- if(!this.form.studentName) {
- uni.showToast({
- title: "请填写子女姓名",
- icon: "none"
- })
- return
- }
- if(!this.form.birthday) {
- uni.showToast({
- title: "请选择子女生日",
- icon: "none"
- })
- return
- }
-
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- mineApi.addStudent({
- studentName: this.form.studentName,
- gender: this.form.gender,
- birthday: this.form.birthday,
- headPhoto: this.form.headPhoto
- }).then((response) => {
- uni.hideLoading();
- this.alertShow = false;
- uni.navigateBack({
-
- })
- }).catch(error => {
- uni.hideLoading();
- this.alertShow = true;
- this.description = error+','+'例如:填写姓名时可用‘姓名+您的电话’的形式';
- // uni.showToast({
- // title: error,
- // icon: "none"
- // })
- })
- },
- getUpdateStudent() {
- uni.showLoading({
- title: "加载中",
- mask: true,
- })
- mineApi.updateStudent({
- studentId: this.form.studentId,
- studentName: this.form.studentName,
- gender: this.form.gender,
- birthday: this.form.birthday,
- headPhoto: this.form.headPhoto,
- firstContactName: this.parentsInfo.nickName,
- firstContactPhone: this.parentsInfo.phone
- }).then((response) => {
- uni.hideLoading();
- uni.navigateBack({
-
- })
- }).catch(error => {
- uni.showToast({
- title: error,
- icon: "none"
- })
- })
- },
- uploadPhoto() {
- let _self = this;
- var token = _self.carhelp.getToken()
-
- const crop = {
- quality: 100,
- width: 600,
- height: 600,
- resize: true
- };
-
- // 上传图片
- uni.chooseImage({
- count: 1,
- crop,
- success: async (res) => {
- //(res);
- let tempFile = res.tempFiles[0],
- avatar_file = {
- // #ifdef H5
- extname: tempFile.name.split('.')[tempFile.name.split('.').length - 1],
- // #endif
- // #ifndef H5
- extname: tempFile.path.split('.')[tempFile.path.split('.').length - 1]
- // #endif
- },
- filePath = res.tempFilePaths[0]
-
- // #ifndef APP-PLUS
- //(`filePath=${filePath}`)
-
- //非app端用前端组件剪裁头像,app端用内置的原生裁剪
- let fileData = await new Promise((callback) => {
- uni.navigateTo({
- url: '/pages/components/cropImage?path=' + filePath +
- `&options=${JSON.stringify(crop)}`,
- animationType: "fade-in",
- events: {
- success: url => {
- callback(url)
- }
- }
- });
- })
- // #endif
-
- //返回 base64 图片
- //(fileData);
-
- // var token = _self.carhelp.getToken()
-
- uni.showLoading({
- title: '上传中'
- });
-
- uni.request({
- url: process.car.BASE_URL + "/mobile/student/uploadBase64",
- method: 'POST',
- data: {
- photoBase64Data: fileData
- },
- header: {
- 'Authorization': token,
- 'content-type': 'application/x-www-form-urlencoded'
- },
- success: (res) => {
- let jsonData = res.data;
- _self.form.headPhoto = jsonData.data;
- // _self.save();
- uni.hideLoading();
- }
- });
- }
- });
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- background-color: #fff;
- }
-
- .photo{
- margin: 20px auto 8px;
- width: 160rpx;
- height: 160rpx;
- position: relative;
-
- img{
- width: 100%;
- height: 100%;
- border-radius: 999px;
- }
-
- }
- .edit-photo{
- width: 56rpx;
- height: 56rpx;
- background-color: rgba(78, 141, 246, 1);
- border: 4rpx solid rgba(255, 255, 255, 1);
- text-align: center;
- border-radius: 999px;
- z-index: 999;
- position: absolute;
- right: 0;
- bottom: 0;
-
- img{
-
- width: 32rpx;
- height: 32rpx;
- margin-top: 8rpx;
- }
- }
- .change{
- color: rgba(13, 186, 199, 1);
- text-align: center;
- }
- .gender{
- width: 50%;
- margin: 20px auto 40px;
- display: flex;
- justify-content: space-between;
- .man,.woman{
- width: 160rpx;
- line-height: 64rpx;
- border-radius: 100rpx;
- background-color: rgba(242, 242, 242, 1);
- color: rgba(16, 16, 16, 1);
- font-size: 28rpx;
- text-align: center;
- }
- .checked{
- background-color: #fff;
- color: #43C9D3;
- border: 1px solid #43C9D3;
- }
- }
- uni-input{
-
- width: 74.4%;
- margin: 0 auto;
- border: 1px solid rgba(13, 186, 199, 1);
- border-radius: 50px;
- height: 88rpx;
- line-height: 88rpx;
-
- }
- .name,.birthday{
- position: relative;
- margin-bottom: 20px;
- }
- ::v-deep.uni-input-placeholder{
- text-indent: 72rpx;
- color: rgba(204, 204, 204, 1);
- font-size:32rpx;
- }
- ::v-deep.uni-input-input{
- text-indent: 72rpx;
- }
- .icon{
- position: absolute;
- top: 26rpx;
- left: 120rpx;
- img{
- width: 40rpx;
- height: 40rpx;
- }
- }
- .icon-right{
- position: absolute;
- top: 26rpx;
- right: 120rpx;
- }
- .submit{
- margin: 64px 48px 16px 48px;
- background-color: rgba(13, 186, 199, 1);
- color: rgba(255, 255, 255, 1);
- font-size: 16px;
- line-height: 44px;
- border-radius: 50px;
- }
- .delete{
- margin: 0 48px;
- font-size: 16px;
- line-height: 44px;
- border-radius: 50px;
- background-color: rgba(220, 223, 224, 1);
- color: rgba(51, 51, 51, 1);
- }
- </style>
|