初始上传

This commit is contained in:
2026-04-04 17:27:12 +08:00
parent 4d80d28eb4
commit b7e11774ee
11191 changed files with 1588469 additions and 0 deletions

View File

@@ -0,0 +1,488 @@
<template>
<page-meta :root-font-size="rootSize"></page-meta>
<view class="uni-flex uni-row height-all" :style="themeColor">
<view class="container common-wrap" style="-webkit-flex: 1;flex: 1;" v-if="shiftsData">
<view class="title">{{ info.username }}</view>
<view class="time-title">
班次:
<text>{{ shiftsData.start_time > 0 ? $util.timeFormat(shiftsData.start_time) : '初始化' }}</text>
<text class="separate">-</text>
<text class="curr-time">{{ shiftsData.end_time | timeFormat }}</text>
</view>
<view class="title-box">
<view class="box">
<view class="name-box">
<text class="title-name"></text>
<text class="name">总销售</text>
</view>
<view class="money-box">
<text class="money">{{ shiftsData.total_sale | moneyFormat }}{{ shiftsData.total_sale_count }}</text>
</view>
</view>
<view class="box">
<view class="name-box">
<text class="title-name"></text>
<text class="name">会员充值</text>
</view>
<view class="money-box">
<text class="money">{{ shiftsData.recharge_money | moneyFormat }}{{ shiftsData.recharge_count }}</text>
</view>
</view>
<view class="box">
<view class="name-box">
<text class="title-name"></text>
<text class="name">应收金额</text>
</view>
<view class="money-box">
<text class="money">{{ shiftsData.total_money | moneyFormat }}{{ shiftsData.total_count }}</text>
</view>
</view>
<view class="box">
<view class="name-box">
<text class="title-name"></text>
<text class="name">支付统计</text>
</view>
<view class="money-box">
<text class="money">{{ shiftsData.total_pay_money | moneyFormat }}{{ shiftsData.total_pay_count }}</text>
</view>
</view>
<view class="box">
<view class="name-box">
<text class="title-name"></text>
<text class="name">商品销售</text>
</view>
<view class="money-box">
<text class="money">{{ shiftsData.sale_goods_count.class_num }}{{ shiftsData.sale_goods_count.num }}</text>
</view>
</view>
</view>
<view class="basic">
<text @click="detail()">
查看详情
<text class="iconqianhou2 iconfont"></text>
</text>
</view>
<view class="common-btn-wrap">
<button type="default" class="default-btn cancel-btn" @click="cancel">取消</button>
<button type="default" class="primary-btn shiftss-btn" @click="changeShiftsFn">交班并登出</button>
</view>
<uni-popup ref="shiftslistPop">
<view class="pop-box shiftsslistPop">
<view class="pop-header">
<view class="pop-header-text">交班详情</view>
<view class="pop-header-close" @click="$refs.shiftslistPop.close()">
<text class="iconguanbi1 iconfont"></text>
</view>
</view>
<view class="pop-content common-scrollbar">
<view class="pop-content-item">
<view class="pop-content-text">总销售{{ shiftsData.total_sale | moneyFormat }} {{ shiftsData.total_sale_count }}</view>
<view class="pop-contents-text">开单销售{{ shiftsData.billing_money | moneyFormat }} {{ shiftsData.billing_count }}</view>
<view class="pop-contents-text">售卡销售{{ shiftsData.buycard_money | moneyFormat }} {{ shiftsData.buycard_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">会员充值{{ shiftsData.recharge_money | moneyFormat }} {{ shiftsData.recharge_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">应收金额{{ shiftsData.total_money | moneyFormat }} {{ shiftsData.total_count }}</view>
<view class="pop-contents-text">开单销售{{ shiftsData.billing_money | moneyFormat }} {{ shiftsData.billing_count }}</view>
<view class="pop-contents-text">售卡销售{{ shiftsData.buycard_money | moneyFormat }} {{ shiftsData.buycard_count }}</view>
<view class="pop-contents-text">会员充值{{ shiftsData.recharge_money | moneyFormat }} {{ shiftsData.recharge_count }}</view>
<view class="pop-contents-text">订单退款{{ shiftsData.refund_money | moneyFormat }} {{ shiftsData.refund_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">支付统计{{ shiftsData.total_pay_money | moneyFormat }} {{ shiftsData.total_pay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.cash > 0">现金收款{{ shiftsData.cash | moneyFormat }} {{ shiftsData.cash_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.wechatpay > 0">微信收款{{ shiftsData.wechatpay | moneyFormat }} {{ shiftsData.wechatpay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.alipay > 0">支付宝收款{{ shiftsData.alipay | moneyFormat }} {{ shiftsData.alipay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.own_wechatpay > 0">个人微信收款{{ shiftsData.own_wechatpay | moneyFormat }} {{ shiftsData.own_wechatpay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.own_alipay > 0">个人支付宝收款{{ shiftsData.own_alipay | moneyFormat }} {{ shiftsData.own_alipay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.own_pos > 0">个人POS收款{{ shiftsData.own_pos | moneyFormat }} {{ shiftsData.own_pos_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">商品销售{{ shiftsData.sale_goods_count.class_num }}{{ shiftsData.sale_goods_count.num }}</view>
<view class="pop-contents-text">线上销售{{ shiftsData.sale_goods_count.online_class_num }} {{ shiftsData.sale_goods_count.online_num }}</view>
<view class="pop-contents-text">线下销售{{ shiftsData.sale_goods_count.offline_class_num }} {{ shiftsData.sale_goods_count.offline_num }}</view>
</view>
</view>
<view class="pop-content-footer">
<button class="primary-btn" @click="printTicketFn">打印小票</button>
</view>
</view>
</uni-popup>
</view>
<ns-loading ref="loading"></ns-loading>
</view>
</template>
<script>
import dataTable from '@/components/uni-data-table/uni-data-table.vue';
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import { getShiftsData, changeShifts } from '@/api/shifts.js';
import { printTicket } from '@/api/printer.js';
export default {
components: {
dataTable,
uniPopup
},
data() {
return {
shiftsData: null,
info: null,
isSub: false
};
},
onShow() {
this.loadThemeColor();
this.getShiftsInfoFn();
},
methods: {
detail() {
this.$refs.shiftslistPop.open('center');
},
getShiftsInfoFn() {
getShiftsData().then(res => {
if (res.code == 0 && res.data) {
let shiftsData = res.data.shifts_data;
shiftsData.total_sale = parseFloat(shiftsData.billing_money) + parseFloat(shiftsData.buycard_money);
shiftsData.total_sale_count = parseInt(shiftsData.billing_count) + parseInt(shiftsData.buycard_count);
shiftsData.total_count = shiftsData.total_sale_count + parseInt(shiftsData.recharge_count) + parseInt(shiftsData.refund_count);
shiftsData.total_money = shiftsData.total_sale + parseFloat(shiftsData.recharge_money) - parseFloat(shiftsData.refund_money);
shiftsData.total_pay_money =
parseFloat(shiftsData.cash) +
parseFloat(shiftsData.alipay) +
parseFloat(shiftsData.wechatpay) +
parseFloat(shiftsData.own_wechatpay) +
parseFloat(shiftsData.own_alipay) +
parseFloat(shiftsData.own_pos);
shiftsData.total_pay_count =
parseInt(shiftsData.cash_count) +
parseInt(shiftsData.alipay_count) +
parseInt(shiftsData.wechatpay_count) +
parseInt(shiftsData.own_wechatpay_count) +
parseInt(shiftsData.own_alipay_count) +
parseInt(shiftsData.own_pos_count);
this.shiftsData = shiftsData;
this.info = res.data.userinfo;
this.$refs.loading.hide();
} else {
this.$util.showToast({
title: res.message
});
}
})
},
cancel() {
uni.navigateBack();
},
// 交班
changeShiftsFn() {
if (this.isSub) return;
this.isSub = true;
uni.showLoading({
title: ''
});
changeShifts().then(res => {
uni.hideLoading();
if (res.code == 0 && res.data) {
uni.removeStorage({
key: 'cashierToken',
success: () => {
this.$util.clearStoreData();
this.$util.redirectTo('/pages/login/login', {}, 'reLaunch');
}
});
} else {
this.isSub = false;
this.$util.showToast({
title: res.message
});
}
})
},
/**
* 打印小票
*/
printTicketFn() {
printTicket().then(res => {
if (res.code == 0) {
if (Object.values(res.data).length) {
let data = Object.values(res.data);
try {
let print = {
printer: []
};
data.forEach((item) => {
print.printer.push({
printer_type: item.printer_info.printer_type,
host: item.printer_info.host,
ip: item.printer_info.ip,
port: item.printer_info.port,
content: item.content,
print_width: item.printer_info.print_width
})
});
this.$pos.send('Print', JSON.stringify(print));
} catch (e) {
console.log('err', e, res.data)
}
} else {
this.$util.showToast({
title: '未开启交接班小票打印'
})
}
} else {
this.$util.showToast({
title: res.message ? res.message : '小票打印失败'
})
}
})
}
}
}
/**
* 打印回调
* @param {Object} text
*/
window.POS_PRINT_CALLBACK = function (text) {
uni.showToast({
title: text,
icon: 'none'
})
}
</script>
<style lang="scss" scoped>
.height-all {
height: 100vh;
}
.pop-box {
background: #ffffff;
width: 4rem;
height: 60vh;
display: flex;
flex-direction: column;
.pop-header {
width: 100%;
padding: 0 0.15rem 0 0.2rem;
height: 0.5rem;
// width: 3.5rem;
margin: 0 auto;
line-height: 0.5rem;
border-bottom: 0.01rem solid #f0f0f0;
font-size: 0.14rem;
color: #333;
overflow: hidden;
border-radius: 0.02rem 0.2rem 0 0;
box-sizing: border-box;
display: flex;
justify-content: space-between;
.pop-header-text {
font-weight: 900;
}
.pop-header-close {
cursor: pointer;
text {
font-size: 0.18rem;
}
}
}
.pop-content {
flex: 1;
height: 0;
padding: 0.1rem 0.2rem;
box-sizing: border-box;
font-weight: 900;
overflow-y: scroll;
}
.pop-contents {
margin-top: 0.3rem;
width: 3rem;
height: 0.8rem;
padding: 0.1rem 0.2rem;
box-sizing: border-box;
font-weight: 900;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-between;
}
.pop-content-item {
margin-left: 0.3rem;
}
.pop-content-items {
margin-left: 0.3rem;
}
.pop-content-text {
padding: 0.1rem;
}
.pop-contents-text {
margin-left: 0.4rem;
font-weight: normal;
padding: 0.1rem;
}
.pop-content-footer {
display: flex;
padding: .15rem;
justify-content: flex-end;
button {
width: 1rem;
margin: 0;
}
}
}
.container {
display: flex;
align-items: center;
flex-direction: column;
padding: 0.2rem;
}
.title {
font-size: 0.16rem;
margin-top: 0.45rem;
font-weight: 900;
color: rgb(86, 116, 133);
}
.time-title {
padding: 0.1rem;
line-height: 0.2rem;
border-radius: 5px;
background-color: var(--primary-color-light-8);
color: $primary-color;
font-size: 0.14rem;
margin-top: 0.2rem;
text {
margin: 0 0.05rem;
}
.curr-time {
font-weight: bold;
}
}
.title-box {
width: 5rem;
display: flex;
flex-direction: column;
align-content: space-around;
justify-content: flex-start;
align-items: center;
margin-top: 0.3rem;
}
.box {
width: 5.4rem;
height: 0.6rem;
background: #f9fbfb;
border: 1px solid rgb(225, 225, 225);
margin-top: 0.1rem;
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: space-around;
flex-wrap: wrap;
padding: 0 0.23rem 0 0.23rem;
box-sizing: border-box;
}
.title-name {
display: inline-block;
width: 0.3rem;
height: 0.3rem;
border-radius: 15%;
text-align: center;
line-height: 0.3rem;
background: $primary-color;
color: #fff;
font-weight: 900;
font-size: 0.16rem;
}
.name-box {
height: 0.3rem;
}
.money-box {
line-height: 0.3rem;
}
.name {
font-size: 0.16rem;
line-height: 0.3rem;
margin-left: 0.2rem;
font-weight: 900;
color: rgb(86, 116, 133);
}
.money {
margin-left: 0.25rem;
color: rgb(86, 116, 133);
}
.basic {
text-align: center;
margin-top: 0.33rem;
text {
height: 0.15rem;
color: $primary-color;
font-size: 0.14rem;
cursor: pointer;
}
}
.iconqianhou2 {
margin-left: 0.05rem;
font-size: 1px;
color: $primary-color;
}
.cancel-btn {
width: 1.7rem;
height: 0.5rem;
line-height: 0.5rem;
}
.shiftss-btn {
width: 1.7rem;
height: 0.5rem;
line-height: 0.5rem;
background-color: $primary-color;
color: #fff !important;
margin-left: 0.21rem;
}
.common-btn-wrap {
margin-top: 1.14rem;
z-index: 2;
height: 0.6rem;
padding-bottom: 0.05rem;
display: flex;
align-items: center;
}
</style>

View File

@@ -0,0 +1,413 @@
<template>
<base-page>
<view class="manage">
<view class="screen-warp common-form">
<uni-datetime-picker v-model="screen.start_time" type="datetime" placeholder="请选择开始时间" :clearIcon="false" />
<uni-datetime-picker v-model="screen.end_time" type="datetime" placeholder="请选择结束时间" :clearIcon="false" />
<view>
<select-lay :zindex="10" :value="screen.uid" name="names" placeholder="请选择员工" :options="userList" @selectitem="selectUser"/>
</view>
<view class="common-form-item">
<view class="form-inline common-btn-wrap">
<button class="screen-btn" @click="search">搜索</button>
<button type="default" @click="reset()">重置</button>
</view>
</view>
</view>
<uni-data-table url="/cashier/storeapi/cashier/changeShiftsRecord" :option="screen" :cols="cols" ref="table">
<template v-slot:action="data">
<view class="common-table-action"><text @click="detail(data)">查看详情</text></view>
<view class="common-table-action"><text @click="saleGoods(data)">商品销售</text></view>
</template>
</uni-data-table>
</view>
<uni-popup ref="shiftslistPop">
<view class="pop-box shiftsslistPop">
<view class="pop-header">
<view class="pop-header-text">交班详情</view>
<view class="pop-header-close" @click="$refs.shiftslistPop.close()">
<text class="iconguanbi1 iconfont"></text>
</view>
</view>
<view class="pop-content common-scrollbar" v-if="shiftsData">
<view class="pop-content-item">
<view class="pop-content-text">总销售{{ shiftsData.total_sale | moneyFormat }} {{ shiftsData.total_sale_count }}</view>
<view class="pop-contents-text">开单销售{{ shiftsData.billing_money | moneyFormat }} {{ shiftsData.billing_count }}</view>
<view class="pop-contents-text">售卡销售{{ shiftsData.buycard_money | moneyFormat }} {{ shiftsData.buycard_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">会员充值{{ shiftsData.recharge_money | moneyFormat }} {{ shiftsData.recharge_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">应收金额{{ shiftsData.total_money | moneyFormat }} {{ shiftsData.total_count }}</view>
<view class="pop-contents-text">开单销售{{ shiftsData.billing_money | moneyFormat }} {{ shiftsData.billing_count }}</view>
<view class="pop-contents-text">售卡销售{{ shiftsData.buycard_money | moneyFormat }} {{ shiftsData.buycard_count }}</view>
<view class="pop-contents-text">会员充值{{ shiftsData.recharge_money | moneyFormat }} {{ shiftsData.recharge_count }}</view>
<view class="pop-contents-text">订单退款{{ shiftsData.refund_money | moneyFormat }} {{ shiftsData.refund_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">支付统计{{ shiftsData.total_pay_money | moneyFormat }} {{ shiftsData.total_pay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.cash > 0">现金收款{{ shiftsData.cash | moneyFormat }} {{ shiftsData.cash_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.wechatpay > 0">微信收款{{ shiftsData.wechatpay | moneyFormat }} {{ shiftsData.wechatpay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.alipay > 0">支付宝收款{{ shiftsData.alipay | moneyFormat }} {{ shiftsData.alipay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.own_wechatpay > 0">个人微信收款{{ shiftsData.own_wechatpay | moneyFormat }} {{ shiftsData.own_wechatpay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.own_alipay > 0">个人支付宝收款{{ shiftsData.own_alipay | moneyFormat }} {{ shiftsData.own_alipay_count }}</view>
<view class="pop-contents-text" v-if="shiftsData.own_pos > 0">个人POS收款{{ shiftsData.own_pos | moneyFormat }} {{ shiftsData.own_pos_count }}</view>
</view>
<view class="pop-content-item">
<view class="pop-content-text">商品销售{{ shiftsData.sale_goods_count.class_num }} {{ shiftsData.sale_goods_count.num }}</view>
<view class="pop-contents-text" >线上销售{{ shiftsData.sale_goods_count.online_class_num }} {{ shiftsData.sale_goods_count.online_num }}</view>
<view class="pop-contents-text" >线下销售{{ shiftsData.sale_goods_count.offline_class_num }} {{ shiftsData.sale_goods_count.offline_num }}</view>
</view>
</view>
<view class="pop-content-footer">
<button class="primary-btn" @click="printTicketFn">打印小票</button>
</view>
</view>
</uni-popup>
</base-page>
</template>
<script>
import { printTicket } from '@/api/printer.js'
import { getUserList } from '@/api/user.js'
export default {
data() {
return {
shiftsData: null,
screen: {
page: 1,
start_time: '',
end_time: '',
uid: 0
},
userList: [],
cols: [{
width: 20,
title: '员工',
field: 'username',
align: 'left'
}, {
width: 20,
title: '开始时间',
align: 'center',
return: data => {
return data.start_time ? this.$util.timeFormat(data.start_time) : '';
}
}, {
width: 20,
title: '结束时间',
align: 'center',
return: data => {
return this.$util.timeFormat(data.end_time);
}
}, {
width: 15,
title: '总销售',
align: 'right',
return: data => {
return this.$util.moneyFormat(parseFloat(data.billing_money) + parseFloat(data.buycard_money));
}
}, {
width: 15,
title: '会员充值',
align: 'right',
return: data => {
return this.$util.moneyFormat(data.recharge_money);
}
}, {
width: 15,
title: '应收金额',
align: 'right',
return: data => {
return this.$util.moneyFormat(
parseFloat(data.billing_money) + parseFloat(data.buycard_money) + parseFloat(data.recharge_money) - parseFloat(data.refund_money)
);
}
}, {
width: 15,
title: '支付统计',
align: 'right',
return: data => {
return this.$util.moneyFormat(
parseFloat(data.cash) +
parseFloat(data.alipay) +
parseFloat(data.wechatpay) +
parseFloat(data.own_wechatpay) +
parseFloat(data.own_alipay) +
parseFloat(data.own_pos)
);
}
}, {
width: 16,
title: '商品销售',
align: 'right',
return: data => {
return data.sale_goods_count.class_num + '种 ' + data.sale_goods_count.num + '件';
}
}, {
width: 15,
title: '操作',
action: true, // 表格操作列
align: 'right'
}]
};
},
onLoad() {
this.getUserListFn();
},
methods: {
switchStoreAfter() {
this.screen = {
page: 1,
start_time: '',
end_time: '',
uid: 0
};
this.$refs.table.load();
this.getUserListFn();
},
saleGoods(data){
this.$util.redirectTo('/pages/index/change_shiftssalelist',{ id : data.value.id });
},
detail(data) {
let shiftsData = this.$util.deepClone(data.value);
shiftsData.total_sale = parseFloat(shiftsData.billing_money) + parseFloat(shiftsData.buycard_money);
shiftsData.total_sale_count = parseInt(shiftsData.billing_count) + parseInt(shiftsData.buycard_count);
shiftsData.total_count = shiftsData.total_sale_count + parseInt(shiftsData.recharge_count) + parseInt(shiftsData.refund_count);
shiftsData.total_money = shiftsData.total_sale + parseFloat(shiftsData.recharge_money) - parseFloat(shiftsData.refund_money);
shiftsData.total_pay_money =
parseFloat(shiftsData.cash) +
parseFloat(shiftsData.alipay) +
parseFloat(shiftsData.wechatpay) +
parseFloat(shiftsData.own_wechatpay) +
parseFloat(shiftsData.own_alipay) +
parseFloat(shiftsData.own_pos);
shiftsData.total_pay_count =
parseInt(shiftsData.cash_count) +
parseInt(shiftsData.alipay_count) +
parseInt(shiftsData.wechatpay_count) +
parseInt(shiftsData.own_wechatpay_count) +
parseInt(shiftsData.own_alipay_count) +
parseInt(shiftsData.own_pos_count);
this.shiftsData = shiftsData;
this.$refs.shiftslistPop.open('center');
},
getUserListFn() {
let data = {
page: 1,
page_size: 0
};
getUserList(data).then(res => {
if (res.code >= 0 && res.data.list.length != 0) {
this.userList = res.data.list.map(item => {
return {
label: item.username,
value: item.uid
};
});
}
})
},
reset() {
this.screen = {
page: 1,
start_time: '',
end_time: '',
uid: 0
};
this.$refs.table.load(this.screen);
},
selectUser(index, item) {
if (index >= 0) {
this.screen.uid = parseInt(item.value);
} else {
this.screen.uid = 0;
}
},
search() {
this.$refs.table.load(this.screen);
},
/**
* 打印小票
*/
printTicketFn() {
let data = {
record_id: this.shiftsData.id
};
printTicket(data).then(res => {
if (res.code == 0) {
if (Object.values(res.data).length) {
let data = Object.values(res.data);
try {
let print = {
printer: []
};
data.forEach((item) => {
print.printer.push({
printer_type: item.printer_info.printer_type,
host: item.printer_info.host,
ip: item.printer_info.ip,
port: item.printer_info.port,
content: item.content,
print_width: item.printer_info.print_width
});
});
this.$pos.send('Print', JSON.stringify(print));
} catch (e) {
console.log('err', e, res.data)
}
} else {
this.$util.showToast({
title: '未开启交接班小票打印'
})
}
} else {
this.$util.showToast({
title: res.message ? res.message : '小票打印失败'
})
}
})
}
}
};
/**
* 打印回调
* @param {Object} text
*/
window.POS_PRINT_CALLBACK = function (text) {
uni.showToast({
title: text,
icon: 'none'
})
}
</script>
<style lang="scss" scoped>
.manage {
position: relative;
background-color: #fff;
padding: 0.15rem;
height: 100vh;
box-sizing: border-box;
}
// 筛选面板
.screen-warp {
padding: 0.15rem;
background-color: #f2f3f5;
margin-bottom: 0.15rem;
display: flex;
justify-content: start;
/deep/ .uni-date-x {
height: 0.35rem;
}
/deep/ .uni-select-lay {
background: #fff;
.uni-select-lay-select {
height: 0.37rem;
}
}
.primary-btn {
margin-left: 0;
}
&>* {
margin-right: 0.15rem;
}
.common-btn-wrap{
margin-left: 0;
}
}
// pop弹框
.pop-box {
background: #ffffff;
width: 4rem;
height: 60vh;
display: flex;
flex-direction: column;
.pop-header {
width: 100%;
padding: 0 0.15rem 0 0.2rem;
height: 0.5rem;
margin: 0 auto;
line-height: 0.5rem;
border-bottom: 0.01rem solid #f0f0f0;
font-size: 0.14rem;
color: #333;
overflow: hidden;
border-radius: 0.02rem 0.2rem 0 0;
box-sizing: border-box;
display: flex;
justify-content: space-between;
.pop-header-close {
cursor: pointer;
text {
font-size: 0.18rem;
}
}
}
.pop-content {
flex: 1;
height: 0;
padding: 0.1rem 0.2rem;
box-sizing: border-box;
font-weight: 900;
overflow-y: scroll;
}
.pop-contents {
margin-top: 0.3rem;
width: 3rem;
height: 0.8rem;
padding: 0.1rem 0.2rem;
box-sizing: border-box;
font-weight: 900;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-between;
}
.pop-content-item {
margin-left: 0.3rem;
}
.pop-content-items {
margin-left: 0.3rem;
}
.pop-content-text {
padding: 0.1rem;
}
.pop-contents-text {
margin-left: 0.4rem;
font-weight: normal;
padding: 0.1rem;
}
.pop-content-footer {
display: flex;
padding: 0.1rem 0.2rem;
border-top: 0.01rem solid #e6e6e6;
justify-content: center;
button {
width: 1rem;
margin: 0;
}
}
}
</style>

View File

@@ -0,0 +1,56 @@
<template>
<base-page>
<view class="goods-list">
<view class="title-back flex items-center cursor-pointer" @click="backFn">
<text class="iconfont iconqianhou1"></text>
<text class="left">返回</text>
<text class="content">|</text>
<text>商品销售</text>
</view>
<view class="screen-warp common-form">
<view class="common-form-item">
<view class="form-inline">
<label class="form-label">销售渠道</label>
<view class="form-input-inline">
<select-lay :zindex="10" :value="option.sale_channel" name="sale_channel" placeholder="请选择销售渠道" :options="sale_channel_list" @selectitem="selectChannel"/>
</view>
</view>
<view class="form-inline">
<label class="form-label">规格名称</label>
<view class="form-input-inline">
<input type="text" v-model="option.sku_name" placeholder="请输入规格名称" class="form-input" />
</view>
</view>
<view class="form-inline common-btn-wrap">
<button type="default" class="screen-btn" @click="searchFn()">筛选</button>
<button type="default" @click="resetFn()">重置</button>
<button type="default" class="screen-btn" @click="exportSalelist()">导出</button>
</view>
</view>
</view>
<uniDataTable url="/cashier/storeapi/cashier/changeShiftsSaleGoodsList" :option="option" :cols="cols" ref="saleListTable">
</uniDataTable>
</view>
</base-page>
</template>
<script>
import uniDataTable from '@/components/uni-data-table/uni-data-table.vue';
import saleList from './public/js/sale_list.js';
export default {
components: {
uniDataTable
},
mixins: [saleList]
}
</script>
<style scoped lang="scss">
@import './../goods/public/css/goods_list.scss';
</style>
<style scoped>
.common-btn-wrap button{
margin-right: 0.1rem;
}
</style>

View File

@@ -0,0 +1,33 @@
<template>
<page-meta :root-font-size="rootSize"></page-meta>
<view class="container" :style="themeColor">
<image src="@/static/cashier/start_logo.png" mode="heightFix" />
</view>
</template>
<script>
export default {
data() {
return {};
},
onShow() {
this.loadThemeColor();
},
};
</script>
<style lang="scss" scoped>
.container {
width: 100vw;
height: 100vh;
background: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
image {
height: 80%;
}
}
</style>

View File

@@ -0,0 +1,36 @@
<template>
<base-page>
<view class="uni-flex uni-row height-all">
<view class="container common-wrap" style="-webkit-flex: 1;flex: 1;">
<view class="msg">对不起您没有权限访问该页面</view>
</view>
</view>
</base-page>
</template>
<script>
export default {
data() {
return {};
},
onLoad() {
uni.hideTabBar({});
},
methods: {}
};
</script>
<style lang="scss" scoped>
.container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: #fff;
.msg {
color: #333;
font-size: 0.16rem;
}
}
</style>

View File

@@ -0,0 +1,106 @@
import {
saleGoodsExport
} from '@/api/shifts.js';
export default {
data() {
return {
page: 1, // 初始是请求第几页
page_size: 20, // 每次返回数据数
option: {
sale_channel:'all',
sku_name:'',
record_id:''
},
sale_channel_list: [{
value: 'online',
label: '线上'
}, {
value: 'offline',
label: '线下'
}],
cols: [{
field: 'account_data',
width: 25,
title: '商品信息',
align: 'left',
templet: data => {
let img = data.goods_class != 'recharge' ? this.$util.img(data.sku_image,{size:'small'}) : this.$util.img(data.sku_image);
let html = `
<view class="goods-content">
<image class="goods-img" src="${img}" mode="aspectFit"/>
<view class="infos">
<text class="goods-name multi-hidden">${data.goods_name}</text>
<text class="spec-name multi-hidden">${data.spec_name}</text>
</view>
</view>
`;
return html;
}
}, {
width: 15,
title: '总数量',
align: 'center',
field: 'num'
}, {
width: 15,
title: '平均销售价',
align: 'center',
field: 'price'
}, {
width: 15,
title: '销售总额',
align: 'center',
field: 'goods_money'
}, {
width: 15,
title: '线下销售',
align: 'center',
field: 'offline_num'
}, {
width: 15,
title: '线上销售',
align: 'center',
field: 'online_num'
}],
};
},
onLoad(option) {
this.option.record_id = option.id || '';
},
computed: {},
methods: {
exportSalelist(){
saleGoodsExport(this.option).then(res => {
if (res.code == 0) {
window.open(this.$util.img(res.data.path));
}else{
this.$util.showToast({
title: res.message
});
}
});
},
selectChannel(index){
this.option.sale_channel = index == -1 ? '' : this.sale_channel_list[index].value.toString();
},
searchFn(){
this.$refs.saleListTable.load({
page: 1
});
},
resetFn(){
this.option.sale_channel = '';
this.option.sku_name = '';
},
backFn() {
this.$util.redirectTo('/pages/index/change_shiftsrecord');
},
detail(data){
if(window.location.origin.indexOf('localhost') != -1){
window.open(window.location.origin+'/cashregister/pages/order/orderlist?order_no='+data.value.order_no,'_blank');
}else{
window.open(this.$config.baseUrl+'/cashregister/pages/order/orderlist?order_no='+data.value.order_no);
}
},
}
}