diff --git a/api/article.js b/api/article.js index 4765465..092bc12 100644 --- a/api/article.js +++ b/api/article.js @@ -93,8 +93,8 @@ export const getNoticeListAPI = (data) => request.get('/Notice/list') export const getNoticeInfoAPI = (data) => request.get('/Notice/info', data) -export const getArea = (data) => request.get('/city/get_area', data, { noAuth: true }) -export const getStreet = (data) => request.get('/city/get_street', data, { noAuth: true }) -export const getVillage = (data) => request.get('/city/get_village', data, { noAuth: true }) -export const getbrigadeAPI = (data) => request.get('/common/get_brigade', data, { noAuth: true }) -export const postBindingAPI = (data) => request.post('/Userinfo/Binding', data, { noAuth: true, noVerify: true }) \ No newline at end of file +export const getArea = (data) => request.get('city/get_area', data, { noAuth: true }) +export const getStreet = (data) => request.get('city/get_street', data, { noAuth: true }) +export const getVillage = (data) => request.get('city/get_village', data, { noAuth: true }) +export const getbrigadeAPI = (data) => request.get('common/get_brigade', data, { noAuth: true }) +export const postBindingAPI = (data) => request.post('Userinfo/Binding', data, { noAuth: true, noVerify: true }) \ No newline at end of file diff --git a/api/order.js b/api/order.js index 364420c..92c0778 100644 --- a/api/order.js +++ b/api/order.js @@ -20,8 +20,8 @@ export function getCartCounts() { * 获取购物车列表 * */ -export function getCartList() { - return request.get("user/cart/lst"); +export function getCartList(data) { + return request.get("user/cart/lst", data); } /** diff --git a/api/store.js b/api/store.js index c155b3a..f85383e 100644 --- a/api/store.js +++ b/api/store.js @@ -1,22 +1,20 @@ -// +---------------------------------------------------------------------- -// | CRMEB [ CRMEB赋能开发者,助力企业发展 ] -// +---------------------------------------------------------------------- -// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved. -// +---------------------------------------------------------------------- -// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 -// +---------------------------------------------------------------------- -// | Author: CRMEB Team -// +---------------------------------------------------------------------- import request from "@/utils/request.js"; +/** + * 添加扫码商品 + * @returns {*} + */ +export function addCartApi(data) { + return request.post('v2/micropay/addCart', data); +} /** * 获取产品详情 * @param int id * */ -export function getProductDetail(id) { - return request.get('store/product/detail/' + id, {}, { - noAuth: true - }); +export function getProductDetail(id, data) { + return request.get('store/product/detail/' + id, data, { + noAuth: true + }); } /** * 获取预览商品详情 @@ -24,16 +22,16 @@ export function getProductDetail(id) { * */ export function getPreviewProDetail(data) { - return request.get('store/product/preview', data, { - noAuth: true - }); + return request.get('store/product/preview', data, { + noAuth: true + }); } /** * 产品分享二维码 推广员 * @param int id */ export function getProductCode(id, data) { - return request.get('store/product/qrcode/' + id, data); + return request.get('store/product/qrcode/' + id, data); } /** * 添加收藏 @@ -41,7 +39,7 @@ export function getProductCode(id, data) { * @param string category product=普通产品,product_seckill=秒杀产品 */ export function collectAdd(data) { - return request.post('user/relation/create', data); + return request.post('user/relation/create', data); } /** * 删除收藏产品 @@ -49,14 +47,14 @@ export function collectAdd(data) { * @param string category product=普通产品,product_seckill=秒杀产品 */ export function collectDel(data) { - return request.post('user/relation/delete', data); + return request.post('user/relation/delete', data); } /** * 购车添加 * */ export function postCartAdd(data) { - return request.post('user/cart/create', data); + return request.post('user/cart/create', data); } /** @@ -64,73 +62,73 @@ export function postCartAdd(data) { * */ export function getCategoryList() { - return request.get('store/product/category/lst', {}, { - noAuth: true - }); + return request.get('store/product/category/lst', {}, { + noAuth: true + }); } /** * 获取产品列表 * @param object data */ export function getProductslist(data) { - if (data.brand_id && Array.isArray(data.brand_id)) { - data = { - ...data - } - data.brand_id = data.brand_id.toString() - } - return request.get('product/spu/lst', data, { - noAuth: true - }); + if (data.brand_id && Array.isArray(data.brand_id)) { + data = { + ...data + } + data.brand_id = data.brand_id.toString() + } + return request.get('product/spu/lst', data, { + noAuth: true + }); } /** * 获取优惠券商品列表 * @param object data */ export function getCouponProductlist(data) { - if (data.brand_id && Array.isArray(data.brand_id)) { - data = { - ...data - } - data.brand_id = data.brand_id.toString() - } - return request.get('product/spu/coupon_product', data, { - noAuth: true - }); + if (data.brand_id && Array.isArray(data.brand_id)) { + data = { + ...data + } + data.brand_id = data.brand_id.toString() + } + return request.get('product/spu/coupon_product', data, { + noAuth: true + }); } /** * 获取品牌列表 * @param object data */ export function getBrandlist(data) { - return request.get('store/product/brand/lst', data, { - noAuth: true - }); + return request.get('store/product/brand/lst', data, { + noAuth: true + }); } /** * 获取推荐产品 * */ export function getProductHot(page, limit) { - return request.get("product/spu/recommend", { - page: page === undefined ? 1 : page, - limit: limit === undefined ? 10 : limit - }, { - noAuth: true - }); + return request.get("product/spu/recommend", { + page: page === undefined ? 1 : page, + limit: limit === undefined ? 10 : limit + }, { + noAuth: true + }); } /** * 获取商户推荐产品 * */ -export function getMerProductHot(id,data) { - return request.get(`product/spu/recommend`, { - page: data.page === undefined ? 1 : data.page, - limit: data.limit === undefined ? 10 : data.limit, - mer_id: id || '' - }, { - noAuth: true - }); +export function getMerProductHot(id, data) { + return request.get(`product/spu/recommend`, { + page: data.page === undefined ? 1 : data.page, + limit: data.limit === undefined ? 10 : data.limit, + mer_id: id || '' + }, { + noAuth: true + }); } /** * 批量收藏 @@ -139,7 +137,7 @@ export function getMerProductHot(id,data) { * @param string category */ export function collectAll(data) { - return request.post('user/relation/batch/create', data); + return request.post('user/relation/batch/create', data); } /** * 首页产品的轮播图和产品信息 @@ -147,23 +145,23 @@ export function collectAll(data) { * */ export function getGroomList(type, data) { - return request.get('product/spu/hot/' + type, data, { - noAuth: true - }); + return request.get('product/spu/hot/' + type, data, { + noAuth: true + }); } /** * 获取商品收藏列表 * @param object data */ export function getCollectUserList(data) { - return request.get('user/relation/product/lst', data) + return request.get('user/relation/product/lst', data) } /** * 获取商品收藏列表 -- 删除 * @param object data */ export function userCollectDel(data) { - return request.post('user/relation/batch/delete', data) + return request.post('user/relation/batch/delete', data) } /** * 获取产品评论 @@ -172,43 +170,43 @@ export function userCollectDel(data) { * */ export function getReplyList(id, data) { - return request.get('store/product/reply/lst/' + id, data, { - noAuth: true - }) + return request.get('store/product/reply/lst/' + id, data, { + noAuth: true + }) } /** * 产品评价数量和好评度 * @param int id */ export function getReplyConfig(id) { - return request.get('reply/config/' + id); + return request.get('reply/config/' + id); } /** * 获取搜索关键字获取 * */ export function getSearchKeyword() { - return request.get('common/hot_keyword', {}, { - noAuth: true - }); + return request.get('common/hot_keyword', {}, { + noAuth: true + }); } /** * 门店列表 * @returns {*} */ export function storeListApi(data) { - return request.get("store_list", data, { - noAuth: true - }); + return request.get("store_list", data, { + noAuth: true + }); } /** * 商户列表 * @returns {*} */ export function storeMerchantList(data) { - return request.get("store/merchant/lst", data, { - noAuth: true - }); + return request.get("store/merchant/lst", data, { + noAuth: true + }); } /** * 获取商铺详情 @@ -216,9 +214,9 @@ export function storeMerchantList(data) { * @param {Object} data 商铺数据 */ export function getStoreDetail(id, data) { - return request.get("store/merchant/detail/" + id, data, { - noAuth: true - }); + return request.get("store/merchant/detail/" + id, data, { + noAuth: true + }); } /** * 获取商铺商品列表 @@ -226,9 +224,9 @@ export function getStoreDetail(id, data) { * @param {Object} data 商铺商品列表数据 */ export function getStoreGoods(id, data) { - return request.get("product/spu/merchant/" + id, data, { - noAuth: true - }); + return request.get("product/spu/merchant/" + id, data, { + noAuth: true + }); } /** * 获取商铺分类列表 @@ -236,77 +234,77 @@ export function getStoreGoods(id, data) { * @param {Object} data */ export function getStoreCategory(id, data) { - return request.get("store/merchant/category/lst/" + id, data, { - noAuth: true - }); + return request.get("store/merchant/category/lst/" + id, data, { + noAuth: true + }); } /** * 关注商铺 * @param {Object} type_id 商铺 id */ export function followStore(type_id) { - return request.post("user/relation/create", { - type: 10, - type_id: type_id - }); + return request.post("user/relation/create", { + type: 10, + type_id: type_id + }); } /** * 取消商铺关注 * @param {Object} type_id 商铺 id */ export function unfollowStore(type_id) { - return request.post("user/relation/delete", { - type: 10, - type_id: type_id - }); + return request.post("user/relation/delete", { + type: 10, + type_id: type_id + }); } /** * 获取商铺优惠券 * @param {Object} id */ export function getStoreCoupon(id) { - return request.get("coupon/store/" + id, { - noAuth: true - }); + return request.get("coupon/store/" + id, { + noAuth: true + }); } /** * 获取商铺优惠券 */ export function getMerchantLst(data) { - return request.get("user/relation/merchant/lst", data, { - noAuth: true - }); + return request.get("user/relation/merchant/lst", data, { + noAuth: true + }); } /** * 物流信息 */ export function express(id) { - return request.post("ordero/express/" + id, { - noAuth: true - }); + return request.post("ordero/express/" + id, { + noAuth: true + }); } /** * 子集分类 * @returns {*} */ export function storeCategory(pid) { - return request.get("store/product/category", pid, { - noAuth: true - }); + return request.get("store/product/category", pid, { + noAuth: true + }); } /** * 分销说明 * @returns {*} */ export function bagExplain() { - return request.get("store/product/bag/explain"); + return request.get("store/product/bag/explain"); } /** * 分销礼包推荐列表 * @returns {*} */ export function bagRecommend() { - return request.get("product/spu/bag/recommend"); + return request.get("product/spu/bag/recommend"); } /** * 分销礼包列表 @@ -314,56 +312,56 @@ export function bagRecommend() { */ export function productBag(data) { - return request.get("product/spu/bag", data, { - noAuth: true - }); + return request.get("product/spu/bag", data, { + noAuth: true + }); } /** * 商铺二维码 * @returns {*} */ export function merchantQrcode(id, data) { - return request.get("store/merchant/qrcode/" + id, data, { - noAuth: true - }); + return request.get("store/merchant/qrcode/" + id, data, { + noAuth: true + }); } /** * 推荐商品 * @returns {*} */ export function merchantProduct(id, data) { - if (data.brand_id && Array.isArray(data.brand_id)) { - data = { - ...data - } - data.brand_id = data.brand_id.toString() - } - return request.get("product/spu/merchant/" + id, data, { - noAuth: true - }); + if (data.brand_id && Array.isArray(data.brand_id)) { + data = { + ...data + } + data.brand_id = data.brand_id.toString() + } + return request.get("product/spu/merchant/" + id, data, { + noAuth: true + }); } /** * 推荐商品banner * @returns {*} */ export function getHotBanner(type) { - return request.get("common/hot_banner/" + type, {}, { - noAuth: true - }); + return request.get("common/hot_banner/" + type, {}, { + noAuth: true + }); } /** * 商户入驻表单 * @returns {*} */ export function create(data) { - return request.post("intention/create", data); + return request.post("intention/create", data); } /** * 商户入驻短信验证码 * @returns {*} */ export function verify(data) { - return request.post("auth/verify", data); + return request.post("auth/verify", data); } /** * 获取秒杀商品详情 @@ -371,36 +369,36 @@ export function verify(data) { * */ export function getSeckillProductDetail(id) { - return request.get('store/product/seckill/detail/' + id, {}, { - noAuth: true - }); + return request.get('store/product/seckill/detail/' + id, {}, { + noAuth: true + }); } /** * 直播推荐列表 * @returns {*} */ export function getLiveList(data) { - return request.get(`broadcast/hot`, data, { - noAuth: true - }); + return request.get(`broadcast/hot`, data, { + noAuth: true + }); } /** * 直播列表 * @returns {*} */ export function getBroadcastListApi(data) { - return request.get("broadcast/lst", data, { - noAuth: true - }); + return request.get("broadcast/lst", data, { + noAuth: true + }); } /** * 商户分类 * @returns {*} */ export function merClassifly() { - return request.get("intention/cate", {}, { - noAuth: true - }); + return request.get("intention/cate", {}, { + noAuth: true + }); } /** * 获取预售商品详情 @@ -408,9 +406,9 @@ export function merClassifly() { * */ export function getPresellProductDetail(id) { - return request.get('store/product/presell/detail/' + id, {}, { - noAuth: true - }); + return request.get('store/product/presell/detail/' + id, {}, { + noAuth: true + }); } /** * 获取商户申请记录 @@ -418,7 +416,7 @@ export function getPresellProductDetail(id) { * */ export function getApplicationRecordList(data) { - return request.get('intention/lst', data); + return request.get('intention/lst', data); } /** * 获取商户申请详情 @@ -426,7 +424,7 @@ export function getApplicationRecordList(data) { * */ export function getGoodsDetails(id) { - return request.get('intention/detail/' + id, {}); + return request.get('intention/detail/' + id, {}); } /** @@ -435,7 +433,7 @@ export function getGoodsDetails(id) { * */ export function updateGoodsRecord(id, data) { - return request.post('intention/update/' + id, data); + return request.post('intention/update/' + id, data); } /** * 获取定位详细地址 @@ -443,9 +441,9 @@ export function updateGoodsRecord(id, data) { * */ export function getGeocoder(data) { - return request.get(`lbs/geocoder?location=${data.lat},${data.long}`, {}, { - noAuth: true - }); + return request.get(`lbs/geocoder?location=${data.lat},${data.long}`, {}, { + noAuth: true + }); } /** * 获取店铺类型 @@ -453,80 +451,80 @@ export function getGeocoder(data) { * */ export function getStoreTypeApi() { - return request.get('intention/type', {}, { - noAuth: true - }); + return request.get('intention/type', {}, { + noAuth: true + }); } /** * 到货通知 * */ export function arrivalNoticeApi(data) { - return request.post('store/product/increase_take',data); + return request.post('store/product/increase_take', data); } /* 获取图片验证码 -*/ +*/ export function getCaptcha() { - return request.get('captcha'); + return request.get('captcha'); } /* 获取店铺资质 */ export function storeCertificate(data) { - return request.post(`store/certificate/${data.merId}`, data) + return request.post(`store/certificate/${data.merId}`, data) } /** * 本地服务列表 * @returns {*} */ export function storeServiceList(id, data) { - return request.get(`product/spu/local/${id}`, data, { - noAuth: true - }); + return request.get(`product/spu/local/${id}`, data, { + noAuth: true + }); } /** * 复制口令 * @returns {*} */ export function copyPasswordApi(data) { - return request.get(`product/spu/copy`, data, { - noAuth: true - }); + return request.get(`product/spu/copy`, data, { + noAuth: true + }); } /** * 口令搜索 * @returns {*} */ export function copyPasswordSearch(data) { - return request.get(`command/copy`, data, { - noAuth: true - }); + return request.get(`command/copy`, data, { + noAuth: true + }); } /** * 套餐列表 * @returns {*} */ export function getDiscountsLst(data) { - return request.get(`discounts/lst`, data, { - noAuth: true - }); + return request.get(`discounts/lst`, data, { + noAuth: true + }); } /** * 套餐--立即购买 * @returns {*} */ export function discountsCartAdd(data) { - return request.post('user/cart/batchCreate', data); + return request.post('user/cart/batchCreate', data); } /** * 商品--价格说明 * @returns {*} */ export function priceRuleApi(id) { - return request.get(`store/product/price_rule/${id}`, {}, { - noAuth: true - }); + return request.get(`store/product/price_rule/${id}`, {}, { + noAuth: true + }); } \ No newline at end of file diff --git a/components/Authorize.vue b/components/Authorize.vue index 04445d6..ea63b54 100644 --- a/components/Authorize.vue +++ b/components/Authorize.vue @@ -49,15 +49,6 @@ - + \ No newline at end of file diff --git a/pages/users/login/login_copy.vue b/pages/users/login/login_copy.vue new file mode 100644 index 0000000..ce28e1a --- /dev/null +++ b/pages/users/login/login_copy.vue @@ -0,0 +1,1214 @@ + + + diff --git a/pages/users/user_info/index.vue b/pages/users/user_info/index.vue index 64e0d11..c391ab3 100644 --- a/pages/users/user_info/index.vue +++ b/pages/users/user_info/index.vue @@ -1,562 +1,599 @@ + html { + -webkit-text-size-adjust: none; + } + + .radius { + background-color: white; + width: 35rpx; + height: 35rpx; + border-radius: 50%; + border: 1px solid rgb(187, 43, 5); + line-height: 25rpx; + text-align: center; + position: absolute; + right: 0; + bottom: 0; + } + + .iconfonta { + border-radius: 50%; + font-size: 20rpx; + color: red; + } + + .avatar { + width: 120rpx; + height: 120rpx; + border-radius: 50%; + } + + .btnb { + border-radius: 0; + height: 100rpx; + line-height: 100rpx; + } + + .btna { + height: 100rpx; + line-height: 100rpx; + border-radius: 10rpx 10rpx 0 0; + } + + .btnc { + height: 130rpx; + line-height: 130rpx; + border-radius: 0; + } + + .personal-data { + padding-bottom: calc(0rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/ + padding-bottom: calc(0rpx + env(safe-area-inset-bottom)); ///兼容 IOS<11.2/ + } + + .personal-data .wrapper { + margin: 10rpx 0; + background-color: #fff; + padding: 36rpx 30rpx 13rpx 30rpx; + } + + .personal-data .wrapper .title { + margin-bottom: 30rpx; + font-size: 32rpx; + color: #282828; + } + + .personal-data .wrapper .wrapList .item { + width: 690rpx; + height: 160rpx; + background-color: #f8f8f8; + border-radius: 20rpx; + margin-bottom: 22rpx; + padding: 0 30rpx; + position: relative; + border: 2rpx solid #f8f8f8; + box-sizing: border-box; + } + + .t-color { + color: var(--view-theme); + } + + .personal-data .wrapper .wrapList .item.on { + border-color: var(--view-theme); + border-radius: 20rpx; + //background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAArIAAACgCAYAAADw+I85AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6M0QzNkY3NzlCNzJCMTFFOTgyNEU4QzhGQTRFRUY2REQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6M0QzNkY3N0FCNzJCMTFFOTgyNEU4QzhGQTRFRUY2REQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDozRDM2Rjc3N0I3MkIxMUU5ODI0RThDOEZBNEVFRjZERCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDozRDM2Rjc3OEI3MkIxMUU5ODI0RThDOEZBNEVFRjZERCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pn3rJMAAAArUSURBVHja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"); + background-size: 100% 100%; + background-color: var(--view-minorColor); + background-repeat: no-repeat; + } + + .personal-data .wrapper .wrapList .item .picTxt { + width: 445rpx; + } + + .personal-data .wrapper .wrapList .item .picTxt .pictrue { + width: 96rpx; + height: 96rpx; + position: relative; + } + + .personal-data .wrapper .wrapList .item .picTxt .pictrue image { + width: 100%; + height: 100%; + border-radius: 50%; + } + + .personal-data .wrapper .wrapList .item .picTxt .text { + width: 325rpx; + } + + .personal-data .wrapper .wrapList .item .picTxt .text .name { + width: 100%; + font-size: 30rpx; + color: #282828; + } + + .personal-data .wrapper .wrapList .item .picTxt .text .phone { + font-size: 24rpx; + color: #999; + margin-top: 10rpx; + } + + .personal-data .wrapper .wrapList .item .bnt { + font-size: 24rpx; + background-color: #fff; + border-radius: 27rpx; + width: 140rpx; + height: 54rpx; + border: 2rpx solid var(--view-theme); + } + + .personal-data .wrapper .wrapList .item .currentBnt { + position: absolute; + right: 0; + top: 0; + font-size: 26rpx; + background-color: var(--view-minorColor); + width: 140rpx; + height: 48rpx; + border-radius: 0 20rpx 0 20rpx; + } + + .personal-data .list { + margin-top: 15rpx; + background-color: #fff; + } + + .personal-data .list .item { + padding: 30rpx 30rpx 30rpx 0; + border-bottom: 1px solid #f2f2f2; + margin-left: 30rpx; + font-size: 32rpx; + color: #282828; + } + + .personal-data .list .item .phone { + width: 160rpx; + height: 56rpx; + font-size: 24rpx; + color: #fff; + line-height: 56rpx; + border-radius: 32rpx + } + + .personal-data .list .item .pictrue { + width: 88rpx; + height: 88rpx; + } + + .personal-data .list .item .pictrue image { + width: 100%; + height: 100%; + border-radius: 50%; + } + + .personal-data .list .item .input { + min-width: 415rpx; + text-align: right; + color: #868686; + } + + .personal-data .list .item .input .id { + width: 365rpx; + } + + .personal-data .list .item .input .iconfont { + font-size: 35rpx; + } + + .personal-data .modifyBnt { + font-size: 32rpx; + color: #fff; + width: 690rpx; + height: 90rpx; + border-radius: 50rpx; + text-align: center; + line-height: 90rpx; + margin: 76rpx auto 0 auto; + background: var(--view-theme); + } + + .personal-data .logOut { + font-size: 32rpx; + text-align: center; + width: 690rpx; + height: 90rpx; + border-radius: 45rpx; + margin: 30rpx auto 0 auto; + color: var(--view-theme); + border: 1px solid var(--view-theme); + } + + .avatar-box { + width: 96rpx; + height: 96rpx; + background: transparent; + + image { + width: 100%; + height: 100%; + border-radius: 50%; + } + } + \ No newline at end of file diff --git a/store/modules/app.js b/store/modules/app.js index a55c6ea..790547e 100644 --- a/store/modules/app.js +++ b/store/modules/app.js @@ -61,7 +61,7 @@ const mutations = { state.color = color; document.body.style.backgroundColor = color; }, - UPDATE_USERINFO(state, userInfo) { + UPDATE_USERINFO(state, userInfo, time) { userInfo.isNew && Cache.set('is_new_user', '1') state.userInfo = userInfo; }, diff --git a/uni.scss b/uni.scss index 098ffc8..6e4faf9 100644 --- a/uni.scss +++ b/uni.scss @@ -13,6 +13,8 @@ */ @import '@/uni_modules/uview-ui/theme.scss'; /* 颜色变量 */ +$uni-theme-color: #F45846; +$uni-theme-bg-color: linear-gradient(180deg, #F98649 0%, #F34E45 100%); /* 行为相关颜色 */ $uni-color-primary: #007aff; diff --git a/uni_modules/bt-cropper/components/bt-cropper/bt-cropper.vue b/uni_modules/bt-cropper/components/bt-cropper/bt-cropper.vue index 06a2214..6a86366 100644 --- a/uni_modules/bt-cropper/components/bt-cropper/bt-cropper.vue +++ b/uni_modules/bt-cropper/components/bt-cropper/bt-cropper.vue @@ -1,881 +1,902 @@ + + + + + + - - - - - + + + @import "./iconfont.css"; + + .bt-container { + display: flex; + flex-direction: column; + justify-content: space-between; + height: 100%; + box-sizing: border-box; + background-color: #0e1319; + padding-top: 30rpx; + position: relative; + overflow: hidden; + + .iconfont { + position: absolute; + z-index: 999; + top: 40rpx; + font-size: 30rpx; + padding: 10rpx; + background-color: rgba(255, 255, 255, 0.2); + border-radius: 50%; + color: #FFFFFF; + + &.active { + color: #007AFF; + } + } + + .icon-move { + right: 100rpx; + } + + .icon-reset { + right: 40rpx; + } + + .bt-canvas { + position: absolute; + left: 100%; + top: 0; + width: 300px; + height: 300px; + } + + .mainContent { + flex: 1; + margin: 60rpx 60rpx 150rpx; + position: relative; + + .image { + position: absolute; + will-change: transform; + transform-origin: center center; + } + + .controller { + position: absolute; + z-index: 99; + padding: 20rpx; + + &::after { + display: block; + content: ''; + box-shadow: 0 0 10rpx #333; + background-color: #E4E7ED; + } + + &.controller_dot { + &::after { + width: 40rpx; + height: 40rpx; + border-radius: 99px; + } + } + + &.vertical { + &::after { + width: 10rpx; + height: 40rpx; + } + } + + &.horizon { + &::after { + width: 40rpx; + height: 10rpx; + } + } + } + + .cropper { + position: absolute; + border: 1px solid #eee; + box-sizing: content-box; + transform-origin: center center; + outline: 999px solid rgba(0, 0, 0, 0.5); + will-change: transform; + display: contain; + pointer-events: none; + + .line { + position: absolute; + // background-color: #eee; + } + + .row { + width: 100%; + height: 0px; + left: 0; + border-top: 1px dashed #007AFF; + } + + .col { + height: 100%; + width: 0px; + border-left: 1px dashed #007AFF; + } + + .row1 { + top: 33%; + } + + .row2 { + top: 66%; + } + + .col1 { + left: 33%; + } + + .col2 { + left: 66%; + } + } + } + + .slot { + position: fixed; + width: 100%; + left: 0; + bottom: 131.58rpx; + height: 90rpx; + height: calc(90rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/ + height: calc(90rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/ + } + } + \ No newline at end of file