页面开发
28
api/cart.js
|
@ -1,33 +1,33 @@
|
|||
import request from '@/utils/request';
|
||||
|
||||
//添加购物车数量
|
||||
export const cartCreateApi = (data)=>{
|
||||
return request.post('/order/cart/create', data);
|
||||
export const cartCreateApi = (data) => {
|
||||
return request.post('/order/cart/create', data);
|
||||
}
|
||||
|
||||
//购物车-调整数量
|
||||
export const cartChangeApi = (data)=>{
|
||||
return request.post('/order/cart/change', data);
|
||||
export const cartChangeApi = (data) => {
|
||||
return request.post('/order/cart/change', data);
|
||||
}
|
||||
|
||||
//购物车-清空
|
||||
export const cartDeleteApi = (data)=>{
|
||||
return request.post('/order/cart/delete', data);
|
||||
export const cartDeleteApi = (data) => {
|
||||
return request.post('/order/cart/delete', data);
|
||||
}
|
||||
|
||||
//购物车-零售列表
|
||||
export const cartListApi = (data)=>{
|
||||
return request.get('/order/cart/list', data, {
|
||||
noAuth: true
|
||||
});
|
||||
export const cartListApi = (data) => {
|
||||
return request.get('/order/cart/list', data, {
|
||||
noAuth: true
|
||||
});
|
||||
}
|
||||
|
||||
//购物车-常买记录
|
||||
export const frequentlyPurchaseApi = (data)=>{
|
||||
return request.get('/order/RetailOrder/frequently_purchase', data);
|
||||
export const frequentlyPurchaseApi = (data) => {
|
||||
return request.get('/order/order/frequently_purchase', data);
|
||||
}
|
||||
|
||||
//购物车-零售购物车预检
|
||||
export const checkOrderApi = (data)=>{
|
||||
return request.post('/order/RetailOrder/checkOrder', data);
|
||||
export const checkOrderApi = (data) => {
|
||||
return request.post('/order/RetailOrder/checkOrder', data);
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
import request from '@/utils/request';
|
||||
|
||||
export const goodListApi = (data)=>{
|
||||
return request.get('/goods/goods/lists', data);
|
||||
export const goodListApi = (data) => {
|
||||
return request.get('/product/product/lists', data);
|
||||
}
|
||||
|
||||
export const goodClassListApi = (data)=>{
|
||||
return request.get('/goods/goodsclass/lists', data);
|
||||
export const goodClassListApi = (data) => {
|
||||
return request.get('/cate/cate/lists', data);
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
import request from '@/utils/request';
|
||||
|
||||
export const shopListApi = (data) => {
|
||||
return request.get('/store/store/lists', data);
|
||||
}
|
|
@ -1,152 +1,152 @@
|
|||
<template>
|
||||
<up-popup :show="show" closeable round="10" @close="close" :safeAreaInsetBottom="false">
|
||||
<view class="good-popup">
|
||||
<view class="head-title">
|
||||
{{datas.is_bulk ? '称重商品' : '计件商品'}}
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>商品名称</view>
|
||||
<view>{{datas.name || datas.goods_name}}</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>商品单位</view>
|
||||
<view>{{datas.unit_name}}</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>商品价格</view>
|
||||
<view>¥ {{datas.sell}}</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>小计</view>
|
||||
<view style="color: #F55726;">¥ {{subtotal}}</view>
|
||||
</view>
|
||||
<view v-if="datas.is_bulk" class="row">
|
||||
<view>购买重量<text style="color: #F55726;">*</text></view>
|
||||
<view style="flex: 1;">
|
||||
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none" placeholder="请输入购买重量"
|
||||
inputAlign="right"></up-input>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="row">
|
||||
<view>购买数量<text style="color: #F55726;">*</text></view>
|
||||
<view style="flex: 1;">
|
||||
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none" placeholder="请输入购买数量"
|
||||
inputAlign="right">
|
||||
<template #suffix>
|
||||
<span style="color: #20b128;">{{datas.unit_name}}</span>
|
||||
</template>
|
||||
</up-input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="row" style="padding-top: 30px;padding-bottom: 30rpx;">
|
||||
<view style="width: 30%;margin-right: 30rpx;">
|
||||
<up-button @click="close" color="#f7f7f7"><text style="color: #333;">取消</text></up-button>
|
||||
</view>
|
||||
<view style="flex: 1;">
|
||||
<up-button @click="change" color="#20b128">确定</up-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</up-popup>
|
||||
<up-popup :show="show" closeable round="10" @close="close" :safeAreaInsetBottom="false">
|
||||
<view class="good-popup">
|
||||
<view class="head-title">
|
||||
{{datas.is_bulk ? '称重商品' : '计件商品'}}
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>商品名称</view>
|
||||
<view>{{datas.name || datas.goods_name}}</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>商品单位</view>
|
||||
<view>{{datas.unit_name}}</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>商品价格</view>
|
||||
<view>¥ {{datas.sell}}</view>
|
||||
</view>
|
||||
<view class="row">
|
||||
<view>小计</view>
|
||||
<view style="color: #F55726;">¥ {{subtotal}}</view>
|
||||
</view>
|
||||
<view v-if="datas.is_bulk" class="row">
|
||||
<view>购买重量<text style="color: #F55726;">*</text></view>
|
||||
<view style="flex: 1;">
|
||||
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none"
|
||||
placeholder="请输入购买重量" inputAlign="right"></up-input>
|
||||
</view>
|
||||
</view>
|
||||
<view v-else class="row">
|
||||
<view>购买数量<text style="color: #F55726;">*</text></view>
|
||||
<view style="flex: 1;">
|
||||
<up-input v-model="datas.cart_num" :cursorSpacing='120' type="number" border="none"
|
||||
placeholder="请输入购买数量" inputAlign="right">
|
||||
<template #suffix>
|
||||
<span style="color: #20b128;">{{datas.unit_name}}</span>
|
||||
</template>
|
||||
</up-input>
|
||||
</view>
|
||||
</view>
|
||||
<view class="row" style="padding-top: 30px;padding-bottom: 30rpx;">
|
||||
<view style="width: 30%;margin-right: 30rpx;">
|
||||
<up-button @click="close" color="#f7f7f7"><text style="color: #333;">取消</text></up-button>
|
||||
</view>
|
||||
<view style="flex: 1;">
|
||||
<up-button @click="change" color="#20b128">确定</up-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</up-popup>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
computed,
|
||||
ref
|
||||
} from "vue"
|
||||
import {
|
||||
toast
|
||||
} from "../uni_modules/uview-plus";
|
||||
import {
|
||||
computed,
|
||||
ref
|
||||
} from "vue"
|
||||
import {
|
||||
toast
|
||||
} from "../uni_modules/uview-plus";
|
||||
|
||||
const props = defineProps({
|
||||
show: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
})
|
||||
const props = defineProps({
|
||||
show: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
})
|
||||
|
||||
const datas = ref({
|
||||
cart_num: ''
|
||||
});
|
||||
const setData = (e) => {
|
||||
datas.value = e;
|
||||
}
|
||||
const datas = ref({
|
||||
cart_num: ''
|
||||
});
|
||||
const setData = (e) => {
|
||||
datas.value = e;
|
||||
}
|
||||
|
||||
const emit = defineEmits(['close', 'change']);
|
||||
const close = () => {
|
||||
emit('close');
|
||||
}
|
||||
const emit = defineEmits(['close', 'change']);
|
||||
const close = () => {
|
||||
emit('close');
|
||||
}
|
||||
|
||||
const change = () => {
|
||||
if (subtotal.value <= 0) {
|
||||
uni.$u.toast('金额不可小于等于0');
|
||||
datas.value.cart_num = '';
|
||||
return;
|
||||
}
|
||||
emit('change', datas.value);
|
||||
}
|
||||
const change = () => {
|
||||
if (subtotal.value <= 0) {
|
||||
uni.$u.toast('金额不可小于等于0');
|
||||
datas.value.cart_num = '';
|
||||
return;
|
||||
}
|
||||
emit('change', datas.value);
|
||||
}
|
||||
|
||||
const subtotal = computed(() => {
|
||||
let num = +datas.value.cart_num || 0;
|
||||
let sell = +datas.value.sell;
|
||||
return Math.ceil(num * sell * 100) / 100
|
||||
})
|
||||
const subtotal = computed(() => {
|
||||
let num = +datas.value.cart_num || 0;
|
||||
let sell = +datas.value.price;
|
||||
return Math.ceil(num * sell * 100) / 100
|
||||
})
|
||||
|
||||
defineExpose({
|
||||
setData
|
||||
})
|
||||
defineExpose({
|
||||
setData
|
||||
})
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
.good-popup {
|
||||
padding: 30rpx;
|
||||
.good-popup {
|
||||
padding: 30rpx;
|
||||
|
||||
.head-title {
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.head-title {
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-bottom: 20rpx;
|
||||
border-bottom: 1rpx solid #f6f6f6;
|
||||
margin-bottom: 20rpx;
|
||||
.row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-bottom: 20rpx;
|
||||
border-bottom: 1rpx solid #f6f6f6;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
&:last-child {
|
||||
border-bottom: none;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.content {
|
||||
.top {
|
||||
display: flex;
|
||||
.content {
|
||||
.top {
|
||||
display: flex;
|
||||
|
||||
view {
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
}
|
||||
view {
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.bottom {}
|
||||
}
|
||||
.bottom {}
|
||||
}
|
||||
|
||||
image {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
image {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes disappear {
|
||||
to {
|
||||
opacity: 0;
|
||||
/* 渐隐 */
|
||||
transform: scale(0);
|
||||
/* 缩小 */
|
||||
}
|
||||
}
|
||||
@keyframes disappear {
|
||||
to {
|
||||
opacity: 0;
|
||||
/* 渐隐 */
|
||||
transform: scale(0);
|
||||
/* 缩小 */
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -3,8 +3,9 @@ import store from "@/store/user.js"
|
|||
// 环境
|
||||
// let env = "dev"
|
||||
// let env = "test"
|
||||
let env = "prod"
|
||||
// let env = "prod"
|
||||
// let env = "local"
|
||||
let env = "liu";
|
||||
|
||||
switch (env) {
|
||||
case 'prod':
|
||||
|
@ -13,8 +14,11 @@ switch (env) {
|
|||
case 'test':
|
||||
BASE_URL = 'https://ceshi-erp.lihaink.cn';
|
||||
break;
|
||||
case 'liu':
|
||||
BASE_URL = 'http://192.168.1.201:8545';
|
||||
break;
|
||||
default:
|
||||
BASE_URL = 'http://192.168.1.22:8546';
|
||||
BASE_URL = 'https://test-multi-store.lihaink.cn';
|
||||
}
|
||||
|
||||
let HTTP_REQUEST_URL
|
||||
|
|
After Width: | Height: | Size: 9.0 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 2.5 KiB |
After Width: | Height: | Size: 569 B |
After Width: | Height: | Size: 760 B |
|
@ -0,0 +1,214 @@
|
|||
<style lang="scss">
|
||||
page {
|
||||
background: #FAFAFA;
|
||||
}
|
||||
|
||||
.multiple {
|
||||
padding-bottom: 30rpx;
|
||||
|
||||
.multiple-search {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
display: flex;
|
||||
height: 90rpx;
|
||||
background-color: #fff;
|
||||
padding: 0 24rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.multiple-search-txt {
|
||||
position: absolute;
|
||||
right: 28rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 110rpx;
|
||||
height: 52rpx;
|
||||
line-height: 52rpx;
|
||||
text-align: center;
|
||||
background: #FFFFFF;
|
||||
border-radius: 30rpx 30rpx 30rpx 30rpx;
|
||||
font-size: 28rpx;
|
||||
color: #20B128;
|
||||
}
|
||||
}
|
||||
|
||||
.multiple-card {
|
||||
padding-top: 24rpx;
|
||||
|
||||
.multiple-card-item {
|
||||
display: flex;
|
||||
background: #FFFFFF;
|
||||
border-radius: 16rpx;
|
||||
margin: 0 24rpx 20rpx;
|
||||
padding: 30rpx 0 42rpx 30rpx;
|
||||
overflow: hidden;
|
||||
|
||||
.multiple-card-item-left {
|
||||
width: 70%;
|
||||
border-right: 2rpx solid #F1F1F1;
|
||||
|
||||
.multiple-card-item-left-title {
|
||||
margin-bottom: 14rpx;
|
||||
font-weight: bold;
|
||||
font-size: 28rpx;
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
.multiple-card-item-left-tag {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
margin-bottom: 16rpx;
|
||||
|
||||
text {
|
||||
width: 90rpx;
|
||||
height: 42rpx;
|
||||
line-height: 42rpx;
|
||||
text-align: center;
|
||||
border-radius: 8rpx;
|
||||
font-size: 24rpx;
|
||||
margin-right: 16rpx;
|
||||
padding: 4rpx 10rpx;
|
||||
}
|
||||
|
||||
.yellow {
|
||||
background-color: #FFF8F1;
|
||||
color: #FFB76D;
|
||||
}
|
||||
|
||||
.green {
|
||||
color: #20B128;
|
||||
background-color: #F2FFF3;
|
||||
}
|
||||
}
|
||||
|
||||
.multiple-card-item-left-info {
|
||||
display: flex;
|
||||
|
||||
&:nth-child(1) {
|
||||
margin-bottom: 10rpx;
|
||||
}
|
||||
|
||||
text {
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #777777;
|
||||
margin-left: 4rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.multiple-card-item-right {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 30%;
|
||||
|
||||
.multiple-card-item-right-distance {
|
||||
margin-bottom: 20rpx;
|
||||
font-size: 22rpx;
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
.multiple-card-item-right-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.active {
|
||||
position: relative;
|
||||
border: 2rpx solid #20B128;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: -34rpx;
|
||||
bottom: -8rpx;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 50rpx solid transparent;
|
||||
border-right: 50rpx solid transparent;
|
||||
border-bottom: 50rpx solid #20B128;
|
||||
transform: rotate(135deg);
|
||||
}
|
||||
|
||||
&::before {
|
||||
content: "√";
|
||||
display: block;
|
||||
|
||||
position: absolute;
|
||||
right: 10rpx;
|
||||
bottom: 4rpx;
|
||||
color: #fff;
|
||||
z-index: 11;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<template>
|
||||
<view class="multiple">
|
||||
<view class="multiple-search">
|
||||
<u-search :animation="true" :showAction="false" bgColor="#f6f6f6" placeholder="请输入门店"></u-search>
|
||||
<view class="multiple-search-txt">搜索</view>
|
||||
</view>
|
||||
|
||||
<view class="multiple-card">
|
||||
<view class="multiple-card-item active" v-for="item in 10">
|
||||
<view class="multiple-card-item-left">
|
||||
<view class="multiple-card-item-left-title">泸州春雨路自提中转中心</view>
|
||||
<view class="multiple-card-item-left-tag">
|
||||
<text class="yellow">可自提</text>
|
||||
<text class="green">可配送</text>
|
||||
</view>
|
||||
<view class="multiple-card-item-left-info">
|
||||
<u-image src="../images/location_small.webp" width="24rpx" height="24rpx" />
|
||||
<text>四川省泸州市龙马潭区一环春雨路一段107号一环路117号</text>
|
||||
</view>
|
||||
<view class="multiple-card-item-left-info">
|
||||
<u-image src="../images/time.webp" width="24rpx" height="24rpx" />
|
||||
<text>09:00-20:00</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="multiple-card-item-right">
|
||||
<view class="multiple-card-item-right-distance">距离1km</view>
|
||||
<view class="multiple-card-item-right-icon">
|
||||
<view style="margin-right: 30rpx;">
|
||||
<u-image src="../images/phone.webp" width="48rpx" height="48rpx" />
|
||||
</view>
|
||||
<u-image src="../images/location.webp" width="48rpx" height="48rpx" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
shopListApi
|
||||
} from "@/api/multipleShop.js";
|
||||
import {
|
||||
onLoad
|
||||
} from "@dcloudio/uni-app"
|
||||
|
||||
|
||||
|
||||
|
||||
// 获取门店
|
||||
const getShopList = () => {
|
||||
shopListApi().then(res => {
|
||||
console.log(res);
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
onLoad(() => {
|
||||
getShopList();
|
||||
})
|
||||
</script>
|
|
@ -0,0 +1,226 @@
|
|||
<style lang="scss" scoped>
|
||||
.orderVerification {
|
||||
padding-top: 68rpx;
|
||||
|
||||
.verification {
|
||||
position: relative;
|
||||
width: 710rpx;
|
||||
height: 390rpx;
|
||||
background-image: url(../images/circle_bg.png);
|
||||
background-size: 100%;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0 auto 66rpx;
|
||||
padding: 70rpx 30rpx 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.num {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: -36rpx;
|
||||
transform: translateX(-50%);
|
||||
width: 72rpx;
|
||||
height: 72rpx;
|
||||
line-height: 72rpx;
|
||||
border-radius: 50%;
|
||||
background: #20B128;
|
||||
font-size: 36rpx;
|
||||
color: #FFFFFF;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.verification-title {
|
||||
margin-bottom: 24rpx;
|
||||
font-weight: 600;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.scan {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-shadow: 0 0 4rpx 16rpx rgba(32, 177, 40, .1);
|
||||
width: 160rpx;
|
||||
height: 160rpx;
|
||||
border-radius: 50%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.scan1 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 152rpx;
|
||||
height: 152rpx;
|
||||
background-color: #20B128;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 0 8rpx rgba(32, 177, 40, .3);
|
||||
}
|
||||
}
|
||||
|
||||
.verification-btn {
|
||||
width: 648rpx;
|
||||
height: 94rpx;
|
||||
line-height: 94rpx;
|
||||
background: #38BE41;
|
||||
border-radius: 48rpx;
|
||||
margin-top: 40rpx;
|
||||
font-weight: 600;
|
||||
font-size: 32rpx;
|
||||
color: #FFFFFF;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
::v-deep .u-popup__content {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.popup {
|
||||
.popup-wrap {
|
||||
width: 710rpx;
|
||||
border-radius: 12rpx;
|
||||
padding: 40rpx;
|
||||
box-sizing: border-box;
|
||||
background-color: #fff;
|
||||
|
||||
.popup-title {
|
||||
margin-bottom: 60rpx;
|
||||
font-weight: 600;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.popup-order_num {
|
||||
margin-bottom: 36rpx;
|
||||
font-weight: bold;
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.popup-goods {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 630rpx;
|
||||
height: 190rpx;
|
||||
background: #F7F7F7;
|
||||
border-radius: 16rpx;
|
||||
margin-bottom: 36rpx;
|
||||
padding: 24rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.popup-goods-left {
|
||||
margin-right: 24rpx;
|
||||
}
|
||||
|
||||
.popup-goods-right {
|
||||
flex-grow: 1;
|
||||
|
||||
.popup-goods-right-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
.goods_name {
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.goods_price {
|
||||
font-weight: bold;
|
||||
font-size: 24rpx;
|
||||
color: #060606;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-goods-num {
|
||||
margin-bottom: 20rpx;
|
||||
font-size: 24rpx;
|
||||
color: #777777;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.popup-goods-total {
|
||||
text-align: right;
|
||||
|
||||
.popup-goods-total-num {
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
|
||||
}
|
||||
|
||||
.popup-goods-total-price {
|
||||
font-size: 24rpx;
|
||||
color: #F55726;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<template>
|
||||
<view class="orderVerification">
|
||||
|
||||
<!-- 输入核销码 -->
|
||||
<view class="verification">
|
||||
<view class="num">1</view>
|
||||
<view class="verification-title">核销券码</view>
|
||||
<u-input inputAlign="center" :customStyle="{'border-color':'#38BE41 !important'}"
|
||||
placeholder="请输入核销券码"></u-input>
|
||||
<view class="verification-btn">确认核销</view>
|
||||
</view>
|
||||
|
||||
<!-- 二维码 -->
|
||||
<view class="verification">
|
||||
<view class="num">2</view>
|
||||
<view class="verification-title" style="margin-bottom: 48rpx;">二维码核销</view>
|
||||
<view class="scan">
|
||||
<view class="scan1">
|
||||
<u-image width="54rpx" height="50rpx" src="../images/scan.png"></u-image>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 弹框 -->
|
||||
<u-popup :show="show" @close="close" @open="open" mode="center">
|
||||
<view class="popup">
|
||||
<view class="popup-wrap">
|
||||
<view class="popup-title">请确认核销订单</view>
|
||||
<view class="popup-order_num">订单编号:wxo1709797879549583601</view>
|
||||
<view class="popup-goods">
|
||||
<view class="popup-goods-left">
|
||||
<u-image width="100rpx" height="100rpx" radius="8rpx" />
|
||||
</view>
|
||||
<view class="popup-goods-right">
|
||||
<view class="popup-goods-right-info">
|
||||
<text class='goods_name'>黄牛牛肉</text>
|
||||
<text class="goods_price">¥10.00</text>
|
||||
</view>
|
||||
<view class="popup-goods-num">x5</view>
|
||||
<view class="popup-goods-total">
|
||||
<text class="popup-goods-total-num">共5件商品,总金额</text>
|
||||
<text class="popup-goods-total-price">¥50.00</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="verification-btn">确认核销</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-popup>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref
|
||||
} from "vue";
|
||||
|
||||
const show = ref(true);
|
||||
</script>
|
|
@ -0,0 +1,119 @@
|
|||
<style lang="scss">
|
||||
.detail {
|
||||
width: 710rpx;
|
||||
background: #FFFFFF;
|
||||
border-radius: 12rpx;
|
||||
margin: 24rpx auto 0;
|
||||
padding: 0 30rpx 24rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.detail-order_num {
|
||||
height: 78rpx;
|
||||
line-height: 78rpx;
|
||||
margin-bottom: 24rpx;
|
||||
font-weight: 600;
|
||||
font-size: 26rpx;
|
||||
color: #333333;
|
||||
border-bottom: 2rpx solid #f1f1f1;
|
||||
}
|
||||
|
||||
.detail-form {
|
||||
border-bottom: 2rpx solid #f1f1f1;
|
||||
margin-bottom: 24rpx;
|
||||
|
||||
.detail-form-item {
|
||||
margin-bottom: 16rpx;
|
||||
font-size: 26rpx;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-goods {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 630rpx;
|
||||
border-radius: 16rpx;
|
||||
margin-bottom: 20rpx;
|
||||
padding-bottom: 1rpx;
|
||||
box-sizing: border-box;
|
||||
border-bottom: 2rpx solid #f1f1f1;
|
||||
|
||||
.popup-goods-left {
|
||||
margin-right: 24rpx;
|
||||
}
|
||||
|
||||
.popup-goods-right {
|
||||
flex-grow: 1;
|
||||
|
||||
.popup-goods-right-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
.goods_name {
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.goods_price {
|
||||
font-weight: bold;
|
||||
font-size: 24rpx;
|
||||
color: #060606;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-goods-num {
|
||||
margin-bottom: 20rpx;
|
||||
font-size: 24rpx;
|
||||
color: #777777;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.popup-goods-total {
|
||||
text-align: right;
|
||||
|
||||
.popup-goods-total-num {
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
.popup-goods-total-price {
|
||||
font-size: 26rpx;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<template>
|
||||
<view class="detail">
|
||||
<view class="detail-order_num">订单编号:123123123</view>
|
||||
<view class="detail-form">
|
||||
<view class="detail-form-item">收货人:</view>
|
||||
<view class="detail-form-item">核销码:</view>
|
||||
<view class="detail-form-item">核销门店:</view>
|
||||
<view class="detail-form-item">核销时间:</view>
|
||||
</view>
|
||||
|
||||
<view class="popup-goods">
|
||||
<view class="popup-goods-left">
|
||||
<u-image width="100rpx" height="100rpx" radius="8rpx" />
|
||||
</view>
|
||||
<view class="popup-goods-right">
|
||||
<view class="popup-goods-right-info">
|
||||
<text class='goods_name'>黄牛牛肉</text>
|
||||
<text class="goods_price">¥10.00</text>
|
||||
</view>
|
||||
<view class="popup-goods-num">x5</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="popup-goods-total">
|
||||
<text class="popup-goods-total-num">共5件商品,总金额</text>
|
||||
<text class="popup-goods-total-price">¥50.00</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
|
@ -0,0 +1,191 @@
|
|||
<style lang="scss">
|
||||
page {
|
||||
background: #FAFAFA;
|
||||
}
|
||||
|
||||
.order {
|
||||
padding-bottom: 30rpx;
|
||||
|
||||
.order-search {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 10;
|
||||
display: flex;
|
||||
height: 90rpx;
|
||||
background-color: #fff;
|
||||
padding: 0 24rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.order-search-txt {
|
||||
position: absolute;
|
||||
right: 28rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
width: 110rpx;
|
||||
height: 52rpx;
|
||||
line-height: 52rpx;
|
||||
text-align: center;
|
||||
background: #FFFFFF;
|
||||
border-radius: 30rpx 30rpx 30rpx 30rpx;
|
||||
font-size: 28rpx;
|
||||
color: #20B128;
|
||||
}
|
||||
}
|
||||
|
||||
.order-list {
|
||||
padding-top: 24rpx;
|
||||
height: calc(100vh - 90rpx - 24rpx - 30rpx);
|
||||
|
||||
.order-list-item {
|
||||
width: 710rpx;
|
||||
background: #FFFFFF;
|
||||
border-radius: 12rpx;
|
||||
margin: 0 auto 24rpx;
|
||||
padding: 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.order-list-item-order_num {
|
||||
height: 74rpx;
|
||||
line-height: 74rpx;
|
||||
font-weight: 600;
|
||||
font-size: 26rpx;
|
||||
color: #333333;
|
||||
border-bottom: 2rpx solid #F1F1F1;
|
||||
}
|
||||
|
||||
.order-list-item-trans {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
padding: 16rpx 0 24rpx 0;
|
||||
|
||||
.order-list-item-trans-left {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-right: 38rpx;
|
||||
}
|
||||
|
||||
.order-list-item-trans-right {
|
||||
.order-type {
|
||||
margin-bottom: 10rpx;
|
||||
font-weight: 600;
|
||||
font-size: 32rpx;
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
.order-reciver {
|
||||
margin-bottom: 10rpx;
|
||||
font-size: 26rpx;
|
||||
color: #777777;
|
||||
}
|
||||
|
||||
.order-verification-time {
|
||||
width: 500rpx;
|
||||
font-size: 26rpx;
|
||||
color: #777777;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.order-tab {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
width: 100%;
|
||||
height: 102rpx;
|
||||
background-color: #fff;
|
||||
|
||||
.order-tab-item {
|
||||
font-size: 32rpx;
|
||||
color: #444444;
|
||||
}
|
||||
|
||||
.order-tab-active {
|
||||
position: relative;
|
||||
font-weight: bold;
|
||||
font-size: 32rpx;
|
||||
color: #20B128;
|
||||
|
||||
&::after {
|
||||
content: "";
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 52rpx;
|
||||
height: 6rpx;
|
||||
border-radius: 6rpx;
|
||||
background-color: #20B128;
|
||||
bottom: -20rpx;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<template>
|
||||
<view class="order">
|
||||
<view class="order-search">
|
||||
<u-search :animation="true" :showAction="false" bgColor="#f6f6f6" placeholder="请输入门店"></u-search>
|
||||
<view class="order-search-txt">搜索</view>
|
||||
</view>
|
||||
|
||||
<view class="order-tab">
|
||||
<view class="order-tab-item" @click="onTabChange(1)" :class="{'order-tab-active':orderTab==1}">待配送(0)</view>
|
||||
<view class="order-tab-item" @click="onTabChange(2)" :class="{'order-tab-active':orderTab==2}">已配送(0)</view>
|
||||
</view>
|
||||
|
||||
<view class="order-list">
|
||||
<scroll-view style="height: 100%;" :scroll-y="true" @scroll="onScroll">
|
||||
<view class="order-list-wrap">
|
||||
<view class="order-list-item" v-for="item in 10">
|
||||
<view class="order-list-item-order_num">订单编号:123123123123</view>
|
||||
<view class="order-list-item-trans">
|
||||
<view class="order-list-item-trans-right">
|
||||
<view class="order-type">配送订单</view>
|
||||
<view class="order-reciver">收货人:李斯</view>
|
||||
<view class="order-verification-time">商品信息:黄牛牛腩块2kg*5</view>
|
||||
</view>
|
||||
|
||||
<view class="order-list-item-trans-left">
|
||||
<u-image width="76rpx" height="76rpx" src="../../multipleShop/images/scan.png" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<u-empty mode="data" icon="http://cdn.uviewui.com/uview/empty/data.png">
|
||||
</u-empty>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
onLoad
|
||||
} from "@dcloudio/uni-app";
|
||||
import {
|
||||
ref
|
||||
} from "vue";
|
||||
|
||||
// tab切换
|
||||
const orderTab = ref(1);
|
||||
const onTabChange = (e) => {
|
||||
orderTab.value = e;
|
||||
}
|
||||
|
||||
|
||||
uni.login({
|
||||
success(res) {
|
||||
console.log(res);
|
||||
}
|
||||
})
|
||||
|
||||
const onScroll = (e) => {
|
||||
console.log(e);
|
||||
}
|
||||
</script>
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "purchase-let",
|
||||
"name": "purchase_let",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "purchase-let",
|
||||
"name": "purchase_let",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
40
pages.json
|
@ -22,6 +22,18 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/index/test",
|
||||
"style": {
|
||||
"navigationBarTitleText": "购物",
|
||||
"disableScroll": true,
|
||||
"enablePullDownRefresh": false,
|
||||
"app-plus": {
|
||||
// 将回弹属性关掉
|
||||
"bounce": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/login/login",
|
||||
"style": {
|
||||
|
@ -56,6 +68,34 @@
|
|||
|
||||
],
|
||||
"subPackages": [{
|
||||
"root": "multipleShop",
|
||||
"pages": [{
|
||||
"path": "index/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "选择门店",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
|
||||
}, {
|
||||
"path": "verificationOrder/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "核销订单",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}, {
|
||||
"path": "verificationOrder/detail",
|
||||
"style": {
|
||||
"navigationBarTitleText": "核销订单详情",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}, {
|
||||
"path": "orderVerification/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "订单核销",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}]
|
||||
}, {
|
||||
"root": "pagesOrder",
|
||||
"pages": [{
|
||||
"path": "order/order",
|
||||
|
|
|
@ -0,0 +1,127 @@
|
|||
<style lang="scss">
|
||||
.detail {
|
||||
width: 710rpx;
|
||||
background: #FFFFFF;
|
||||
border-radius: 12rpx;
|
||||
margin: 24rpx auto 0;
|
||||
padding: 0 30rpx 24rpx;
|
||||
box-sizing: border-box;
|
||||
|
||||
.detail-order_num {
|
||||
height: 78rpx;
|
||||
line-height: 78rpx;
|
||||
margin-bottom: 24rpx;
|
||||
font-weight: 600;
|
||||
font-size: 26rpx;
|
||||
color: #333333;
|
||||
border-bottom: 2rpx solid #f1f1f1;
|
||||
}
|
||||
|
||||
.detail-form {
|
||||
border-bottom: 2rpx solid #f1f1f1;
|
||||
margin-bottom: 24rpx;
|
||||
|
||||
.detail-form-item {
|
||||
margin-bottom: 16rpx;
|
||||
font-size: 26rpx;
|
||||
color: #333333;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-goods {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 630rpx;
|
||||
border-radius: 16rpx;
|
||||
margin-bottom: 20rpx;
|
||||
padding-bottom: 1rpx;
|
||||
box-sizing: border-box;
|
||||
border-bottom: 2rpx solid #f1f1f1;
|
||||
|
||||
.popup-goods-left {
|
||||
margin-right: 24rpx;
|
||||
}
|
||||
|
||||
.popup-goods-right {
|
||||
flex-grow: 1;
|
||||
|
||||
.popup-goods-right-info {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 20rpx;
|
||||
|
||||
.goods_name {
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.goods_price {
|
||||
font-weight: bold;
|
||||
font-size: 24rpx;
|
||||
color: #060606;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-goods-num {
|
||||
margin-bottom: 20rpx;
|
||||
font-size: 24rpx;
|
||||
color: #777777;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.popup-goods-total {
|
||||
text-align: right;
|
||||
|
||||
.popup-goods-total-num {
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
.popup-goods-total-price {
|
||||
font-size: 26rpx;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<template>
|
||||
<view class="detail">
|
||||
<view class="detail-order_num">订单编号:123123123</view>
|
||||
<view class="detail-form">
|
||||
<view class="detail-form-item">收货人:</view>
|
||||
<view class="detail-form-item">核销码:</view>
|
||||
<view class="detail-form-item">联系电话:</view>
|
||||
<view class="detail-form-item">核销门店:</view>
|
||||
<view class="detail-form-item">核销时间:</view>
|
||||
</view>
|
||||
|
||||
<view class="popup-goods">
|
||||
<view class="popup-goods-left">
|
||||
<u-image width="100rpx" height="100rpx" radius="8rpx" />
|
||||
</view>
|
||||
<view class="popup-goods-right">
|
||||
<view class="popup-goods-right-info">
|
||||
<text class='goods_name'>黄牛牛肉</text>
|
||||
<text class="goods_price">¥10.00</text>
|
||||
</view>
|
||||
<view class="popup-goods-num">x5</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="popup-goods-total">
|
||||
<text class="popup-goods-total-num">共5件商品,总金额</text>
|
||||
<text class="popup-goods-total-price">¥50.00</text>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
<script setup>
|
||||
uni.login({
|
||||
success(res) {
|
||||
console.log(res);
|
||||
}
|
||||
})
|
||||
</script>
|
|
@ -95,9 +95,9 @@
|
|||
|
||||
const showOfficial = ref(false);
|
||||
const navToIndex = () => {
|
||||
if (userStore.userInfo && userStore.token) uni.reLaunch({
|
||||
url: '/pages/index/index'
|
||||
})
|
||||
if (userStore.userInfo && userStore.token) uni.reLaunch({
|
||||
url: '/pages/index/index'
|
||||
})
|
||||
// if (!userStore.userInfo.supplier) uni.reLaunch({
|
||||
// url: '/pages/index/index'
|
||||
// })
|
||||
|
|