增加桌台信息

fix
游梦婷 11 months ago
parent 2481bf1438
commit ce47d55a1f
  1. 39
      Utils/groupBuying.js
  2. 5
      pages.json
  3. 4
      pages/welcome/welcome.vue
  4. 22
      subpackages/groupBuyingConfiguration/categorySetting/categorySetting.vue
  5. 5
      subpackages/groupBuyingConfiguration/groupBuyingConfiguration.vue
  6. 388
      subpackages/groupBuyingConfiguration/tableMessage/tableMessage.vue
  7. 3
      uni.scss

@ -108,7 +108,17 @@ export const findStoreExtMsgByStoreId = params => {
return POST('POST', `${base}/storeGroup/findStoreExtMsgByStoreId`, params).then(res => res.data); return POST('POST', `${base}/storeGroup/findStoreExtMsgByStoreId`, params).then(res => res.data);
} }
/* =编辑分类= */ //查询获取团购内容code
export const getGroupContentByCode = params => {
return POST('GET', `${hsgCrest}/group/getGroupContentByCode`, params).then(res => res.data);
}
//核销团购码
export const gorOrderNotify = params => {
return POST('GET', `${hsgOrder}/groupOrder/gorOrderNotify`, params).then(res => res.data);
}
/* =分类配置= */
export const editCategory = params => { export const editCategory = params => {
return POST('POST', `${base}/storeProductCategory/editCategory`, params).then(res => res.data); return POST('POST', `${base}/storeProductCategory/editCategory`, params).then(res => res.data);
} }
@ -144,13 +154,28 @@ export const getStoreProduct = params => {
} }
//查询获取团购内容code /* ==桌台信息== */
export const getGroupContentByCode = params => { //生成桌台
return POST('GET', `${hsgCrest}/group/getGroupContentByCode`, params).then(res => res.data); export const generateTable = params => {
return POST('POST', `${base}/mealTable/generateTable`, params).then(res => res.data);
} }
//核销团购码 //编辑桌台
export const gorOrderNotify = params => { export const editTable = params => {
return POST('GET', `${hsgOrder}/groupOrder/gorOrderNotify`, params).then(res => res.data); return POST('POST', `${base}/mealTable/editTable`, params).then(res => res.data);
}
// 删除桌台
export const delTable = params => {
return POST('POST', `${base}/mealTable/delTable`, params).then(res => res.data);
}
// 查询桌台详情
export const getTable = params => {
return POST('GET', `${base}/mealTable/getTable`, params).then(res => res.data);
} }
// 查询桌台列表
export const getTableList = params => {
return POST('GET', `${base}/mealTable/getTableList`, params).then(res => res.data);
}

@ -710,6 +710,11 @@
"style": { "style": {
"navigationBarTitleText": "核销订单" "navigationBarTitleText": "核销订单"
} }
},{
"path":"groupBuyingConfiguration/tableMessage/tableMessage",
"style": {
"navigationBarTitleText": "桌台信息"
}
} }
] ]

