调整自定义插件、代码风格化

This commit is contained in:
sfmind 2022-04-16 22:04:02 +08:00
parent cfcc0aa6dd
commit 9e69f6e6c2
12 changed files with 528 additions and 563 deletions

View File

@ -0,0 +1,22 @@
# 告诉EditorConfig插件这是根文件不用继续往上查找
root = true
# 匹配全部文件
[*]
# 设置字符集
charset = utf-8
# 缩进风格可选space、tab
indent_style = space
# 缩进的空格数
indent_size = 2
# 结尾换行符可选lf、cr、crlf
end_of_line = lf
# 在文件结尾插入新行
insert_final_newline = true
# 删除一行中的前后空格
trim_trailing_whitespace = true
# 匹配md结尾的文件
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

View File

@ -0,0 +1,54 @@
<template>
<view class="u-text-price-wrap">
<text v-for="(item, index) in textArray" :key="index" :style="{ 'font-size': (index === 1 ? integerSize : size) + 'px', 'color': color }">
{{ item }}
</text>
</view>
</template>
<script>
/**
* 此组件存在只为简单的显示特定样式的(人名币)价格数字
*/
export default {
name: 'custom-text-price',
components: {},
props: {
price: {
type: [String, Number],
default: '0.00'
},
color: {
type: String,
default: '#333333'
},
//
size: {
type: [String, Number],
default: 15
},
//
intSize: {
type: [String, Number],
default: 15
}
},
computed: {
textArray() {
let array = ['¥']
if (!/^\d+(\.\d+)?$/.test(this.price)) {
console.error('组件<custom-text-price :text="???" 此处参数应为金额数字')
} else {
let arr = parseFloat(this.price).toFixed(2).split('.')
array.push(arr[0])
array.push('.' + arr[1])
}
return array
},
integerSize() {
return this.intSize ? this.intSize : this.size
}
}
}
</script>
<style></style>

View File

@ -1,7 +1,5 @@
<template> <template>
<view class="container"> <view class="container"> </view>
</view>
</template> </template>
<script> <script>
@ -11,14 +9,9 @@
title: '' title: ''
} }
}, },
onLoad() { onLoad() {},
methods: {}
},
methods: {
}
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped></style>
</style>

View File

