上一页 1 2 3 4 5 6 7 ··· 24 下一页
摘要: 1.在后端NewCenter 1.apps/user_operations/views.py中新建增删查:楼、单元、住户、用户的类: from django.shortcuts import render,HttpResponse from rest_framework.views import A 阅读全文
posted @ 2020-07-03 02:47 雪落忆海 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1.在NewCenter项目apps/user_operations/models.py中增加OnOrOff class OnOrOff(models.Model): """数据操作开关""" wgz=models.BooleanField(default=False,verbose_name='是 阅读全文
posted @ 2020-07-03 02:38 雪落忆海 阅读(224) 评论(0) 推荐(0) 编辑
摘要: 1.修改Bug1:用户信息应该实时更新 1.修改潜在bug,因为后端可能要涉及到用户身份权限的修改,所以每一次打开个人中心和操作中心,都应该更新一遍用户的个人信息 1.在后端项目user_operations/views.py中: class UpUserInfoView(APIView): """ 阅读全文
posted @ 2020-06-25 19:17 雪落忆海 阅读(270) 评论(0) 推荐(0) 编辑
摘要: res.goods_desc=res.goods_desc.replace(/\/media/g,host+"/media") this.about_data=res 阅读全文
posted @ 2020-06-23 04:07 雪落忆海 阅读(882) 评论(0) 推荐(0) 编辑
摘要: 1.在小程序端newapp开发个人中心页面: 1.备用 1.新建修改密码页面uppwd 2.开发pages/me/me.vue: <template> <view class="content"> <view class="padding-xl radius shadow-warp bg-cyan" 阅读全文
posted @ 2020-06-21 10:17 雪落忆海 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 1.设置是否已经登录的验证 1.在newapp/pages/center/center.vue中: <template> <view class="content"> </view> </template> <script> export default { data() { return { } 阅读全文
posted @ 2020-06-21 04:40 雪落忆海 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 1.轮播图效果 1.在后端开发获取banner的api: 1.在后端项目NewCenter/apps/user_operations/views.py中开发获取片区banner图的视图: from django.shortcuts import render,HttpResponse from re 阅读全文
posted @ 2020-06-21 02:39 雪落忆海 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1.打开Hbuilder-x,【文件】→【新建】→【项目】 2.创建项目newapp 3.【工具】→【设置】→【运行配置】,在将微信开发者工具的安装目录填入 4. 在项目newapp下的manifest.json下的【基础配置】中: 获取AppID 5.点击运行,在微信开发者工具中运行: 6.在微信 阅读全文
posted @ 2020-06-20 12:20 雪落忆海 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 获取楼列表 1.后端NewCenter部分: 1.在apps/users/views.py: from django.shortcuts import render,HttpResponse from rest_framework.views import APIView,Response from 阅读全文
posted @ 2020-06-12 00:17 雪落忆海 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 获取片区轮播图 1.在后端NewCenter部分: 1.在apps/users/views.py中: from django.shortcuts import render,HttpResponse from rest_framework.views import APIView,Response 阅读全文
posted @ 2020-06-11 16:11 雪落忆海 阅读(188) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 24 下一页