@ -17,10 +17,10 @@
}, },
onLoad(options) { onLoad(options) {
uni.reLaunch({ /* uni.reLaunch({
url: '../tabBar/home/home' url: '../tabBar/home/home'
}) })
return return */
let that = this; let that = this;

@ -10,15 +10,15 @@
<view class="flex-1 fotct fontwig6">操作</view> <view class="flex-1 fotct fontwig6">操作</view>
</view> </view>
<view class="dis-flex bor-botm1 paddtop10 paddbotm10 " v-for="(item,index) in categoryList" :key="index"> <view class="dis-flex bor-botm1 paddtop10 paddbotm10 " @click="getCategory(item)" v-for="(item,index) in categoryList" :key="index">
<view class="flex-1 fotct text1"> <view class="flex-1 fotct text1">
{{item.name}} {{item.name}}
</view> </view>
<view class="flex-1 fotct dis-flex"> <view class="flex-1 fotct dis-flex">
<view class="marglerig fcorred" @click="toDeleteCategory(item)">删除<text <view class="marglerig fcorred" @click.stop="toDeleteCategory(item)"><text
class="icon shanchu font14 fcorred"></text></view> class="icon shanchu font14 fcorred"></text>删除</view>
<view class="marglerig fcor41c" @click="clickToAdd(item)">编辑<text <view class="marglerig fcor41c" @click.stop="clickToAdd(item)"><text
class="icon bianji font14 fcor41c"></text></view> class="icon bianji font14 fcor41c"></text>编辑</view>
<next-bubble-menu class="flex-1" :d-width="150" :dataList="item.status |filterDataList" <next-bubble-menu class="flex-1" :d-width="150" :dataList="item.status |filterDataList"
bingEleId="moreType" @change="getItem($event,item)"> bingEleId="moreType" @change="getItem($event,item)">
<view class="marglerig font15 " id="moreType">更多<text class="icon xia font14"></text></view> <view class="marglerig font15 " id="moreType">更多<text class="icon xia font14"></text></view>
@ -37,12 +37,15 @@
radius="6" :showCloseIcon="true"> radius="6" :showCloseIcon="true">
<view class="pop-contain pd-main"> <view class="pop-contain pd-main">
<view class="pop-title fontwig6"><text>详情</text></view> <view class="pop-title fontwig6"><text>详情</text></view>
<view class="dis-flex flex-wrap" v-if="categoryDetail"> <view class="dis-flex flex-wrap" v-if="categoryDetail">
<view class="width100 dis-flex bor-botm1"> <view class="width100 dis-flex bor-botm1">
<view class=" fotct fontwig6 backcor6 titleWidth minheight40">分类名称</view> <view class=" fotct fontwig6 backcor6 titleWidth minheight40">分类名称</view>
<view class="flex-1 fotct ">{{categoryDetail.name}}</view> <view class="flex-1 fotct ">{{categoryDetail.name}}</view>
</view> </view>
<view class="width100 dis-flex bor-botm1">
<view class=" fotct fontwig6 backcor6 titleWidth minheight40">创建时间</view>
<view class="flex-1 fotct ">{{categoryDetail.createTime | timeFormat}}</view>
</view>
</view> </view>
@ -181,6 +184,9 @@
title: '删除中' title: '删除中'
}) })
delCategory(params).then(res => { delCategory(params).then(res => {
uni.hideLoading();
let title; let title;
if (res.return_code == '000000') { if (res.return_code == '000000') {
title = res.return_data; title = res.return_data;
@ -193,6 +199,8 @@
icon: 'none', icon: 'none',
duration: 2000 duration: 2000
}) })
}).catch(()=>{
uni.hideLoading();
}) })
} else if (res.cancel) { } else if (res.cancel) {
@ -227,7 +235,7 @@
editCategory(params).then(res => { editCategory(params).then(res => {
uni.hideLoading(); uni.hideLoading();
this.formatCategory(); this.formatCategory();
this.$refs.inputDialog.close();
if (res.return_code == '000000') { if (res.return_code == '000000') {
this.getALLCategory(); this.getALLCategory();
uni.showToast({ uni.showToast({

@ -36,6 +36,11 @@
title: '分类配置', title: '分类配置',
url:'./categorySetting/categorySetting', url:'./categorySetting/categorySetting',
img: '/static/img/home4.png' img: '/static/img/home4.png'
},{
title: '桌台信息',
url:'./tableMessage/tableMessage',
img: '/static/img/home4.png'
} }
], ],

@ -0,0 +1,388 @@
<template>
<view class="all-container pd-main backcor6 font15">
<view class=" width100 mart10">
<button class="btns icon tianjia" @click.stop="clickToAdd()">生成桌台</button>
</view>
<view class="mart20 backcorfff marb20">
<view class="dis-flex height40 bor-botm1">
<view class="flex-1 fotct fontwig6 ">二维码</view>
<view class=" fotct fontwig6">桌号</view>
<view class="flex-1 fotct fontwig6">桌名</view>
<view class="flex-1 fotct fontwig6">操作</view>
</view>
<view class="dis-flex bor-botm1 paddtop10 paddbotm10 " @click="openTableDetail(item)" v-for="(item,index) in tableList" :key="index">
<view class="flex-1 fotct">
<image :src="item.qrCodeImgUrl" @click.stop="previewImage(item.qrCodeImgUrl)" mode="aspectFit" class="width100 height60 verc"></image>
</view>
<view class=" fotct text1">
{{item.tableNumber}}
</view>
<view class="flex-1 fotct text1">
{{item.tableName}}
</view>
<view class="flex-1 fotct dis-flex flex-center">
<view class="marglerig fcorred font13" @click.stop="toDeleteTable(item)"><text
class="icon shanchu font14 fcorred"></text>删除</view>
<view class="marglerig fcor41c font13" @click.stop="editTable(item)"><text
class="icon bianji font14 fcor41c"></text>编辑</view>
</view>
</view>
</view>
<!-- 编辑桌台 -->
<uni-popup ref="popupEditTable" type="center" >
<view style="width: 80vw;" class="backcorfff border-10r pd-main font16">
<view class="dis-flex mart20 marb10 paddbotm10 bor-botm1">
<view class=" marRight10 fontwig6 padleft15 paddtright10">桌台编号:
</view>
<input type="number" name="name" v-model.trim="tableEditData.tableNumber" placeholder-class="corf6"
class=" flex-1 " placeholder="请输入桌台编号">
</view>
<view class="dis-flex mart20 marb10 paddbotm10 bor-botm1">
<view class=" marRight10 fontwig6 padleft15 paddtright10">桌台名称:
</view>
<input type="text" name="name" v-model.trim="tableEditData.tableName" placeholder-class="corf6"
class=" flex-1 " placeholder="请输入桌台名称">
</view>
<button class="btnw50 " @click.stop="saveEditTable()">保存</button>
</view>
</uni-popup>
<!-- 生成桌台弹窗 -->
<uni-popup ref="inputDialog" type="dialog">
<uni-popup-dialog ref="inputClose" mode="input" title="输入生产数量" :before-close="true" :value="generateNum" placeholder="请输入生产数量"
@confirm="dialogInputConfirm" @close="close"></uni-popup-dialog>
</uni-popup>
<!-- 查看详情 -->
<uni-popup ref="popupDetail" type="bottom" background-color="#ffffff">
<view style="height: 60vh;overflow-y: auto;" class="backcorfff border-10r-lr pd-main font16">
<view class="pop-contain pd-main">
<view class="pop-title fontwig6"><text>详情</text></view>
<view class="" v-if="tableDetail">
<view class="width100 dis-flex bor-botm1 ">
<view class=" fotct fontwig6 backcor6 titleWidth minheight40">门店名称</view>
<view class="flex-1 fotct ">{{tableDetail.storeName}}</view>
</view>
<view class="width100 dis-flex bor-botm1 ">
<view class=" fotct fontwig6 backcor6 titleWidth minheight40">桌台编号</view>
<view class="flex-1 fotct ">{{tableDetail.tableNumber}}</view>
</view>
<view class="width100 dis-flex bor-botm1 ">
<view class=" fotct fontwig6 backcor6 titleWidth minheight40">桌台名称</view>
<view class="flex-1 fotct ">{{tableDetail.tableName}}</view>
</view>
<view class="width100 dis-flex bor-botm1 ">
<view class=" fotct fontwig6 backcor6 titleWidth minheight40">创建时间</view>
<view class="flex-1 fotct ">{{tableDetail.createTime | timeFormat}}</view>
</view>
<view class="width100 dis-flex ">
<view class=" fotct fontwig6 backcor6 titleWidth minheight80">二维码</view>
<view class="flex-1 fotct ">
<image :src="tableDetail.qrCodeImgUrl" @click.stop="previewImage(tableDetail.qrCodeImgUrl)" mode="aspectFit" class="width100 height60 verc"></image>
</view>
</view>
</view>
</view>
</view>
</uni-popup>
</view >
</template>
<script>
import {generateTable,getTableList,
editTable,delTable,getTable
} from '@/Utils/groupBuying.js'
export default {
data(){
return{
storeId:'',//id
generateNum:'',//
tableList:[],//
pageNum:1,
pageSize:99999,
tableEditData:{
serialNumber:'',//
tableNumber:'',//
tableName:'',//
},
tableDetail:null,//
}
},
onLoad(options) {
this.storeId = options.storeId;
this.getTableList(true);
},
methods:{
/* 生成桌台 */
clickToAdd(){
this.generateNum = '';
this.$refs.inputDialog.open()
},
dialogInputConfirm(e){
let reg = /^\+?[1-9][0-9]*$/;
if(!reg.test(e)){
uni.showToast({
title:'请输入数字哦!',
icon: 'none',
duration: 2000
})
return
}
this.generateNum = e;
this.generateTable();
},
/* 生成桌台 */
generateTable(){
uni.showLoading({
title: '加载中'
})
let params={
"storeId": this.storeId,
"generateNum": this.generateNum
}
generateTable(params).then(res=>{
uni.hideLoading();
this.$refs.inputDialog.close();
if (res.return_code == '000000') {
this.generateNum = '';
this.getTableList();
uni.showToast({
title: res.return_data,
icon: 'none',
duration: 2000
})
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
})
}
}).catch(()=>{
this.$refs.inputDialog.close();
})
},
close(){
this.generateNum = '';
this.$refs.inputDialog.close();
},
/* 查询桌台列表 */
getTableList(flag) {
if (flag) {
uni.showLoading({
title: '加载中'
})
}
let params = {
storeId: this.storeId,
pageNum:this.pageNum,
pageSize:this.pageSize,
}
getTableList(params).then(res => {
if (flag) {
uni.hideLoading()
}
if (res.return_code == '000000') {
this.tableList = res.return_data.list;
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
})
}
})
},
/* 点击打开详情 */
openTableDetail(item){
this.tableDetail = null;
this.getTableDetail(item,(res)=>{
this.tableDetail = res.return_data;
this.$refs.popupDetail.open('bottom');
})
},
/* 查询桌台详情 */
getTableDetail(item,callback){
let params={
serialNumber:item.serialNumber
}
getTable(params).then(res=>{
if (res.return_code == '000000') {
callback(res);
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
})
}
})
},
/* 删除桌台 */
toDeleteTable(item){
let _this = this;
uni.showModal({
title: '提示',
content: `确定删除‘${item.tableName}’吗?`,
success: function(res) {
if (res.confirm) {
let params = {
serialNumber: item.serialNumber
}
uni.showLoading({
title: '删除中'
})
delTable(params).then(res => {
uni.hideLoading();
let title;
if (res.return_code == '000000') {
title = res.return_data;
_this.getTableList();
} else {
title = res.return_msg;
}
uni.showToast({
title: title,
icon: 'none',
duration: 2000
})
}).catch(()=>{
uni.hideLoading();
})
} else if (res.cancel) {
// console.log('');
}
}
});
},
/* 点击编辑桌台 */
editTable(item){
this.formatTableEditData();
this.getTableDetail(item,(res)=>{
this.tableEditData.serialNumber = res.return_data.serialNumber;//
this.tableEditData.tableNumber = res.return_data.tableNumber;//
this.tableEditData.tableName = res.return_data.tableName;//
this.$refs.popupEditTable.open('center');
})
},
formatTableEditData(){
this.tableEditData.serialNumber = '';//
this.tableEditData.tableNumber = '';//
this.tableEditData.tableName = '';//
},
//
saveEditTable(){
if(!this.tableEditData.tableNumber || !this.tableEditData.tableName){
uni.showToast({
title:'请填写完整哦!',
icon: 'none',
duration: 2000
})
return
}
uni.showLoading({
title:'保存中...'
})
editTable(this.tableEditData).then(res=>{
uni.hideLoading();
this.$refs.popupEditTable.close();
this.formatTableEditData();
if (res.return_code == '000000') {
this.getTableList();
uni.showToast({
title: res.return_data,
icon: 'none',
duration: 2000
})
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
})
}
}).catch(()=>{
uni.hideLoading();
})
},
//
previewImage(img){
uni.previewImage({
current: 0,
indicator: "number",
loop: "true",
urls:[img]
})
},
}
}
</script>
<style lang="scss" scoped>
.btns {
width: 21%;
height: 35px;
line-height: 35px;
background-color: #0083f5;
color: #FFFFFF;
font-weight: bold;
font-size: 12px;
padding: 0px;
margin: 0 0 0 auto;
}
.border-10r{
border-radius: 10px;
}
.border-10r-lr{
border-radius: 10px 10px 0 0 ;
}
/* 详情弹窗 */
.pop-contain {
text-align: center;
padding-top: 50px;
background-color: #ffffff;
.pop-title {
text-align: center;
height: 50px;
line-height: 50px;
font-size: 18px;
position: fixed;
z-index: 10;
top: 0;
left: 0;
right: 0;
background: #ffffff;
}
.titleWidth {
min-width: 80px;
text-align: center;
}
.minheight40 {
padding: 15px 0;
}
.minheight80{
min-height: 80px;
line-height: 80px;
}
}
</style>

@ -808,6 +808,9 @@ $uni-font-size-paragraph:30upx;
display: flex; display: flex;
align-items: center; align-items: center;
} }
.flex-center{
justify-content: center;
}
.flex-sp{ .flex-sp{
justify-content: space-between; justify-content: space-between;
} }

Loading…
Cancel
Save