@ -6,8 +6,8 @@
<view class="category-box"> <view class="category-box">
<view class="box-left"> <view class="box-left">
<u-list @scrolltolower="scrolltolower"> <u-list @scrolltolower="scrolltolower">
<u-list-item class="category-item" v-for="(item, index) in categoryList" :key="index"> <u-list-item class="category-item" v-for="(item, index) in categoryList" :key="item.id">
<view class="item-title" :class="index === currentIndex ? 'active' : ''" @click="handleCategoryClick(index)"> <view class="item-title" :class="{ active: currentIndex === index }" @click="handleCategoryClick(index)">
<text>{{ item.name }}</text> <text>{{ item.name }}</text>
</view> </view>
</u-list-item> </u-list-item>
@ -19,7 +19,7 @@
</view> </view>
<view> <view>
<u-list class="prod-list" @scrolltolower="scrolltolower"> <u-list class="prod-list" @scrolltolower="scrolltolower">
<u-list-item v-for="(item, index) in productList" :key="index"> <u-list-item v-for="(item, index) in productList" :key="item.id">
<view class="prod-item" @click="handleProdItemClick(item.id)"> <view class="prod-item" @click="handleProdItemClick(item.id)">
<u--image class="prod-image" width="140rpx" height="140rpx" :src="item.image"></u--image> <u--image class="prod-image" width="140rpx" height="140rpx" :src="item.image"></u--image>
<view class="item-info"> <view class="item-info">
@ -29,7 +29,7 @@
<u--text :lines="1" size="12px" color="#939393" :text="item.desc"></u--text> <u--text :lines="1" size="12px" color="#939393" :text="item.desc"></u--text>
</view> </view>
<view class="price-and-cart"> <view class="price-and-cart">
<u--text-price color="red" size="12" intSize="18" :text="item.price"></u--text-price> <custom-text-price color="red" size="12" intSize="18" :price="item.price"></custom-text-price>
<u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon> <u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon>
</view> </view>
</view> </view>
@ -43,7 +43,7 @@
</template> </template>
<script> <script>
import UText from "../../uni_modules/uview-ui/components/u-text/u-text"; import UText from '../../uni_modules/uview-ui/components/u-text/u-text'
export default { export default {
components: { UText }, components: { UText },
data() { data() {
@ -54,42 +54,51 @@
id: 1, id: 1,
image: 'https://cdn.uviewui.com/uview/swiper/swiper1.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
name: '关注' name: '关注'
}, { },
id: 1, {
id: 2,
image: 'https://cdn.uviewui.com/uview/swiper/swiper2.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
name: '推荐' name: '推荐'
}, { },
id: 1, {
id: 3,
image: 'https://cdn.uviewui.com/uview/swiper/swiper3.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
name: '电影' name: '电影'
}, { },
id: 1, {
id: 4,
image: 'https://cdn.uviewui.com/uview/swiper/swiper1.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
name: '科技' name: '科技'
}, { },
id: 1, {
id: 5,
image: 'https://cdn.uviewui.com/uview/swiper/swiper2.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
name: '音乐' name: '音乐'
}, { },
id: 1, {
id: 6,
image: 'https://cdn.uviewui.com/uview/swiper/swiper3.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
name: '美食' name: '美食'
}, { },
id: 1, {
id: 7,
image: 'https://cdn.uviewui.com/uview/swiper/swiper1.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper1.png',
name: '文化' name: '文化'
}, { },
id: 1, {
id: 8,
image: 'https://cdn.uviewui.com/uview/swiper/swiper2.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper2.png',
name: '财经' name: '财经'
}, { },
id: 1, {
id: 9,
image: 'https://cdn.uviewui.com/uview/swiper/swiper3.png', image: 'https://cdn.uviewui.com/uview/swiper/swiper3.png',
name: '手工' name: '手工'
}], }
],
productList: [ productList: [
{ {
id: 1, id: 0,
image: 'https://cdn.uviewui.com/uview/album/1.jpg', image: 'https://cdn.uviewui.com/uview/album/1.jpg',
title: '山不在高,有仙则名。水不在深,有龙则灵。斯是陋室,惟吾德馨。', title: '山不在高,有仙则名。水不在深,有龙则灵。斯是陋室,惟吾德馨。',
desc: '山不在于高,有了神仙就会有名气。水不在于深,有了龙就会有灵气。这是简陋的房子,只是我品德好就感觉不到简陋了。', desc: '山不在于高,有了神仙就会有名气。水不在于深,有了龙就会有灵气。这是简陋的房子,只是我品德好就感觉不到简陋了。',
@ -126,29 +135,27 @@
] ]
} }
}, },
onLoad() { onLoad() {},
},
methods: { methods: {
handleSearchClick(e) { handleSearchClick(e) {
console.log('监听点击准备跳转页面') console.log('监听点击准备跳转页面')
}, },
handleCategoryClick(index) { handleCategoryClick(index) {
if (this.currentIndex !== index) { if (this.currentIndex !== index) {
this.currentIndex = index; this.currentIndex = index
// TODO // TODO
} }
}, },
handleProdItemClick(productId) { handleProdItemClick(productId) {
uni.$u.route('/pages/product/product', { uni.$u.route('/pages/product/product', {
productId: productId productId: productId
}); })
} }
} }
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.search-wrap { .search-wrap {
background: $custom-bg-color; background: $custom-bg-color;
padding: 20rpx; padding: 20rpx;
@ -186,9 +193,7 @@
.prod-item { .prod-item {
padding: 10rpx 20rpx; padding: 10rpx 20rpx;
background: #fff; background: #fff;
display: flex; @include flex-space-between;
flex-direction: row;
justify-content: space-between;
border-bottom: $custom-border-style; border-bottom: $custom-border-style;
.prod-image { .prod-image {
@ -206,8 +211,7 @@
padding-bottom: 10rpx; padding-bottom: 10rpx;
} }
.price-and-cart { .price-and-cart {
display: flex; @include flex-space-between;
justify-content: space-between;
} }
} }
} }

View File

