Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1d6ef74781 | ||
|
|
8df341ff9e | ||
|
|
13a4e21be5 | ||
|
|
db6b1af326 | ||
|
|
f7a9a2b567 | ||
|
|
daa0d18501 | ||
|
|
06e17a74b3 | ||
|
|
973450b37a | ||
|
|
7376e40fe3 | ||
|
|
6d8284e78f | ||
|
|
cfb461829f | ||
|
|
8c15aadf21 | ||
|
|
65745d3033 | ||
|
|
3616caac21 | ||
|
|
b4dcfe7879 | ||
|
|
38b640e82b | ||
|
|
85d5d59863 | ||
|
|
51f3953459 | ||
|
|
b1e90ff1a9 | ||
|
|
de90f1249e | ||
|
|
3a5460894b | ||
|
|
e6ccfdafd6 | ||
|
|
9df5bc0e46 | ||
|
|
4dfa7d627e | ||
|
|
ff1e6f60e0 | ||
|
|
c4f43a0626 | ||
| 74d644c46b | |||
| 3400c9422d | |||
| b88b0b548f | |||
| 005c6336c0 | |||
| 1582bb85f1 | |||
| c36717a059 | |||
| 3f2ea98977 | |||
| 0d298f8413 | |||
| f6b0db3a70 |
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"files.associations": {
|
||||||
|
"*.ttml": "xml",
|
||||||
|
"*.ttss": "css"
|
||||||
|
}
|
||||||
|
}
|
||||||
143
App.vue
143
App.vue
@@ -6,8 +6,9 @@ App.vue本身不是页面,这里不能编写视图元素,也就是没有<tem
|
|||||||
import {
|
import {
|
||||||
onLaunch
|
onLaunch
|
||||||
} from '@dcloudio/uni-app';
|
} from '@dcloudio/uni-app';
|
||||||
|
import { getFindBySource } from '@/http/yskApi/version.js'
|
||||||
onLaunch(() => {
|
onLaunch(() => {
|
||||||
|
let that = this
|
||||||
uni.hideTabBar()
|
uni.hideTabBar()
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
const updateManager = wx.getUpdateManager() // 小程序版本更新管理器
|
const updateManager = wx.getUpdateManager() // 小程序版本更新管理器
|
||||||
@@ -23,6 +24,146 @@ App.vue本身不是页面,这里不能编写视图元素,也就是没有<tem
|
|||||||
// 新版本下载失败
|
// 新版本下载失败
|
||||||
})
|
})
|
||||||
// #endif
|
// #endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//#ifdef APP-PLUS
|
||||||
|
//获取当前系统版本信息
|
||||||
|
plus.runtime.getProperty(plus.runtime.appid, widgetInfo => {
|
||||||
|
//请求后台接口 解析数据 对比版本
|
||||||
|
console.log("widgetInfo==",widgetInfo)
|
||||||
|
getFindBySource({source:'APP'}).then(res => {
|
||||||
|
console.log("selectNewApp==",res)
|
||||||
|
console.log("version===",res.url && widgetInfo.version < res.version)
|
||||||
|
if (res.url && widgetInfo.version < res.version) {
|
||||||
|
console.log("version===222")
|
||||||
|
let downloadLink = res.url;
|
||||||
|
// let downloadLink = "https://short-video.hnsiyao.cn/app/sy-duanju.apk";
|
||||||
|
console.log(downloadLink)
|
||||||
|
// let androidLink = res.androidWgtUrl;
|
||||||
|
// let iosLink = res.iosWgtUrl;
|
||||||
|
let ready = false;
|
||||||
|
// 校验是否强制升级
|
||||||
|
if (res.isUp == 1) {
|
||||||
|
uni.showModal({
|
||||||
|
showCancel: false,
|
||||||
|
title: '发现新版本',
|
||||||
|
confirmText: '立即更新',
|
||||||
|
content: res.message,
|
||||||
|
success: res => {
|
||||||
|
if (res.confirm) {
|
||||||
|
uni.showLoading('下载中...');
|
||||||
|
if (uni.getSystemInfoSync().platform ==
|
||||||
|
'android') {
|
||||||
|
uni.downloadFile({
|
||||||
|
url: downloadLink,
|
||||||
|
success: downloadResult => {
|
||||||
|
if (downloadResult.statusCode === 200) {
|
||||||
|
plus.io.resolveLocalFileSystemURL(downloadResult.tempFilePath, entry => {
|
||||||
|
entry.getParent(_oldFile=>{
|
||||||
|
entry.moveTo(_oldFile,'.apk',newFilePath=>{
|
||||||
|
console.log('newFilePath',newFilePath.fullPath)
|
||||||
|
plus.runtime
|
||||||
|
.install(newFilePath.fullPath, { force: false },
|
||||||
|
d => {
|
||||||
|
console
|
||||||
|
.log(
|
||||||
|
'install success...'
|
||||||
|
);
|
||||||
|
plus.runtime
|
||||||
|
.restart();
|
||||||
|
},
|
||||||
|
e => {
|
||||||
|
console.log(e)
|
||||||
|
console
|
||||||
|
.error(
|
||||||
|
'install fail...'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (uni.getSystemInfoSync().platform ==
|
||||||
|
'ios') {
|
||||||
|
plus.runtime.openURL(downloadLink, function(
|
||||||
|
res) {});
|
||||||
|
}
|
||||||
|
} else if (res.cancel) {
|
||||||
|
console.log('取消');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
uni.showModal({
|
||||||
|
title: '发现新版本',
|
||||||
|
confirmText: '立即更新',
|
||||||
|
cancelText: '下次更新',
|
||||||
|
content: res.message,
|
||||||
|
success: res => {
|
||||||
|
if (res.confirm) {
|
||||||
|
uni.showLoading('下载中...');
|
||||||
|
if (uni.getSystemInfoSync().platform ==
|
||||||
|
'android') {
|
||||||
|
uni.downloadFile({
|
||||||
|
url: downloadLink,
|
||||||
|
success: downloadResult => {
|
||||||
|
if (downloadResult
|
||||||
|
.statusCode ===
|
||||||
|
200) {
|
||||||
|
plus.io.resolveLocalFileSystemURL(downloadResult.tempFilePath, entry => {
|
||||||
|
entry.getParent(_oldFile=>{
|
||||||
|
entry.moveTo(_oldFile,'.apk',newFilePath=>{
|
||||||
|
console.log('newFilePath',newFilePath.fullPath)
|
||||||
|
plus.runtime
|
||||||
|
.install(newFilePath.fullPath, { force: false },
|
||||||
|
d => {
|
||||||
|
console
|
||||||
|
.log(
|
||||||
|
'install success...'
|
||||||
|
);
|
||||||
|
plus.runtime
|
||||||
|
.restart();
|
||||||
|
},
|
||||||
|
e => {
|
||||||
|
console.log(e)
|
||||||
|
console
|
||||||
|
.error(
|
||||||
|
'install fail...'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (uni.getSystemInfoSync().platform ==
|
||||||
|
'ios') {
|
||||||
|
plus.runtime.openURL(downloadLink, function(
|
||||||
|
res) {});
|
||||||
|
}
|
||||||
|
} else if (res.cancel) {
|
||||||
|
console.log('取消');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).catch((res)=>{
|
||||||
|
console.log(res)
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
// #endif
|
||||||
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
33
http/php/api.ts
Normal file
33
http/php/api.ts
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import { request } from './request'
|
||||||
|
// 会员签入 登录
|
||||||
|
export const douyincheckIn = (data : object | any) => {
|
||||||
|
return request('douyin/checkIn', 'POST', data, true)
|
||||||
|
}
|
||||||
|
// 登出
|
||||||
|
export const userlogout = () => {
|
||||||
|
return request('user/logout', 'POST', '', true)
|
||||||
|
}
|
||||||
|
// 查询绑定状态
|
||||||
|
export const searchstorestatus = (data : object) => {
|
||||||
|
return request('meituan/searchstorestatus', 'POST', data, true)
|
||||||
|
}
|
||||||
|
// 团购核销准备
|
||||||
|
export const fulfilmentcertificateprepare = (data : object) => {
|
||||||
|
return request('douyin/fulfilmentcertificateprepare', 'POST', data, true)
|
||||||
|
}
|
||||||
|
// 获取uisdk 绑定 链接
|
||||||
|
export const getuisdk = (data : object) => {
|
||||||
|
return request('douyin/getuisdk', 'POST', data, true)
|
||||||
|
}
|
||||||
|
// 团购核销
|
||||||
|
export const certificateprepares = (data : object) => {
|
||||||
|
return request('douyin/certificateprepare', 'POST', data, true)
|
||||||
|
}
|
||||||
|
// 团购核销记录
|
||||||
|
export const orderlist = (data : object) => {
|
||||||
|
return request('douyin/orderlist', 'POST', data, true)
|
||||||
|
}
|
||||||
|
// 团购核销撤销
|
||||||
|
export const fulfilmentcertificatecanceles = (data : object) => {
|
||||||
|
return request('douyin/fulfilmentcertificatecancel', 'POST', data, true)
|
||||||
|
}
|
||||||
80
http/php/request.ts
Normal file
80
http/php/request.ts
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
//服务器接口地址
|
||||||
|
const baseURL : string = 'https://czgdoumei.sxczgkj.com/index.php/api/'
|
||||||
|
// 封装公共请求方法
|
||||||
|
function request(url : string, method : "GET" | "POST" | undefined, data : object | any, toast : boolean) {
|
||||||
|
let networkType = ''
|
||||||
|
uni.getNetworkType({
|
||||||
|
success: (res) => {
|
||||||
|
networkType = res.networkType
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (networkType == 'none') {
|
||||||
|
uni.showToast({
|
||||||
|
title: '网络异常,请检查网络',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (toast) {
|
||||||
|
uni.showLoading({
|
||||||
|
title: '加载中',
|
||||||
|
mask: true
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return new Promise(async (resolve, reject) => {
|
||||||
|
let header : any
|
||||||
|
header = {
|
||||||
|
'content-type': 'application/json',
|
||||||
|
'clinttype':uni.getStorageSync('clint_type'),
|
||||||
|
'bausertoken': uni.getStorageSync('phpuserinfo').token
|
||||||
|
};
|
||||||
|
uni.request({
|
||||||
|
url: baseURL + url,
|
||||||
|
method: method,
|
||||||
|
data: data,
|
||||||
|
header: header,
|
||||||
|
success(res : any) {
|
||||||
|
if (res.data.code != 1) {
|
||||||
|
//是否提示错误
|
||||||
|
if (toast) {
|
||||||
|
uni.showToast({
|
||||||
|
title: res.data.msg || res.data.message,
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
setTimeout(() => {
|
||||||
|
uni.hideLoading()
|
||||||
|
}, 1000)
|
||||||
|
}
|
||||||
|
if (res.data.code == 401) {
|
||||||
|
uni.showToast({
|
||||||
|
title: res.message || res.msg,
|
||||||
|
icon: "none",
|
||||||
|
success: () => {
|
||||||
|
// uni.removeStorageSync('logintoken');
|
||||||
|
// uni.removeStorageSync('token');
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/index/index'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
uni.hideLoading()
|
||||||
|
reject(res.message | res.msg);
|
||||||
|
} else {
|
||||||
|
uni.hideLoading()
|
||||||
|
resolve(res.data.data);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fail(err) {
|
||||||
|
uni.hideLoading()
|
||||||
|
//请求失败
|
||||||
|
uni.showToast({
|
||||||
|
title: '无法连接到服务器',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
reject(err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
export { request, baseURL }
|
||||||
@@ -202,6 +202,7 @@ function request(args) {
|
|||||||
method: method,
|
method: method,
|
||||||
header: getHeader()
|
header: getHeader()
|
||||||
}, extParams)
|
}, extParams)
|
||||||
|
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,6 +24,17 @@ export function $bind(data) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// 转/并桌
|
||||||
|
export function tableswitch(data) {
|
||||||
|
return request({
|
||||||
|
url: '/api/place/switch',
|
||||||
|
method: "put",
|
||||||
|
data: {
|
||||||
|
shopId: uni.getStorageSync('shopId'),
|
||||||
|
...data
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
//获取台桌详情状态
|
//获取台桌详情状态
|
||||||
export function $returnTableDetail(data) {
|
export function $returnTableDetail(data) {
|
||||||
return request({
|
return request({
|
||||||
|
|||||||
15
http/yskApi/version.js
Normal file
15
http/yskApi/version.js
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import http from './http.js'
|
||||||
|
const request=http.request
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询所属渠道升级版本
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export function getFindBySource(params) {
|
||||||
|
return request({
|
||||||
|
url: `/api/tbVersion/findBySource`,
|
||||||
|
method: 'get',
|
||||||
|
params
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -51,6 +51,9 @@
|
|||||||
} from 'vue';
|
} from 'vue';
|
||||||
import color from '@/commons/color.js';
|
import color from '@/commons/color.js';
|
||||||
import go from '@/commons/utils/go.js';
|
import go from '@/commons/utils/go.js';
|
||||||
|
import {
|
||||||
|
onLoad,
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
import {
|
import {
|
||||||
tbShopPurveyorput
|
tbShopPurveyorput
|
||||||
} from '@/http/yskApi/requestAll.js';
|
} from '@/http/yskApi/requestAll.js';
|
||||||
@@ -62,17 +65,15 @@
|
|||||||
type: String
|
type: String
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
onMounted(() => {
|
onLoad((d)=>{
|
||||||
datas.form = JSON.parse(props.item)
|
datas.form = JSON.parse(d.item)
|
||||||
})
|
})
|
||||||
|
|
||||||
function sumbit() {
|
function sumbit() {
|
||||||
tbShopPurveyorput({
|
tbShopPurveyorput({
|
||||||
shopId: uni.getStorageSync("shopId"),
|
shopId: uni.getStorageSync("shopId"),
|
||||||
|
|
||||||
...datas.form
|
...datas.form
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
// go.to('PAGES_SUPPLIER')
|
|
||||||
go.back()
|
go.back()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,14 +12,15 @@
|
|||||||
<view class="block">
|
<view class="block">
|
||||||
<view class="border-top-0 typeEnum">
|
<view class="border-top-0 typeEnum">
|
||||||
<uni-forms-item label="商品类型" required showRequired>
|
<uni-forms-item label="商品类型" required showRequired>
|
||||||
<up-radio-group v-model="FormData.type" placement="row">
|
<up-radio-group v-model="FormData.type" placement="row"
|
||||||
|
@change="changeFormDatatype">
|
||||||
<up-radio v-for="(item, index) in pageData.types" :key="index"
|
<up-radio v-for="(item, index) in pageData.types" :key="index"
|
||||||
:label="item.name" :name="item.value">
|
:label="item.name" :name="item.value">
|
||||||
</up-radio>
|
</up-radio>
|
||||||
</up-radio-group>
|
</up-radio-group>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
</view>
|
</view>
|
||||||
<view class="" v-if="FormData.type!='package'">
|
<view class="" v-if="FormData.type!='package' && FormData.type!='weigh'">
|
||||||
<uni-forms-item label="商品规格" required showRequired>
|
<uni-forms-item label="商品规格" required showRequired>
|
||||||
<up-radio-group v-model="FormData.typeEnum" placement="row">
|
<up-radio-group v-model="FormData.typeEnum" placement="row">
|
||||||
<up-radio :custom-style="{marginRight:'30px'}"
|
<up-radio :custom-style="{marginRight:'30px'}"
|
||||||
@@ -39,6 +40,10 @@
|
|||||||
</up-radio-group>
|
</up-radio-group>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
</view>
|
</view>
|
||||||
|
<uni-forms-item required name="name" label="商品名称" showRequired>
|
||||||
|
<uni-easyinput :paddingNone="inputPaddingNone" :placeholderStyle="placeholderStyle"
|
||||||
|
:inputBorder="inputBorder" v-model="FormData.name" placeholder="请输入商品名称" />
|
||||||
|
</uni-forms-item>
|
||||||
<uni-forms-item ref="fileItem" label="图片" required showRequired>
|
<uni-forms-item ref="fileItem" label="图片" required showRequired>
|
||||||
<my-upload-file ref="refFile" :images="FormData.images"
|
<my-upload-file ref="refFile" :images="FormData.images"
|
||||||
:imageStyles="imageStyles"></my-upload-file>
|
:imageStyles="imageStyles"></my-upload-file>
|
||||||
@@ -55,33 +60,27 @@
|
|||||||
</up-checkbox-group>
|
</up-checkbox-group>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
</view>
|
</view>
|
||||||
<template v-if="FormData.type!='package'">
|
<view class="u-relative">
|
||||||
<uni-forms-item required name="name" label="商品名称" showRequired>
|
<uni-forms-item label="商品分类" required showRequired name="categoryId">
|
||||||
<uni-easyinput :paddingNone="inputPaddingNone" :placeholderStyle="placeholderStyle"
|
<uni-data-picker :clear-icon="false" :map="{text:'name',value:'id'}"
|
||||||
:inputBorder="inputBorder" v-model="FormData.name" placeholder="请输入商品名称" />
|
placeholder="请选择商品分类" popup-title="请选择商品分类" :localdata="pageData.category"
|
||||||
|
v-model="FormData.categoryId">
|
||||||
|
</uni-data-picker>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
<view class="u-relative">
|
<view class="zhezhao u-absolute position-all" @click="canEditGoodsCategory(true)"
|
||||||
<uni-forms-item label="商品分类" required showRequired name="categoryId">
|
v-if="option.type=='edit'&&disabledChangeCategory">
|
||||||
<uni-data-picker :clear-icon="false" :map="{text:'name',value:'id'}"
|
|
||||||
placeholder="请选择商品分类" popup-title="请选择商品分类" :localdata="pageData.category"
|
|
||||||
v-model="FormData.categoryId">
|
|
||||||
</uni-data-picker>
|
|
||||||
</uni-forms-item>
|
|
||||||
<view class="zhezhao u-absolute position-all" @click="canEditGoodsCategory(true)"
|
|
||||||
v-if="option.type=='edit'&&disabledChangeCategory">
|
|
||||||
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
<view class="border-top-0">
|
</view>
|
||||||
<uni-forms-item label="单位" required showRequired name="units">
|
<view class="">
|
||||||
|
<uni-forms-item label="单位" required showRequired name="units">
|
||||||
|
|
||||||
<uni-data-picker :clear-icon="false" @change="unitIdChange"
|
<uni-data-picker :clear-icon="false" @change="unitIdChange"
|
||||||
:map="{text:'name',value:'id'}" placeholder="请选择单位" popup-title="请选择单位"
|
:map="{text:'name',value:'id'}" placeholder="请选择单位" popup-title="请选择单位"
|
||||||
:localdata="pageData.units" v-model="FormData.unitId">
|
:localdata="pageData.units" v-model="FormData.unitId">
|
||||||
</uni-data-picker>
|
</uni-data-picker>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
|
||||||
<template v-if="FormData.type==='package'">
|
<template v-if="FormData.type==='package'">
|
||||||
<!-- <view class="block border-top-0">
|
<!-- <view class="block border-top-0">
|
||||||
<uni-forms-item label="选择规格" required name="categoryId">
|
<uni-forms-item label="选择规格" required name="categoryId">
|
||||||
@@ -92,7 +91,8 @@
|
|||||||
</uni-data-picker>
|
</uni-data-picker>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="border-top" >
|
|
||||||
|
<view class="border-top" v-if="FormData.proGroupVo">
|
||||||
<view class=""
|
<view class=""
|
||||||
v-if=" (FormData.groupType==1&&FormData.proGroupVo.length)||(FormData.groupType==0&&FormData.proGroupVo.length&&FormData.proGroupVo[0].goods.length) ">
|
v-if=" (FormData.groupType==1&&FormData.proGroupVo.length)||(FormData.groupType==0&&FormData.proGroupVo.length&&FormData.proGroupVo[0].goods.length) ">
|
||||||
<view class="border-bottom u-p-b-32"
|
<view class="border-bottom u-p-b-32"
|
||||||
@@ -512,16 +512,16 @@
|
|||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="FormData.type=='weight'">
|
<template v-if="FormData.type=='weigh'">
|
||||||
<view class="block u-p-t-32 u-p-b-32">
|
<view class="block u-p-t-32 u-p-b-32">
|
||||||
<view class="font-bold">
|
<view class="font-bold">
|
||||||
<text class="color-red">*</text>
|
<text class="color-red">*</text>
|
||||||
<text>重量</text>
|
<text>单位</text>
|
||||||
</view>
|
</view>
|
||||||
<view class=" u-m-t-16">
|
<view class=" u-m-t-16">
|
||||||
<up-input v-model="FormData.weight">
|
<up-input v-model="FormData.weight">
|
||||||
<template #suffix>
|
<template #suffix>
|
||||||
<view class="bg-gray">千克</view>
|
<view class="bg-gray">{{activeinHouseList}}</view>
|
||||||
</template>
|
</template>
|
||||||
</up-input>
|
</up-input>
|
||||||
<view class="u-m-t-16 color-999 u-font-24">用于快递或配送运费计重</view>
|
<view class="u-m-t-16 color-999 u-font-24">用于快递或配送运费计重</view>
|
||||||
@@ -541,11 +541,10 @@
|
|||||||
</view>
|
</view>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
</view> -->
|
</view> -->
|
||||||
<view class="border-top-0">
|
<!-- <view class="border-top-0">
|
||||||
<view class="u-flex u-row-between u-p-b-24 u-p-t-20">
|
<view class="u-flex u-row-between u-p-b-24 u-p-t-20">
|
||||||
<view class="label-title">是否允许临时改价</view>
|
<view class="label-title">是否允许临时改价</view>
|
||||||
<my-switch disabled :openDisabledClass="false"
|
<my-switch v-model="FormData.isTempPrice"></my-switch>
|
||||||
v-model="FormData.isTempPrice"></my-switch>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="u-p-t-24 u-p-b-24 border-top u-flex u-row-between">
|
<view class="u-p-t-24 u-p-b-24 border-top u-flex u-row-between">
|
||||||
@@ -574,18 +573,20 @@
|
|||||||
<price-number-box placeholder="请输入每人限购"
|
<price-number-box placeholder="请输入每人限购"
|
||||||
v-model="FormData.singlePeopleLimit"></price-number-box>
|
v-model="FormData.singlePeopleLimit"></price-number-box>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view> -->
|
||||||
<view>
|
<view>
|
||||||
<uni-forms-item label="">
|
<uni-forms-item label="">
|
||||||
<view class="u-flex u-row-between" @tap="toTimerPage">
|
<view class="u-flex u-row-between" @tap="toTimerPage">
|
||||||
<view>
|
<view style="display: flex;">
|
||||||
|
<text class="color-red">*</text>
|
||||||
<view class="label-title">定时上下架</view>
|
<view class="label-title">定时上下架</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="u-flex u-font-24">
|
<view class="u-flex u-font-24">
|
||||||
<view>
|
<view>
|
||||||
<view class="color-666">{{returnTimerDayText()}}</view>
|
<view class="color-666">{{returnTimerDayText()}}</view>
|
||||||
<view class="color-666 u-m-t-4" v-if="FormData.days">
|
<view class="color-666 u-m-t-4" v-if="FormData.days">
|
||||||
{{returnTimerTimeText()}}</view>
|
{{returnTimerTimeText()}}
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<uni-icons type="right"></uni-icons>
|
<uni-icons type="right"></uni-icons>
|
||||||
</view>
|
</view>
|
||||||
@@ -897,13 +898,13 @@
|
|||||||
let proGroupVoGoodsIndex = undefined
|
let proGroupVoGoodsIndex = undefined
|
||||||
|
|
||||||
function refChooseGuigeOpen(skuList, groupIndex, goodsIndex) {
|
function refChooseGuigeOpen(skuList, groupIndex, goodsIndex) {
|
||||||
|
console.log(groupIndex, goodsIndex)
|
||||||
proGroupVoIndex = groupIndex
|
proGroupVoIndex = groupIndex
|
||||||
proGroupVoGoodsIndex = goodsIndex
|
proGroupVoGoodsIndex = goodsIndex
|
||||||
refChooseGuige.value.open(skuList)
|
refChooseGuige.value.open(skuList)
|
||||||
}
|
}
|
||||||
|
|
||||||
function refChooseGuigeConfirm(sku) {
|
function refChooseGuigeConfirm(sku) {
|
||||||
console.log(sku);
|
|
||||||
FormData.proGroupVo[proGroupVoIndex].goods[proGroupVoGoodsIndex].skuName = sku.specSnap || sku.name
|
FormData.proGroupVo[proGroupVoIndex].goods[proGroupVoGoodsIndex].skuName = sku.specSnap || sku.name
|
||||||
FormData.proGroupVo[proGroupVoIndex].goods[proGroupVoGoodsIndex].skuId = sku.id
|
FormData.proGroupVo[proGroupVoIndex].goods[proGroupVoGoodsIndex].skuId = sku.id
|
||||||
proGroupVoIndex = undefined
|
proGroupVoIndex = undefined
|
||||||
@@ -917,7 +918,7 @@
|
|||||||
|
|
||||||
function proGroupVoAddGoods(index, arr) {
|
function proGroupVoAddGoods(index, arr) {
|
||||||
proGroupVoIndex = index
|
proGroupVoIndex = index
|
||||||
if(!FormData.proGroupVo){
|
if (!FormData.proGroupVo) {
|
||||||
initDefaultProGroupVo()
|
initDefaultProGroupVo()
|
||||||
}
|
}
|
||||||
if (FormData.groupType == 0) {
|
if (FormData.groupType == 0) {
|
||||||
@@ -946,7 +947,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function refChooseGoodsConfirm(arr) {
|
function refChooseGoodsConfirm(arr) {
|
||||||
console.log(arr);
|
|
||||||
refChooseGoodsClose()
|
refChooseGoodsClose()
|
||||||
arr = arr.map(v => {
|
arr = arr.map(v => {
|
||||||
const {
|
const {
|
||||||
@@ -975,10 +975,8 @@
|
|||||||
skuName: ''
|
skuName: ''
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
console.log(arr);
|
|
||||||
console.log(FormData.groupType);
|
|
||||||
if (FormData.groupType == 0) {
|
if (FormData.groupType == 0) {
|
||||||
console.log(FormData.proGroupVo[0]);
|
|
||||||
return FormData.proGroupVo[0].goods = arr
|
return FormData.proGroupVo[0].goods = arr
|
||||||
}
|
}
|
||||||
if (FormData.groupType == 1 && proGroupVoIndex !== undefined) {
|
if (FormData.groupType == 1 && proGroupVoIndex !== undefined) {
|
||||||
@@ -1231,15 +1229,15 @@
|
|||||||
//表单边框
|
//表单边框
|
||||||
const inputBorder = ref(false)
|
const inputBorder = ref(false)
|
||||||
const FormData = reactive({
|
const FormData = reactive({
|
||||||
days: '',
|
days: "Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||||
startTime: '',
|
endTime: "23:59",
|
||||||
endTime: '',
|
startTime: "00:00",
|
||||||
//每日销量上限,
|
//每日销量上限,
|
||||||
dayLimit: 0,
|
dayLimit: 0,
|
||||||
singleOrderLimit:0,
|
singleOrderLimit: 0,
|
||||||
singlePeopleLimit:0,
|
singlePeopleLimit: 0,
|
||||||
type: 'normal',
|
type: 'normal',
|
||||||
showType: 'table',
|
showType: ['table'],
|
||||||
specsInfoName: '',
|
specsInfoName: '',
|
||||||
id: "",
|
id: "",
|
||||||
typeEnum: "normal",
|
typeEnum: "normal",
|
||||||
@@ -1365,7 +1363,7 @@
|
|||||||
res.specsInfoName = specsInfoName
|
res.specsInfoName = specsInfoName
|
||||||
$goodsData = res
|
$goodsData = res
|
||||||
skuList.list = res.skuList
|
skuList.list = res.skuList
|
||||||
res.showType=res.showType.split(',')
|
res.showType = res.showType.split(',')
|
||||||
Object.assign(FormData, res)
|
Object.assign(FormData, res)
|
||||||
//多规格
|
//多规格
|
||||||
if (res.typeEnum === 'sku') {
|
if (res.typeEnum === 'sku') {
|
||||||
@@ -1573,6 +1571,12 @@
|
|||||||
getTbShopUnit()
|
getTbShopUnit()
|
||||||
getTbProductSpec()
|
getTbProductSpec()
|
||||||
})
|
})
|
||||||
|
const changeFormDatatype = (e) => {
|
||||||
|
console.log(e)
|
||||||
|
console.log(FormData)
|
||||||
|
// 当是称重商品时 默认是单规格
|
||||||
|
FormData.typeEnum = 'normal'
|
||||||
|
}
|
||||||
|
|
||||||
onShow(() => {
|
onShow(() => {
|
||||||
// if (option.type === 'edit') {
|
// if (option.type === 'edit') {
|
||||||
@@ -1686,13 +1690,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (type == 'package') {
|
if (type == 'package') {
|
||||||
if (groupType == 0) {
|
if (groupType == 0 && FormData.proGroupVo[0].goods.length <= 0) {
|
||||||
// 固定套餐
|
// 固定套餐
|
||||||
|
return infoBox.showToast('套餐组合至少需要包含一种商品,请添加商品')
|
||||||
}
|
}
|
||||||
if (groupType == 1) {
|
if (groupType == 1) {
|
||||||
let ispase = FormData.proGroupVo.length > 0 ? true : false
|
let ispase = FormData.proGroupVo.length > 0 ? true : false
|
||||||
let tips = ispase ? '' : '请添加至少一种套餐'
|
let tips = ispase ? '' : '请添加至少一种套餐'
|
||||||
for (let i in FormData.proGroupVo) {
|
for (let i in FormData.proGroupVo) {
|
||||||
|
FormData.proGroupVo[i].count = FormData.proGroupVo[i].goods.length
|
||||||
const item = FormData.proGroupVo[i]
|
const item = FormData.proGroupVo[i]
|
||||||
if (item.goods.length <= 0) {
|
if (item.goods.length <= 0) {
|
||||||
ispase = false
|
ispase = false
|
||||||
@@ -1711,14 +1717,14 @@
|
|||||||
// 可选套餐
|
// 可选套餐
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (type == 'weight') {
|
if (type == 'weigh') {
|
||||||
if (!FormData.weight) {
|
if (!FormData.weight) {
|
||||||
return infoBox.showToast('请输入重量')
|
return infoBox.showToast('请输入重量')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const submitData = {
|
const submitData = {
|
||||||
...FormData,
|
...FormData,
|
||||||
showType:FormData.showType.join(','),
|
showType: FormData.showType.join(','),
|
||||||
proGroupVo: type != 'package' ? '' : FormData.proGroupVo,
|
proGroupVo: type != 'package' ? '' : FormData.proGroupVo,
|
||||||
images: images,
|
images: images,
|
||||||
coverImg: images[0] || '',
|
coverImg: images[0] || '',
|
||||||
@@ -1744,6 +1750,19 @@
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 如果套餐没选择规格,默认选中第一条
|
||||||
|
console.log(submitData.proGroupVo)
|
||||||
|
if (submitData.proGroupVo) {
|
||||||
|
submitData.proGroupVo.forEach((res, index) => {
|
||||||
|
submitData.proGroupVo[index].goods.forEach(ele => {
|
||||||
|
if (!ele.skuId) {
|
||||||
|
ele.skuId = ele.skuList[0].id
|
||||||
|
ele.skuName = ele.skuList[0].specSnap || ele.skuList[0].name
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
submitData.selectSpec =
|
submitData.selectSpec =
|
||||||
$addProduct(submitData).then(res => {
|
$addProduct(submitData).then(res => {
|
||||||
infoBox.showSuccessToast('添加成功')
|
infoBox.showSuccessToast('添加成功')
|
||||||
@@ -1767,7 +1786,6 @@
|
|||||||
return result.replace(/.$/, "")
|
return result.replace(/.$/, "")
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 监听规格保存,拿到数据
|
* 监听规格保存,拿到数据
|
||||||
*/
|
*/
|
||||||
@@ -1931,12 +1949,15 @@
|
|||||||
watch(() => FormData.type, (newval) => {
|
watch(() => FormData.type, (newval) => {
|
||||||
if (option.type == 'edit') {
|
if (option.type == 'edit') {
|
||||||
if (newval == $goodsData.type) {
|
if (newval == $goodsData.type) {
|
||||||
if($goodsData.proGroupVo){
|
if ($goodsData.proGroupVo) {
|
||||||
FormData.proGroupVo = $goodsData.proGroupVo||[]
|
FormData.proGroupVo = $goodsData.proGroupVo || []
|
||||||
}else{
|
} else {
|
||||||
initDefaultProGroupVo()
|
initDefaultProGroupVo()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (FormData.groupType == null) {
|
||||||
|
FormData.groupType = 0
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (newval == 'package') {
|
if (newval == 'package') {
|
||||||
initDefaultProGroupVo()
|
initDefaultProGroupVo()
|
||||||
@@ -2002,11 +2023,22 @@
|
|||||||
disabledChangeCategory.value = !res
|
disabledChangeCategory.value = !res
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const activeinHouseList = computed(() => {
|
||||||
|
try {
|
||||||
|
return pageData.units.filter((item) => {
|
||||||
|
if (item.id == FormData.unitId) {
|
||||||
|
return item.name
|
||||||
|
}
|
||||||
|
})[0].name
|
||||||
|
} catch (error) {
|
||||||
|
//TODO handle the exception
|
||||||
|
}
|
||||||
|
});
|
||||||
/**
|
/**
|
||||||
* 权限end
|
* 权限end
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
watch(() => pageData.types, (newval) => {
|
watch(() => pageData.types, (newval) => {
|
||||||
Forms.value.setRules(rules)
|
Forms.value.setRules(rules)
|
||||||
})
|
})
|
||||||
@@ -2017,6 +2049,7 @@
|
|||||||
onReady(() => {
|
onReady(() => {
|
||||||
Forms.value && Forms.value.setRules(rules)
|
Forms.value && Forms.value.setRules(rules)
|
||||||
})
|
})
|
||||||
|
|
||||||
onBeforeUnmount(() => {
|
onBeforeUnmount(() => {
|
||||||
clearTimeout(timer)
|
clearTimeout(timer)
|
||||||
})
|
})
|
||||||
@@ -2130,7 +2163,8 @@
|
|||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
::v-deep .typeEnum .u-checkbox-group--row{
|
|
||||||
|
::v-deep .typeEnum .u-checkbox-group--row {
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,7 +91,8 @@
|
|||||||
const hour = times.value[0][indexArr[0]]
|
const hour = times.value[0][indexArr[0]]
|
||||||
const month = times.value[1][indexArr[1]]
|
const month = times.value[1][indexArr[1]]
|
||||||
const s = times.value[2][indexArr[2]]
|
const s = times.value[2][indexArr[2]]
|
||||||
return `${hour}:${month}:${s}`
|
// return `${hour}:${month}:${s}`
|
||||||
|
return `${hour}:${month}`
|
||||||
}
|
}
|
||||||
//获取$event.detail.value
|
//获取$event.detail.value
|
||||||
function getEnentDetailValue(e) {
|
function getEnentDetailValue(e) {
|
||||||
@@ -152,11 +153,11 @@
|
|||||||
function returnBasicTimeConstructor() {
|
function returnBasicTimeConstructor() {
|
||||||
return {
|
return {
|
||||||
startTime: {
|
startTime: {
|
||||||
value: '00:00:00',
|
value: '00:00',
|
||||||
index: [0, 0, 0]
|
index: [0, 0, 0]
|
||||||
},
|
},
|
||||||
endTime: {
|
endTime: {
|
||||||
value: '00:00:00',
|
value: '23:59',
|
||||||
index: [0, 0, 0]
|
index: [0, 0, 0]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -190,13 +191,13 @@
|
|||||||
}
|
}
|
||||||
// 触发定时器保存事件将数据给到添加商品页面
|
// 触发定时器保存事件将数据给到添加商品页面
|
||||||
function emitTimerSave() {
|
function emitTimerSave() {
|
||||||
const par={
|
const par = {
|
||||||
days:list.value[0].cycleChecked.join(','),
|
days: list.value[0].cycleChecked.join(','),
|
||||||
startTime:list.value[0].startTime.value,
|
startTime: list.value[0].startTime.value,
|
||||||
endTime:list.value[0].endTime.value
|
endTime: list.value[0].endTime.value
|
||||||
}
|
}
|
||||||
console.log(par);
|
console.log(par);
|
||||||
uni.$emit('timerSave',par)
|
uni.$emit('timerSave', par)
|
||||||
go.back()
|
go.back()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -207,14 +208,14 @@
|
|||||||
|
|
||||||
function returnTimeIndex(time) {
|
function returnTimeIndex(time) {
|
||||||
console.log(time);
|
console.log(time);
|
||||||
return time.split(':').map(v=>{
|
return time.split(':').map(v => {
|
||||||
return v*1
|
return v * 1
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function returnTimer(res) {
|
function returnTimer(res) {
|
||||||
return [{
|
return [{
|
||||||
cycleChecked: res.days ? res.days.split(',').filter(v=>v) : [],
|
cycleChecked: res.days ? res.days.split(',').filter(v => v) : [],
|
||||||
startTime: res.startTime ? {
|
startTime: res.startTime ? {
|
||||||
value: res.startTime,
|
value: res.startTime,
|
||||||
index: returnTimeIndex(res.startTime)
|
index: returnTimeIndex(res.startTime)
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<!-- 不需要label, 需要修改: label-width="0" -->
|
<!-- 不需要label, 需要修改: label-width="0" -->
|
||||||
<uni-forms ref="loginFormRef" label-width="0" :model="vdata.formData" :rules="rules">
|
<uni-forms ref="loginFormRef" label-width="0" :model="vdata.formData" :rules="rules">
|
||||||
|
|
||||||
<view >
|
<view>
|
||||||
<uni-forms-item name="username">
|
<uni-forms-item name="username">
|
||||||
<uni-easyinput class='jeepay-easyinput' placeholder="请输入登录名/手机号"
|
<uni-easyinput class='jeepay-easyinput' placeholder="请输入登录名/手机号"
|
||||||
v-model="vdata.formData.username" :clearable="false">
|
v-model="vdata.formData.username" :clearable="false">
|
||||||
@@ -29,7 +29,8 @@
|
|||||||
</template>
|
</template>
|
||||||
<template #suffixIcon>
|
<template #suffixIcon>
|
||||||
<view class='show-tips' @tap="vdata.isShowPwd = !vdata.isShowPwd ">
|
<view class='show-tips' @tap="vdata.isShowPwd = !vdata.isShowPwd ">
|
||||||
{{ vdata.isShowPwd ? '隐藏' : '显示' }}</view>
|
{{ vdata.isShowPwd ? '隐藏' : '显示' }}
|
||||||
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</uni-easyinput>
|
</uni-easyinput>
|
||||||
</uni-forms-item>
|
</uni-forms-item>
|
||||||
@@ -55,7 +56,6 @@
|
|||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
||||||
import {
|
import {
|
||||||
login
|
login
|
||||||
} from '@/http/businessApiManger.js';
|
} from '@/http/businessApiManger.js';
|
||||||
@@ -112,7 +112,6 @@
|
|||||||
formUtil.validate(loginFormRef.value).then(() => {
|
formUtil.validate(loginFormRef.value).then(() => {
|
||||||
|
|
||||||
login(vdata.formData).then((res) => {
|
login(vdata.formData).then((res) => {
|
||||||
console.log(res);
|
|
||||||
useStorage.set('token', res.data.token);
|
useStorage.set('token', res.data.token);
|
||||||
useStorage.set('userInfo', res.data.user);
|
useStorage.set('userInfo', res.data.user);
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
|
|||||||
104
pages.json
104
pages.json
@@ -8,8 +8,7 @@
|
|||||||
"^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue"
|
"^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pages": [
|
"pages": [{
|
||||||
{
|
|
||||||
"pageId": "PAGES_INDEX",
|
"pageId": "PAGES_INDEX",
|
||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
@@ -631,6 +630,13 @@
|
|||||||
"navigationBarTitleText": "确认订单"
|
"navigationBarTitleText": "确认订单"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"pageId": "PAGES_ROTATING_TABLES",
|
||||||
|
"path": "confirm-order/rotatingTables",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "转桌/并桌"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"pageId": "PAGES_CHOOSE_TABLE",
|
"pageId": "PAGES_CHOOSE_TABLE",
|
||||||
"path": "choose-table/choose-table",
|
"path": "choose-table/choose-table",
|
||||||
@@ -639,7 +645,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pageId": "PAGES_ADD_TEMP_CUISINE",
|
"pageId": "PAGES_CHOOSE_ADD_TEMP_CUISINE",
|
||||||
"path": "add-temp-cuisine/add-temp-cuisine",
|
"path": "add-temp-cuisine/add-temp-cuisine",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "添加临时菜"
|
"navigationBarTitleText": "添加临时菜"
|
||||||
@@ -760,13 +766,28 @@
|
|||||||
{
|
{
|
||||||
"root": "pageBwc",
|
"root": "pageBwc",
|
||||||
"pages": [{
|
"pages": [{
|
||||||
"pageId": "PAGES_BWC",
|
"pageId": "PAGES_BWC",
|
||||||
"path": "index/index",
|
"path": "index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "霸王餐"
|
"navigationBarTitleText": "霸王餐"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
}]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"root": "pagewriteoff",
|
||||||
|
"pages": [{
|
||||||
|
"pageId": "PAGES_WEITEOFF",
|
||||||
|
"path": "index/index",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "核销列表"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"pageId": "PAGES_WEITEOFF_RECORD",
|
||||||
|
"path": "index/record",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "核销记录"
|
||||||
|
}
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"root": "pageBooking",
|
"root": "pageBooking",
|
||||||
@@ -877,11 +898,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"path" : "quan/quan",
|
"path": "quan/quan",
|
||||||
"pageId": "PAGES_ORDER_QUAN",
|
"pageId": "PAGES_ORDER_QUAN",
|
||||||
"style" :
|
"style": {
|
||||||
{
|
"navigationBarTitleText": "券包"
|
||||||
"navigationBarTitleText" : "券包"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1094,42 +1114,40 @@
|
|||||||
{
|
{
|
||||||
"root": "pageNotification",
|
"root": "pageNotification",
|
||||||
"pages": [{
|
"pages": [{
|
||||||
"pageId": "PAGES_NOTIFICATION_INDEX",
|
"pageId": "PAGES_NOTIFICATION_INDEX",
|
||||||
"path": "index",
|
"path": "index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "订阅通知"
|
"navigationBarTitleText": "订阅通知"
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
}]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"root": "pageCreditBuyer",
|
"root": "pageCreditBuyer",
|
||||||
"pages": [{
|
"pages": [{
|
||||||
"pageId": "PAGES_CREDIT_BUYER_INDEX",
|
"pageId": "PAGES_CREDIT_BUYER_INDEX",
|
||||||
"path": "index",
|
"path": "index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "挂账管理"
|
"navigationBarTitleText": "挂账管理"
|
||||||
}
|
|
||||||
},{
|
|
||||||
"pageId": "PAGES_CREDIT_BUYER_ADDDEBTOR",
|
|
||||||
"path": "addDebtor",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "挂账人"
|
|
||||||
}
|
|
||||||
},{
|
|
||||||
"pageId": "PAGES_CREDIT_BUYER_REPAYMENTRECORD",
|
|
||||||
"path": "rePaymentRecord",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "账单付款记录"
|
|
||||||
}
|
|
||||||
},{
|
|
||||||
"pageId": "PAGES_CREDIT_BUYER_DETAIL",
|
|
||||||
"path": "creditDetail",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "查看明细"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
}, {
|
||||||
|
"pageId": "PAGES_CREDIT_BUYER_ADDDEBTOR",
|
||||||
|
"path": "addDebtor",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "挂账人"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"pageId": "PAGES_CREDIT_BUYER_REPAYMENTRECORD",
|
||||||
|
"path": "rePaymentRecord",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "账单付款记录"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"pageId": "PAGES_CREDIT_BUYER_DETAIL",
|
||||||
|
"path": "creditDetail",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "查看明细"
|
||||||
|
}
|
||||||
|
}]
|
||||||
}
|
}
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -284,8 +284,11 @@
|
|||||||
// pageUrl: 'PAGES_RED_INDEX',
|
// pageUrl: 'PAGES_RED_INDEX',
|
||||||
// entId: 'ENT_MCH_MEMBER'
|
// entId: 'ENT_MCH_MEMBER'
|
||||||
// },
|
// },
|
||||||
|
{
|
||||||
|
title: '核销管理',
|
||||||
|
icon: '/static/indexImg/pagewriteoff.svg',
|
||||||
|
pageUrl: 'PAGES_WEITEOFF'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '退出登录',
|
title: '退出登录',
|
||||||
icon: '/static/indexImg/icon-login-out.svg',
|
icon: '/static/indexImg/icon-login-out.svg',
|
||||||
@@ -373,6 +376,7 @@
|
|||||||
/* #endif */
|
/* #endif */
|
||||||
/* #ifndef H5 */
|
/* #ifndef H5 */
|
||||||
padding-top: calc(84rpx + 44px);
|
padding-top: calc(84rpx + 44px);
|
||||||
|
|
||||||
/* #endif */
|
/* #endif */
|
||||||
>view {
|
>view {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|||||||
@@ -173,6 +173,7 @@
|
|||||||
import timer from '@/commons/utils/timer.js'
|
import timer from '@/commons/utils/timer.js'
|
||||||
import formUtil from '@/commons/utils/formUtil.js'
|
import formUtil from '@/commons/utils/formUtil.js'
|
||||||
import EnvChangeTips from './components/EnvChangeTips.vue'
|
import EnvChangeTips from './components/EnvChangeTips.vue'
|
||||||
|
import dayjs from 'dayjs' //时间格式库
|
||||||
import {
|
import {
|
||||||
getExtStoreId
|
getExtStoreId
|
||||||
} from "@/commons/utils/versionManage.js"
|
} from "@/commons/utils/versionManage.js"
|
||||||
@@ -249,7 +250,7 @@
|
|||||||
})
|
})
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
vdata.formData.username = '17792050546'
|
vdata.formData.username = '17792050546'
|
||||||
vdata.formData.pwd = 'sy666888'
|
vdata.formData.pwd = 'qwer1234'
|
||||||
// #endif
|
// #endif
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
// vdata.formData.username = '15699991111'
|
// vdata.formData.username = '15699991111'
|
||||||
@@ -258,11 +259,11 @@
|
|||||||
|
|
||||||
function accountTypeChange(e) {
|
function accountTypeChange(e) {
|
||||||
// #ifdef H5
|
// #ifdef H5
|
||||||
if(e==1){
|
if (e == 1) {
|
||||||
vdata.formData.merchantName = '18049104914'
|
vdata.formData.merchantName = '18049104914'
|
||||||
vdata.formData.username = '13666666666'
|
vdata.formData.username = '13666666666'
|
||||||
vdata.formData.pwd = '123456'
|
vdata.formData.pwd = '123456'
|
||||||
}else{
|
} else {
|
||||||
vdata.formData.pwd = 'qwer1234'
|
vdata.formData.pwd = 'qwer1234'
|
||||||
}
|
}
|
||||||
// #endif
|
// #endif
|
||||||
@@ -301,6 +302,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function loginFunc() {
|
function loginFunc() {
|
||||||
|
|
||||||
// 表单验证
|
// 表单验证
|
||||||
formUtil.validate(loginFormRef.value).then(() => {
|
formUtil.validate(loginFormRef.value).then(() => {
|
||||||
if (!vdata.isSelectedAgreement) {
|
if (!vdata.isSelectedAgreement) {
|
||||||
@@ -375,11 +377,21 @@
|
|||||||
storageManage.shopId(loginBizData.shopId)
|
storageManage.shopId(loginBizData.shopId)
|
||||||
storageManage.shopUserId(loginBizData.user.user.id)
|
storageManage.shopUserId(loginBizData.user.user.id)
|
||||||
storageManage.userInfo(loginBizData)
|
storageManage.userInfo(loginBizData)
|
||||||
|
var time1 = new Date();
|
||||||
|
var time2 = new Date(loginBizData.expireDate);
|
||||||
|
let les = (time1.getTime() - time2.getTime()) / 86400000;
|
||||||
|
uni.showToast({
|
||||||
|
title: '店铺账号有限期至' + loginBizData.expireDate + ',店铺账号到期剩余' + Math.abs(les.toFixed(0)) + '天!',
|
||||||
|
icon: 'none'
|
||||||
|
});
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
// 跳转到首页
|
||||||
|
go.to("PAGES_INDEX", {
|
||||||
|
isGetCid: true
|
||||||
|
}, go.GO_TYPE_RELAUNCH)
|
||||||
|
}, 1000)
|
||||||
|
|
||||||
// 跳转到首页
|
|
||||||
go.to("PAGES_INDEX", {
|
|
||||||
isGetCid: true
|
|
||||||
}, go.GO_TYPE_RELAUNCH)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 点击发送验证码的函数
|
// 点击发送验证码的函数
|
||||||
|
|||||||
@@ -125,9 +125,12 @@
|
|||||||
reactive,
|
reactive,
|
||||||
onMounted,
|
onMounted,
|
||||||
ref,
|
ref,
|
||||||
onBeforeMount
|
onBeforeMount,
|
||||||
} from 'vue';
|
} from 'vue';
|
||||||
import {onLoad} from '@dcloudio/uni-app'
|
import {
|
||||||
|
onLoad,
|
||||||
|
onShow
|
||||||
|
} from '@dcloudio/uni-app'
|
||||||
const units = reactive({
|
const units = reactive({
|
||||||
list: [],
|
list: [],
|
||||||
current: ''
|
current: ''
|
||||||
@@ -187,11 +190,12 @@
|
|||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
let timer=null
|
let timer = null
|
||||||
|
|
||||||
function submit() {
|
function submit() {
|
||||||
refform.value.validate(res => {
|
refform.value.validate(res => {
|
||||||
console.log(res)
|
console.log(res)
|
||||||
if(!res){
|
if (!res) {
|
||||||
$temporaryDishes({
|
$temporaryDishes({
|
||||||
"useType": option.useType,
|
"useType": option.useType,
|
||||||
"masterId": option.masterId,
|
"masterId": option.masterId,
|
||||||
@@ -200,15 +204,15 @@
|
|||||||
"categoryId": category[categoryCurrent.value].id,
|
"categoryId": category[categoryCurrent.value].id,
|
||||||
"price": form.price,
|
"price": form.price,
|
||||||
"num": form.num,
|
"num": form.num,
|
||||||
unit:units.list[units.current].id,
|
unit: units.list[units.current].id,
|
||||||
"note": form.note,
|
"note": form.note,
|
||||||
"vipUserId": option.vipUserId
|
"vipUserId": option.vipUserId
|
||||||
}).then(r=>{
|
}).then(r => {
|
||||||
uni.$emit('add:cashCai')
|
uni.$emit('add:cashCai')
|
||||||
clearInterval(timer)
|
clearInterval(timer)
|
||||||
timer=setTimeout(()=>{
|
timer = setTimeout(() => {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
},500)
|
}, 500)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
@@ -234,7 +238,7 @@
|
|||||||
page: 0,
|
page: 0,
|
||||||
size: 600
|
size: 600
|
||||||
})
|
})
|
||||||
const arr = returnAllCategory(res.content).map(v => {
|
const arr = forList(res.content).map(v => {
|
||||||
return {
|
return {
|
||||||
...v,
|
...v,
|
||||||
value: v.id
|
value: v.id
|
||||||
@@ -244,24 +248,40 @@
|
|||||||
for (let i in arr) {
|
for (let i in arr) {
|
||||||
category[i] = arr[i]
|
category[i] = arr[i]
|
||||||
}
|
}
|
||||||
console.log(category);
|
}
|
||||||
|
|
||||||
|
function forList(arr) {
|
||||||
|
let arrs = []
|
||||||
|
arr.forEach(ele => {
|
||||||
|
arrs.push(ele)
|
||||||
|
if (ele.childrenList.length) {
|
||||||
|
ele.childrenList.forEach(res => {
|
||||||
|
arrs.push(res)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
return arrs
|
||||||
}
|
}
|
||||||
async function init() {
|
async function init() {
|
||||||
getTbShopUnit()
|
getTbShopUnit()
|
||||||
getCategory()
|
getCategory()
|
||||||
}
|
}
|
||||||
onMounted(() => {
|
// onMounted(() => {
|
||||||
init()
|
// init()
|
||||||
|
// })
|
||||||
|
onLoad((opt) => {
|
||||||
|
Object.assign(option, opt)
|
||||||
|
setTimeout(() => {
|
||||||
|
init()
|
||||||
|
}, 600)
|
||||||
})
|
})
|
||||||
onBeforeMount(()=>{
|
|
||||||
|
onBeforeMount(() => {
|
||||||
clearInterval(timer)
|
clearInterval(timer)
|
||||||
})
|
})
|
||||||
const option=reactive({
|
const option = reactive({
|
||||||
|
|
||||||
})
|
})
|
||||||
onLoad((opt)=>{
|
|
||||||
Object.assign(option,opt)
|
|
||||||
})
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<my-model ref="model" :title="title" iconColor="#000" @close="resetForm">
|
<my-model ref="model" :title="title" iconColor="#000" @close="resetForm">
|
||||||
<template #desc>
|
<template #desc>
|
||||||
<view class="u-m-t-48 tab">
|
<!-- <view class="u-m-t-48 tab">
|
||||||
<my-tabs :list="tabs" @change="tabsChange"></my-tabs>
|
<my-tabs :list="tabs" @change="tabsChange"></my-tabs>
|
||||||
</view>
|
</view> -->
|
||||||
<view class="u-text-left u-p-30 ">
|
<view class="u-text-left u-p-30 ">
|
||||||
<template v-if="!current">
|
<template v-if="!current">
|
||||||
<view>
|
<view>
|
||||||
@@ -34,7 +34,6 @@
|
|||||||
<view class="u-flex-1">
|
<view class="u-flex-1">
|
||||||
<input @input="discountMoneyInput" v-model="form.discountMoney" type="digit"
|
<input @input="discountMoneyInput" v-model="form.discountMoney" type="digit"
|
||||||
placeholder-class="placeholder-class" placeholder="减8.55元请输入8.55" />
|
placeholder-class="placeholder-class" placeholder="减8.55元请输入8.55" />
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="color-999 u-p-l-48 u-p-r-48 u-flex u-row-center u-col-center">
|
<view class="color-999 u-p-l-48 u-p-r-48 u-flex u-row-center u-col-center">
|
||||||
<view>元</view>
|
<view>元</view>
|
||||||
@@ -46,19 +45,22 @@
|
|||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<view class="u-m-t-48">
|
<view class="u-m-t-48">
|
||||||
<view class="u-font-24">
|
<view class="u-font-24">
|
||||||
<text class="color-999">打折原因</text>
|
<text class="color-999">当前单品价格:{{price}}</text>
|
||||||
<text class="color-red">*</text>
|
</view>
|
||||||
</view>
|
<view class="u-font-24">
|
||||||
|
<text class="color-999">打折原因</text>
|
||||||
|
<text class="color-red">*</text>
|
||||||
|
</view>
|
||||||
<view class="u-flex u-m-t-24">
|
<view class="u-flex u-m-t-24">
|
||||||
<view class="u-flex" v-for="(item,index) in causes" :key="index">
|
<view class="u-flex" v-for="(item,index) in causes" :key="index">
|
||||||
<button @tap="changeCauses(item)" class="tag u-m-r-20"
|
<button @tap="changeCauses(item,index)" class="tag u-m-r-20"
|
||||||
:class="{active:item.checked}">{{item.name}}</button>
|
:class="{active:item.checked}">{{item.name}}</button>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="u-m-t-32 u-flex ">
|
<view class="u-m-t-32 u-flex ">
|
||||||
<uni-easyinput type="textarea" v-model="value" placeholder="自定义内容"></uni-easyinput>
|
<uni-easyinput type="textarea" v-model="form.note" placeholder="自定义内容"></uni-easyinput>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
@@ -67,7 +69,10 @@
|
|||||||
<view class="u-p-30">
|
<view class="u-p-30">
|
||||||
<view class="u-m-t-10">
|
<view class="u-m-t-10">
|
||||||
<my-button @tap="confirm" shape="circle" showShadow>确认</my-button>
|
<my-button @tap="confirm" shape="circle" showShadow>确认</my-button>
|
||||||
<my-button type="cancel" bgColor="#fff" @tap="confirm">取消</my-button>
|
<view style="height: 20rpx;">
|
||||||
|
|
||||||
|
</view>
|
||||||
|
<!-- <my-button type="cancel" bgColor="#fff" @tap="confirm">取消</my-button> -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -86,7 +91,7 @@
|
|||||||
import myTabs from '@/components/my-components/my-tabs.vue'
|
import myTabs from '@/components/my-components/my-tabs.vue'
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
price: {
|
price: {
|
||||||
type: [Number,String],
|
type: [Number, String],
|
||||||
default: 0
|
default: 0
|
||||||
},
|
},
|
||||||
title: {
|
title: {
|
||||||
@@ -101,9 +106,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
function changeCauses(item) {
|
|
||||||
item.checked = !item.checked
|
|
||||||
}
|
|
||||||
|
|
||||||
const discounts = [95, 90, 85, 80]
|
const discounts = [95, 90, 85, 80]
|
||||||
const causes = reactive([{
|
const causes = reactive([{
|
||||||
@@ -120,6 +123,11 @@
|
|||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
|
||||||
|
function changeCauses(item, index) {
|
||||||
|
item.checked = !item.checked
|
||||||
|
form.notes = causes
|
||||||
|
}
|
||||||
|
|
||||||
function discountInput(e) {
|
function discountInput(e) {
|
||||||
if (e.detail.value >= 100) {
|
if (e.detail.value >= 100) {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
@@ -127,8 +135,9 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function discountMoneyInput(e) {
|
function discountMoneyInput(e) {
|
||||||
const max=100
|
const max = 100
|
||||||
if (e.detail.value >= max) {
|
if (e.detail.value >= max) {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
form.discountMoney = 100
|
form.discountMoney = 100
|
||||||
@@ -142,7 +151,7 @@
|
|||||||
|
|
||||||
|
|
||||||
const tabs = ['打折', '减免']
|
const tabs = ['打折', '减免']
|
||||||
let current = ref(0)
|
let current = ref(1)
|
||||||
|
|
||||||
function tabsChange(i) {
|
function tabsChange(i) {
|
||||||
console.log(i);
|
console.log(i);
|
||||||
@@ -158,11 +167,12 @@
|
|||||||
const form = reactive({
|
const form = reactive({
|
||||||
...$form
|
...$form
|
||||||
})
|
})
|
||||||
watch(()=>props.price,(newval)=>{
|
watch(() => props.price, (newval) => {
|
||||||
console.log(newval);
|
console.log(newval);
|
||||||
form.price=newval
|
form.price = newval
|
||||||
form.currentPrice=newval
|
form.currentPrice = newval
|
||||||
})
|
})
|
||||||
|
|
||||||
function resetForm() {
|
function resetForm() {
|
||||||
Object.assign(form, {
|
Object.assign(form, {
|
||||||
...$form
|
...$form
|
||||||
@@ -182,22 +192,23 @@
|
|||||||
|
|
||||||
function confirm() {
|
function confirm() {
|
||||||
const {
|
const {
|
||||||
discount,discountMoney
|
discount,
|
||||||
|
discountMoney
|
||||||
} = form
|
} = form
|
||||||
if (current.value===0&& discount==='') {
|
if (current.value === 0 && discount === '') {
|
||||||
return uni.showToast({
|
return uni.showToast({
|
||||||
icon: 'none',
|
icon: 'none',
|
||||||
title: '请输入有效折扣!'
|
title: '请输入有效折扣!'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (current.value===1&& discountMoney==='') {
|
if (current.value === 1 && discountMoney === '') {
|
||||||
return uni.showToast({
|
return uni.showToast({
|
||||||
icon: 'none',
|
icon: 'none',
|
||||||
title: '请输入有效减免价格!'
|
title: '请输入有效减免价格!'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
close()
|
|
||||||
emits('confirm', form)
|
emits('confirm', form)
|
||||||
|
close()
|
||||||
}
|
}
|
||||||
defineExpose({
|
defineExpose({
|
||||||
open,
|
open,
|
||||||
|
|||||||
@@ -112,6 +112,14 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
<!-- <template v-if="goods.list[0].tableId&&goods.list[0].orderId">
|
||||||
|
<view class="block" @tap="rotatingTables"
|
||||||
|
style="display: flex;align-items: center;justify-content: space-between;">
|
||||||
|
<view>转桌/并桌</view>
|
||||||
|
<uni-icons type="right" color="#999" size="16"></uni-icons>
|
||||||
|
</view>
|
||||||
|
</template> -->
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<view class="block">
|
<view class="block">
|
||||||
@@ -136,10 +144,15 @@
|
|||||||
:key="index">
|
:key="index">
|
||||||
<view class="u-flex u-row-between ">
|
<view class="u-flex u-row-between ">
|
||||||
<view class="u-flex">
|
<view class="u-flex">
|
||||||
<image class="img" :src="item.coverImg" mode=""></image>
|
<image class="img" v-if="item.coverImg" :src="item.coverImg" mode=""></image>
|
||||||
|
<view
|
||||||
|
style="background-color: #3f9eff; width: 84rpx;height: 84rpx;line-height: 84rpx;text-align: center;color: #fff;"
|
||||||
|
v-else>
|
||||||
|
临时菜
|
||||||
|
</view>
|
||||||
<view class="u-m-l-32">
|
<view class="u-m-l-32">
|
||||||
<view class="u-flex">
|
<view class="u-flex">
|
||||||
<view class="u-flex u-m-r-20" v-if="item.isWait">
|
<view class="u-flex u-m-r-20" v-if="item.isWaitCall">
|
||||||
<uni-tag text="等叫"
|
<uni-tag text="等叫"
|
||||||
custom-style="background-color: #FFF0DF; border-color: #FFF0DF; color: #FF9F2E;">
|
custom-style="background-color: #FFF0DF; border-color: #FFF0DF; color: #FF9F2E;">
|
||||||
</uni-tag>
|
</uni-tag>
|
||||||
@@ -154,6 +167,11 @@
|
|||||||
custom-style="background-color: #E6F0FF; border-color: #E6F0FF; color: #318AFE;"
|
custom-style="background-color: #E6F0FF; border-color: #E6F0FF; color: #318AFE;"
|
||||||
size="small" text="打包" inverted type="success" />
|
size="small" text="打包" inverted type="success" />
|
||||||
</view>
|
</view>
|
||||||
|
<view class="u-m-r-20 u-flex" v-if="item.isPrint">
|
||||||
|
<uni-tag
|
||||||
|
custom-style="background-color: #E6F0FF; border-color: #E6F0FF; color: #318AFE;"
|
||||||
|
size="small" text="打印" inverted type="success" />
|
||||||
|
</view>
|
||||||
<view>
|
<view>
|
||||||
{{item.name}}
|
{{item.name}}
|
||||||
</view>
|
</view>
|
||||||
@@ -174,7 +192,8 @@
|
|||||||
<text
|
<text
|
||||||
class="line-th color-999">¥{{formatPrice(item.salePrice*item.number) }}</text>
|
class="line-th color-999">¥{{formatPrice(item.salePrice*item.number) }}</text>
|
||||||
<view class="u-absolute" style="right: 0;bottom: 100%;">
|
<view class="u-absolute" style="right: 0;bottom: 100%;">
|
||||||
<text class="font-bold">¥{{formatPrice(item.memberPrice*item.number) }}</text>
|
<text
|
||||||
|
class="font-bold">¥{{formatPrice(item.memberPrice*item.number) }}</text>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
@@ -196,9 +215,10 @@
|
|||||||
</template>
|
</template>
|
||||||
<scroll-view class="u-m-t-32" scroll-x="true" v-if="index==goods.sel">
|
<scroll-view class="u-m-t-32" scroll-x="true" v-if="index==goods.sel">
|
||||||
<view class=" u-flex no-wrap ">
|
<view class=" u-flex no-wrap ">
|
||||||
<!-- <view class="u-flex u-m-r-20 u-m-b-20">
|
<view class="u-flex u-m-r-20 " v-if="!item.isGift">
|
||||||
<button class="tag" hover-class="hover-class" @tap="showModel('discount')">单品打折</button>
|
<button class="tag" hover-class="hover-class"
|
||||||
</view> -->
|
@tap="showModel('discount',index)">单品打折</button>
|
||||||
|
</view>
|
||||||
<view class="u-flex u-m-r-20 ">
|
<view class="u-flex u-m-r-20 ">
|
||||||
<!-- <button class="tag" hover-class="hover-class" @tap="showModel('giveFood')">赠菜</button> -->
|
<!-- <button class="tag" hover-class="hover-class" @tap="showModel('giveFood')">赠菜</button> -->
|
||||||
<button class="tag" hover-class="hover-class"
|
<button class="tag" hover-class="hover-class"
|
||||||
@@ -208,10 +228,14 @@
|
|||||||
<button class="tag" hover-class="hover-class"
|
<button class="tag" hover-class="hover-class"
|
||||||
@tap="toggleGoodsItemKey(item,index,'isPack')">{{item.isPack?'取消打包':'打包'}}</button>
|
@tap="toggleGoodsItemKey(item,index,'isPack')">{{item.isPack?'取消打包':'打包'}}</button>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="u-flex u-m-r-20 u-m-b-20">
|
<view class="u-flex u-m-r-20 ">
|
||||||
<button class="tag" hover-class="hover-class"
|
<button class="tag" hover-class="hover-class"
|
||||||
@tap="toggleWait(item)">{{item.isWait?'取消等叫':'等叫'}}</button>
|
@tap="toggleWait(item)">{{item.isWaitCall?'取消等叫':'等叫'}}</button>
|
||||||
</view> -->
|
</view>
|
||||||
|
<view class="u-flex u-m-r-20 ">
|
||||||
|
<button class="tag" hover-class="hover-class"
|
||||||
|
@tap="toggisPrint(item)">{{item.isPrint?'免厨打':'打印'}}</button>
|
||||||
|
</view>
|
||||||
<view class="u-flex u-m-r-20 ">
|
<view class="u-flex u-m-r-20 ">
|
||||||
<button class="tag" hover-class="hover-class"
|
<button class="tag" hover-class="hover-class"
|
||||||
@tap="showModel('remark',index)">单品备注</button>
|
@tap="showModel('remark',index)">单品备注</button>
|
||||||
@@ -278,8 +302,8 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
<model-discount title="菜品减免" :ref="setModel" name="discount" :price="modelData.data.salePrice"
|
||||||
<model-discount title="菜品打折/减免" :ref="setModel" name="discount" :price="allPrice"></model-discount>
|
@confirm="discountconfirm"></model-discount>
|
||||||
<give-food title="赠菜" :ref="setModel" name="giveFood"></give-food>
|
<give-food title="赠菜" :ref="setModel" name="giveFood"></give-food>
|
||||||
<one-remark @confirm="goodsOneRemarkConfirm" title="单品备注" :ref="setModel" name="remark"></one-remark>
|
<one-remark @confirm="goodsOneRemarkConfirm" title="单品备注" :ref="setModel" name="remark"></one-remark>
|
||||||
<edit-discount title="优惠金额" :ref="setModel" name="editMoney" :price="allPrice"></edit-discount>
|
<edit-discount title="优惠金额" :ref="setModel" name="editMoney" :price="allPrice"></edit-discount>
|
||||||
@@ -351,7 +375,31 @@
|
|||||||
return Number(n).toFixed(2)
|
return Number(n).toFixed(2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function rotatingTables() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pagesCreateOrder/confirm-order/rotatingTables?item='+JSON.stringify(goods.list),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// 单品打折
|
||||||
|
async function discountconfirm(form) {
|
||||||
|
if (form.discountMoney != '.') {
|
||||||
|
let str = ''
|
||||||
|
if (form.notes) {
|
||||||
|
form.notes.forEach(ele => {
|
||||||
|
if (ele.checked) {
|
||||||
|
str = str + ele.name + ','
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
let obj = {
|
||||||
|
saleAmount: form.discountMoney,
|
||||||
|
note: str + form.note,
|
||||||
|
cartId: modelData.data.id
|
||||||
|
}
|
||||||
|
const res = await Api.$updatePrice(obj)
|
||||||
|
getCart()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//用餐人数
|
//用餐人数
|
||||||
const userNumbers = reactive({
|
const userNumbers = reactive({
|
||||||
@@ -416,18 +464,46 @@
|
|||||||
skuId
|
skuId
|
||||||
}
|
}
|
||||||
par[key] = !item[key]
|
par[key] = !item[key]
|
||||||
|
|
||||||
|
|
||||||
const res = await Api.$updateCart(par)
|
const res = await Api.$updateCart(par)
|
||||||
goods.list[index][key] = returnBoolean(res[key])
|
goods.list[index][key] = returnBoolean(res[key])
|
||||||
if (key == 'isPack') {
|
getCart()
|
||||||
getCart()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//等叫
|
//等叫
|
||||||
function toggleWait(item) {
|
async function toggleWait(item) {
|
||||||
item.isWait = !item.isWait
|
item.isWaitCall = !item.isWaitCall
|
||||||
|
let obj = {
|
||||||
|
cartId: item.id,
|
||||||
|
isGift: item.isGift,
|
||||||
|
isPack: item.isPack,
|
||||||
|
isPrint: item.isPrint,
|
||||||
|
isWaitCall: item.isWaitCall,
|
||||||
|
masterId: option.masterId,
|
||||||
|
num: item.number, // 0会删除此商品
|
||||||
|
productId: item.productId,
|
||||||
|
skuId: item.skuId,
|
||||||
|
vipUserId: '',
|
||||||
|
}
|
||||||
|
let res = await Api.$updateCart(obj)
|
||||||
|
}
|
||||||
|
// 打印
|
||||||
|
async function toggisPrint(item) {
|
||||||
|
item.isPrint = !item.isPrint
|
||||||
|
let obj = {
|
||||||
|
cartId: item.id,
|
||||||
|
isGift: item.isGift,
|
||||||
|
isPack: item.isPack,
|
||||||
|
isPrint: item.isPrint,
|
||||||
|
isWaitCall: item.isWaitCall,
|
||||||
|
masterId: option.masterId,
|
||||||
|
num: item.number, // 0会删除此商品
|
||||||
|
productId: item.productId,
|
||||||
|
skuId: item.skuId,
|
||||||
|
vipUserId: '',
|
||||||
|
}
|
||||||
|
let res = await Api.$updateCart(obj)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const eatTypes = reactive({
|
const eatTypes = reactive({
|
||||||
list: [{
|
list: [{
|
||||||
@@ -479,7 +555,6 @@
|
|||||||
function watchChooseuser() {
|
function watchChooseuser() {
|
||||||
uni.$off('choose-user')
|
uni.$off('choose-user')
|
||||||
uni.$on('choose-user', (data) => {
|
uni.$on('choose-user', (data) => {
|
||||||
console.log(data);
|
|
||||||
user.value = data
|
user.value = data
|
||||||
setUser()
|
setUser()
|
||||||
})
|
})
|
||||||
@@ -520,20 +595,25 @@
|
|||||||
totalNumber: 0,
|
totalNumber: 0,
|
||||||
totalAmount: 0,
|
totalAmount: 0,
|
||||||
})
|
})
|
||||||
const isVip=computed(()=>{
|
const isVip = computed(() => {
|
||||||
return $shop.value.isMemberPrice&& user.value&&user.value.id&&user.value.isVip
|
return $shop.value.isMemberPrice && user.value && user.value.id && user.value.isVip
|
||||||
|
})
|
||||||
|
const discountSaleAmount = computed(() => {
|
||||||
|
return goods.list.filter((v) => v.discountSaleAmount && v.discountSaleAmount > 0)
|
||||||
|
.reduce((a, b) => {
|
||||||
|
return a + b.number * b.discountSaleAmount;
|
||||||
|
}, 0);
|
||||||
})
|
})
|
||||||
const goodsPrice = computed(() => {
|
const goodsPrice = computed(() => {
|
||||||
const goodsTotalPrice = goods.list.reduce((prve, cur) => {
|
const goodsTotalPrice = goods.list.reduce((prve, cur) => {
|
||||||
const memberPrice=cur.memberPrice?cur.memberPrice:cur.salePrice
|
const memberPrice = cur.memberPrice ? cur.memberPrice : cur.salePrice
|
||||||
const tPrice = (isVip.value? memberPrice:cur.salePrice) * cur.number
|
const tPrice = (isVip.value ? memberPrice : cur.salePrice) * cur.number
|
||||||
const tpackFee = cur.isPack ? cur.packFee * 1 : 0
|
const tpackFee = cur.isPack ? cur.packFee * 1 : 0
|
||||||
return prve + (cur.isGift ? 0 : tPrice) + tpackFee
|
return prve + (cur.isGift ? 0 : tPrice) + tpackFee
|
||||||
}, 0)
|
}, 0)
|
||||||
return (goodsTotalPrice || 0).toFixed(2)
|
return ((goodsTotalPrice - discountSaleAmount.value) || 0).toFixed(2)
|
||||||
})
|
})
|
||||||
const allPrice = computed(() => {
|
const allPrice = computed(() => {
|
||||||
console.log(goodsPrice.value);
|
|
||||||
const n = goodsPrice.value * 1 + $seatFee.totalAmount
|
const n = goodsPrice.value * 1 + $seatFee.totalAmount
|
||||||
return n.toFixed(2)
|
return n.toFixed(2)
|
||||||
// const goodsTotalPrice = goods.list.reduce((prve, cur) => {
|
// const goodsTotalPrice = goods.list.reduce((prve, cur) => {
|
||||||
@@ -541,18 +621,21 @@
|
|||||||
// }, 0)
|
// }, 0)
|
||||||
// return (goodsTotalPrice + ($seatFee.totalAmount || 0)).toFixed(2)
|
// return (goodsTotalPrice + ($seatFee.totalAmount || 0)).toFixed(2)
|
||||||
})
|
})
|
||||||
const youhui=computed(()=>{
|
const youhui = computed(() => {
|
||||||
if(user.value&&user.value.id&&user.value.isVip){
|
let goodsTotalPrice = 0
|
||||||
const goodsTotalPrice = goods.list.reduce((prve, cur) => {
|
if (user.value && user.value.id && user.value.isVip) {
|
||||||
|
goodsTotalPrice = goods.list.reduce((prve, cur) => {
|
||||||
const tPrice = cur.salePrice * cur.number
|
const tPrice = cur.salePrice * cur.number
|
||||||
const tpackFee = cur.isPack ? cur.packFee * 1 : 0
|
const tpackFee = cur.isPack ? cur.packFee * 1 : 0
|
||||||
return prve + tPrice + tpackFee
|
return prve + tPrice + tpackFee
|
||||||
}, 0)
|
}, 0)
|
||||||
return goodsTotalPrice-allPrice.value
|
return goodsTotalPrice - allPrice.value
|
||||||
}else{
|
} else {
|
||||||
return 0
|
console.log(discountSaleAmount.value, '优惠金额')
|
||||||
|
return (discountSaleAmount.value)
|
||||||
}
|
}
|
||||||
return goodsTotalPrice
|
console.log(discountSaleAmount.value, '优惠金额1')
|
||||||
|
return (goodsTotalPrice + discountSaleAmount.value * 1).toFixed(2)
|
||||||
})
|
})
|
||||||
|
|
||||||
function setGoodsItem(key, val) {
|
function setGoodsItem(key, val) {
|
||||||
@@ -573,16 +656,16 @@
|
|||||||
records,
|
records,
|
||||||
seatFee
|
seatFee
|
||||||
} = await Api.getCart(par)
|
} = await Api.getCart(par)
|
||||||
let useType=''
|
let useType = ''
|
||||||
if (seatFee && seatFee.useType) {
|
if (seatFee && seatFee.useType) {
|
||||||
useType=seatFee.useType
|
useType = seatFee.useType
|
||||||
$storageManage.useType(useType)
|
$storageManage.useType(useType)
|
||||||
}else{
|
} else {
|
||||||
useType=records[0].info[0].useType
|
useType = records[0].info[0].useType
|
||||||
$storageManage.useType(useType)
|
$storageManage.useType(useType)
|
||||||
}
|
}
|
||||||
console.log(useType);
|
console.log(useType);
|
||||||
eatTypes.active =useType == 'takeout' ? useType : useType.replace(
|
eatTypes.active = useType == 'takeout' ? useType : useType.replace(
|
||||||
/-after|-before/g, '');
|
/-after|-before/g, '');
|
||||||
goods.list = getNowCart(records)
|
goods.list = getNowCart(records)
|
||||||
if (seatFee && seatFee.totalNumber) {
|
if (seatFee && seatFee.totalNumber) {
|
||||||
|
|||||||
207
pagesCreateOrder/confirm-order/rotatingTables.vue
Normal file
207
pagesCreateOrder/confirm-order/rotatingTables.vue
Normal file
@@ -0,0 +1,207 @@
|
|||||||
|
<template>
|
||||||
|
<view style="padding: 20rpx;">
|
||||||
|
<view class="uni-padding-wrap uni-common-mt">
|
||||||
|
<uni-segmented-control :current="datas.current" :values=" ['转桌', '并桌']" style-type="button"
|
||||||
|
active-color="#007aff" @clickItem="onClickItem" />
|
||||||
|
</view>
|
||||||
|
<view class="u-m-t-48">
|
||||||
|
请选择其他桌:
|
||||||
|
</view>
|
||||||
|
<view class="uni-list">
|
||||||
|
<radio-group @change="radioChange" v-if="datas.tableList.length">
|
||||||
|
<label class="uni-list-cell uni-list-cell-pd" v-for="(item, index) in datas.tableList" :key="index">
|
||||||
|
<view class="u-m-t-48 u-m-b-48">
|
||||||
|
<radio :value="item.tableId" /> {{item.name}}
|
||||||
|
</view>
|
||||||
|
</label>
|
||||||
|
</radio-group>
|
||||||
|
<view v-else>
|
||||||
|
暂无数据
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="uni-list" v-if="datas.current==0">
|
||||||
|
<view class="u-m-t-48">
|
||||||
|
请选择需要转桌的菜品:
|
||||||
|
</view>
|
||||||
|
<checkbox-group @change="checkboxChange">
|
||||||
|
<label class="uni-list-cell uni-list-cell-pd" v-for="(item,index) in datas.item" :key="index">
|
||||||
|
<template v-if="item.status=='unpaid'">
|
||||||
|
<view class="u-flex u-m-t-48 u-m-b-48"
|
||||||
|
style="justify-content: space-between;align-items: center;">
|
||||||
|
<view class="u-flex">
|
||||||
|
<checkbox :value="item.cartId" />
|
||||||
|
<image class="img" v-if="item.coverImg" :src="item.coverImg" mode=""></image>
|
||||||
|
|
||||||
|
{{item.name}}
|
||||||
|
</view>
|
||||||
|
<view class="">
|
||||||
|
<view class=" u-relative">
|
||||||
|
<template v-if="item.isGift">
|
||||||
|
<text
|
||||||
|
class="line-th color-999">¥{{formatPrice(item.salePrice*item.number) }}</text>
|
||||||
|
<view class="u-absolute" style="right: 0;bottom: 100%;">
|
||||||
|
<text class="font-bold">¥0</text>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<template v-if="isVip&&item.memberPrice&&item.memberPrice*1!=item.salePrice*1">
|
||||||
|
<text
|
||||||
|
class="line-th color-999">¥{{formatPrice(item.salePrice*item.number) }}</text>
|
||||||
|
<view class="u-absolute" style="right: 0;bottom: 100%;">
|
||||||
|
<text
|
||||||
|
class="font-bold">¥{{formatPrice(item.memberPrice*item.number) }}</text>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<view class="font-bold">
|
||||||
|
<text>¥</text>
|
||||||
|
<text class="">{{formatPrice(item.salePrice*item.number) }}</text>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
</view>
|
||||||
|
<view class="color-999 u-text-right u-font-24 u-m-t-12">×{{item.number}}</view>
|
||||||
|
</view>
|
||||||
|
<!-- <text class=" color-999">¥{{formatPrice(item.salePrice*item.number) }}</text> -->
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
</label>
|
||||||
|
</checkbox-group>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<my-button shape="circle" @tap="confirm">确定</my-button>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
reactive,
|
||||||
|
defineProps
|
||||||
|
} from 'vue';
|
||||||
|
import {
|
||||||
|
onLoad,
|
||||||
|
onShow
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
|
import go from '@/commons/utils/go.js';
|
||||||
|
import {
|
||||||
|
$table,
|
||||||
|
tableswitch
|
||||||
|
} from '@/http/yskApi/table.js'
|
||||||
|
let datas = reactive({
|
||||||
|
current: 0,
|
||||||
|
item: "",
|
||||||
|
// 桌台列表
|
||||||
|
tableList: [],
|
||||||
|
// 并桌选中
|
||||||
|
selecttableList: '',
|
||||||
|
// 转桌数据
|
||||||
|
changeTable: []
|
||||||
|
})
|
||||||
|
const props = defineProps({
|
||||||
|
item: {
|
||||||
|
type: Array
|
||||||
|
},
|
||||||
|
tableId: {
|
||||||
|
type: String
|
||||||
|
}
|
||||||
|
})
|
||||||
|
onLoad((opt) => {
|
||||||
|
datas.item = JSON.parse(opt.item)
|
||||||
|
})
|
||||||
|
onShow(() => {
|
||||||
|
gettableList()
|
||||||
|
})
|
||||||
|
async function confirm() {
|
||||||
|
// 是否选择其他桌
|
||||||
|
if (datas.selecttableList) {
|
||||||
|
if (datas.current == 0) {
|
||||||
|
// 转桌是否选择菜品
|
||||||
|
if (datas.changeTable.length) {
|
||||||
|
let res = await tableswitch({
|
||||||
|
masterId: datas.item[0].masterId,
|
||||||
|
useType: datas.item[0].useType,
|
||||||
|
cartIds: datas.changeTable,
|
||||||
|
currentTableId: datas.item[0].tableId,
|
||||||
|
targetTableId: datas.selecttableList
|
||||||
|
})
|
||||||
|
if (res) {
|
||||||
|
uni.navigateBack({
|
||||||
|
delta: 2
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
uni.showToast({
|
||||||
|
title: '请选择菜品或桌号!',
|
||||||
|
icon: 'none'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
let res = await tableswitch({
|
||||||
|
masterId: datas.item[0].masterId,
|
||||||
|
useType: datas.item[0].useType,
|
||||||
|
isFull: true,
|
||||||
|
currentTableId: datas.item[0].tableId,
|
||||||
|
targetTableId: datas.selecttableList
|
||||||
|
})
|
||||||
|
if (res) {
|
||||||
|
uni.navigateBack({
|
||||||
|
delta: 2
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
uni.showToast({
|
||||||
|
title: '请选择菜品或桌号!',
|
||||||
|
icon: 'none'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function radioChange(d) {
|
||||||
|
datas.selecttableList = d.detail.value
|
||||||
|
}
|
||||||
|
// 切换转/并桌
|
||||||
|
function onClickItem(e) {
|
||||||
|
if (datas.current !== e.currentIndex) {
|
||||||
|
datas.current = e.currentIndex
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 获取桌台
|
||||||
|
async function gettableList() {
|
||||||
|
const res = await $table.get({
|
||||||
|
page: 1,
|
||||||
|
size: 999
|
||||||
|
})
|
||||||
|
let arr = []
|
||||||
|
res.content.forEach((ele) => {
|
||||||
|
if (ele.status == 'using' && props.tableId != ele.tableId) {
|
||||||
|
arr.push(ele)
|
||||||
|
}
|
||||||
|
});
|
||||||
|
datas.tableList = arr
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatPrice(n) {
|
||||||
|
return Number(n).toFixed(2)
|
||||||
|
}
|
||||||
|
|
||||||
|
function checkboxChange(e) {
|
||||||
|
datas.changeTable = e.detail.value
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.goods {
|
||||||
|
// padding-bottom: 30rpx;
|
||||||
|
border-bottom: 1px dashed #E5E5E5;
|
||||||
|
|
||||||
|
.item {}
|
||||||
|
}
|
||||||
|
|
||||||
|
.img {
|
||||||
|
width: 84rpx;
|
||||||
|
height: 84rpx;
|
||||||
|
border-radius: 8rpx 8rpx 8rpx 8rpx;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
<view class="u-absolute goods bg-fff">
|
<view class="u-absolute goods bg-fff">
|
||||||
<view
|
<view
|
||||||
class="u-p-t-32 color-666 border-bottom bg-fff u-absolute total u-p-r-28 u-p-b-32 u-p-l-28 u-flex u-row-between">
|
class="u-p-t-32 color-666 border-bottom bg-fff u-absolute total u-p-r-28 u-p-b-32 u-p-l-28 u-flex u-row-between">
|
||||||
<view>已添加{{goodsNumber}}件商品</view>
|
<view>已添加{{goodsNumber.toFixed(0)}}件商品</view>
|
||||||
<view class="color-666">
|
<view class="color-666">
|
||||||
<uni-icons color="#666" type="trash"></uni-icons>
|
<uni-icons color="#666" type="trash"></uni-icons>
|
||||||
<text class="u-m-l-10" @tap="setModalShow('clear',true)">清空</text>
|
<text class="u-m-l-10" @tap="setModalShow('clear',true)">清空</text>
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
</image>
|
</image>
|
||||||
</view>
|
</view>
|
||||||
<view class="u-m-l-30 u-m-r-30 color-333">
|
<view class="u-m-l-30 u-m-r-30 color-333">
|
||||||
{{item.number}}
|
{{(item.number).toFixed(2)}}
|
||||||
</view>
|
</view>
|
||||||
<view class="u-flex" @tap="updateNumber(true,index,item)">
|
<view class="u-flex" @tap="updateNumber(true,index,item)">
|
||||||
<image src="/pagesCreateOrder/static/images/icon-add-black.svg" class="icon" mode="">
|
<image src="/pagesCreateOrder/static/images/icon-add-black.svg" class="icon" mode="">
|
||||||
|
|||||||
@@ -1,30 +1,34 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="u-relative u-flex item">
|
<view class="u-relative u-flex item">
|
||||||
|
|
||||||
<up-image :src="data.coverImg" mode="aspectFill" :width="img.width" :height="img.height"></up-image>
|
<up-image :src="data.coverImg" mode="aspectFill" :width="img.width" :height="img.height"></up-image>
|
||||||
<!-- <image lazy-load class="img" :src="data.coverImg" mode="aspectFill" :style="computedImgStyle()"></image> -->
|
<!-- <image lazy-load class="img" :src="data.coverImg" mode="aspectFill" :style="computedImgStyle()"></image> -->
|
||||||
<view class="info u-flex u-row-between u-col-top u-flex-col" @tap="emitEvent('add')">
|
<view class="info u-flex u-row-between u-col-top u-flex-col">
|
||||||
<view>
|
<view>
|
||||||
<view>
|
<view>
|
||||||
<text class="u-line-2">{{data.name}}</text>
|
<text class="u-line-2">{{data.name}}
|
||||||
|
</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="u-font-32 font-bold u-m-t-16">
|
<view class="u-font-32 font-bold u-m-t-16">
|
||||||
¥{{data.price}}
|
¥{{data.price}}
|
||||||
</view>
|
</view>
|
||||||
|
<template v-if="data.type=='weigh'">
|
||||||
|
<view class="btnweigh">称重</view>
|
||||||
|
</template>
|
||||||
</view>
|
</view>
|
||||||
<view class="u-flex">
|
<view class="u-flex">
|
||||||
<template v-if="!isSellout">
|
<template v-if="!isSellout">
|
||||||
<template v-if="!data.isDan">
|
<template v-if="!data.isDan||data.groupType==1">
|
||||||
<button class="btn" hover-class="btn-hover-class" @tap="emitEvent('chooseGuige')">选规格</button>
|
<button class="btn" hover-class="btn-hover-class" @tap="emitEvent('chooseGuige')">选规格</button>
|
||||||
</template>
|
</template>
|
||||||
<template v-else>
|
<template v-else>
|
||||||
<view class="u-flex icon-btn">
|
<view class="u-flex icon-btn">
|
||||||
<view class="u-flex" @tap.stop="emitEvent('add')">
|
<view class="u-flex" @tap.stop="emitEvent(data.type=='weigh'?'tapweigh':'add')">
|
||||||
<image src="/pagesCreateOrder/static/images/icon-add.svg" class="icon" mode=""></image>
|
<image src="/pagesCreateOrder/static/images/icon-add.svg" class="icon" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
<template v-if="data.chooseNumber">
|
<template v-if="data.chooseNumber">
|
||||||
<view class="u-font-32">
|
<view class="u-font-32">
|
||||||
{{data.chooseNumber}}
|
{{(data.chooseNumber).toFixed(2)}}
|
||||||
</view>
|
</view>
|
||||||
<view class="u-flex" @tap.stop="emitEvent('reduce')">
|
<view class="u-flex" @tap.stop="emitEvent('reduce')">
|
||||||
<image src="/pagesCreateOrder/static/images/icon-reduce.svg" class="icon" mode="">
|
<image src="/pagesCreateOrder/static/images/icon-reduce.svg" class="icon" mode="">
|
||||||
@@ -55,20 +59,20 @@
|
|||||||
} from 'vue';
|
} from 'vue';
|
||||||
import util from '../util.js';
|
import util from '../util.js';
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
img:{
|
img: {
|
||||||
type:Object,
|
type: Object,
|
||||||
default:{
|
default: {
|
||||||
width:'250rpx',
|
width: '250rpx',
|
||||||
height:'272rpx'
|
height: '272rpx'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
index: {
|
index: {
|
||||||
type: [Number,String],
|
type: [Number, String],
|
||||||
},
|
},
|
||||||
isSeatFee:{
|
isSeatFee: {
|
||||||
//是否为餐位费
|
//是否为餐位费
|
||||||
type:Boolean,
|
type: Boolean,
|
||||||
default:false
|
default: false
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
type: Object,
|
type: Object,
|
||||||
@@ -80,35 +84,35 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
function computedImgStyle(){
|
function computedImgStyle() {
|
||||||
return {
|
return {
|
||||||
width:props.img.width,
|
width: props.img.width,
|
||||||
height:props.img.height
|
height: props.img.height
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//判断是否是菜品
|
//判断是否是菜品
|
||||||
function isGoods(){
|
function isGoods() {
|
||||||
return props.data.hasOwnProperty('id')
|
return props.data.hasOwnProperty('id')
|
||||||
}
|
}
|
||||||
|
|
||||||
//判断商品是否售尽
|
//判断商品是否售尽
|
||||||
const isSellout = computed(() => {
|
const isSellout = computed(() => {
|
||||||
const item = props.data
|
const item = props.data
|
||||||
if(!isGoods()){
|
if (!isGoods()) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
item.isPauseSale ||
|
item.isPauseSale ||
|
||||||
(item.typeEnum !== "sku" && item.isStock==1&& item.stockNumber <= 0)
|
(item.typeEnum !== "sku" && item.isStock == 1 && item.stockNumber <= 0)
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
const emits = defineEmits(['add', 'reduce', 'chooseGuige'])
|
const emits = defineEmits(['add', 'reduce', 'chooseGuige','tapweigh'])
|
||||||
|
|
||||||
function emitEvent(emitName){
|
function emitEvent(emitName) {
|
||||||
if(isGoods()){
|
if (isGoods()) {
|
||||||
emits(emitName, props.index)
|
emits(emitName, props.index)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -133,10 +137,24 @@
|
|||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btnweigh {
|
||||||
|
margin: 5rpx 0;
|
||||||
|
width: 100rpx;
|
||||||
|
background: linear-gradient(124deg, #73c969 6%, #27921b 93%);
|
||||||
|
border-radius: 10rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
padding: 6rpx 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.btn-hover-class {
|
.btn-hover-class {
|
||||||
opacity: .6;
|
opacity: .6;
|
||||||
}
|
}
|
||||||
image{will-change: transform}
|
|
||||||
|
image {
|
||||||
|
will-change: transform
|
||||||
|
}
|
||||||
|
|
||||||
.item {
|
.item {
|
||||||
// width: 250rpx;
|
// width: 250rpx;
|
||||||
// height: 272rpx;
|
// height: 272rpx;
|
||||||
|
|||||||
181
pagesCreateOrder/index/components/taocanModel.vue
Normal file
181
pagesCreateOrder/index/components/taocanModel.vue
Normal file
@@ -0,0 +1,181 @@
|
|||||||
|
<template>
|
||||||
|
<my-model ref="model" borderRadius="12" :title="datas.title">
|
||||||
|
<template #desc>
|
||||||
|
<scroll-view scroll-y="true" style="height: 50vh;" class="u-p-30 guigeModel">
|
||||||
|
<view class="u-m-b-40" v-for="(item,index) in datas.skus" :key="index">
|
||||||
|
<view class="u-text-left">
|
||||||
|
<view class="color-333">{{item.title}} <text
|
||||||
|
style="color:#999">({{item.count}}选{{item.number}})</text> </view>
|
||||||
|
</view>
|
||||||
|
<view class="u-flex u-m-t-20 u-flex-wrap">
|
||||||
|
<view class="item" @tap="chooseSkd(skd,item)" :class="{active:skd.select==true}"
|
||||||
|
v-for="(skd,skdIndex) in item.goods" :key="skdIndex">
|
||||||
|
{{skd.proName}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
</template>
|
||||||
|
<template #btn>
|
||||||
|
<view class="u-p-30 border-top ">
|
||||||
|
<view class="u-flex u-p-b-30 u-row-between">
|
||||||
|
<view class="price">
|
||||||
|
<text>¥</text>
|
||||||
|
<text>{{datas.price}}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="u-m-t-10">
|
||||||
|
<my-button @tap="confirm">添加</my-button>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
</my-model>
|
||||||
|
<uni-popup ref="popup" type="message">
|
||||||
|
<uni-popup-message type="info" message="请选择套餐" :duration="2000"></uni-popup-message>
|
||||||
|
</uni-popup>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
computed,
|
||||||
|
getCurrentInstance,
|
||||||
|
reactive,
|
||||||
|
ref,
|
||||||
|
watch
|
||||||
|
} from 'vue';
|
||||||
|
import util from '../util.js';
|
||||||
|
import infobox from '@/commons/utils/infoBox.js'
|
||||||
|
import myModel from '@/components/my-components/my-model.vue'
|
||||||
|
import myButton from '@/components/my-components/my-button.vue'
|
||||||
|
import {
|
||||||
|
onShow,
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
|
const props = defineProps({
|
||||||
|
goodsData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => {}
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
let datas = reactive({
|
||||||
|
item: "",
|
||||||
|
title: "",
|
||||||
|
price: "",
|
||||||
|
skus: [],
|
||||||
|
// 几选几,的和
|
||||||
|
selectNumber: 0,
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
// const selSku = computed(() => {
|
||||||
|
// return props.skus.reduce((prve, cur) => {
|
||||||
|
// prve.push(cur.sel)
|
||||||
|
// return prve
|
||||||
|
// }, []).join()
|
||||||
|
// })
|
||||||
|
|
||||||
|
|
||||||
|
// const goods = computed(() => {
|
||||||
|
// return props.skuMap[selSku.value]
|
||||||
|
// })
|
||||||
|
watch(() => props.goodsData, (newval) => {
|
||||||
|
newval.proGroupVo.forEach(ele => {
|
||||||
|
ele.selectData = []
|
||||||
|
})
|
||||||
|
datas.item = newval
|
||||||
|
datas.title = newval.name
|
||||||
|
datas.price = newval.price
|
||||||
|
datas.skus = newval.proGroupVo
|
||||||
|
datas.skus.forEach(ele => {
|
||||||
|
datas.selectNumber += ele.number
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
const emits = defineEmits(['confirm', 'updateSku'])
|
||||||
|
|
||||||
|
function chooseSkd(skd, item) {
|
||||||
|
if (item.selectData.includes(skd.proId)) {
|
||||||
|
skd.select = false
|
||||||
|
let indexs = item.selectData.indexOf(skd.proId)
|
||||||
|
item.selectData.splice(indexs, 1)
|
||||||
|
} else {
|
||||||
|
if (item.selectData.length < item.number) {
|
||||||
|
skd.select = true
|
||||||
|
item.selectData.push(skd.proId)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const model = ref(null)
|
||||||
|
|
||||||
|
function open() {
|
||||||
|
model.value.open()
|
||||||
|
}
|
||||||
|
|
||||||
|
function close() {
|
||||||
|
datas.selectNumber = 0
|
||||||
|
model.value.close()
|
||||||
|
}
|
||||||
|
const instance = getCurrentInstance();
|
||||||
|
|
||||||
|
function confirm() {
|
||||||
|
// 将数据保存进对应的值
|
||||||
|
let arr = []
|
||||||
|
datas.item.proGroupVo.forEach(ele => {
|
||||||
|
arr.push(...ele.selectData)
|
||||||
|
})
|
||||||
|
if (arr.length == datas.selectNumber) {
|
||||||
|
emits('confirm', arr, datas.item)
|
||||||
|
close()
|
||||||
|
} else {
|
||||||
|
instance.ctx.$refs.popup.open()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
defineExpose({
|
||||||
|
open,
|
||||||
|
close
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.border-top {}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
width: 40rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.guigeModel {
|
||||||
|
.item {
|
||||||
|
color: #666;
|
||||||
|
font-size: 24rpx;
|
||||||
|
padding: 4rpx 28rpx;
|
||||||
|
border: 1px solid #E5E5E5;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
margin-bottom: 20rpx;
|
||||||
|
transition: all .2s ease-in-out;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
border-color: $my-main-color;
|
||||||
|
color: $my-main-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.disabled {
|
||||||
|
color: #ccc;
|
||||||
|
border-color: #eee;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.price {
|
||||||
|
color: #EB4F4F;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border-top {
|
||||||
|
border-top: 1px solid #E5E5E5;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
290
pagesCreateOrder/index/components/weigh.vue
Normal file
290
pagesCreateOrder/index/components/weigh.vue
Normal file
@@ -0,0 +1,290 @@
|
|||||||
|
<template>
|
||||||
|
<view class="">
|
||||||
|
<up-overlay :show="overlayshow" @click="overlayshow = false">
|
||||||
|
<view class="boxoverlay">
|
||||||
|
<view class="rect" @tap.stop>
|
||||||
|
<view class="title">
|
||||||
|
<view>
|
||||||
|
标题
|
||||||
|
</view>
|
||||||
|
<view class="" @click="overlayshow = false">
|
||||||
|
<up-icon name="close" color="#93969b" size="20"></up-icon>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="inputtop">
|
||||||
|
<view class="dj">
|
||||||
|
<view class="text">单价</view>
|
||||||
|
<view class="jg">¥{{form.goods.lowPrice}}/{{form.goods.unitName}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="inputdj">
|
||||||
|
<view>重量</view>
|
||||||
|
<view class="inputdjbox">
|
||||||
|
<view class="inputdisplay">{{ currentInput }}</view>
|
||||||
|
<text>{{ form.goods.unitName }}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="keyboard">
|
||||||
|
<button v-for="(num, index) in numberButtons" :key="index" @click="handleClick(num)">
|
||||||
|
{{ num }}
|
||||||
|
</button>
|
||||||
|
<button @click="deleteLast">←</button>
|
||||||
|
</view>
|
||||||
|
<view class="classmoney">
|
||||||
|
¥ {{ (form.goods.lowPrice * currentInput).toFixed(2) }}
|
||||||
|
</view>
|
||||||
|
<view class="classconfirm" @click="clickconfirm">
|
||||||
|
确认
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</up-overlay>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
onLoad,
|
||||||
|
onShow,
|
||||||
|
onReachBottom
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
|
import {
|
||||||
|
computed,
|
||||||
|
reactive,
|
||||||
|
ref,
|
||||||
|
watch,
|
||||||
|
defineExpose,
|
||||||
|
defineEmits
|
||||||
|
} from 'vue';
|
||||||
|
const emit = defineEmits(['refresh'])
|
||||||
|
const currentInput = ref('');
|
||||||
|
|
||||||
|
const numberButtons = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '.'];
|
||||||
|
|
||||||
|
const handleClick = (value) => {
|
||||||
|
// 首位不能输入0
|
||||||
|
if (currentInput.value === '') {
|
||||||
|
if (value === '0') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (value === '.' && currentInput.value.indexOf('.') !== -1) {
|
||||||
|
return; // 如果已经存在小数点,不再添加
|
||||||
|
}
|
||||||
|
if (value === '.' && currentInput.value === '') {
|
||||||
|
currentInput.value = '0.';
|
||||||
|
} else {
|
||||||
|
currentInput.value += value;
|
||||||
|
}
|
||||||
|
// 限制小数点后两位
|
||||||
|
const parts = currentInput.value.split('.');
|
||||||
|
if (parts.length > 1 && parts[1].length > 2) {
|
||||||
|
currentInput.value = currentInput.value.slice(0, -1);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const deleteLast = () => {
|
||||||
|
currentInput.value = currentInput.value.slice(0, -1);
|
||||||
|
};
|
||||||
|
|
||||||
|
const clickconfirm = () => {
|
||||||
|
// 首位不能输入0
|
||||||
|
if (currentInput.value === '') {
|
||||||
|
uni.showToast({
|
||||||
|
title: '请输入',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
emit('weighgoodsUpdate', form.foodsindex, form.index, true, undefined, currentInput.value)
|
||||||
|
overlayshow.value = false
|
||||||
|
}
|
||||||
|
//显示
|
||||||
|
const overlayshow = ref(false);
|
||||||
|
const form = reactive({})
|
||||||
|
const open = (foodsindex, index, goods) => {
|
||||||
|
currentInput.value = ''
|
||||||
|
Object.assign(form, {
|
||||||
|
foodsindex,
|
||||||
|
index,
|
||||||
|
goods
|
||||||
|
})
|
||||||
|
overlayshow.value = true
|
||||||
|
}
|
||||||
|
defineExpose({
|
||||||
|
open
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
page {
|
||||||
|
background: #F9F9F9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.boxoverlay {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
.rect {
|
||||||
|
padding: 32rpx 28rpx;
|
||||||
|
width: 80%;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 18rpx;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding-bottom: 20rpx;
|
||||||
|
font-size: 40rpx;
|
||||||
|
border-bottom: 1rpx solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inputtop {
|
||||||
|
margin-top: 20rpx;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
.dj {
|
||||||
|
width: 32%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start;
|
||||||
|
|
||||||
|
.text {
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.jg {
|
||||||
|
margin-top: 16rpx;
|
||||||
|
background-color: #e8f4ff;
|
||||||
|
color: #1890ff;
|
||||||
|
height: 60rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
padding: 0 20rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #1890ff;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.inputdj {
|
||||||
|
width: 66%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start;
|
||||||
|
font-weight: 300;
|
||||||
|
font-size: 24rpx;
|
||||||
|
|
||||||
|
.inputdjbox {
|
||||||
|
margin-top: 16rpx;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
border: 1rpx solid #ccc;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
padding-left: 20rpx;
|
||||||
|
height: 60rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
background: #fff;
|
||||||
|
|
||||||
|
.inputdisplay {
|
||||||
|
width: auto;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
text {
|
||||||
|
border: 1rpx solid #ccc;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
padding: 0 20rpx;
|
||||||
|
background: #f5f7fa;
|
||||||
|
color: #a7aaaf;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.keyboard {
|
||||||
|
margin-top: 20rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
button {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width: 28%;
|
||||||
|
margin: 10rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.keyboard-button {
|
||||||
|
width: 28%;
|
||||||
|
margin: 10rpx;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5rpx;
|
||||||
|
box-shadow: 0 0 5rpx rgba(0, 0, 0, 0.3), 0 0 10rpx rgba(0, 0, 0, 0.2);
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
// .keyboard-button:hover {
|
||||||
|
// box-shadow: 0 0 10rpx rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.3);
|
||||||
|
// transform: translateY(-2rpx);
|
||||||
|
// }
|
||||||
|
|
||||||
|
.dot-button {
|
||||||
|
// background-color: #FFC107;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clear-button {
|
||||||
|
// background-color: #FF5733;
|
||||||
|
}
|
||||||
|
|
||||||
|
.clear-button:hover {
|
||||||
|
box-shadow: 0 0 10px rgba(255, 87, 51, 0.5), 0 0 20px rgba(255, 87, 51, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.delete-button {
|
||||||
|
// background-color: #33FF57;
|
||||||
|
}
|
||||||
|
|
||||||
|
.delete-button:hover {
|
||||||
|
// box-shadow: 0 0 10px rgba(51, 255, 87, 0.5), 0 0 20px rgba(51, 255, 87, 0.3);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.classmoney {
|
||||||
|
margin-top: 16rpx;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 40rpx;
|
||||||
|
text-align: left;
|
||||||
|
color: #ff5152;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.classconfirm {
|
||||||
|
width: 100%;
|
||||||
|
margin: 30rpx auto 0 auto;
|
||||||
|
border-radius: 16rpx;
|
||||||
|
text-align: center;
|
||||||
|
background: #1890ff;
|
||||||
|
color: #fff;
|
||||||
|
padding: 10rpx 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -78,7 +78,8 @@
|
|||||||
<view class="thumb-box" v-for="(goodsItem, goodsIndex) in item.foods" :key="goodsIndex">
|
<view class="thumb-box" v-for="(goodsItem, goodsIndex) in item.foods" :key="goodsIndex">
|
||||||
<list-goods-item @chooseGuige="chooseGuige($event,index)"
|
<list-goods-item @chooseGuige="chooseGuige($event,index)"
|
||||||
@add="goodsUpdate($event,index,true)" @reduce="goodsUpdate($event,index,false)"
|
@add="goodsUpdate($event,index,true)" @reduce="goodsUpdate($event,index,false)"
|
||||||
:index="goodsIndex" :data="goodsItem"></list-goods-item>
|
@tapweigh="tapweigh($event,index)" :index="goodsIndex"
|
||||||
|
:data="goodsItem"></list-goods-item>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<!-- <template v-if="item.name==='附加费'">
|
<!-- <template v-if="item.name==='附加费'">
|
||||||
@@ -104,8 +105,8 @@
|
|||||||
@chooseGuige="chooseGuige(goodsItem.goodsIndex,goodsItem.index)"
|
@chooseGuige="chooseGuige(goodsItem.goodsIndex,goodsItem.index)"
|
||||||
@add="searchGoodsUpdate(goodsItem,goodsIndex,true)"
|
@add="searchGoodsUpdate(goodsItem,goodsIndex,true)"
|
||||||
@reduce="searchGoodsUpdate(goodsItem,goodsIndex,false)"
|
@reduce="searchGoodsUpdate(goodsItem,goodsIndex,false)"
|
||||||
|
@tapweigh="tapweigh(goodsItem.goodsIndex,goodsItem.index)"
|
||||||
:index="goodsItem.goodsIndex" :data="goodsItem"></list-goods-item>
|
:index="goodsItem.goodsIndex" :data="goodsItem"></list-goods-item>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<my-img-empty v-if="!searchResult.length" tips="未搜索到相关商品"></my-img-empty>
|
<my-img-empty v-if="!searchResult.length" tips="未搜索到相关商品"></my-img-empty>
|
||||||
@@ -120,15 +121,16 @@
|
|||||||
<my-car :isCreateOrderToDetail="isCreateOrderToDetail" @updateNumber="carsNumberChange" :user="data.vipUser"
|
<my-car :isCreateOrderToDetail="isCreateOrderToDetail" @updateNumber="carsNumberChange" :user="data.vipUser"
|
||||||
:masterId="data.masterId" :table="data.table" :data="cars" @clear="onClearCart"></my-car>
|
:masterId="data.masterId" :table="data.table" :data="cars" @clear="onClearCart"></my-car>
|
||||||
</view>
|
</view>
|
||||||
|
<!-- 套餐选择规格 -->
|
||||||
|
<taocanModel ref="taocanModelRef" @confirm="taocanConfirm" :goodsData="selGoods"></taocanModel>
|
||||||
<!-- 选择规格 -->
|
<!-- 选择规格 -->
|
||||||
<guige-model @update-sku="updateSkuSel" @confirm="guigeConfirm" ref="chooseGuigeModel" :goodsData="selGoods"
|
<guige-model @update-sku="updateSkuSel" @confirm="guigeConfirm" ref="chooseGuigeModel" :goodsData="selGoods"
|
||||||
:title="guigeModelData.title" :sku-map="guigeModelData.chooseGoods.skuMap"
|
:title="guigeModelData.title" :sku-map="guigeModelData.chooseGoods.skuMap"
|
||||||
:skus="guigeModelData.chooseGoods.skus"></guige-model>
|
:skus="guigeModelData.chooseGoods.skus"></guige-model>
|
||||||
<!-- 添加附加费 -->
|
<!-- 添加附加费 -->
|
||||||
<my-surcharge @confirm="surchargeConfirm" ref="surcharge" title="添加附加费"></my-surcharge>
|
<my-surcharge @confirm="surchargeConfirm" ref="surcharge" title="添加附加费"></my-surcharge>
|
||||||
|
<!-- 称重 -->
|
||||||
|
<weigh-item ref="refweighitem" @weighgoodsUpdate='goodsUpdate'></weigh-item>
|
||||||
</view>
|
</view>
|
||||||
<up-modal title="提示" content="该台桌购物车里有商品,是否清除该台桌里的商品?" :show="modal.clear" showCancelButton closeOnClickOverlay
|
<up-modal title="提示" content="该台桌购物车里有商品,是否清除该台桌里的商品?" :show="modal.clear" showCancelButton closeOnClickOverlay
|
||||||
@confirm="confirmModelConfirm" @cancel="confirmModelConfirm('cancel')" @close="setModalShow('clear',false)"
|
@confirm="confirmModelConfirm" @cancel="confirmModelConfirm('cancel')" @close="setModalShow('clear',false)"
|
||||||
@@ -150,6 +152,8 @@
|
|||||||
import util from './util.js';
|
import util from './util.js';
|
||||||
import color from '@/commons/color.js';
|
import color from '@/commons/color.js';
|
||||||
import guigeModel from './components/guige'
|
import guigeModel from './components/guige'
|
||||||
|
import taocanModel from './components/taocanModel.vue'
|
||||||
|
import weighItem from './components/weigh.vue'
|
||||||
import listGoodsItem from './components/list-goods-item.vue'
|
import listGoodsItem from './components/list-goods-item.vue'
|
||||||
import mySurcharge from './components/surcharge'
|
import mySurcharge from './components/surcharge'
|
||||||
import {
|
import {
|
||||||
@@ -277,6 +281,26 @@
|
|||||||
}
|
}
|
||||||
return obj
|
return obj
|
||||||
}
|
}
|
||||||
|
// 添加套餐
|
||||||
|
async function taocanConfirm(d, item) {
|
||||||
|
const cartGoods = await addCart({
|
||||||
|
num: 1,
|
||||||
|
groupProductIdList: d,
|
||||||
|
productId: item.id,
|
||||||
|
skuId: item.specList[0].id
|
||||||
|
})
|
||||||
|
infoBox.showToast('添加成功')
|
||||||
|
// guigeConfirm(item, 1)
|
||||||
|
// updateCartGoods({
|
||||||
|
// productId: item.id,
|
||||||
|
// skuId: item.specList[0].id,
|
||||||
|
// cartId: cartGoods.id
|
||||||
|
// })
|
||||||
|
cars.push({
|
||||||
|
...cartGoods,
|
||||||
|
specSnap: item.specSnap
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
function scanCode() {
|
function scanCode() {
|
||||||
// 只允许通过相机扫码
|
// 只允许通过相机扫码
|
||||||
@@ -671,11 +695,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function toLinshi() {
|
function toLinshi() {
|
||||||
go.to('PAGES_ADD_TEMP_CUISINE',{
|
go.to('PAGES_CHOOSE_ADD_TEMP_CUISINE', {
|
||||||
masterId:data.masterId,
|
masterId: data.masterId,
|
||||||
tableId:data.table.tableId,
|
tableId: data.table.tableId,
|
||||||
vipUserId:option.vipUserId?option.vipUserId:'',
|
vipUserId: option.vipUserId ? option.vipUserId : '',
|
||||||
useType:uni.getStorageSync('useType')
|
useType: uni.getStorageSync('useType')
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -833,7 +857,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
let selGoods = ref({})
|
let selGoods = ref({});
|
||||||
|
|
||||||
|
// 称重
|
||||||
|
const refweighitem = ref(null)
|
||||||
|
const tapweigh = (foodsindex, index) => {
|
||||||
|
const goods = data.tabbar[index].foods[foodsindex]
|
||||||
|
refweighitem.value.open(foodsindex, index, goods)
|
||||||
|
}
|
||||||
|
|
||||||
function chooseGuige(foodsindex, index) {
|
function chooseGuige(foodsindex, index) {
|
||||||
if (!canAddGoods()) {
|
if (!canAddGoods()) {
|
||||||
@@ -843,13 +874,19 @@
|
|||||||
}
|
}
|
||||||
const $goods = data.tabbar[index].foods[foodsindex]
|
const $goods = data.tabbar[index].foods[foodsindex]
|
||||||
selGoods.value = $goods
|
selGoods.value = $goods
|
||||||
guigeModelData.title = $goods.name
|
if ($goods.groupType == 1) {
|
||||||
const specList = $goods.specList;
|
instance.ctx.$refs.taocanModelRef.open()
|
||||||
const tagSnap = JSON.parse($goods.skuResult.tagSnap)
|
} else {
|
||||||
const skuMap = returnSelGoodsSkuMap(specList)
|
guigeModelData.title = $goods.name
|
||||||
const skuList = returnSelGoodsSkuList(tagSnap)
|
const specList = $goods.specList;
|
||||||
setSkugoodsDefaultInit($goods, skuList, skuMap, specList)
|
const skuMap = returnSelGoodsSkuMap(specList)
|
||||||
chooseGuigeModel.value.open()
|
// 多规格,和套餐规格区分.groupType=1 套餐多规格
|
||||||
|
let tagSnap = JSON.parse($goods.skuResult.tagSnap)
|
||||||
|
const skuList = returnSelGoodsSkuList(tagSnap)
|
||||||
|
setSkugoodsDefaultInit($goods, skuList, skuMap, specList)
|
||||||
|
chooseGuigeModel.value.open()
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function guigeConfirm(sku, num) {
|
async function guigeConfirm(sku, num) {
|
||||||
@@ -906,9 +943,11 @@
|
|||||||
const cartId = goods.id
|
const cartId = goods.id
|
||||||
const tabbarIndex = data.tabbar.findIndex(v => v.id == categoryId)
|
const tabbarIndex = data.tabbar.findIndex(v => v.id == categoryId)
|
||||||
//临时菜没有对应商品数据
|
//临时菜没有对应商品数据
|
||||||
const $goods =!productId?undefined:data.tabbar[tabbarIndex].foods.find(v => v.id == productId)
|
const $goods = !productId ? undefined : data.tabbar[tabbarIndex].foods.find(v => v.id == productId)
|
||||||
//临时菜没有skuList
|
//临时菜没有skuList
|
||||||
const $sku =!productId?{suit:1}:$goods.specList.find(v => v.id == skuId)
|
const $sku = !productId ? {
|
||||||
|
suit: 1
|
||||||
|
} : $goods.specList.find(v => v.id == skuId)
|
||||||
|
|
||||||
if (num === 0 || num < $sku.suit) {
|
if (num === 0 || num < $sku.suit) {
|
||||||
//移除
|
//移除
|
||||||
@@ -958,7 +997,8 @@
|
|||||||
searchResult.value[index].chooseNumber = chooseNumber
|
searchResult.value[index].chooseNumber = chooseNumber
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async function goodsUpdate(foodsindex, index, isAdd, searchGoodsIndex) {
|
|
||||||
|
async function goodsUpdate(foodsindex, index, isAdd, searchGoodsIndex, showCurrentInput) { // showCurrentInput 称重才会传的参数
|
||||||
// if (!canAddGoods()) {
|
// if (!canAddGoods()) {
|
||||||
// return infoBox.showToast('请先选择桌台', 0.5).then(res => {
|
// return infoBox.showToast('请先选择桌台', 0.5).then(res => {
|
||||||
// chooseTable()
|
// chooseTable()
|
||||||
@@ -972,13 +1012,13 @@
|
|||||||
});
|
});
|
||||||
const productId = $goods.id
|
const productId = $goods.id
|
||||||
const skuId = $goods.specList[0].id
|
const skuId = $goods.specList[0].id
|
||||||
const suit = $goods.specList[0].suit || 1
|
let suit = $goods.specList[0].suit || 1
|
||||||
if (goodsInCarIndex !== -1) {
|
if (goodsInCarIndex !== -1) {
|
||||||
//更新
|
//更新
|
||||||
const carGoods = cars[goodsInCarIndex]
|
const carGoods = cars[goodsInCarIndex]
|
||||||
const cartId = carGoods.id
|
const cartId = carGoods.id
|
||||||
const step = isAdd ? 1 : -1
|
const step = isAdd ? 1 : -1
|
||||||
const num = carGoods.number * 1 + step
|
let num = carGoods.number * 1 + step
|
||||||
if (num === 0 || num < suit) {
|
if (num === 0 || num < suit) {
|
||||||
//移除
|
//移除
|
||||||
cars.splice(goodsInCarIndex, 1)
|
cars.splice(goodsInCarIndex, 1)
|
||||||
@@ -988,6 +1028,10 @@
|
|||||||
cartId
|
cartId
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 不影响之前的代码 称重num单独处理
|
||||||
|
if ($goods.type == 'weigh' && showCurrentInput) {
|
||||||
|
num = carGoods.number * 1 + Number(showCurrentInput)
|
||||||
|
}
|
||||||
const {
|
const {
|
||||||
number
|
number
|
||||||
} = await updateCartGoods({
|
} = await updateCartGoods({
|
||||||
@@ -1000,16 +1044,23 @@
|
|||||||
$goods.chooseNumber = number
|
$goods.chooseNumber = number
|
||||||
setSearchGoods(searchGoodsIndex, number)
|
setSearchGoods(searchGoodsIndex, number)
|
||||||
} else {
|
} else {
|
||||||
//增加
|
// 不影响之前的代码 称重suit单独处理
|
||||||
const num = suit
|
if ($goods.type == 'weigh' && showCurrentInput) {
|
||||||
const cartGoods = await addCart({
|
suit = showCurrentInput
|
||||||
num,
|
}
|
||||||
productId,
|
// 套餐和单规格
|
||||||
skuId
|
if ($goods.groupType != 1) {
|
||||||
})
|
//增加
|
||||||
infoBox.showToast('添加成功')
|
const num = suit
|
||||||
$goods.chooseNumber = num
|
const cartGoods = await addCart({
|
||||||
cars.push(cartGoods)
|
num,
|
||||||
|
productId,
|
||||||
|
skuId
|
||||||
|
})
|
||||||
|
infoBox.showToast('添加成功')
|
||||||
|
$goods.chooseNumber = Number(num)
|
||||||
|
cars.push(cartGoods)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -1201,7 +1252,7 @@
|
|||||||
console.log('update:createOrderIndex');
|
console.log('update:createOrderIndex');
|
||||||
init()
|
init()
|
||||||
})
|
})
|
||||||
uni.$on('add:cashCai', async() => {
|
uni.$on('add:cashCai', async () => {
|
||||||
console.log('add:cashCai');
|
console.log('add:cashCai');
|
||||||
const cartRes = await getCart()
|
const cartRes = await getCart()
|
||||||
cars.length = 0
|
cars.length = 0
|
||||||
|
|||||||
@@ -4,6 +4,13 @@
|
|||||||
<text class="">桌号:</text>
|
<text class="">桌号:</text>
|
||||||
<text class="">{{orderInfo.tableName||""}}</text>
|
<text class="">{{orderInfo.tableName||""}}</text>
|
||||||
</view>
|
</view>
|
||||||
|
<view class=" font-bold u-p-b-32 border-bottom u-m-b-24" v-if="orderInfo.tableName&&orderInfo.status=='unpaid'">
|
||||||
|
<view class="block" @tap="rotatingTables"
|
||||||
|
style="display: flex;align-items: center;justify-content: space-between;">
|
||||||
|
<view>转桌/并桌</view>
|
||||||
|
<uni-icons type="right" color="#999" size="16"></uni-icons>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class=" color-999 border-bottom u-p-b-24">
|
<view class=" color-999 border-bottom u-p-b-24">
|
||||||
<text>共</text>
|
<text>共</text>
|
||||||
<text class="color-333 "> {{goodsNumber}}</text>
|
<text class="color-333 "> {{goodsNumber}}</text>
|
||||||
@@ -347,57 +354,58 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
const canTuiKuanPrice = computed(() => {
|
const canTuiKuanPrice = computed(() => {
|
||||||
const goodsTotal= props.data.reduce((prve, cur) => {
|
const goodsTotal = props.data.reduce((prve, cur) => {
|
||||||
// const curTotal=cur.info.filter(v=>!v.userCouponId).reduce((a,b)=>{
|
// const curTotal=cur.info.filter(v=>!v.userCouponId).reduce((a,b)=>{
|
||||||
// return a+b.priceAmount*1
|
// return a+b.priceAmount*1
|
||||||
// },0)
|
// },0)
|
||||||
const curTotal = cur.info.filter(v => !isTui(v)&& !v.userCouponId)
|
const curTotal = cur.info.filter(v => !isTui(v) && !v.userCouponId)
|
||||||
.reduce((a, b) => {
|
.reduce((a, b) => {
|
||||||
return a + b.priceAmount * 1
|
return a + b.priceAmount * 1
|
||||||
}, 0)
|
}, 0)
|
||||||
return prve + curTotal
|
return prve + curTotal
|
||||||
}, 0)
|
}, 0)
|
||||||
console.log(goodsTotal);
|
console.log(goodsTotal);
|
||||||
console.log(seatFeePrice.value);
|
console.log(seatFeePrice.value);
|
||||||
return (goodsTotal+seatFeePrice.value*1).toFixed(2)
|
return (goodsTotal + seatFeePrice.value * 1).toFixed(2)
|
||||||
})
|
})
|
||||||
const TuiKuanPrice = computed(() => {
|
const TuiKuanPrice = computed(() => {
|
||||||
return props.data.reduce((prve, cur) => {
|
|
||||||
// const curTotal=cur.info.filter(v=>!v.userCouponId).reduce((a,b)=>{
|
|
||||||
// return a+b.priceAmount*1
|
|
||||||
// },0)
|
|
||||||
const curTotal = cur.info.filter(v => isTui(v)&&!v.userCouponId)
|
|
||||||
.reduce((a, b) => {
|
|
||||||
return a + b.priceAmount * 1
|
|
||||||
}, 0)
|
|
||||||
return prve + curTotal
|
|
||||||
}, 0)
|
|
||||||
})
|
|
||||||
const noTuiKuanPrice=computed(()=>{
|
|
||||||
return props.data.reduce((prve, cur) => {
|
return props.data.reduce((prve, cur) => {
|
||||||
const curTotal = cur.info.filter(v => !isTui(v)&&!v.userCouponId)
|
// const curTotal=cur.info.filter(v=>!v.userCouponId).reduce((a,b)=>{
|
||||||
|
// return a+b.priceAmount*1
|
||||||
|
// },0)
|
||||||
|
const curTotal = cur.info.filter(v => isTui(v) && !v.userCouponId)
|
||||||
.reduce((a, b) => {
|
.reduce((a, b) => {
|
||||||
return a + b.priceAmount * 1
|
return a + b.priceAmount * 1
|
||||||
}, 0)
|
}, 0)
|
||||||
return prve + curTotal
|
return prve + curTotal
|
||||||
}, 0)
|
}, 0)
|
||||||
})
|
})
|
||||||
const cantuiSeatFee=computed(()=>{
|
const noTuiKuanPrice = computed(() => {
|
||||||
let seatFee=props.orderInfo.seatInfo?(props.orderInfo.seatInfo.priceAmount):0
|
return props.data.reduce((prve, cur) => {
|
||||||
|
const curTotal = cur.info.filter(v => !isTui(v) && !v.userCouponId)
|
||||||
|
.reduce((a, b) => {
|
||||||
|
return a + b.priceAmount * 1
|
||||||
|
}, 0)
|
||||||
|
return prve + curTotal
|
||||||
|
}, 0)
|
||||||
|
})
|
||||||
|
const cantuiSeatFee = computed(() => {
|
||||||
|
let seatFee = props.orderInfo.seatInfo ? (props.orderInfo.seatInfo.priceAmount) : 0
|
||||||
const bili = Math.floor((seatFee / canTuiKuanPrice.value) * 100) / 100
|
const bili = Math.floor((seatFee / canTuiKuanPrice.value) * 100) / 100
|
||||||
seatFee= Math.floor((props.orderInfo.amount-props.orderInfo.refundAmount) * bili * 100) / 100
|
seatFee = Math.floor((props.orderInfo.amount - props.orderInfo.refundAmount) * bili * 100) / 100
|
||||||
return seatFee
|
return seatFee
|
||||||
})
|
})
|
||||||
|
|
||||||
function returnCanTuiMoney(item) {
|
function returnCanTuiMoney(item) {
|
||||||
return props.orderInfo.status == 'unpaid'? item.priceAmount: item.canReturnAmount
|
return props.orderInfo.status == 'unpaid' ? item.priceAmount : item.priceAmount
|
||||||
if (props.orderInfo.status == 'unpaid') {
|
if (props.orderInfo.status == 'unpaid') {
|
||||||
return returnTotalMoney(item)
|
return returnTotalMoney(item)
|
||||||
} else {
|
} else {
|
||||||
if(props.orderInfo.pointsDiscountAmount>0||props.orderInfo.fullCouponDiscountAmount>0){
|
if (props.orderInfo.pointsDiscountAmount > 0 || props.orderInfo.fullCouponDiscountAmount > 0) {
|
||||||
return item.canReturnAmount
|
return item.canReturnAmount
|
||||||
// const bili=Math.floor((item.priceAmount/canTuiKuanPrice.value )*100)/100
|
// const bili=Math.floor((item.priceAmount/canTuiKuanPrice.value )*100)/100
|
||||||
// return Math.floor((allPrice.value)*bili*100)/100
|
// return Math.floor((allPrice.value)*bili*100)/100
|
||||||
}else{
|
} else {
|
||||||
return item.priceAmount
|
return item.priceAmount
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -419,7 +427,7 @@
|
|||||||
if (res) {
|
if (res) {
|
||||||
emits('tuikuan', {
|
emits('tuikuan', {
|
||||||
...item,
|
...item,
|
||||||
priceAmount: item.canReturnAmount
|
priceAmount: item.priceAmount
|
||||||
}, index)
|
}, index)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -503,8 +511,8 @@
|
|||||||
})
|
})
|
||||||
|
|
||||||
const youhuiAllPrice = computed(() => {
|
const youhuiAllPrice = computed(() => {
|
||||||
const n= props.orderInfo.originAmount-props.orderInfo.amount+vipDiscountPrice.value*1
|
const n = props.orderInfo.originAmount - props.orderInfo.amount + vipDiscountPrice.value * 1
|
||||||
return (n<0?0:n).toFixed(2)
|
return (n < 0 ? 0 : n).toFixed(2)
|
||||||
// if(props.orderInfo.status!='unpaid'){
|
// if(props.orderInfo.status!='unpaid'){
|
||||||
// const seatfee=(props.orderInfo.amount==0&&allPrice.value==0)?seatFeePrice.value:0
|
// const seatfee=(props.orderInfo.amount==0&&allPrice.value==0)?seatFeePrice.value:0
|
||||||
// return (goodsOriginAllPrice.value-allPrice.value+seatfee*1).toFixed(2)
|
// return (goodsOriginAllPrice.value-allPrice.value+seatfee*1).toFixed(2)
|
||||||
@@ -533,21 +541,48 @@
|
|||||||
const goodsPrice = props.data.reduce((prve, cur) => {
|
const goodsPrice = props.data.reduce((prve, cur) => {
|
||||||
const curTotal = cur.info.reduce((a,
|
const curTotal = cur.info.reduce((a,
|
||||||
b) => {
|
b) => {
|
||||||
return a +(props.orderInfo.status == 'unpaid'?b.priceAmount:b.canReturnAmount*1)
|
return a + (b.status == 'unpaid' ? b.priceAmount : b.status == 'return' ? 0 : b
|
||||||
|
.priceAmount * 1)
|
||||||
}, 0)
|
}, 0)
|
||||||
return prve + curTotal
|
return prve + curTotal
|
||||||
}, 0)
|
}, 0)
|
||||||
return goodsPrice.toFixed(2)
|
return goodsPrice.toFixed(2)
|
||||||
|
|
||||||
if (props.orderInfo.status == 'unpaid') {
|
if (props.orderInfo.status == 'unpaid') {
|
||||||
const n = goodsOriginAllPrice.value - youhuiAllPrice.value
|
const n = goodsOriginAllPrice.value - youhuiAllPrice.value
|
||||||
return (n < 0 ? 0 : n).toFixed(2)
|
return (n < 0 ? 0 : n).toFixed(2)
|
||||||
}
|
}
|
||||||
const returnAmount=props.orderInfo.seatInfo&&props.orderInfo.seatInfo.returnAmount?props.orderInfo.seatInfo.returnAmount:0
|
const returnAmount = props.orderInfo.seatInfo && props.orderInfo.seatInfo.returnAmount ? props.orderInfo
|
||||||
const canReturnAmount=props.orderInfo.seatInfo&&props.orderInfo.seatInfo.canReturnAmount?props.orderInfo.seatInfo.canReturnAmount:0
|
.seatInfo.returnAmount : 0
|
||||||
const total=props.orderInfo.amount-(returnAmount?returnAmount:canReturnAmount)
|
const canReturnAmount = props.orderInfo.seatInfo && props.orderInfo.seatInfo.canReturnAmount ? props
|
||||||
return (total<=0?0:total).toFixed(2)
|
.orderInfo.seatInfo.canReturnAmount : 0
|
||||||
|
const total = props.orderInfo.amount - (returnAmount ? returnAmount : canReturnAmount)
|
||||||
|
return (total <= 0 ? 0 : total).toFixed(2)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
function rotatingTables() {
|
||||||
|
let arr = []
|
||||||
|
props.data.forEach(ele => {
|
||||||
|
ele.info.forEach(res => {
|
||||||
|
// 头像 coverImg
|
||||||
|
res.coverImg = res.productImg
|
||||||
|
// 名字 name
|
||||||
|
res.name = res.productName
|
||||||
|
// 金额 salePrice
|
||||||
|
res.salePrice = res.price
|
||||||
|
// 数量 number
|
||||||
|
res.number = res.num
|
||||||
|
res.masterId = props.orderInfo.masterId
|
||||||
|
res.useType = props.orderInfo.useType
|
||||||
|
res.tableId = props.orderInfo.tableId
|
||||||
|
arr.push(res)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pagesCreateOrder/confirm-order/rotatingTables?item=' + JSON.stringify(arr) + '&tableId=' + props
|
||||||
|
.orderInfo.tableId
|
||||||
|
})
|
||||||
|
}
|
||||||
const goodsNumber = computed(() => {
|
const goodsNumber = computed(() => {
|
||||||
let result = 0
|
let result = 0
|
||||||
result = props.data.reduce((a, b) => {
|
result = props.data.reduce((a, b) => {
|
||||||
|
|||||||
@@ -6,22 +6,23 @@
|
|||||||
{{data.productName}}
|
{{data.productName}}
|
||||||
</view>
|
</view>
|
||||||
<view class="u-flex u-m-t-32" :class="{'gray':data.productId=='-999'}">
|
<view class="u-flex u-m-t-32" :class="{'gray':data.productId=='-999'}">
|
||||||
<up-number-box :min="1" :max="data.num" :buttonSize="44" v-model="number" integer :disabled="data.productId=='-999'">
|
<up-number-box :min="0" :max="data.num" :buttonSize="44" v-model="number" integer
|
||||||
|
:disabled="data.productId=='-999'">
|
||||||
<template #minus>
|
<template #minus>
|
||||||
<view class="minus number-box-btn">
|
<view class="minus number-box-btn">
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<template #input>
|
<template #input>
|
||||||
<view class="u-flex-1 u-row-center u-text-center input">
|
<view class="u-flex-1 u-row-center u-text-center input">
|
||||||
<up-input
|
<up-input :disabled="data.productId=='-999'" @change="parseIntNumber($event,false)"
|
||||||
:disabled="data.productId=='-999'"
|
@blur="parseIntNumber($event,true)" v-model="number" border="none"
|
||||||
@change="parseIntNumber($event,false)" @blur="parseIntNumber($event,true)"
|
type="number"></up-input>
|
||||||
v-model="number" border="none" type="number"></up-input>
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<template #plus>
|
<template #plus>
|
||||||
<view class="plus number-box-btn">
|
<view class="plus number-box-btn">
|
||||||
<up-icon v-if="data.productId=='-999'" name="plus" color="#ccc" size="16" bold></up-icon>
|
<up-icon v-if="data.productId=='-999'" name="plus" color="#ccc" size="16"
|
||||||
|
bold></up-icon>
|
||||||
<up-icon v-else name="plus" color="#999" size="16" bold></up-icon>
|
<up-icon v-else name="plus" color="#999" size="16" bold></up-icon>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@@ -50,8 +51,7 @@
|
|||||||
<view class="u-p-t-18 u-p-l-30 u-p-r-30 u-p-b-10">
|
<view class="u-p-t-18 u-p-l-30 u-p-r-30 u-p-b-10">
|
||||||
<my-button box-shadow shape="circle" @tap="confirm">确认退菜</my-button>
|
<my-button box-shadow shape="circle" @tap="confirm">确认退菜</my-button>
|
||||||
<view class="u-m-t-10">
|
<view class="u-m-t-10">
|
||||||
<my-button @tap="onModelClose" shape="circle" bgColor="#fff" type="cancel"
|
<my-button @tap="onModelClose" shape="circle" bgColor="#fff" type="cancel" box-shadow>取消</my-button>
|
||||||
box-shadow>取消</my-button>
|
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
@@ -71,7 +71,7 @@
|
|||||||
type: Object,
|
type: Object,
|
||||||
default: () => {
|
default: () => {
|
||||||
return {
|
return {
|
||||||
productId:'-999'
|
productId: '-999'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -86,7 +86,7 @@
|
|||||||
const emits = defineEmits(['update:show', 'confirm'])
|
const emits = defineEmits(['update:show', 'confirm'])
|
||||||
let model = ref(null)
|
let model = ref(null)
|
||||||
let modelShow = ref(props.show)
|
let modelShow = ref(props.show)
|
||||||
let number = ref(1)
|
let number = ref(0)
|
||||||
const tags = ref([{
|
const tags = ref([{
|
||||||
label: "点错",
|
label: "点错",
|
||||||
checked: false
|
checked: false
|
||||||
@@ -103,16 +103,18 @@
|
|||||||
let timer = null
|
let timer = null
|
||||||
|
|
||||||
function parseIntNumber(val, isNow) {
|
function parseIntNumber(val, isNow) {
|
||||||
console.log(val);
|
let newval = val * 1
|
||||||
let newval = parseInt(val)
|
|
||||||
if (newval > props.data.num) {
|
if (newval > props.data.num) {
|
||||||
newval = props.data.num
|
newval = props.data.num
|
||||||
}
|
}
|
||||||
if (newval < 1) {
|
// 判断是否是称重商品。如果是可以输入小数
|
||||||
newval = 1
|
if (props.data.isWeight != 1) {
|
||||||
|
if (newval < 1) {
|
||||||
|
newval = 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (isNow) {
|
if (isNow) {
|
||||||
number.value = parseInt(newval)
|
number.value = newval * 1
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
timer = setTimeout(() => {
|
timer = setTimeout(() => {
|
||||||
@@ -141,7 +143,7 @@
|
|||||||
|
|
||||||
|
|
||||||
function onModelClose() {
|
function onModelClose() {
|
||||||
number.value=1
|
number.value = 1
|
||||||
modelShow.value = false
|
modelShow.value = false
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,17 +153,17 @@
|
|||||||
|
|
||||||
function open() {
|
function open() {
|
||||||
model.value.open()
|
model.value.open()
|
||||||
if(props.data.productId=='-999'){
|
if (props.data.productId == '-999') {
|
||||||
number.value=props.data.num
|
number.value = props.data.num
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function close() {
|
function close() {
|
||||||
model.value.close()
|
model.value.close()
|
||||||
tags.value.map(v=>{
|
tags.value.map(v => {
|
||||||
v.checked=false
|
v.checked = false
|
||||||
})
|
})
|
||||||
form.note=''
|
form.note = ''
|
||||||
}
|
}
|
||||||
|
|
||||||
function confirm() {
|
function confirm() {
|
||||||
@@ -206,12 +208,14 @@
|
|||||||
::v-deep .uni-input-input {
|
::v-deep .uni-input-input {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.gray{
|
|
||||||
.minus::after{
|
.gray {
|
||||||
|
.minus::after {
|
||||||
border-color: #ccc;
|
border-color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.minus {
|
.minus {
|
||||||
&::after {
|
&::after {
|
||||||
content: '';
|
content: '';
|
||||||
|
|||||||
@@ -94,7 +94,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function onSeatFeeTuiKuan(seatFee) {
|
async function onSeatFeeTuiKuan(seatFee) {
|
||||||
console.log(seatFee);
|
console.log(seatFee,'调试1');
|
||||||
const canTuikuan=await hasTuiKuan()
|
const canTuikuan=await hasTuiKuan()
|
||||||
if(!canTuikuan){
|
if(!canTuikuan){
|
||||||
return
|
return
|
||||||
@@ -124,19 +124,22 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
function onTuiCai(goods, index) {
|
function onTuiCai(goods, index) {
|
||||||
console.log(goods);
|
|
||||||
tuicai.show = true
|
tuicai.show = true
|
||||||
tuicai.selGoods = goods
|
tuicai.selGoods = goods
|
||||||
}
|
}
|
||||||
async function tuicaiConfirm(e) {
|
async function tuicaiConfirm(e) {
|
||||||
console.log(tuicai.selGoods);
|
|
||||||
const res = await Api.$returnCart({
|
const res = await Api.$returnCart({
|
||||||
...e,
|
...e,
|
||||||
cartId: tuicai.selGoods.hasOwnProperty('cartId') ? tuicai.selGoods.cartId : tuicai.selGoods.id,
|
cartId: tuicai.selGoods.hasOwnProperty('cartId') ? tuicai.selGoods.cartId : tuicai.selGoods.id,
|
||||||
tableId: orderDetail.info.tableId,
|
tableId: orderDetail.info.tableId,
|
||||||
})
|
})
|
||||||
tuicai.show = false
|
tuicai.show = false
|
||||||
|
if(res){
|
||||||
|
go.back()
|
||||||
|
}else{
|
||||||
|
|
||||||
init()
|
init()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -171,7 +174,7 @@
|
|||||||
if(!canTuikuan){
|
if(!canTuikuan){
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
console.log(goods);
|
console.log(goods,'debug');
|
||||||
const {
|
const {
|
||||||
id,
|
id,
|
||||||
productId,
|
productId,
|
||||||
@@ -307,6 +310,7 @@
|
|||||||
}))
|
}))
|
||||||
console.log(orderDetail.goodsList);
|
console.log(orderDetail.goodsList);
|
||||||
}
|
}
|
||||||
|
console.log(res,'debug121')
|
||||||
orderDetail.info = res
|
orderDetail.info = res
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
255
pagewriteoff/components/commodity.vue
Normal file
255
pagewriteoff/components/commodity.vue
Normal file
@@ -0,0 +1,255 @@
|
|||||||
|
<template>
|
||||||
|
<view class="">
|
||||||
|
<up-overlay :show="overlayshow" @click="overlayshow = false">
|
||||||
|
<view class="boxoverlay">
|
||||||
|
<view class="rect" @tap.stop>
|
||||||
|
<!-- 抖音 -->
|
||||||
|
<view class="bottomconstant">
|
||||||
|
<view class="itemlist">
|
||||||
|
<!-- <view class="ordernumber">
|
||||||
|
订单号:111
|
||||||
|
</view> -->
|
||||||
|
<view class="title">
|
||||||
|
请选择商品
|
||||||
|
</view>
|
||||||
|
<view class="itemlists" v-for="(item,index) in form.goods" :key="index">
|
||||||
|
<view class="top">
|
||||||
|
<view class="tag">
|
||||||
|
{{item.title}}
|
||||||
|
</view>
|
||||||
|
<view class="date">
|
||||||
|
¥{{item.amount}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="bottom">
|
||||||
|
核销
|
||||||
|
</view> -->
|
||||||
|
<view v-if="item.type" @click="item.type =!item.type">
|
||||||
|
<up-icon name="checkmark-circle" color="#2979ff" size="22"></up-icon>
|
||||||
|
</view>
|
||||||
|
<view class="icon" v-else @click="item.type =!item.type"></view>
|
||||||
|
</view>
|
||||||
|
<view class="bouttonbox">
|
||||||
|
<view class="keep" @click="confirms">
|
||||||
|
确定核销
|
||||||
|
</view>
|
||||||
|
<view class="cancel" @click="overlayshow = false">
|
||||||
|
取消
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</up-overlay>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
onLoad,
|
||||||
|
onShow,
|
||||||
|
onReachBottom
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
|
import {
|
||||||
|
computed,
|
||||||
|
reactive,
|
||||||
|
ref,
|
||||||
|
watch,
|
||||||
|
defineExpose
|
||||||
|
} from 'vue';
|
||||||
|
const form = reactive({
|
||||||
|
id: "",
|
||||||
|
number: '',
|
||||||
|
sum_pay_amount: '',
|
||||||
|
goods: [],
|
||||||
|
verify_token: '',
|
||||||
|
});
|
||||||
|
import {
|
||||||
|
certificateprepares
|
||||||
|
} from '@/http/php/api.ts';
|
||||||
|
|
||||||
|
//显示
|
||||||
|
const overlayshow = ref(false);
|
||||||
|
const open = (val) => {
|
||||||
|
Object.assign(form, val)
|
||||||
|
form.goods.map((item) => {
|
||||||
|
item.type = true
|
||||||
|
})
|
||||||
|
overlayshow.value = true
|
||||||
|
}
|
||||||
|
let confirms = async () => {
|
||||||
|
// 判断是否选择商品
|
||||||
|
if (form.goods.filter(i => i.type).length == 0) {
|
||||||
|
uni.showToast({
|
||||||
|
title: '请选择商品',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
let data = null
|
||||||
|
if (uni.getStorageSync('clint_type') == 1) {
|
||||||
|
data = {
|
||||||
|
couponCode: form.couponCode,
|
||||||
|
num: form.goods.length
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
let encrypted_codes = form.goods.filter(i => i.type).map((obj, index) => {
|
||||||
|
return obj.encrypted_code;
|
||||||
|
})
|
||||||
|
data = {
|
||||||
|
verify_token: form.verify_token,
|
||||||
|
encrypted_codes: encrypted_codes.toString(),
|
||||||
|
id: form.id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
await certificateprepares(data)
|
||||||
|
uni.showToast({
|
||||||
|
title: '验证成功',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
overlayshow.value = false
|
||||||
|
}
|
||||||
|
defineExpose({
|
||||||
|
open
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
page {
|
||||||
|
background: #F9F9F9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.boxoverlay {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
.rect {
|
||||||
|
padding: 32rpx 28rpx;
|
||||||
|
width: 80%;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 18rpx;
|
||||||
|
|
||||||
|
.bottomconstant {
|
||||||
|
padding: 0 28rpx;
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 18rpx 18rpx 18rpx 18rpx;
|
||||||
|
|
||||||
|
.itemlist:nth-child(1) {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.itemlist {
|
||||||
|
// margin-top: 16rpx;
|
||||||
|
width: 100%;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 18rpx 18rpx 18rpx 18rpx;
|
||||||
|
|
||||||
|
.ordernumber {
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin-top: 16rpx;
|
||||||
|
padding-bottom: 16rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
border-bottom: 1rpx solid #E5E5E5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.itemlists {
|
||||||
|
padding-top: 16rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.top {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start;
|
||||||
|
|
||||||
|
.date {
|
||||||
|
margin-top: 10rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
width: 350rpx;
|
||||||
|
overflow: hidden; //超出的文本隐藏
|
||||||
|
text-overflow: ellipsis; //溢出用省略号显示
|
||||||
|
white-space: nowrap; //溢出不换行
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
width: 40rpx;
|
||||||
|
height: 40rpx;
|
||||||
|
border: 1px solid #909399;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom {
|
||||||
|
background: #EAF4FD;
|
||||||
|
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
||||||
|
padding: 6rpx 12rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20rpx;
|
||||||
|
color: #318AFE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bouttonbox {
|
||||||
|
margin-top: 80rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.keep {
|
||||||
|
width: 490rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
background: #318AFE;
|
||||||
|
border-radius: 40rpx 40rpx 40rpx 40rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 32rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 80rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cancel {
|
||||||
|
text-align: center;
|
||||||
|
width: 490rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 40rpx 40rpx 40rpx 40rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
line-height: 80rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
155
pagewriteoff/components/dialogs.vue
Normal file
155
pagewriteoff/components/dialogs.vue
Normal file
@@ -0,0 +1,155 @@
|
|||||||
|
<template>
|
||||||
|
<view class="">
|
||||||
|
<up-overlay :show="overlayshow" @click="overlayshow = false">
|
||||||
|
<view class="boxoverlay">
|
||||||
|
<view class="rect" @tap.stop>
|
||||||
|
<!-- 抖音 -->
|
||||||
|
<view class="bottomconstant">
|
||||||
|
<view class="itemlist">
|
||||||
|
<!-- <view class="ordernumber">
|
||||||
|
订单号:111
|
||||||
|
</view> -->
|
||||||
|
<view class="title">
|
||||||
|
绑定门店
|
||||||
|
</view>
|
||||||
|
<view class="itemlists" v-for="(item,index) in 4" :key="index">
|
||||||
|
<view class="top">
|
||||||
|
<view class="tag">
|
||||||
|
名称qqqqqqqqq
|
||||||
|
</view>
|
||||||
|
<view class="date">
|
||||||
|
地址:qqqqqqq
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="bottom">
|
||||||
|
操作
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</up-overlay>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
onLoad,
|
||||||
|
onShow,
|
||||||
|
onReachBottom
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
|
import {
|
||||||
|
computed,
|
||||||
|
reactive,
|
||||||
|
ref,
|
||||||
|
watch,
|
||||||
|
defineExpose
|
||||||
|
} from 'vue';
|
||||||
|
//显示
|
||||||
|
const overlayshow = ref(false);
|
||||||
|
const open = () => {
|
||||||
|
overlayshow.value = true
|
||||||
|
}
|
||||||
|
defineExpose({
|
||||||
|
open
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
page {
|
||||||
|
background: #F9F9F9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.boxoverlay {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
.rect {
|
||||||
|
padding: 32rpx 28rpx;
|
||||||
|
width: 80%;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 18rpx;
|
||||||
|
|
||||||
|
.bottomconstant {
|
||||||
|
padding: 0 28rpx;
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 18rpx 18rpx 18rpx 18rpx;
|
||||||
|
|
||||||
|
.itemlist:nth-child(1) {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.itemlist {
|
||||||
|
// margin-top: 16rpx;
|
||||||
|
width: 100%;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 18rpx 18rpx 18rpx 18rpx;
|
||||||
|
|
||||||
|
.ordernumber {
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin-top: 16rpx;
|
||||||
|
padding-bottom: 16rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
border-bottom: 1rpx solid #E5E5E5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.itemlists {
|
||||||
|
padding-top: 16rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.top {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: flex-start;
|
||||||
|
|
||||||
|
.date {
|
||||||
|
margin-top: 10rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
width: 350rpx;
|
||||||
|
overflow: hidden; //超出的文本隐藏
|
||||||
|
text-overflow: ellipsis; //溢出用省略号显示
|
||||||
|
white-space: nowrap; //溢出不换行
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom {
|
||||||
|
background: #EAF4FD;
|
||||||
|
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
||||||
|
padding: 6rpx 12rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20rpx;
|
||||||
|
color: #318AFE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
267
pagewriteoff/index/index.vue
Normal file
267
pagewriteoff/index/index.vue
Normal file
@@ -0,0 +1,267 @@
|
|||||||
|
<template>
|
||||||
|
<view class="constant">
|
||||||
|
<view class="constantitem" @click="object_id =null,overlayshow = true">
|
||||||
|
<view>扫码核销</view>
|
||||||
|
<view>
|
||||||
|
<up-icon name="arrow-right" color="#909399" size="20"></up-icon>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="constantitem" @click="clickpath('PAGES_WEITEOFF_RECORD',1)">
|
||||||
|
<view>美团记录</view>
|
||||||
|
<view>
|
||||||
|
<up-icon name="arrow-right" color="#909399" size="20"></up-icon>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="constantitem" @click="clickpath('PAGES_WEITEOFF_RECORD',2)">
|
||||||
|
<view>抖音记录</view>
|
||||||
|
<view>
|
||||||
|
<up-icon name="arrow-right" color="#909399" size="20"></up-icon>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- 核销准备 -->
|
||||||
|
<up-overlay :show="overlayshow">
|
||||||
|
<view class="boxoverlay">
|
||||||
|
<view class="rect" @tap.stop>
|
||||||
|
<view class="top">
|
||||||
|
团购卷核销
|
||||||
|
</view>
|
||||||
|
<view class="subsection">
|
||||||
|
<up-subsection :list="subsectionlist" :current="subsectioncurrent" @change="sectionChange">
|
||||||
|
</up-subsection>
|
||||||
|
</view>
|
||||||
|
<view class="search">
|
||||||
|
<up-search :show-action="false" searchIcon="scan" :clearabled="true" @clickIcon='clickIcon'
|
||||||
|
placeholder="请扫码或者输入卷码" v-model="object_id"></up-search>
|
||||||
|
</view>
|
||||||
|
<view class="search">
|
||||||
|
<up-alert fontSize='10' :show-icon="true" title="请使用相机识别扫码" type="warning"
|
||||||
|
:closable="true"></up-alert>
|
||||||
|
</view>
|
||||||
|
<view class="bouttonbox">
|
||||||
|
<view class="keep" @click="confirms">
|
||||||
|
确认
|
||||||
|
</view>
|
||||||
|
<view class="cancel" @click="overlayshow = false">
|
||||||
|
取消
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</up-overlay>
|
||||||
|
<!-- 绑定门店 -->
|
||||||
|
<dialogs ref="dialogsref"></dialogs>
|
||||||
|
<!-- 选择商品 -->
|
||||||
|
<commodity ref="refcommodity"></commodity>
|
||||||
|
<!-- 二维码 -->
|
||||||
|
<up-overlay :show="qrcodes.show" @click="qrcodes.show = false">
|
||||||
|
<view class="boxoverlay">
|
||||||
|
<view class="rect" @tap.stop
|
||||||
|
style="display: flex; flex-direction: column; align-items: center; justify-content: center;">
|
||||||
|
<!-- <view>{{subsectioncurrent==0?'请用美团':'抖音'}}</view> -->
|
||||||
|
<view style="padding-bottom:40rpx;font-weight: 600;">请进行手机扫码</view>
|
||||||
|
<!-- <up-qrcode :size="200" :val="qrcodes.val" :icon='qrcodes.icon'></up-qrcode> -->
|
||||||
|
<up-qrcode :size="200" :val="qrcodes.val"></up-qrcode>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</up-overlay>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
onLoad,
|
||||||
|
onShow,
|
||||||
|
onUnload,
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
|
import {
|
||||||
|
computed,
|
||||||
|
reactive,
|
||||||
|
ref,
|
||||||
|
watch
|
||||||
|
} from 'vue';
|
||||||
|
import {
|
||||||
|
userlogout,
|
||||||
|
douyincheckIn,
|
||||||
|
fulfilmentcertificateprepare, //准备核销
|
||||||
|
searchstorestatus, //状态查询
|
||||||
|
getuisdk //获取uisdk 绑定 链接
|
||||||
|
} from '@/http/php/api.ts';
|
||||||
|
import go from '@/commons/utils/go.js'
|
||||||
|
import dialogs from '../components/dialogs.vue'
|
||||||
|
import commodity from '../components/commodity.vue'
|
||||||
|
onLoad(async () => {
|
||||||
|
// 登录 会员入签
|
||||||
|
let res = await douyincheckIn({
|
||||||
|
token: uni.getStorageSync("iToken"),
|
||||||
|
loginName: uni.getStorageSync("shopId"),
|
||||||
|
clientType: 'ADMIN'
|
||||||
|
})
|
||||||
|
uni.setStorageSync('phpuserinfo', res.userInfo)
|
||||||
|
uni.setStorageSync('clint_type', 1)
|
||||||
|
})
|
||||||
|
//显示
|
||||||
|
const overlayshow = ref(false);
|
||||||
|
|
||||||
|
// 切换
|
||||||
|
const subsectioncurrent = ref(0);
|
||||||
|
const subsectionlist = ref(['美团', '抖音']);
|
||||||
|
const sectionChange = (index) => {
|
||||||
|
subsectioncurrent.value = index;
|
||||||
|
uni.setStorageSync('clint_type', index + 1)
|
||||||
|
|
||||||
|
}
|
||||||
|
// 二维码或者条形码
|
||||||
|
const object_id = ref(null)
|
||||||
|
// 扫码
|
||||||
|
const clickIcon = () => {
|
||||||
|
uni.scanCode({ // 允许从相机和相册扫码
|
||||||
|
success: (res) => {
|
||||||
|
console.log('条码类型:' + res.scanType);
|
||||||
|
console.log('条码内容:' + res.result);
|
||||||
|
object_id.value = res.result
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 二维码
|
||||||
|
const qrcodes = reactive({
|
||||||
|
val: 'www.baidu.com',
|
||||||
|
icon: '@/static/logo.png',
|
||||||
|
show: false
|
||||||
|
})
|
||||||
|
|
||||||
|
// 首先获取状态
|
||||||
|
let confirms = async () => {
|
||||||
|
if (object_id.value == null) {
|
||||||
|
uni.showToast({
|
||||||
|
title: '请扫码或者输入卷码',
|
||||||
|
icon: 'none'
|
||||||
|
})
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
let res = await searchstorestatus()
|
||||||
|
// status == 0 则需要显示二维码 ==1 去核销
|
||||||
|
if (res.status == 0) {
|
||||||
|
qrcodes.val = await getuisdk()
|
||||||
|
overlayshow.value = false
|
||||||
|
qrcodes.show = true
|
||||||
|
} else {
|
||||||
|
clickkeep()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 点击确定
|
||||||
|
const clickkeep = async () => {
|
||||||
|
let data = null
|
||||||
|
if (uni.getStorageSync('clint_type') == 1) {
|
||||||
|
data = {
|
||||||
|
code: object_id.value
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
data = {
|
||||||
|
object_id: object_id.value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let res = await fulfilmentcertificateprepare(data)
|
||||||
|
overlayshow.value = false
|
||||||
|
refcommodity.value.open(res)
|
||||||
|
}
|
||||||
|
// 这是选择门店
|
||||||
|
// const dialogsref = ref(null)
|
||||||
|
// const dialogconfirm = () => {
|
||||||
|
// dialogsref.value.open()
|
||||||
|
// }
|
||||||
|
// 选择商品
|
||||||
|
const refcommodity = ref(null)
|
||||||
|
// 跳转
|
||||||
|
const clickpath = (URL, title) => {
|
||||||
|
uni.setStorageSync('clint_type', title)
|
||||||
|
go.to(URL)
|
||||||
|
}
|
||||||
|
|
||||||
|
onShow(async () => {})
|
||||||
|
|
||||||
|
// 销毁组件
|
||||||
|
onUnload(async () => {
|
||||||
|
// 退出
|
||||||
|
await userlogout()
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
page {
|
||||||
|
background: #F9F9F9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.constant {
|
||||||
|
.constantitem {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
background: #fff;
|
||||||
|
padding: 24rpx 32rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.boxoverlay {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
.rect {
|
||||||
|
padding: 32rpx 28rpx;
|
||||||
|
width: 80%;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 18rpx;
|
||||||
|
|
||||||
|
.top {
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.subsection {
|
||||||
|
margin-top: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search {
|
||||||
|
margin-top: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bouttonbox {
|
||||||
|
margin-top: 80rpx;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.keep {
|
||||||
|
width: 490rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
background: #318AFE;
|
||||||
|
border-radius: 40rpx 40rpx 40rpx 40rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 32rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 80rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cancel {
|
||||||
|
text-align: center;
|
||||||
|
width: 490rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
background: #ffffff;
|
||||||
|
border-radius: 40rpx 40rpx 40rpx 40rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
line-height: 80rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
360
pagewriteoff/index/record.vue
Normal file
360
pagewriteoff/index/record.vue
Normal file
@@ -0,0 +1,360 @@
|
|||||||
|
<template>
|
||||||
|
<view class="constant">
|
||||||
|
<!-- <view class="topbox">
|
||||||
|
<view class="left">
|
||||||
|
<view class="">
|
||||||
|
筛选
|
||||||
|
</view>
|
||||||
|
<view class=""></view>
|
||||||
|
</view>
|
||||||
|
<view class="right">
|
||||||
|
<up-input class="input" placeholder="搜索订单号" v-model="value"
|
||||||
|
@change="change"></up-input>
|
||||||
|
</view>
|
||||||
|
</view> -->
|
||||||
|
<!-- 抖音 -->
|
||||||
|
<view v-if="form.type == 2">
|
||||||
|
<view class="bottomconstant" v-for="(item,index) in form.list" :key="index">
|
||||||
|
<view class="itemlist">
|
||||||
|
<view class="ordernumber">
|
||||||
|
{{item.d_order_id}}
|
||||||
|
</view>
|
||||||
|
<view class="title">
|
||||||
|
{{item.title}}
|
||||||
|
</view>
|
||||||
|
<view class="itemlists" v-for="(item1,index1) in item.douyinCodeGoods" :key="item1.id">
|
||||||
|
<view class="top">
|
||||||
|
<view class="date">
|
||||||
|
{{item1.create_time}}
|
||||||
|
</view>
|
||||||
|
<view class="tag" v-if="item1.status == 1" @click="clickcancel(item1)"
|
||||||
|
style="background: #318AFE;color: #fff; border-radius: 10rpx;">
|
||||||
|
撤销核销
|
||||||
|
</view>
|
||||||
|
<view class="tag" v-if="item1.status == 0">
|
||||||
|
等待验券
|
||||||
|
</view>
|
||||||
|
<view class="tag" v-if="item1.status == 2">
|
||||||
|
失败
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="bottom">
|
||||||
|
<view class="bottomtitle">
|
||||||
|
{{item1.title}}
|
||||||
|
</view>
|
||||||
|
<view class="price">
|
||||||
|
<view class="prices">
|
||||||
|
{{item1.pay_amount}}
|
||||||
|
</view>
|
||||||
|
<!-- <view class="pricees">
|
||||||
|
{{item1.market_price}}
|
||||||
|
</view> -->
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- 美团 -->
|
||||||
|
<view class="bottomconstant" v-else>
|
||||||
|
<view class="itemlist" v-for="(item,index) in form.list" :key="index">
|
||||||
|
<view class="itemlists" style="padding: 0;">
|
||||||
|
<view class="top">
|
||||||
|
<view class="date">
|
||||||
|
{{item.couponUseTime}}
|
||||||
|
</view>
|
||||||
|
<view class="tag" :style="!item.type?'background: #318AFE;color: #fff; border-radius: 10rpx;':''"
|
||||||
|
@click="clickcancel(item)">
|
||||||
|
{{item.type ? item.couponStatusDesc:'撤销核销'}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="bottom">
|
||||||
|
<view class="bottomtitle">
|
||||||
|
{{item.dealTitle}}
|
||||||
|
</view>
|
||||||
|
<view class="price">
|
||||||
|
<view class="prices">
|
||||||
|
¥{{item.couponBuyPrice}}
|
||||||
|
</view>
|
||||||
|
<!-- <view class="pricees">
|
||||||
|
156
|
||||||
|
</view> -->
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<up-loadmore :status="form.status" />
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
onLoad,
|
||||||
|
onShow,
|
||||||
|
onReachBottom
|
||||||
|
} from '@dcloudio/uni-app';
|
||||||
|
import {
|
||||||
|
computed,
|
||||||
|
reactive,
|
||||||
|
ref,
|
||||||
|
watch
|
||||||
|
} from 'vue';
|
||||||
|
import dayjs from "dayjs";
|
||||||
|
import {
|
||||||
|
orderlist,
|
||||||
|
fulfilmentcertificatecanceles
|
||||||
|
} from '@/http/php/api.ts';
|
||||||
|
// 下拉加载
|
||||||
|
onReachBottom(() => {
|
||||||
|
if (form.status != 'nomore') {
|
||||||
|
form.page = ++form.page;
|
||||||
|
getlist()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
onLoad(async (e) => {
|
||||||
|
form.type = uni.getStorageSync('clint_type')
|
||||||
|
initial()
|
||||||
|
})
|
||||||
|
const dropdownvalue = ref(1)
|
||||||
|
const optionsdropdown = [{
|
||||||
|
label: '等待验证',
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '成功',
|
||||||
|
value: 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '失败',
|
||||||
|
value: 3,
|
||||||
|
}
|
||||||
|
]
|
||||||
|
// 初始化
|
||||||
|
const initial = () => {
|
||||||
|
form.page = 1
|
||||||
|
form.status = 'loadmore'
|
||||||
|
form.d_order_id = ''
|
||||||
|
form.querystatus = ''
|
||||||
|
getlist()
|
||||||
|
}
|
||||||
|
//
|
||||||
|
const form = reactive({
|
||||||
|
type: '',
|
||||||
|
d_order_id: '',
|
||||||
|
querystatus: '',
|
||||||
|
page: 1,
|
||||||
|
status: '',
|
||||||
|
list: [],
|
||||||
|
count: '',
|
||||||
|
date: ''
|
||||||
|
});
|
||||||
|
const getlist = async () => {
|
||||||
|
let data = null
|
||||||
|
if (uni.getStorageSync('clint_type') == 1) {
|
||||||
|
data = {
|
||||||
|
page: form.page,
|
||||||
|
date: form.date
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
data = {
|
||||||
|
page: form.page,
|
||||||
|
status: form.querystatus,
|
||||||
|
d_order_id: form.d_order_id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let res = await orderlist(data)
|
||||||
|
|
||||||
|
form.count = res.count
|
||||||
|
form.status = 'loading';
|
||||||
|
if (form.page == 1 && res.list.length == 0) {
|
||||||
|
form.status = 'nomore'
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
setTimeout(() => {
|
||||||
|
if (form.page == 1) {
|
||||||
|
form.list = res.list
|
||||||
|
} else {
|
||||||
|
form.list = [...form.list, ...res.list];
|
||||||
|
}
|
||||||
|
if (form.list.length >= form.count && res.list.length < 10) {
|
||||||
|
form.status = 'nomore';
|
||||||
|
} else {
|
||||||
|
form.status = 'loadmore';
|
||||||
|
}
|
||||||
|
// 这是美团处理的数据
|
||||||
|
if (uni.getStorageSync('clint_type') == 1) {
|
||||||
|
form.list = form.list.map(item => {
|
||||||
|
// 计算60天后
|
||||||
|
item.couponUseTimes = dayjs(item.couponUseTime).add(60, 'day').format(
|
||||||
|
'YYYY-MM-DD HH:mm:ss')
|
||||||
|
item.type = dayjs().isAfter(dayjs(item.couponUseTime).add(60, 'day'),
|
||||||
|
'year')
|
||||||
|
return item
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, 500)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const clickcancel = async (item) => {
|
||||||
|
uni.showModal({
|
||||||
|
title: '确认撤销吗?',
|
||||||
|
success: async (res) => {
|
||||||
|
if (res.confirm) {
|
||||||
|
let data = null
|
||||||
|
if (uni.getStorageSync('clint_type') == 1) {
|
||||||
|
data = {
|
||||||
|
couponCode: item.couponCode
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
data = {
|
||||||
|
verify_id: item.verify_id,
|
||||||
|
certificate_id: item.certificate_id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
await fulfilmentcertificatecanceles(data)
|
||||||
|
uni.showToast({
|
||||||
|
title: '撤销核销成功',
|
||||||
|
icon: 'success'
|
||||||
|
})
|
||||||
|
setTimeout(() => {
|
||||||
|
initial()
|
||||||
|
}, 1000)
|
||||||
|
} else if (res.cancel) {
|
||||||
|
console.log('用户点击取消');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
page {
|
||||||
|
background: #F9F9F9;
|
||||||
|
}
|
||||||
|
|
||||||
|
.constant {
|
||||||
|
padding-bottom: 32rpx;
|
||||||
|
|
||||||
|
.topbox {
|
||||||
|
width: 100%;
|
||||||
|
padding: 32rpx 28rpx;
|
||||||
|
background: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
.left {}
|
||||||
|
|
||||||
|
.right {
|
||||||
|
width: 80%;
|
||||||
|
|
||||||
|
.input {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottomconstant {
|
||||||
|
padding: 0 28rpx;
|
||||||
|
width: 100%;
|
||||||
|
border-radius: 18rpx 18rpx 18rpx 18rpx;
|
||||||
|
|
||||||
|
.itemlist {
|
||||||
|
margin-top: 32rpx;
|
||||||
|
padding: 32rpx 24rpx;
|
||||||
|
width: 100%;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border-radius: 18rpx 18rpx 18rpx 18rpx;
|
||||||
|
|
||||||
|
.ordernumber {
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
margin-top: 16rpx;
|
||||||
|
padding-bottom: 24rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
border-bottom: 1rpx solid #E5E5E5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.itemlists {
|
||||||
|
padding-top: 24rpx;
|
||||||
|
|
||||||
|
.top {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
.date {
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tag {
|
||||||
|
background: #EAF4FD;
|
||||||
|
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
||||||
|
padding: 6rpx 12rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 20rpx;
|
||||||
|
color: #318AFE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottom {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.bottomtitle {
|
||||||
|
width: 350rpx;
|
||||||
|
overflow: hidden; //超出的文本隐藏
|
||||||
|
text-overflow: ellipsis; //溢出用省略号显示
|
||||||
|
white-space: nowrap; //溢出不换行
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.price {
|
||||||
|
margin-top: 16rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.prices {
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pricees {
|
||||||
|
margin-left: 12rpx;
|
||||||
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: #999999;
|
||||||
|
text-decoration-line: line-through;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
20
static/indexImg/pagewriteoff.svg
Normal file
20
static/indexImg/pagewriteoff.svg
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="96px" height="96px" viewBox="0 0 96 96" enable-background="new 0 0 96 96" xml:space="preserve"> <image id="image0" width="96" height="96" x="0" y="0"
|
||||||
|
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAIGNIUk0AAHomAACAhAAA+gAAAIDo
|
||||||
|
AAB1MAAA6mAAADqYAAAXcJy6UTwAAABRUExURQAAAFCf/0uZ/0yZ/kyY/kuY/UyZ/0yZ/kuY/k2Z
|
||||||
|
/0yZ/UqX/0uZ/0uY/kuZ/kyZ/kyY/UuZ/UiX/0uZ/kuZ/UyX/0yY/kqa/0uZ/kyZ/v///7LMcjEA
|
||||||
|
AAAZdFJOUwAQX6+/n3/v31CAYHCwz8CQoCDwj0DQMODQpj2tAAAAAWJLR0QadWfkMgAAAAd0SU1F
|
||||||
|
B+gMBQIoEmmNJfAAAAHtSURBVGje7ZnZloMgDEChm63RKlK3///RsXVciTUBOmdmDnkF7wVTSU4R
|
||||||
|
IgQr5OF4ap3idD684V8iN3of19vW8o8+8M844wJv/A1D7I/ftoC8IC/vf4hIGoLEJx/bQupXkBqC
|
||||||
|
u19BZgj88ts2CH5KkEoh8w8K1OtR1OBF0PNF8SmBevesB8HI/9AORr5Ai6CzYOKf0XFXwR7fVbDL
|
||||||
|
pwp0ZsknChKBllICnyaIXyNgw6cJvgsrWPBpgmEM+HyaoEAMRD5NcBSGgcon/opgbSDzqd/BykDn
|
||||||
|
k7/khYHBpx8VMwOHzziLkD6WwOccdmDDZ52mYMHnHdfA5zPrAbD53IIDXD67ogGTzy+Zl26OpPMt
|
||||||
|
avL18bjS+X+muw6CIAiC3y5QJTmUjQAp9tsBfEHF4QtRsQUxT5CzBSlPkLIFUcHh1xFb0N5rBt+s
|
||||||
|
dfuCrkieiIGVUorAKYIgCIIgCILgnwneXk9VjaNAq0LU2RZEJ11H1DgIdNz/75holJH1fUGZWQqa
|
||||||
|
qbcrEIaehmub1jFb3grDehPp4rayyPWeYLlGVa7H5SLZjXEpLeNFMsybwNnzz8wicZsIucQmzPNt
|
||||||
|
NoZjfzxk1ozhQqspNybM8p2Yg9U6sxjgucbNBczyXSFzZFytM4tO2usou3w3SooQIfzFFziLPvqM
|
||||||
|
MV6wAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDI0LTEyLTA1VDAyOjQwOjE4KzAwOjAwFHedYwAAACV0
|
||||||
|
RVh0ZGF0ZTptb2RpZnkAMjAyNC0xMi0wNVQwMjo0MDoxOCswMDowMGUqJd8AAAAodEVYdGRhdGU6
|
||||||
|
dGltZXN0YW1wADIwMjQtMTItMDVUMDI6NDA6MTgrMDA6MDAyPwQAAAAAAElFTkSuQmCC" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
Reference in New Issue
Block a user