活动按钮状态流转
This commit is contained in:
315
pagesMall/address/add.vue
Normal file
315
pagesMall/address/add.vue
Normal file
@@ -0,0 +1,315 @@
|
||||
<!-- +----------------------------------------------------------------------
|
||||
| 麦沃德科技赋能开发者,助力商协会发展
|
||||
+----------------------------------------------------------------------
|
||||
| Copyright (c) 2017~2024 www.wdsxh.cn All rights reserved.
|
||||
+----------------------------------------------------------------------
|
||||
| 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
|
||||
+----------------------------------------------------------------------
|
||||
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
|
||||
+----------------------------------------------------------------------
|
||||
| 添加地址 开发者: 麦沃德科技-半夏
|
||||
+---------------------------------------------------------------------- -->
|
||||
|
||||
<template>
|
||||
<view class="container" :style="{'--theme-color': themeColor}">
|
||||
<!-- 标题栏 -->
|
||||
<title-bar :showBack="true" :title="pageTitle"></title-bar>
|
||||
<!-- 内容区 -->
|
||||
<view class="container-main" v-if="loadEnd">
|
||||
<view class="main-form">
|
||||
<view class="form-item">
|
||||
<view class="item-title">
|
||||
<text style="color: #E60012;">*</text>收件人
|
||||
</view>
|
||||
<view class="item-input">
|
||||
<input class="input" type="text" v-model="formData.name" placeholder="请填写收件人姓名" placeholder-class="placeholder" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="form-item">
|
||||
<view class="item-title">
|
||||
<text style="color: #E60012;">*</text>收件人电话
|
||||
</view>
|
||||
<view class="item-input">
|
||||
<input class="input" type="number" maxlength="11" v-model="formData.tel" placeholder="请填写收件人电话" placeholder-class="placeholder" />
|
||||
</view>
|
||||
</view>
|
||||
<view class="form-item">
|
||||
<view class="item-title">
|
||||
<text style="color: #E60012;">*</text>收件地址
|
||||
</view>
|
||||
<view class="item-address flex">
|
||||
<textarea class="textarea flex-item" :disabled="!formData.address" v-model="formData.address" auto-height />
|
||||
<view class="placeholder" @click="chooseLocation()" v-if="!formData.address">请点击选择收件地址</view>
|
||||
<image class="icon" src="/static/location.png" mode="aspectFit" @click="chooseLocation()"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="form-item">
|
||||
<view class="item-title">默认地址</view>
|
||||
<view class="item-switch flex">
|
||||
<view class="switch-label">是否默认地址</view>
|
||||
<view class="switch-box" :class="{select: formData.is_default == 1}" @click="formData.is_default = formData.is_default == 1 ? 0 : 1">
|
||||
<view class="round"></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="main-footer">
|
||||
<view class="footer-btn" @click="handleSubmit()">{{formData.id ? "编辑" : "添加"}}</view>
|
||||
<view class="safe-padding"></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from "vuex"
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
// 加载完成
|
||||
loadEnd: false,
|
||||
// 页面标题
|
||||
pageTitle: "",
|
||||
// 表单数据
|
||||
formData: {
|
||||
name: '',
|
||||
tel: '',
|
||||
address: '',
|
||||
is_default: 0,
|
||||
},
|
||||
// 延时器
|
||||
delayer: null,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
...mapState({
|
||||
themeColor: state => state.app.themeColor,
|
||||
})
|
||||
},
|
||||
onLoad(option) {
|
||||
if (option.addressData) this.formData = JSON.parse(option.addressData)
|
||||
if (this.formData.id) {
|
||||
this.pageTitle = "编辑地址"
|
||||
} else {
|
||||
this.pageTitle = "添加地址"
|
||||
}
|
||||
this.$nextTick(() => {
|
||||
this.loadEnd = true
|
||||
})
|
||||
},
|
||||
onUnload() {
|
||||
clearTimeout(this.delayer)
|
||||
},
|
||||
methods: {
|
||||
// 添加/编辑地址
|
||||
handleSubmit() {
|
||||
if (!this.formData.name) {
|
||||
uni.showToast({
|
||||
icon: "none",
|
||||
title: "请输入收件人姓名"
|
||||
})
|
||||
return
|
||||
}
|
||||
if (!this.formData.tel) {
|
||||
uni.showToast({
|
||||
icon: "none",
|
||||
title: "请输入收件人手机号"
|
||||
})
|
||||
return
|
||||
}
|
||||
if (!this.$util.validation("phone", this.formData.tel)) {
|
||||
uni.showToast({
|
||||
icon: "none",
|
||||
title: "请输入正确的手机号"
|
||||
})
|
||||
return
|
||||
}
|
||||
if (!this.formData.address) {
|
||||
uni.showToast({
|
||||
icon: "none",
|
||||
title: "请输入收货地址"
|
||||
})
|
||||
return
|
||||
}
|
||||
uni.showLoading({
|
||||
title: "加载中",
|
||||
mask: true
|
||||
})
|
||||
let url = ""
|
||||
if (this.formData.id) url = "mall.address.edit"
|
||||
else url = "mall.address.add"
|
||||
this.$util.request(url, this.formData).then(res => {
|
||||
uni.hideLoading()
|
||||
if (res.code == 1) {
|
||||
uni.showToast({
|
||||
title: this.formData.id ? "编辑成功" : "添加成功",
|
||||
icon: "success",
|
||||
mask: true,
|
||||
duration: 1500
|
||||
})
|
||||
this.delayer = setTimeout(() => {
|
||||
uni.navigateBack()
|
||||
}, 1500)
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}).catch(error => {
|
||||
uni.hideLoading()
|
||||
console.error('添加/编辑地址 ', error)
|
||||
})
|
||||
},
|
||||
// 选择位置
|
||||
chooseLocation() {
|
||||
uni.chooseLocation({
|
||||
success: (res) => {
|
||||
this.formData.address = res.address
|
||||
}
|
||||
});
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.container {
|
||||
.container-main {
|
||||
padding: 32rpx 48rpx 144rpx;
|
||||
|
||||
.main-form {
|
||||
.form-item {
|
||||
margin-top: 32rpx;
|
||||
|
||||
&:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.item-title {
|
||||
padding-bottom: 32rpx;
|
||||
font-size: 32rpx;
|
||||
color: #5A5B6E;
|
||||
}
|
||||
|
||||
.item-input {
|
||||
border-radius: 16rpx;
|
||||
background: #FFFFFF;
|
||||
overflow: hidden;
|
||||
|
||||
.input {
|
||||
font-size: 28rpx;
|
||||
color: #5A5B6E;
|
||||
min-height: 40rpx;
|
||||
height: 40rpx;
|
||||
line-height: 40rpx;
|
||||
padding: 32rpx;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
font-size: 28rpx;
|
||||
color: #ACADB7;
|
||||
line-height: 40rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.item-address {
|
||||
position: relative;
|
||||
border-radius: 16rpx;
|
||||
background: #FFFFFF;
|
||||
overflow: hidden;
|
||||
|
||||
.textarea {
|
||||
width: 100%;
|
||||
font-size: 28rpx;
|
||||
color: #5A5B6E;
|
||||
line-height: 40rpx;
|
||||
padding: 32rpx 0 32rpx 32rpx;
|
||||
min-height: 40rpx;
|
||||
}
|
||||
|
||||
.placeholder {
|
||||
width: 100%;
|
||||
font-size: 28rpx;
|
||||
color: #ACADB7;
|
||||
line-height: 40rpx;
|
||||
padding: 32rpx;
|
||||
min-height: 40rpx;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 34rpx;
|
||||
height: auto;
|
||||
padding: 0 32rpx 0 24rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.item-switch {
|
||||
padding: 32rpx;
|
||||
border-radius: 16rpx;
|
||||
background: #FFFFFF;
|
||||
|
||||
.switch-label {
|
||||
flex: 1;
|
||||
font-size: 28rpx;
|
||||
color: #5A5B6E;
|
||||
}
|
||||
|
||||
.switch-box {
|
||||
width: 80rpx;
|
||||
height: 40rpx;
|
||||
padding: 3rpx;
|
||||
background: #D9D9D9;
|
||||
border-radius: 20rpx;
|
||||
transition: all .3s;
|
||||
|
||||
.round {
|
||||
width: 34rpx;
|
||||
height: 34rpx;
|
||||
border-radius: 50%;
|
||||
background: #fff;
|
||||
margin-left: 0;
|
||||
transition: all .3s;
|
||||
}
|
||||
|
||||
&.select {
|
||||
background: var(--theme-color);
|
||||
|
||||
.round {
|
||||
margin-left: calc(100% - 34rpx);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.main-footer {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
z-index: 99;
|
||||
padding: 12rpx 32rpx;
|
||||
background: #ffffff;
|
||||
border-top: 1rpx solid #F6F7FB;
|
||||
|
||||
.footer-btn {
|
||||
color: #ffffff;
|
||||
font-size: 32rpx;
|
||||
line-height: 44rpx;
|
||||
padding: 22rpx 24rpx;
|
||||
border-radius: 16rpx;
|
||||
background: var(--theme-color);
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
290
pagesMall/address/index.vue
Normal file
290
pagesMall/address/index.vue
Normal file
@@ -0,0 +1,290 @@
|
||||
<!-- +----------------------------------------------------------------------
|
||||
| 麦沃德科技赋能开发者,助力商协会发展
|
||||
+----------------------------------------------------------------------
|
||||
| Copyright (c) 2017~2024 www.wdsxh.cn All rights reserved.
|
||||
+----------------------------------------------------------------------
|
||||
| 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
|
||||
+----------------------------------------------------------------------
|
||||
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
|
||||
+----------------------------------------------------------------------
|
||||
| 地址管理 开发者: 麦沃德科技-半夏
|
||||
+---------------------------------------------------------------------- -->
|
||||
|
||||
<template>
|
||||
<view class="container" :style="{'--theme-color': themeColor}">
|
||||
<!-- 标题栏 -->
|
||||
<title-bar :showBack="true" title="地址管理"></title-bar>
|
||||
<!-- 内容区 -->
|
||||
<view class="container-main" v-if="loadEnd">
|
||||
<!-- 地址列表 -->
|
||||
<view class="main-list" v-if="addressList.length">
|
||||
<view class="list-item" v-for="item in addressList" :key="item.id">
|
||||
<view class="item-info">
|
||||
<view class="info-address">{{item.address}}</view>
|
||||
<view class="info-name flex align-items-center">
|
||||
<text>{{item.name}}</text>
|
||||
<text style="margin-left: 16rpx;">{{item.tel}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item-operate flex justify-content-between align-items-center">
|
||||
<view class="operate-default flex justify-content-between align-items-center" @click="handleSwitch(item.id)">
|
||||
<view class="default-radio" :class="{select: item.is_default == 1}">
|
||||
<image src="/static/tick.png" mode="aspectFit" v-if="item.is_default == 1"></image>
|
||||
</view>
|
||||
<view class="default-tag">{{item.is_default == 1 ? '默认地址' : '设为默认地址'}}</view>
|
||||
</view>
|
||||
<view class="operate-btn flex align-items-center">
|
||||
<view class="btn-box flex align-items-center" @click="handleEdit(item)">
|
||||
<view class="icon" :style="{'background-image': 'url('+ iconEdit +')'}" v-if="iconEdit"></view>
|
||||
<text class="text" :style="{color: themeColor}">编辑</text>
|
||||
</view>
|
||||
<view class="btn-box flex align-items-center" @click="handleDelete(item.id)">
|
||||
<image class="icon" src="/static/mall/icon_del.png" mode="aspectFit"></image>
|
||||
<text class="text">删除</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<empty top="10vh" title="暂无相关地址~" @callback="handleAdd()" v-else></empty>
|
||||
<!-- 底部按钮 -->
|
||||
<view class="main-btn">
|
||||
<view class="btn" @click="handleAdd()">添加地址</view>
|
||||
<view class="safe-padding"></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapState } from "vuex"
|
||||
import svgData from "@/common/svg.js"
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
// 是否加载完成
|
||||
loadEnd: false,
|
||||
// 地址列表
|
||||
addressList: [],
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapState({
|
||||
themeColor: state => state.app.themeColor,
|
||||
iconEdit: state => {
|
||||
return svgData.svgToUrl("edit", state.app.themeColor)
|
||||
},
|
||||
})
|
||||
},
|
||||
onLoad() {
|
||||
uni.showLoading({
|
||||
title: "加载中"
|
||||
})
|
||||
this.getAddress(() => {
|
||||
uni.hideLoading()
|
||||
this.loadEnd = true
|
||||
})
|
||||
},
|
||||
onShow() {
|
||||
if (this.loadEnd) this.getAddress()
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
this.getAddress(() => {
|
||||
uni.stopPullDownRefresh()
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
// 获取地址列表
|
||||
getAddress(fn) {
|
||||
this.$util.request("mall.address.list").then(res => {
|
||||
if (fn) fn()
|
||||
if (res.code == 1) {
|
||||
this.addressList = res.data
|
||||
this.$forceUpdate()
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}).catch(error => {
|
||||
if (fn) fn()
|
||||
console.error('获取地址列表 ', error)
|
||||
})
|
||||
},
|
||||
// 切换默认地址
|
||||
handleSwitch(id) {
|
||||
this.$util.request("mall.address.setDefault", {
|
||||
id: id
|
||||
}).then(res => {
|
||||
if (res.code == 1) {
|
||||
this.getAddress(() => {
|
||||
uni.hideLoading()
|
||||
})
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}).catch(error => {
|
||||
console.error('切换默认地址 ', error)
|
||||
})
|
||||
},
|
||||
// 添加地址
|
||||
handleAdd() {
|
||||
this.$util.toPage({
|
||||
mode: 1,
|
||||
path: "/pagesMall/address/add"
|
||||
})
|
||||
},
|
||||
// 修改地址
|
||||
handleEdit(item) {
|
||||
this.$util.toPage({
|
||||
mode: 1,
|
||||
path: "/pagesMall/address/add?addressData=" + JSON.stringify(item)
|
||||
})
|
||||
},
|
||||
// 删除地址
|
||||
handleDelete(id) {
|
||||
uni.showModal({
|
||||
title: "系统提示",
|
||||
content: "是否删除该地址?",
|
||||
confirmColor: "#E50002",
|
||||
confirmText: "删除",
|
||||
success: (res) => {
|
||||
if (res.confirm) {
|
||||
uni.showLoading({
|
||||
mask: true,
|
||||
title: "加载中"
|
||||
})
|
||||
this.$util.request("mall.address.delete", {
|
||||
id: id
|
||||
}).then(res => {
|
||||
if (res.code == 1) {
|
||||
this.getAddress(() => {
|
||||
uni.hideLoading()
|
||||
uni.showToast({
|
||||
icon: "success",
|
||||
title: "删除成功"
|
||||
})
|
||||
})
|
||||
} else {
|
||||
uni.hideLoading()
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
}).catch(error => {
|
||||
uni.hideLoading()
|
||||
console.error('删除地址 ', error)
|
||||
})
|
||||
}
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.container {
|
||||
.container-main {
|
||||
padding: 32rpx 32rpx 144rpx;
|
||||
|
||||
.main-list {
|
||||
.list-item {
|
||||
margin-top: 32rpx;
|
||||
border-radius: 16rpx;
|
||||
background: #FFF;
|
||||
padding: 32rpx;
|
||||
|
||||
&:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.item-info {
|
||||
.info-address {
|
||||
color: #5A5B6E;
|
||||
font-size: 32rpx;
|
||||
line-height: 44rpx;
|
||||
}
|
||||
|
||||
.info-name {
|
||||
color: #979797;
|
||||
font-size: 28rpx;
|
||||
line-height: 40rpx;
|
||||
margin-top: 40rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.item-operate {
|
||||
border-top: 1rpx solid rgba(0, 0, 0, 0.1);
|
||||
padding-top: 20rpx;
|
||||
margin-top: 20rpx;
|
||||
|
||||
.operate-default {
|
||||
.default-radio {
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
background: #D9D9D9;
|
||||
border-radius: 50%;
|
||||
|
||||
&.select {
|
||||
background: var(--theme-color);
|
||||
}
|
||||
}
|
||||
|
||||
.default-tag {
|
||||
margin-left: 12rpx;
|
||||
color: #979797;
|
||||
font-size: 24rpx;
|
||||
line-height: 34rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.operate-btn {
|
||||
.btn-box {
|
||||
margin-left: 32rpx;
|
||||
|
||||
.icon {
|
||||
width: 48rpx;
|
||||
height: 48rpx;
|
||||
background-size: 48rpx;
|
||||
}
|
||||
|
||||
.text {
|
||||
margin-left: 8rpx;
|
||||
color: #FF626E;
|
||||
font-size: 28rpx;
|
||||
line-height: 40rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.main-btn {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 99;
|
||||
background: #fff;
|
||||
padding: 12rpx 32rpx;
|
||||
|
||||
.btn {
|
||||
color: #FFF;
|
||||
text-align: center;
|
||||
font-size: 32rpx;
|
||||
line-height: 44rpx;
|
||||
padding: 22rpx 32rpx;
|
||||
background: var(--theme-color);
|
||||
border-radius: 16rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user