@ -1,6 +1,5 @@
<template> <template>
<view class="container"> <view class="container">
<view class="unp-header"> <view class="unp-header">
<view class="unp-logo"> <view class="unp-logo">
<u-avatar size="80" icon="github-circle-fill" fontSize="80"></u-avatar> <u-avatar size="80" icon="github-circle-fill" fontSize="80"></u-avatar>
@ -36,21 +35,12 @@
<!-- 占位 --> <!-- 占位 -->
</view> </view>
<u-button <u-button type="error" text="重置密码" customStyle="margin-top: 50px" @click="handleSubmit"></u-button>
type="error"
text="重置密码"
customStyle="margin-top: 50px"
@click="handleSubmit"
></u-button>
<u-gap height="20"></u-gap> <u-gap height="20"></u-gap>
<u-button type="info" text="返回" @click="navigateBack()"></u-button> <u-button type="info" text="返回" @click="navigateBack()"></u-button>
</u--form> </u--form>
</view> </view>
</view> </view>
</template> </template>
@ -64,24 +54,24 @@ export default {
formData: { formData: {
username: '', username: '',
code: '', code: '',
password: '', password: ''
}, },
rules: { rules: {
'username': { username: {
type: 'string', type: 'string',
max: 20, max: 20,
required: true, required: true,
message: '请输入您的账号', message: '请输入您的账号',
trigger: ['blur', 'change'] trigger: ['blur', 'change']
}, },
'code': { code: {
type: 'number', type: 'number',
max: 6, max: 6,
required: true, required: true,
message: '请输入验证码', message: '请输入验证码',
trigger: ['blur', 'change'] trigger: ['blur', 'change']
}, },
'password': { password: {
type: 'string', type: 'string',
max: 20, max: 20,
required: true, required: true,
@ -91,24 +81,22 @@ export default {
} }
} }
}, },
onLoad() { onLoad() {},
},
methods: { methods: {
handleUsernameChange(e) { handleUsernameChange(e) {
let str = uni.$u.trim(e, 'all'); let str = uni.$u.trim(e, 'all')
this.$nextTick(() => { this.$nextTick(() => {
this.formData.username = str this.formData.username = str
}) })
}, },
handlePasswordChange(e) { handlePasswordChange(e) {
let str = uni.$u.trim(e, 'all'); let str = uni.$u.trim(e, 'all')
this.$nextTick(() => { this.$nextTick(() => {
this.formData.password = str this.formData.password = str
}) })
}, },
codeChange(text) { codeChange(text) {
this.tips = text; this.tips = text
}, },
getCode() { getCode() {
if (this.$refs.uCode.canGetCode) { if (this.$refs.uCode.canGetCode) {
@ -117,22 +105,23 @@ export default {
title: '正在获取验证码' title: '正在获取验证码'
}) })
setTimeout(() => { setTimeout(() => {
uni.hideLoading(); uni.hideLoading()
// this.start() // this.start()
uni.$u.toast('验证码已发送'); uni.$u.toast('验证码已发送')
// //
this.$refs.uCode.start(); this.$refs.uCode.start()
}, 2000); }, 2000)
} else { } else {
uni.$u.toast('倒计时结束后再发送'); uni.$u.toast('倒计时结束后再发送')
} }
}, },
handleSubmit() { handleSubmit() {
this.$refs.form.validate().then(res => { this.$refs.form
.validate()
.then(res => {
uni.$u.toast('点击了重置密码') uni.$u.toast('点击了重置密码')
}).catch(err => {
}) })
.catch(err => {})
}, },
navigateBack() { navigateBack() {
uni.navigateBack() uni.navigateBack()
@ -142,25 +131,16 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.unp-header { .unp-header {
height: 400rpx; height: 400rpx;
display: flex; @include flex-center;
align-items: center;
justify-content: center;
.unp-logo { .unp-logo {
display: flex; @include flex-center;
flex-direction: column;
align-items: center;
justify-content: center;
} }
} }
.unp-box { .unp-box {
display: flex; @include flex-center(column);
flex-direction: column;
align-items: center;
justify-content: center;
.unp-form { .unp-form {
width: 560rpx; width: 560rpx;
} }
@ -169,14 +149,10 @@ export default {
.lk-group { .lk-group {
height: 40rpx; height: 40rpx;
margin-top: 40rpx; margin-top: 40rpx;
display: flex; @include flex-space-between;
align-items: center;
justify-content: space-between;
font-size: 12rpx; font-size: 12rpx;
color: $u-primary; color: $u-primary;
text-decoration: $u-primary; text-decoration: $u-primary;
} }
</style> </style>

View File

@ -8,17 +8,17 @@
</u-sticky> </u-sticky>
<!--轮播图--> <!--轮播图-->
<u-swiper :list="swiperList" previousMargin="20" nextMargin="20" circular height="200" @change="e => current = e.current" :autoplay="true" @click="handleSwiperClick"> <u-swiper :list="swiperList" previousMargin="20" nextMargin="20" circular height="200" @change="e => (current = e.current)" :autoplay="true" @click="handleSwiperClick">
<view slot="indicator" class="indicator"> <view slot="indicator" class="indicator">
<view class="indicator__dot" v-for="(item, index) in swiperList" :key="index" :class="[index === current && 'indicator__dot--active']"> <view class="indicator__dot" v-for="(item, index) in swiperList" :key="index" :class="[index === current && 'indicator__dot--active']"> </view>
</view>
</view> </view>
</u-swiper> </u-swiper>
<u-gap height="20px"></u-gap> <u-gap height="20px"></u-gap>
<!--宫格菜单按钮--> <!--宫格菜单按钮-->
<u-grid :border="false" col="4"><u-grid-item v-for="(item,index) in menuList" :key="index"> <u-grid :border="false" col="4"
><u-grid-item v-for="(item, index) in menuList" :key="index">
<u-icon :name="item.icon" :size="40"></u-icon> <u-icon :name="item.icon" :size="40"></u-icon>
<text class="grid-title">{{ item.title }}</text> <text class="grid-title">{{ item.title }}</text>
</u-grid-item> </u-grid-item>
@ -38,7 +38,7 @@
<text class="see-more">查看更多</text> <text class="see-more">查看更多</text>
</view> </view>
<u-grid class="prod-grid" :border="false" col="3"> <u-grid class="prod-grid" :border="false" col="3">
<u-grid-item class="prod-item-box" v-for="(item,index) in productList" :key="index"> <u-grid-item class="prod-item-box" v-for="(item, index) in productList" :key="item.id">
<view class="prod-item" @click="handleProdItemClick(item.id)"> <view class="prod-item" @click="handleProdItemClick(item.id)">
<u--image class="prod-image" width="230rpx" height="230rpx" :src="item.image"></u--image> <u--image class="prod-image" width="230rpx" height="230rpx" :src="item.image"></u--image>
<view class="item-info"> <view class="item-info">
@ -46,7 +46,7 @@
<u--text :lines="2" size="14px" color="#333333" :text="item.title"></u--text> <u--text :lines="2" size="14px" color="#333333" :text="item.title"></u--text>
</view> </view>
<view class="price-and-cart"> <view class="price-and-cart">
<u--text-price color="red" size="12" intSize="18" :text="item.price"></u--text-price> <custom-text-price color="red" size="12" intSize="18" :price="item.price"></custom-text-price>
<u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon> <u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon>
</view> </view>
</view> </view>
@ -63,7 +63,7 @@
<text class="more">更多 &gt;</text> <text class="more">更多 &gt;</text>
</view> </view>
<u-grid class="prod-grid" :border="false" col="2"> <u-grid class="prod-grid" :border="false" col="2">
<u-grid-item class="prod-item-box" v-for="(item,index) in productList" :key="index"> <u-grid-item class="prod-item-box" v-for="(item, index) in productList" :key="item.id">
<view class="prod-item" @click="handleProdItemClick(item.id)"> <view class="prod-item" @click="handleProdItemClick(item.id)">
<u--image class="prod-image" width="345rpx" height="345rpx" :src="item.image"></u--image> <u--image class="prod-image" width="345rpx" height="345rpx" :src="item.image"></u--image>
<view class="item-info"> <view class="item-info">
@ -72,7 +72,7 @@
<u--text :lines="1" size="12px" color="#939393" :text="item.desc"></u--text> <u--text :lines="1" size="12px" color="#939393" :text="item.desc"></u--text>
</view> </view>
<view class="price-and-cart"> <view class="price-and-cart">
<u--text-price color="red" size="12" intSize="18" :text="item.price"></u--text-price> <custom-text-price color="red" size="12" intSize="18" :price="item.price"></custom-text-price>
<u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon> <u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon>
</view> </view>
</view> </view>
@ -90,7 +90,7 @@
</view> </view>
<u-list class="prod-list" @scrolltolower="scrolltolower"> <u-list class="prod-list" @scrolltolower="scrolltolower">
<u-list-item v-for="(item, index) in productList" :key="index"> <u-list-item v-for="(item, index) in productList" :key="item.id">
<view class="prod-item" @click="handleProdItemClick(item.id)"> <view class="prod-item" @click="handleProdItemClick(item.id)">
<u--image class="prod-image" width="210rpx" height="210rpx" :src="item.image"></u--image> <u--image class="prod-image" width="210rpx" height="210rpx" :src="item.image"></u--image>
<view class="item-info"> <view class="item-info">
@ -100,14 +100,13 @@
<u--text class="info-desc" :lines="2" size="12px" color="#939393" :text="item.desc"></u--text> <u--text class="info-desc" :lines="2" size="12px" color="#939393" :text="item.desc"></u--text>
</view> </view>
<view class="price-and-cart"> <view class="price-and-cart">
<u--text-price color="red" size="12" intSize="18" :text="item.price"></u--text-price> <custom-text-price color="red" size="12" intSize="18" :price="item.price"></custom-text-price>
<u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon> <u-icon name="shopping-cart" color="#2979ff" size="28"></u-icon>
</view> </view>
</view> </view>
</view> </view>
</u-list-item> </u-list-item>
</u-list> </u-list>
</view> </view>
</view> </view>
<u-gap height="5px"></u-gap> <u-gap height="5px"></u-gap>
@ -119,27 +118,22 @@
</template> </template>
<script> <script>
import {getBannerData,getNoticeData} from "../../common/api"; import { getBannerData, getNoticeData } from '../../common/api'
export default { export default {
components: { components: {},
},
data() { data() {
return { return {
current: 0, current: 0,
currentNum: 0, currentNum: 0,
bannerList: [ bannerList: ['https://cdn.uviewui.com/uview/swiper/swiper3.png', 'https://cdn.uviewui.com/uview/swiper/swiper2.png', 'https://cdn.uviewui.com/uview/swiper/swiper1.png'],
'https://cdn.uviewui.com/uview/swiper/swiper3.png', menuList: [
'https://cdn.uviewui.com/uview/swiper/swiper2.png', { icon: 'gift', title: '热门推荐' },
'https://cdn.uviewui.com/uview/swiper/swiper1.png',], { icon: 'star', title: '收藏转发' },
menuList: [{icon: 'gift', title: '热门推荐'}, {icon: 'star', title: '收藏转发'}, {icon: 'thumb-up', title: '点赞投币'}, {icon: 'heart', title: '感谢支持'}], { icon: 'thumb-up', title: '点赞投币' },
noticeList:[ { icon: 'heart', title: '感谢支持' }
'寒雨连江夜入吴',
'平明送客楚山孤',
'洛阳亲友如相问',
'一片冰心在玉壶'
], ],
noticeList: ['寒雨连江夜入吴', '平明送客楚山孤', '洛阳亲友如相问', '一片冰心在玉壶'],
productList: [ productList: [
{ {
id: 1, id: 1,
@ -189,16 +183,20 @@ export default {
}, },
methods: { methods: {
loadBannerData() { loadBannerData() {
getBannerData().then(res => { getBannerData()
this.bannerList = res.data; .then(res => {
}).catch(err => { this.bannerList = res.data
})
.catch(err => {
//console.log(err) //console.log(err)
}) })
}, },
loadNoticeData() { loadNoticeData() {
getNoticeData().then(res => { getNoticeData()
this.noticeList = res.data; .then(res => {
}).catch(err => { this.noticeList = res.data
})
.catch(err => {
//console.log(err) //console.log(err)
}) })
}, },
@ -211,21 +209,21 @@ export default {
handleProdItemClick(productId) { handleProdItemClick(productId) {
uni.$u.route('/pages/product/product', { uni.$u.route('/pages/product/product', {
productId: productId productId: productId
}); })
} }
}, },
computed: { computed: {
swiperList() { swiperList() {
return this.bannerList.map(item => { return this.bannerList.map(item => {
if (item) { if (item) {
return item; return item
} }
}) })
}, },
noticeTextList() { noticeTextList() {
return this.noticeList.map(item => { return this.noticeList.map(item => {
if (item.title) { if (item.title) {
return item.title; return item.title
} }
}) })
} }
@ -234,7 +232,6 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.search-wrap { .search-wrap {
background: $custom-bg-color; background: $custom-bg-color;
padding: 20rpx; padding: 20rpx;
@ -266,10 +263,7 @@ export default {
.prod-block { .prod-block {
margin-top: -160px; margin-top: -160px;
.bloc-header { .bloc-header {
display: flex; @include flex-space-between;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 10rpx 30rpx; padding: 10rpx 30rpx;
.bloc-title { .bloc-title {
@ -287,7 +281,8 @@ export default {
} }
} }
&.half, &.list { &.half,
&.list {
margin-top: 0; margin-top: 0;
.bloc-header { .bloc-header {
margin-top: 50rpx; margin-top: 50rpx;
@ -321,8 +316,7 @@ export default {
padding-bottom: 10rpx; padding-bottom: 10rpx;
} }
.price-and-cart { .price-and-cart {
display: flex; @include flex-space-between;
justify-content: space-between;
} }
} }
} }
@ -336,9 +330,7 @@ export default {
.prod-item { .prod-item {
padding: 20rpx; padding: 20rpx;
background: #fff; background: #fff;
display: flex; @include flex-space-between;
flex-direction: row;
justify-content: space-between;
border-bottom: $custom-border-style; border-bottom: $custom-border-style;
.prod-image { .prod-image {
@ -356,11 +348,9 @@ export default {
padding-bottom: 10rpx; padding-bottom: 10rpx;
} }
.price-and-cart { .price-and-cart {
display: flex; @include flex-space-between;
justify-content: space-between;
} }
} }
} }
} }
</style> </style>

View File

@ -1,6 +1,5 @@
<template> <template>
<view class="container"> <view class="container">
<view class="unp-header"> <view class="unp-header">
<view class="unp-logo"> <view class="unp-logo">
<u-avatar size="80" icon="github-circle-fill" fontSize="80"></u-avatar> <u-avatar size="80" icon="github-circle-fill" fontSize="80"></u-avatar>
@ -41,16 +40,13 @@
<u-gap height="20"></u-gap> <u-gap height="20"></u-gap>
<u-button type="info" text="返回" @click="navigateBack()"></u-button> <u-button type="info" text="返回" @click="navigateBack()"></u-button>
</u--form> </u--form>
</view> </view>
</view> </view>
</template> </template>
<script> <script>
import {passwordLogin,sendSmsCode,smsLogin} from "../../common/api"; import { passwordLogin, sendSmsCode, smsLogin } from '../../common/api'
export default { export default {
data() { data() {
@ -68,7 +64,7 @@ import {passwordLogin,sendSmsCode,smsLogin} from "../../common/api";
code: '' code: ''
}, },
rules: { rules: {
'mobile': [ mobile: [
{ {
type: 'integer', type: 'integer',
required: true, required: true,
@ -80,14 +76,14 @@ import {passwordLogin,sendSmsCode,smsLogin} from "../../common/api";
validator: (rule, value, callback) => { validator: (rule, value, callback) => {
// truefalse // truefalse
// uni.$u.test.mobile()truefalse // uni.$u.test.mobile()truefalse
return uni.$u.test.mobile(value); return uni.$u.test.mobile(value)
}, },
message: '手机号码不正确', message: '手机号码不正确',
// blurchange // blurchange
trigger: ['change','blur'], trigger: ['change', 'blur']
} }
], ],
'password': { password: {
type: 'string', type: 'string',
min: 4, min: 4,
max: 16, max: 16,
@ -95,7 +91,7 @@ import {passwordLogin,sendSmsCode,smsLogin} from "../../common/api";
message: '密码长度4-16位密码', message: '密码长度4-16位密码',
trigger: ['blur', 'change'] trigger: ['blur', 'change']
}, },
'code': { code: {
type: 'integer', type: 'integer',
len: 4, len: 4,
required: true, required: true,
@ -105,67 +101,70 @@ import {passwordLogin,sendSmsCode,smsLogin} from "../../common/api";
} }
} }
}, },
onLoad() { onLoad() {},
onReady() {
},onReady(){
// setRules // setRules
this.$refs.form.setRules(this.rules) this.$refs.form.setRules(this.rules)
}, },
methods: { methods: {
handleModeChange(index) { handleModeChange(index) {
if (index !== this.currentModeIndex) { if (index !== this.currentModeIndex) {
this.currentModeIndex = index; this.currentModeIndex = index
this.$refs.form.clearValidate(); this.$refs.form.clearValidate()
} }
}, },
codeChange(text) { codeChange(text) {
this.codeTips = text; this.codeTips = text
}, },
getCode() { getCode() {
const mobile = this.formData.mobile; const mobile = this.formData.mobile
if (!mobile) { if (!mobile) {
uni.$u.toast('请填写手机号'); uni.$u.toast('请填写手机号')
} else if (!uni.$u.test.mobile(mobile)) { } else if (!uni.$u.test.mobile(mobile)) {
uni.$u.toast('手机号格式不正确'); uni.$u.toast('手机号格式不正确')
} else if (this.$refs.uCode.canGetCode) { } else if (this.$refs.uCode.canGetCode) {
// //
uni.showLoading({ uni.showLoading({
title: '正在获取验证码' title: '正在获取验证码'
}); })
//scene:1 //scene:1
sendSmsCode({agent: 1, mobile:mobile, scene:1 }).then(res => { sendSmsCode({ agent: 1, mobile: mobile, scene: 1 })
.then(res => {
//console.log(res) //console.log(res)
uni.hideLoading(); uni.hideLoading()
if (res.data.code === 0) { if (res.data.code === 0) {
// this.start() // this.start()
uni.$u.toast('验证码已发送'); uni.$u.toast('验证码已发送')
// //
this.$refs.uCode.start(); this.$refs.uCode.start()
} else { } else {
uni.$u.toast(res.data.msg); uni.$u.toast(res.data.msg)
} }
}).catch(err => { })
uni.$u.toast('服务器接口请求异常'); .catch(err => {
uni.$u.toast('服务器接口请求异常')
}) })
} else { } else {
uni.$u.toast('倒计时结束后再发送'); uni.$u.toast('倒计时结束后再发送')
} }
}, },
handleSubmit() { handleSubmit() {
this.$refs.form.validate().then(res => { this.$refs.form.validate().then(res => {
uni.$u.toast('登录'); uni.$u.toast('登录')
if (this.currentModeIndex === 0) { if (this.currentModeIndex === 0) {
passwordLogin({agent: 1, mobile:this.formData.mobile, password:this.formData.password}).then(res => { passwordLogin({ agent: 1, mobile: this.formData.mobile, password: this.formData.password })
.then(res => {
if (res.data.code === 0) { if (res.data.code === 0) {
uni.$u.toast('登录成功'); uni.$u.toast('登录成功')
// TODO toke // TODO toke
} else { } else {
uni.$u.toast(res.data.msg); uni.$u.toast(res.data.msg)
// TODO // TODO
} }
}).catch(err => { })
uni.$u.toast('服务器接口请求异常'); .catch(err => {
uni.$u.toast('服务器接口请求异常')
}) })
} else if (this.currentModeIndex === 1) { } else if (this.currentModeIndex === 1) {
smsLogin({ agent: 1, mobile: this.formData.mobile, code: this.formData.code }) smsLogin({ agent: 1, mobile: this.formData.mobile, code: this.formData.code })
@ -180,26 +179,16 @@ import {passwordLogin,sendSmsCode,smsLogin} from "../../common/api";
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.unp-header { .unp-header {
height: 400rpx; height: 400rpx;
display: flex; @include flex-center;
align-items: center;
justify-content: center;
.unp-logo { .unp-logo {
display: flex; @include flex-center(column);
flex-direction: column;
align-items: center;
justify-content: center;
} }
} }
.unp-box { .unp-box {
display: flex; @include flex-center(column);
flex-direction: column;
align-items: center;
justify-content: center;
.mode-section { .mode-section {
width: 560rpx; width: 560rpx;
@ -212,14 +201,10 @@ import {passwordLogin,sendSmsCode,smsLogin} from "../../common/api";
.lk-group { .lk-group {
height: 40rpx; height: 40rpx;
margin-top: 40rpx; margin-top: 40rpx;
display: flex; @include flex-space-between;
align-items: center;
justify-content: space-between;
font-size: 12rpx; font-size: 12rpx;
color: $u-primary; color: $u-primary;
text-decoration: $u-primary; text-decoration: $u-primary;
} }
</style> </style>

View File

@ -1,7 +1,5 @@
<template> <template>
<view class="container"> <view class="container"> 个人资料 </view>
个人资料
</view>
</template> </template>
<script> <script>
@ -11,14 +9,9 @@
title: '' title: ''
} }
}, },
onLoad() { onLoad() {},
methods: {}
},
methods: {
}
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped></style>
</style>

View File

@ -1,6 +1,5 @@
<template> <template>
<view class="container"> <view class="container">
<view class="unp-header"> <view class="unp-header">
<view class="unp-logo"> <view class="unp-logo">
<u-avatar size="80" icon="github-circle-fill" fontSize="80"></u-avatar> <u-avatar size="80" icon="github-circle-fill" fontSize="80"></u-avatar>
@ -28,21 +27,12 @@
<!-- 占位 --> <!-- 占位 -->
</view> </view>
<u-button <u-button type="success" text="注册账号" customStyle="margin-top: 50px" @click="handleSubmit"></u-button>
type="success"
text="注册账号"
customStyle="margin-top: 50px"
@click="handleSubmit"
></u-button>
<u-gap height="20"></u-gap> <u-gap height="20"></u-gap>
<u-button type="info" text="返回" @click="navigateBack()"></u-button> <u-button type="info" text="返回" @click="navigateBack()"></u-button>
</u--form> </u--form>
</view> </view>
</view> </view>
</template> </template>
@ -53,17 +43,17 @@ export default {
inputType: 'password', inputType: 'password',
formData: { formData: {
username: '', username: '',
password: '', password: ''
}, },
rules: { rules: {
'username': { username: {
type: 'string', type: 'string',
max: 20, max: 20,
required: true, required: true,
message: '请输入您的账号', message: '请输入您的账号',
trigger: ['blur', 'change'] trigger: ['blur', 'change']
}, },
'password': { password: {
type: 'string', type: 'string',
max: 20, max: 20,
required: true, required: true,
@ -73,28 +63,27 @@ export default {
} }
} }
}, },
onLoad() { onLoad() {},
},
methods: { methods: {
handleUsernameChange(e) { handleUsernameChange(e) {
let str = uni.$u.trim(e, 'all'); let str = uni.$u.trim(e, 'all')
this.$nextTick(() => { this.$nextTick(() => {
this.formData.username = str this.formData.username = str
}) })
}, },
handlePasswordChange(e) { handlePasswordChange(e) {
let str = uni.$u.trim(e, 'all'); let str = uni.$u.trim(e, 'all')
this.$nextTick(() => { this.$nextTick(() => {
this.formData.password = str this.formData.password = str
}) })
}, },
handleSubmit() { handleSubmit() {
this.$refs.form.validate().then(res => { this.$refs.form
.validate()
.then(res => {
uni.$u.toast('点击了注册账号') uni.$u.toast('点击了注册账号')
}).catch(err => {
}) })
.catch(err => {})
}, },
navigateBack() { navigateBack() {
uni.navigateBack() uni.navigateBack()
@ -104,41 +93,28 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.unp-header { .unp-header {
height: 400rpx; height: 400rpx;
display: flex; @include flex-center;
align-items: center;
justify-content: center;
.unp-logo { .unp-logo {
display: flex; @include flex-center;
flex-direction: column;
align-items: center;
justify-content: center;
} }
} }
.unp-box { .unp-box {
display: flex; @include flex-center;
flex-direction: column;
align-items: center;
justify-content: center;
.unp-form { .unp-form {
width: 560rpx; width: 560rpx;
} }
} }
.lk-group { .lk-group {
@include flex-space-between;
height: 40rpx; height: 40rpx;
margin-top: 40rpx; margin-top: 40rpx;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 12rpx; font-size: 12rpx;
color: $u-primary; color: $u-primary;
text-decoration: $u-primary; text-decoration: $u-primary;
} }
</style> </style>

View File

@ -19,7 +19,8 @@
</view> </view>
<view class="order-status-box"> <view class="order-status-box">
<u-grid :border="false" :col="orderStatusList.length"><u-grid-item v-for="(item,index) in orderStatusList" :key="index"> <u-grid :border="false" :col="orderStatusList.length"
><u-grid-item v-for="(item, index) in orderStatusList" :key="index">
<u-icon :name="item.icon" :size="32"></u-icon> <u-icon :name="item.icon" :size="32"></u-icon>
<text class="grid-title">{{ item.title }}</text> <text class="grid-title">{{ item.title }}</text>
</u-grid-item> </u-grid-item>
@ -30,7 +31,8 @@
<u-gap height="10" bgColor="#f3f3f3"></u-gap> <u-gap height="10" bgColor="#f3f3f3"></u-gap>
<view class="stat-box"> <view class="stat-box">
<u-grid :border="false" col="3"><u-grid-item v-for="(item,index) in statList" :key="index"> <u-grid :border="false" col="3"
><u-grid-item v-for="(item, index) in statList" :key="index">
<text class="grid-value">{{ item.value }}</text> <text class="grid-value">{{ item.value }}</text>
<text class="grid-title">{{ item.title }}</text> <text class="grid-title">{{ item.title }}</text>
</u-grid-item> </u-grid-item>
@ -47,7 +49,6 @@
</u-cell-group> </u-cell-group>
<u-button class="logout-btn" type="error" color="#ea322b" text="确定"></u-button> <u-button class="logout-btn" type="error" color="#ea322b" text="确定"></u-button>
</view> </view>
</template> </template>
@ -57,20 +58,27 @@
return { return {
avatar: '', avatar: '',
nickName: '点击登录', nickName: '点击登录',
orderStatusList: [{icon: 'rmb-circle', title: '待支付'}, {icon: 'car', title: '代发货'}, {icon: 'order', title: '待收货'}, {icon: 'integral', title: '已完成'}], orderStatusList: [
statList: [{value: '2', title: '我的收藏'}, {value: '3', title: '我的消息'}, {value: '3', title: '我的足迹'}] { icon: 'rmb-circle', title: '待支付' },
{ icon: 'car', title: '代发货' },
{ icon: 'order', title: '待收货' },
{ icon: 'integral', title: '已完成' }
],
statList: [
{ value: '2', title: '我的收藏' },
{ value: '3', title: '我的消息' },
{ value: '3', title: '我的足迹' }
]
} }
}, },
onLoad() { onLoad() {},
},
methods: { methods: {
handleUserInfoClick() { handleUserInfoClick() {
// TODO // TODO
if (!uni.getStorageSync('token')) { if (!uni.getStorageSync('token')) {
uni.$u.route('/pages/login/login'); uni.$u.route('/pages/login/login')
} else { } else {
uni.$u.route('/pages/profile/profile'); uni.$u.route('/pages/profile/profile')
} }
} }
} }
@ -79,15 +87,10 @@
<style lang="scss" scoped> <style lang="scss" scoped>
.user-header { .user-header {
@include flex-center(column);
height: 280rpx; height: 280rpx;
display: flex;
align-items: center;
justify-content: center;
.user-info { .user-info {
display: flex; @include flex-center(column);
flex-direction: column;
align-items: center;
justify-content: center;
.nick-name { .nick-name {
margin-top: 20rpx; margin-top: 20rpx;
font-size: 32rpx; font-size: 32rpx;
@ -97,10 +100,7 @@
} }
.order-header { .order-header {
display: flex; @include flex-space-between;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 20rpx 30rpx; padding: 20rpx 30rpx;
border-bottom: $custom-border-style; border-bottom: $custom-border-style;
@ -110,10 +110,7 @@
} }
.see-all { .see-all {
height: 40rpx; height: 40rpx;
display: flex; @include flex-right;
flex-direction: row;
align-items: center;
justify-content: right;
color: #666666; color: #666666;
font-size: 26rpx; font-size: 26rpx;
} }
@ -151,5 +148,4 @@
margin-top: 60rpx; margin-top: 60rpx;
width: 300rpx; width: 300rpx;
} }
</style> </style>

View File

@ -22,3 +22,39 @@ $custom-bg-color: #ffffff;
/* 边框样式 */ /* 边框样式 */
$custom-border-style: 1rpx solid #f3f3f3; $custom-border-style: 1rpx solid #f3f3f3;
@mixin flex-left($direction: row) {
display: flex;
flex-direction: $direction;
align-items: center;
justify-content: left;
}
@mixin flex-right($direction: row) {
display: flex;
flex-direction: $direction;
align-items: center;
justify-content: right;
}
@mixin flex-center($direction: row) {
display: flex;
flex-direction: $direction;
align-items: center;
justify-content: center;
}
@mixin flex-space-between($direction: row) {
display: flex;
flex-direction: $direction;
align-items: center;
justify-content: space-between;
}
@mixin flex-space-around($direction: row) {
display: flex;
flex-direction: $direction;
align-items: center;
justify-content: space-around;
}

View File

@ -1,60 +0,0 @@
<template>
<view class="u-text-price-wrap">
<text
v-for="(item,index) in textArray"
:key="index"
:style="{'font-size': (index === 1 ? integerSize : size) + 'px', 'color': color}"
>
{{item}}
</text>
</view>
</template>
<script>
/**
* 此组件存在只为简单的显示特定样式的(人名币)价格数字
*/
export default {
name: "u--text-price",
components: {
},
props: {
text: {
type: String,
default: '0.00'
},
color: {
type: String,
default: '#333333'
},
//
size: {
type: [String, Number],
default: uni.$u.props.text.size
},
//
intSize: {
type: [String, Number],
default: uni.$u.props.text.size
}
},
computed: {
textArray() {
let array = ['¥'];
if (!/^\d+(\.\d+)?$/.test(this.text)) {
uni.$u.error('组件<u--text-price :text="???" 此处参数应为金额数字');
} else {
let arr = parseFloat(this.text).toFixed(2).split('.');
array.push(arr[0]);
array.push('.' + arr[1]);
}
return array;
},
integerSize() {
return this.intSize ? this.intSize : this.size
}
}
};
</script>
<style>
</style>