新增拼团/套餐分享功能
This commit is contained in:
773
pageConsumables/batch_in.vue
Normal file
773
pageConsumables/batch_in.vue
Normal file
@@ -0,0 +1,773 @@
|
||||
<template>
|
||||
<view class="container">
|
||||
<u-form ref="formRef" :model="form" :rules="rules" label-position="top">
|
||||
<view class="card">
|
||||
<u-form-item>
|
||||
<view class="switch-wrap">
|
||||
<view class="top">
|
||||
<text class="t">第一步:上传图片</text>
|
||||
<view class="btn">
|
||||
<u-button type="primary" :disabled="!img" shape="circle" text="开始解析" @click="startCheckOcrRes"></u-button>
|
||||
</view>
|
||||
</view>
|
||||
<view class="info">
|
||||
<my-upload-img v-model="img"></my-upload-img>
|
||||
</view>
|
||||
</view>
|
||||
</u-form-item>
|
||||
</view>
|
||||
<view class="card" v-if="form.bodyList">
|
||||
<u-form-item>
|
||||
<view class="switch-wrap">
|
||||
<view class="top">
|
||||
<text class="t">第二步:编辑信息</text>
|
||||
</view>
|
||||
<view class="top" style="margin-top: 10px">
|
||||
<text class="t">供应商信息</text>
|
||||
</view>
|
||||
<view class="info">
|
||||
<view style="flex: 1">
|
||||
<selectVendor v-model="form.vendorId" />
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<view class="switch-wrap">
|
||||
<view class="top">
|
||||
<text class="t">耗材信息</text>
|
||||
<view class="btn">
|
||||
<u-button type="primary" shape="circle" text="选择耗材" @click="openSelectCons" v-if="!stockInStatus"></u-button>
|
||||
</view>
|
||||
</view>
|
||||
<view class="info">
|
||||
<view class="list-wrap">
|
||||
<view class="top-tips">
|
||||
<text class="tb">共{{ form.bodyList.length }}种耗材,</text>
|
||||
<text class="tb">
|
||||
金额合计:¥{{
|
||||
multiplyAndFormat(
|
||||
form.bodyList.reduce((sum, item) => sum + (item.purchasePrice || 0) * (item.inOutNumber || 0), 0),
|
||||
1
|
||||
)
|
||||
}}
|
||||
</text>
|
||||
</view>
|
||||
<view class="item" v-for="(item, index) in form.bodyList" :key="index">
|
||||
<view class="name">
|
||||
<text class="t">{{ item.conName }}</text>
|
||||
<view class="error-text" v-if="stockInStatus">
|
||||
<u-text type="success" v-if="item.conId" text="入库成功" size="12"></u-text>
|
||||
<u-text v-else type="error" :text="`入库失败:${item.failReason}`" size="12"></u-text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="content">
|
||||
<view class="ctt-item">
|
||||
<text class="t1">单价</text>
|
||||
<text class="t2">{{ item.purchasePrice }}</text>
|
||||
</view>
|
||||
<view class="ctt-item">
|
||||
<text class="t1">单位</text>
|
||||
<text class="t2">{{ item.unitName }}</text>
|
||||
</view>
|
||||
<view class="ctt-item">
|
||||
<text class="t1">数量</text>
|
||||
<text class="t2">{{ item.inOutNumber }}</text>
|
||||
</view>
|
||||
<view class="ctt-item">
|
||||
<text class="t1">小计</text>
|
||||
<text class="t2">{{ multiplyAndFormat(item.purchasePrice || 0, item.inOutNumber || 0) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="footer-btn-wrap">
|
||||
<view>
|
||||
<u-text type="primary" text="编辑" @click="editorFormHandle(item, index)"></u-text>
|
||||
</view>
|
||||
<view>
|
||||
<u-text type="error" text="删除" @click="form.bodyList.splice(index, 1)"></u-text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-form-item>
|
||||
<u-form-item>
|
||||
<view class="result_wrap" v-if="stockInStatus">
|
||||
上传完成 共{{ form.bodyList.length }}条数据,其中成功
|
||||
<u-text type="success" :text="form.bodyList.filter((item) => item.conId).length"></u-text>
|
||||
条,失败
|
||||
<u-text type="error" :text="form.bodyList.filter((item) => !item.conId).length"></u-text>
|
||||
条
|
||||
</view>
|
||||
</u-form-item>
|
||||
</view>
|
||||
</u-form>
|
||||
<u-popup :show="showEditorPopup" round="20" closeable @close="showEditorPopup = false">
|
||||
<view class="editor-popup" v-if="form.bodyList && form.bodyList.length">
|
||||
<view class="title">
|
||||
<text class="t">{{ form.bodyList[editorIndex].conName }}</text>
|
||||
</view>
|
||||
<view class="form">
|
||||
<u-form ref="editorFormRef" :model="editorForm" :rules="editorFormRules" label-width="60px">
|
||||
<u-form-item label="名称" prop="conName" required>
|
||||
<u-input v-model="editorForm.conName" :maxlength="50" placeholder="请输入耗材名称"></u-input>
|
||||
</u-form-item>
|
||||
<u-form-item label="单价" prop="purchasePrice" required>
|
||||
<u-input
|
||||
v-model="editorForm.purchasePrice"
|
||||
placeholder="请输入耗材单价"
|
||||
:maxlength="8"
|
||||
@change="
|
||||
(e) =>
|
||||
mySetTimeout(() => {
|
||||
editorForm.purchasePrice = filterNumberInput(e);
|
||||
}, 50)
|
||||
"
|
||||
>
|
||||
<template #suffix>
|
||||
<text>元</text>
|
||||
</template>
|
||||
</u-input>
|
||||
</u-form-item>
|
||||
<u-form-item label="单位" prop="unitName" required>
|
||||
<u-input v-model="editorForm.unitName" :maxlength="20" placeholder="请选择耗材单位"></u-input>
|
||||
</u-form-item>
|
||||
<u-form-item label="数量" prop="inOutNumber" required>
|
||||
<u-input
|
||||
v-model="editorForm.inOutNumber"
|
||||
placeholder="请输入耗材数量"
|
||||
:maxlength="8"
|
||||
@change="
|
||||
(e) =>
|
||||
mySetTimeout(() => {
|
||||
editorForm.inOutNumber = filterNumberInput(e, 1);
|
||||
}, 50)
|
||||
"
|
||||
></u-input>
|
||||
</u-form-item>
|
||||
</u-form>
|
||||
</view>
|
||||
<view class="footer">
|
||||
<view class="btn">
|
||||
<u-button style="width: 100%" shape="circle" @click="showEditorPopup = false">取消</u-button>
|
||||
</view>
|
||||
<view class="btn">
|
||||
<u-button type="primary" style="width: 100%" shape="circle" @click="editorFormSubmitHandle">确认</u-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-popup>
|
||||
<my-footer-btn type="horizontal" showCancel @confirm="submitHandle" @cancel="backHandle"></my-footer-btn>
|
||||
<!-- 选择耗材 -->
|
||||
<selectCons ref="selectConsRef" @success="selectConsSuccess" />
|
||||
<view class="loading-page" v-if="checkLoading">
|
||||
<view class="loader"></view>
|
||||
<text class="t">{{ loadingText }}</text>
|
||||
<view class="btn">
|
||||
<u-button type="primary" @click="closeCheckOcrHandle">取消查询</u-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import _ from 'lodash';
|
||||
import { ref, computed } from 'vue';
|
||||
import { multiplyAndFormat, filterNumberInput } from '@/utils/index.js';
|
||||
import { stockOcr, ocrResult } from '@/http/api/product.js';
|
||||
import { consStockIn } from '@/http/api/cons.js';
|
||||
import selectVendor from './components/select-vendor.vue';
|
||||
import selectCons from './components/select-cons.vue';
|
||||
|
||||
const selectConsRef = ref(null);
|
||||
function selectConsSuccess(e) {
|
||||
console.log('selectVendorHandle===', e);
|
||||
let arr = e.map((item) => ({
|
||||
id: item.id,
|
||||
conId: item.id,
|
||||
conName: item.conName,
|
||||
purchasePrice: item.price,
|
||||
unitName: item.conUnit,
|
||||
inOutNumber: 1
|
||||
}));
|
||||
form.value.bodyList.push(...arr);
|
||||
}
|
||||
|
||||
function openSelectCons() {
|
||||
const comp = selectConsRef.value;
|
||||
if (comp && typeof comp.show === 'function') {
|
||||
comp.show();
|
||||
} else {
|
||||
console.warn('selectConsRef not ready or show() not available', comp);
|
||||
}
|
||||
}
|
||||
|
||||
// 封装全局定时器,适配多端
|
||||
const mySetTimeout = (fn, delay) => {
|
||||
if (typeof uni !== 'undefined') {
|
||||
return setTimeout(fn, delay); // 小程序
|
||||
} else {
|
||||
return window.setTimeout(fn, delay); // H5
|
||||
}
|
||||
};
|
||||
|
||||
// 编辑耗材 start
|
||||
const showEditorPopup = ref(false);
|
||||
const editorFormRef = ref(null);
|
||||
const editorIndex = ref(0);
|
||||
const editorForm = ref({
|
||||
conName: '',
|
||||
purchasePrice: '',
|
||||
unitName: '',
|
||||
inOutNumber: ''
|
||||
});
|
||||
const editorFormRules = ref({
|
||||
conName: [
|
||||
{
|
||||
required: true,
|
||||
validator: (rule, value, callback) => {
|
||||
if (editorForm.value.conName === '') {
|
||||
return callback(new Error('请输入耗材名称'));
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
purchasePrice: [
|
||||
{
|
||||
required: true,
|
||||
validator: (rule, value, callback) => {
|
||||
if (editorForm.value.purchasePrice === '') {
|
||||
return callback(new Error('请输入耗材单价'));
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
unitName: [
|
||||
{
|
||||
required: true,
|
||||
validator: (rule, value, callback) => {
|
||||
if (editorForm.value.unitName === '') {
|
||||
return callback(new Error('请选择耗材单位'));
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
inOutNumber: [
|
||||
{
|
||||
required: true,
|
||||
validator: (rule, value, callback) => {
|
||||
if (editorForm.value.inOutNumber === '') {
|
||||
return callback(new Error('请输入耗材数量'));
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
// 显示编辑
|
||||
function editorFormHandle(item, index) {
|
||||
editorForm.value = _.cloneDeep(item);
|
||||
editorIndex.value = index;
|
||||
showEditorPopup.value = true;
|
||||
}
|
||||
|
||||
function editorFormSubmitHandle() {
|
||||
editorFormRef.value
|
||||
.validate()
|
||||
.then(() => {
|
||||
form.value.bodyList[editorIndex.value] = _.cloneDeep(editorForm.value);
|
||||
showEditorPopup.value = false;
|
||||
})
|
||||
.catch(() => {});
|
||||
}
|
||||
// 编辑耗材 end
|
||||
|
||||
const resId = ref(null);
|
||||
const img = ref('');
|
||||
const stockInStatus = ref(false);
|
||||
const form = ref({});
|
||||
// const form = ref({
|
||||
// actualPaymentAmount: null,
|
||||
// amountPayable: 1680,
|
||||
// batchNo: 'XS25110410003',
|
||||
// bodyList: [
|
||||
// { conId: '', conName: '哈根达斯-小杯(草莓)', failReason: '', inOutNumber: 24, purchasePrice: 35, subTotal: 840, unitName: '杯' },
|
||||
// { conId: '', conName: '哈根达斯-小杯(香草)', failReason: '', inOutNumber: 24, purchasePrice: 35, subTotal: 840, unitName: '杯' },
|
||||
// { conId: '', conName: '哈根达斯-小杯(比利时巧克力)', failReason: '', inOutNumber: 12, purchasePrice: 0, subTotal: 0, unitName: '杯' },
|
||||
// { conId: '', conName: '哈根达斯-小杯(夏威夷果仁)', failReason: '', inOutNumber: 12, purchasePrice: 0, subTotal: 0, unitName: '杯' }
|
||||
// ],
|
||||
// inOutDate: '2025-11-04',
|
||||
// ocrSaleOrder: {
|
||||
// customerName: '大客河景餐厅',
|
||||
// date: '2025-11-04',
|
||||
// documentType: '销售单',
|
||||
// items: [
|
||||
// { conName: '哈根达斯-小杯(草莓)', inOutNumber: '24', purchasePrice: '35', spec: '81g', subTotal: '840', unitName: '杯' },
|
||||
// { conName: '哈根达斯-小杯(香草)', inOutNumber: '24', purchasePrice: '35', spec: '81g', subTotal: '840', unitName: '杯' },
|
||||
// { conName: '哈根达斯-小杯(比利时巧克力)', inOutNumber: '12', purchasePrice: '0', spec: '81g', subTotal: '0', unitName: '杯' },
|
||||
// { conName: '哈根达斯-小杯(夏威夷果仁)', inOutNumber: '12', purchasePrice: '0', spec: '81g', subTotal: '0', unitName: '杯' }
|
||||
// ],
|
||||
// operator: '陈钦楠',
|
||||
// orderNumber: 'XS25110410003',
|
||||
// remark: '',
|
||||
// totalAmount: '1680'
|
||||
// },
|
||||
// paymentDate: null,
|
||||
// remark: '',
|
||||
// unInCons: [],
|
||||
// vendorId: null
|
||||
// });
|
||||
|
||||
const rules = ref({});
|
||||
|
||||
// 查询OCR结果
|
||||
async function startCheckOcrRes() {
|
||||
try {
|
||||
resId.value = await stockOcr({ url: img.value });
|
||||
stockInStatus.value = false;
|
||||
startQueryInterval()
|
||||
.then((res) => {
|
||||
// console.log('查询成功', JSON.stringify(res));
|
||||
form.value = res;
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error('查询失败', error);
|
||||
});
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
|
||||
// 开始查询ocr结果
|
||||
// 启动查询方法,每5秒查询一次,五分钟后超时停止查询
|
||||
const checkLoading = ref(false);
|
||||
const speed = 10000; // 查询间隔时间,单位毫秒
|
||||
const timeout = 300000; // 超时时间,单位毫秒
|
||||
// const timeout = 15000; // 超时时间,单位毫秒
|
||||
const interval = ref(null);
|
||||
const checkNumber = ref(0);
|
||||
const loadingText = computed(() => `每${speed / 1000}秒查询1次,已查询:${checkNumber.value}次`);
|
||||
function startQueryInterval() {
|
||||
return new Promise((resolve, reject) => {
|
||||
if (!resId.value) {
|
||||
reject(new Error('无效的 resId,无法查询'));
|
||||
return;
|
||||
}
|
||||
|
||||
// 重置计数并显示 loading
|
||||
checkNumber.value = 0;
|
||||
checkLoading.value = true;
|
||||
|
||||
const startTime = Date.now();
|
||||
interval.value = null;
|
||||
|
||||
async function checkOnce() {
|
||||
try {
|
||||
checkNumber.value++;
|
||||
console.log('ocr checkNumber:', checkNumber.value);
|
||||
checkLoading.value = true;
|
||||
const res = await ocrResult({ id: resId.value });
|
||||
if (res && res.batchNo) {
|
||||
uni.showToast({
|
||||
title: '查询成功',
|
||||
icon: 'none'
|
||||
});
|
||||
setTimeout(() => {
|
||||
checkLoading.value = false;
|
||||
}, 1000);
|
||||
clearInterval(interval.value);
|
||||
resolve(res);
|
||||
return;
|
||||
}
|
||||
|
||||
// 如果还未超时,则继续等待下一轮查询
|
||||
if (Date.now() - startTime >= timeout) {
|
||||
setTimeout(() => {
|
||||
checkLoading.value = false;
|
||||
}, 1000);
|
||||
uni.showToast({
|
||||
title: '查询超时',
|
||||
icon: 'none'
|
||||
});
|
||||
clearInterval(interval.value);
|
||||
reject(new Error('查询超时'));
|
||||
}
|
||||
} catch (error) {
|
||||
uni.showToast({
|
||||
title: '查询失败',
|
||||
icon: 'none'
|
||||
});
|
||||
setTimeout(() => {
|
||||
checkLoading.value = false;
|
||||
}, 1000);
|
||||
clearInterval(interval.value);
|
||||
reject(error);
|
||||
}
|
||||
}
|
||||
|
||||
// 立即执行一次查询,然后按间隔继续查询
|
||||
checkOnce();
|
||||
interval.value = setInterval(checkOnce, speed);
|
||||
});
|
||||
}
|
||||
|
||||
// 取消查询
|
||||
function closeCheckOcrHandle() {
|
||||
checkLoading.value = false;
|
||||
clearInterval(interval.value);
|
||||
}
|
||||
|
||||
// 提交批量入库
|
||||
async function submitHandle() {
|
||||
try {
|
||||
console.log('submitHandle', form.value);
|
||||
uni.showLoading({
|
||||
title: '提交中...',
|
||||
mask: true
|
||||
});
|
||||
const res = await consStockIn(form.value);
|
||||
form.value = res;
|
||||
stockInStatus.value = true;
|
||||
setTimeout(() => {
|
||||
uni.showToast({
|
||||
title: '提交成功',
|
||||
icon: 'none'
|
||||
});
|
||||
}, 100);
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
uni.hideLoading();
|
||||
}
|
||||
|
||||
// 返回
|
||||
function backHandle() {
|
||||
uni.navigateBack();
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
page {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
</style>
|
||||
<style scoped lang="scss">
|
||||
.container {
|
||||
padding: 28upx;
|
||||
}
|
||||
.card {
|
||||
background-color: #fff;
|
||||
border-radius: 20px;
|
||||
padding: 28upx;
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 28upx;
|
||||
}
|
||||
}
|
||||
.switch-wrap {
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
.top {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
&.column {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
}
|
||||
.two {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-right: 28upx;
|
||||
}
|
||||
.t {
|
||||
font-size: 32upx;
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
.tips {
|
||||
font-size: 24upx;
|
||||
color: #666;
|
||||
}
|
||||
}
|
||||
.info {
|
||||
padding-top: 16upx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16upx;
|
||||
.i {
|
||||
font-size: 28upx;
|
||||
color: #666;
|
||||
}
|
||||
.ipt {
|
||||
flex: 1;
|
||||
}
|
||||
.t {
|
||||
font-size: 24upx;
|
||||
color: #666;
|
||||
}
|
||||
.list-wrap {
|
||||
flex: 1;
|
||||
.top-tips {
|
||||
.t {
|
||||
font-size: 28upx;
|
||||
color: #333;
|
||||
}
|
||||
}
|
||||
.item {
|
||||
margin-top: 28upx;
|
||||
background-color: #f8f8f8;
|
||||
border-radius: 12upx;
|
||||
padding: 20upx;
|
||||
.name {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.t {
|
||||
font-size: 28upx;
|
||||
color: #333;
|
||||
}
|
||||
.error-text {
|
||||
display: flex;
|
||||
}
|
||||
}
|
||||
.content {
|
||||
display: flex;
|
||||
padding: 28upx 0;
|
||||
|
||||
.ctt-item {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
&:last-child {
|
||||
align-items: flex-end;
|
||||
}
|
||||
.t1 {
|
||||
color: #666;
|
||||
font-size: 28upx;
|
||||
}
|
||||
.t2 {
|
||||
color: #333;
|
||||
font-size: 28upx;
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer-btn-wrap {
|
||||
display: flex;
|
||||
gap: 28upx;
|
||||
justify-content: flex-end;
|
||||
.btn {
|
||||
width: 160upx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.package-wrap {
|
||||
flex: 1;
|
||||
.list {
|
||||
.item {
|
||||
border: 1px solid #ececec;
|
||||
border-radius: 12upx;
|
||||
padding: 20upx;
|
||||
&:not(:first-child) {
|
||||
margin-top: 28upx;
|
||||
}
|
||||
.header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-bottom: 20upx;
|
||||
.t {
|
||||
font-size: 28upx;
|
||||
color: #333;
|
||||
}
|
||||
.del {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12upx;
|
||||
}
|
||||
}
|
||||
.input-wrap {
|
||||
display: flex;
|
||||
gap: 20upx;
|
||||
padding-bottom: 20upx;
|
||||
.btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12upx;
|
||||
.t {
|
||||
color: #318afe;
|
||||
}
|
||||
}
|
||||
}
|
||||
.table-wrap {
|
||||
padding-bottom: 20upx;
|
||||
margin-bottom: 20upx;
|
||||
.tab-head {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
.tr {
|
||||
display: flex;
|
||||
gap: 12upx;
|
||||
padding: 20upx;
|
||||
border-bottom: 1px solid #ececec;
|
||||
.td {
|
||||
flex: 1;
|
||||
&:nth-child(1) {
|
||||
flex: 2;
|
||||
}
|
||||
&:last-child {
|
||||
flex: 0.5;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.t {
|
||||
font-size: 28upx;
|
||||
color: #333;
|
||||
}
|
||||
.del {
|
||||
color: red;
|
||||
font-size: 28upx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.select_num_wrap {
|
||||
padding-bottom: 28upx;
|
||||
.label {
|
||||
padding-bottom: 20upx;
|
||||
.t {
|
||||
color: #333;
|
||||
font-size: 32upx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.package-wrap-btn {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-top: 28upx;
|
||||
.btn {
|
||||
display: flex;
|
||||
gap: 8upx;
|
||||
align-items: center;
|
||||
.t {
|
||||
font-size: 28upx;
|
||||
color: #318afe;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.step-wrap {
|
||||
flex: 1;
|
||||
.table-wrap {
|
||||
padding-bottom: 20upx;
|
||||
margin-bottom: 20upx;
|
||||
.tab-head {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
.tr {
|
||||
display: flex;
|
||||
gap: 12upx;
|
||||
padding: 20upx;
|
||||
border-bottom: 1px solid #ececec;
|
||||
.td {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
gap: 20upx;
|
||||
align-items: center;
|
||||
&:last-child {
|
||||
flex: 0.6;
|
||||
}
|
||||
.t {
|
||||
font-size: 28upx;
|
||||
color: #333;
|
||||
}
|
||||
.edit {
|
||||
color: #318afe;
|
||||
font-size: 28upx;
|
||||
}
|
||||
.del {
|
||||
color: red;
|
||||
font-size: 28upx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.editor-popup {
|
||||
padding: 0 28upx;
|
||||
.title {
|
||||
padding: 28upx 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
.t {
|
||||
font-size: 32upx;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
.form {
|
||||
padding: 28upx;
|
||||
}
|
||||
.footer {
|
||||
display: flex;
|
||||
gap: 28upx;
|
||||
.btn {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
.result_wrap {
|
||||
display: flex;
|
||||
}
|
||||
.loading-page {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
gap: 20upx;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: #fff;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 999;
|
||||
padding-bottom: 10vh;
|
||||
.loader {
|
||||
width: 50px;
|
||||
aspect-ratio: 1;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #ffa516);
|
||||
-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
|
||||
animation: l13 1s infinite linear;
|
||||
}
|
||||
@keyframes l13 {
|
||||
100% {
|
||||
transform: rotate(1turn);
|
||||
}
|
||||
}
|
||||
.t {
|
||||
font-size: 28upx;
|
||||
color: #666;
|
||||
}
|
||||
.btn {
|
||||
position: absolute;
|
||||
bottom: 10%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
52
pageConsumables/components/select-cons.vue
Normal file
52
pageConsumables/components/select-cons.vue
Normal file
@@ -0,0 +1,52 @@
|
||||
<template>
|
||||
<u-picker
|
||||
title="选择耗材"
|
||||
:show="visable"
|
||||
:columns="columns"
|
||||
keyName="conName"
|
||||
@close="visable = false"
|
||||
closeOnClickOverlay
|
||||
@cancel="visable = false"
|
||||
@confirm="confirmHandle"
|
||||
></u-picker>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { getConsList } from '@/http/api/cons.js';
|
||||
|
||||
const visable = ref(false);
|
||||
|
||||
const columns = ref([]);
|
||||
|
||||
const emits = defineEmits(['success']);
|
||||
|
||||
function confirmHandle(e) {
|
||||
emits('success', e.value);
|
||||
visable.value = false;
|
||||
}
|
||||
|
||||
// 获取耗材列表
|
||||
async function getConsListAjax() {
|
||||
try {
|
||||
const res = await getConsList();
|
||||
columns.value = [res];
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
|
||||
function show() {
|
||||
visable.value = true;
|
||||
}
|
||||
|
||||
defineExpose({
|
||||
show
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
getConsListAjax();
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss"></style>
|
||||
56
pageConsumables/components/select-vendor.vue
Normal file
56
pageConsumables/components/select-vendor.vue
Normal file
@@ -0,0 +1,56 @@
|
||||
<!-- 选择供应商 -->
|
||||
<template>
|
||||
<view class="container">
|
||||
<view @click="show = true">
|
||||
<u-input v-model="vendorName" readonly suffixIcon="arrow-down" placeholder="请选择供应商"></u-input>
|
||||
</view>
|
||||
<u-picker
|
||||
title="选择供应商"
|
||||
:show="show"
|
||||
:columns="columns"
|
||||
keyName="name"
|
||||
@close="show = false"
|
||||
closeOnClickOverlay
|
||||
@cancel="show = false"
|
||||
@confirm="confirmHandle"
|
||||
></u-picker>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { getVendorList } from '@/http/api/vendor.js';
|
||||
|
||||
const vendorName = ref('');
|
||||
|
||||
const vendorId = defineModel({
|
||||
type: [String, Number],
|
||||
default: ''
|
||||
});
|
||||
|
||||
const show = ref(false);
|
||||
const columns = ref([]);
|
||||
|
||||
function confirmHandle(e) {
|
||||
let data = e.value[0];
|
||||
vendorId.value = data.id;
|
||||
vendorName.value = data.name;
|
||||
show.value = false;
|
||||
}
|
||||
|
||||
// 获取供应商列表
|
||||
async function getVendorListAjax() {
|
||||
try {
|
||||
const res = await getVendorList();
|
||||
columns.value = [res];
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getVendorListAjax();
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss"></style>
|
||||
@@ -1,453 +1,479 @@
|
||||
<template>
|
||||
<view class="ConsumablesTop">
|
||||
<view @tap="pageData.show = !pageData.show" style="display: flex;align-items: center;">
|
||||
{{pageData.title}}<up-icon name="arrow-down" size="12"></up-icon>
|
||||
<view @tap="pageData.show = !pageData.show" style="display: flex; align-items: center">
|
||||
{{ pageData.title }}
|
||||
<up-icon name="arrow-down" size="12"></up-icon>
|
||||
</view>
|
||||
<view>
|
||||
<input v-model="pageData.query.conName" @input="inputEvent" type="text" placeholder="请输入耗材名称" />
|
||||
</view>
|
||||
<view @tap="toUrl('PAGES_ADD_TYPE') ">
|
||||
新增类别
|
||||
</view>
|
||||
<view @tap="toUrl('PAGES_ADD_TYPE')">新增类别</view>
|
||||
</view>
|
||||
|
||||
<view class="ConsumablesConent" v-if="pageData.list.length">
|
||||
<view v-for="(item,index) in pageData.list" :key="index">
|
||||
<view> {{item.conName}}
|
||||
<view> {{item.consGroupName}} </view>
|
||||
<view v-for="(item, index) in pageData.list" :key="index">
|
||||
<view>
|
||||
{{ item.conName }}
|
||||
<view>{{ item.consGroupName }}</view>
|
||||
</view>
|
||||
<view>
|
||||
<view>
|
||||
<view style="color: #333333;"> {{item.conUnit}} </view>
|
||||
<view> 耗材单位 </view>
|
||||
<view style="color: #333333">{{ item.conUnit }}</view>
|
||||
<view>耗材单位</view>
|
||||
</view>
|
||||
<view>
|
||||
<view style="color: #318AFE;"> {{item.stockNumber}} </view>
|
||||
<view> 剩余库存 </view>
|
||||
<view style="color: #318afe">{{ item.stockNumber }}</view>
|
||||
<view>剩余库存</view>
|
||||
</view>
|
||||
</view>
|
||||
<view>
|
||||
<view style="background-color: #fff;" @tap="show=true;showData = filtersSproductId(item.productList)">
|
||||
<view
|
||||
style="background-color: #fff"
|
||||
@tap="
|
||||
show = true;
|
||||
showData = filtersSproductId(item.productList);
|
||||
"
|
||||
>
|
||||
所属商品:
|
||||
{{ filtersSproductId(item.productList).length>7?filtersSproductId(item.productList).substring(0,6)+'...':filtersSproductId(item.productList)}}
|
||||
{{ filtersSproductId(item.productList).length > 7 ? filtersSproductId(item.productList).substring(0, 6) + '...' : filtersSproductId(item.productList) }}
|
||||
</view>
|
||||
<view class="">
|
||||
<up-button shape="circle" type="primary" size="mini" color="#999"
|
||||
@tap="toUrl('PAGES_VIEWRECORDS',{item:JSON.stringify(item)})" :plain="true"
|
||||
text="查看记录"></up-button>
|
||||
<up-button type="primary" shape="circle" size="mini" @click="toggle(item)" :plain="true"
|
||||
text="更多操作"></up-button>
|
||||
<up-button
|
||||
shape="circle"
|
||||
type="primary"
|
||||
size="mini"
|
||||
color="#999"
|
||||
@tap="toUrl('PAGES_VIEWRECORDS', { item: JSON.stringify(item) })"
|
||||
:plain="true"
|
||||
text="查看记录"
|
||||
></up-button>
|
||||
|
||||
<up-button type="primary" shape="circle" size="mini" @click="toggle(item)" :plain="true" text="更多操作"></up-button>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view style="background-color: rgba(0,0,0,0); height: 200rpx;"></view>
|
||||
<view style="background-color: rgba(0, 0, 0, 0); height: 200rpx"></view>
|
||||
</view>
|
||||
<view v-else style="text-align: center;">
|
||||
<image src="./bg.png" style="width: 325rpx;height: 335rpx;" mode=""></image>
|
||||
<view style="font-size: 28rpx;color: #999;">暂无数据</view>
|
||||
<view v-else style="text-align: center">
|
||||
<image src="./bg.png" style="width: 325rpx; height: 335rpx" mode=""></image>
|
||||
<view style="font-size: 28rpx; color: #999">暂无数据</view>
|
||||
</view>
|
||||
<view class="ConsumablesBottom">
|
||||
<view @tap="toUrl('PAGES_ADD_CONSUMABLES')"> 新增耗材 </view>
|
||||
<view @tap="toUrl('PAGES_SUPPLIER')"> 供应商管理 </view>
|
||||
<view @tap="toUrl('PAGES_ADD_CONSUMABLES')">新增耗材</view>
|
||||
<view @tap="toUrl('PAGES_SUPPLIER')">供应商管理</view>
|
||||
</view>
|
||||
<my-reportDamage ref="reportDamage" title="耗材报损" :item="report.data" @affirm="affirm"></my-reportDamage>
|
||||
|
||||
<up-popup :show="show" :round="18" mode="center" >
|
||||
<up-popup :show="show" :round="18" mode="center">
|
||||
<view class="zhezhaopop">
|
||||
<view class="">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<up-icon @tap="show=false" name="close-circle-fill"></up-icon>
|
||||
<up-icon @tap="show = false" name="close-circle-fill"></up-icon>
|
||||
</view>
|
||||
<view class="">
|
||||
{{showData}}
|
||||
{{ showData }}
|
||||
</view>
|
||||
</view>
|
||||
</up-popup>
|
||||
<up-action-sheet :round="10" @select="actionSelect" @close="actions.show = false" cancelText="取消" :actions="actions.list"
|
||||
:show="actions.show"></up-action-sheet>
|
||||
<up-picker :show="pageData.show" :columns="pageData.typeList" keyName="name" @cancel="pageData.show=false" @confirm="confirmConsGroup" ></up-picker>
|
||||
<up-action-sheet :round="10" @select="actionSelect" @close="actions.show = false" cancelText="取消" :actions="actions.list" :show="actions.show"></up-action-sheet>
|
||||
<up-picker :show="pageData.show" :columns="pageData.typeList" keyName="name" @cancel="pageData.show = false" @confirm="confirmConsGroup"></up-picker>
|
||||
<!-- 批量入库悬浮按钮 -->
|
||||
<view class="fixed-in-btn" @click="toBatchPage">
|
||||
<image class="img" src="https://cashier-oss.oss-cn-beijing.aliyuncs.com/upload/4/bd8cde310fc247f6855ad39fbda4d75d.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { onShow, onLoad } from '@dcloudio/uni-app'
|
||||
import { ref, reactive, computed } from 'vue';
|
||||
import myReportDamage from './components/my-reportDamage';
|
||||
import { onShow, onLoad } from '@dcloudio/uni-app';
|
||||
import { ref, reactive, computed } from 'vue';
|
||||
import myReportDamage from './components/my-reportDamage';
|
||||
|
||||
import go from '@/commons/utils/go.js';
|
||||
import { hasPermission } from '@/commons/utils/hasPermission.js';
|
||||
import { getConsPage,getConsGrpupList } from '@/http/api/cons.js';
|
||||
|
||||
let reportDamage = ref(null)
|
||||
let show = ref(false)
|
||||
let showData = ref()
|
||||
const report = reactive({
|
||||
data: {
|
||||
name: "美式咖啡",
|
||||
unit: "杯",
|
||||
},
|
||||
})
|
||||
let pageData = reactive({
|
||||
show: false,
|
||||
query: {
|
||||
conName: '',
|
||||
consGroupId: '',
|
||||
size: 100,
|
||||
page: 1
|
||||
},
|
||||
list: [],
|
||||
// 类型列表
|
||||
typeList: [],
|
||||
title: '耗材类型'
|
||||
})
|
||||
import go from '@/commons/utils/go.js';
|
||||
import { hasPermission } from '@/commons/utils/hasPermission.js';
|
||||
import { getConsPage, getConsGrpupList } from '@/http/api/cons.js';
|
||||
|
||||
/**
|
||||
* 更多操作列表
|
||||
*/
|
||||
const actions = reactive({
|
||||
list: [
|
||||
{ name: '报损', color: 'red', fontSize: '16' },
|
||||
{ name: '编辑', color: '#333', fontSize: '16' },
|
||||
{ name: '清点', color: '#333', fontSize: '16' },
|
||||
{ name: '入库', color: '#333', fontSize: '16' },
|
||||
{ name: '出库', color: '#333', fontSize: '16' },
|
||||
],
|
||||
data: null,
|
||||
show: false,
|
||||
})
|
||||
let reportDamage = ref(null);
|
||||
let show = ref(false);
|
||||
let showData = ref();
|
||||
const report = reactive({
|
||||
data: {
|
||||
name: '美式咖啡',
|
||||
unit: '杯'
|
||||
}
|
||||
});
|
||||
let pageData = reactive({
|
||||
show: false,
|
||||
query: {
|
||||
conName: '',
|
||||
consGroupId: '',
|
||||
size: 100,
|
||||
page: 1
|
||||
},
|
||||
list: [],
|
||||
// 类型列表
|
||||
typeList: [],
|
||||
title: '耗材类型'
|
||||
});
|
||||
|
||||
onShow(() => {
|
||||
getList()
|
||||
gettbConsTypeList()
|
||||
})
|
||||
/**
|
||||
* 更多操作列表
|
||||
*/
|
||||
const actions = reactive({
|
||||
list: [
|
||||
{ name: '报损', color: 'red', fontSize: '16' },
|
||||
{ name: '编辑', color: '#333', fontSize: '16' },
|
||||
{ name: '清点', color: '#333', fontSize: '16' },
|
||||
{ name: '入库', color: '#333', fontSize: '16' },
|
||||
{ name: '出库', color: '#333', fontSize: '16' }
|
||||
],
|
||||
data: null,
|
||||
show: false
|
||||
});
|
||||
|
||||
/**
|
||||
* 获取耗材列表
|
||||
*/
|
||||
async function getList() {
|
||||
getConsPage(pageData.query).then(res => {
|
||||
pageData.list = res.records
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取耗材类别
|
||||
*/
|
||||
let gettbConsTypeList = () => {
|
||||
getConsGrpupList({
|
||||
page: 1,
|
||||
size: 30,
|
||||
}).then(res => {
|
||||
pageData.typeList = [[{name:'全部',id:''},...res]]
|
||||
})
|
||||
}
|
||||
|
||||
function confirmConsGroup(e){
|
||||
pageData.show = false
|
||||
pageData.query.consGroupId = e.value[0].id
|
||||
pageData.title = e.value[0].name
|
||||
getList()
|
||||
}
|
||||
onShow(() => {
|
||||
getList();
|
||||
gettbConsTypeList();
|
||||
});
|
||||
|
||||
/**
|
||||
* 报损确认
|
||||
*/
|
||||
function affirm() {
|
||||
uni.showToast({
|
||||
title:'操作成功',
|
||||
icon:'none'
|
||||
})
|
||||
getList()
|
||||
// 获取分类列表
|
||||
gettbConsTypeList()
|
||||
}
|
||||
// 跳转去批量入库
|
||||
function toBatchPage() {
|
||||
uni.navigateTo({
|
||||
url: '/pageConsumables/batch_in'
|
||||
});
|
||||
}
|
||||
|
||||
let toggle = (d) => {
|
||||
// refMoreSheet.value.open()
|
||||
actions.show = true;
|
||||
actions.actions = d
|
||||
report.data.consId = d.id
|
||||
}
|
||||
/**
|
||||
* 获取耗材列表
|
||||
*/
|
||||
async function getList() {
|
||||
getConsPage(pageData.query).then((res) => {
|
||||
pageData.list = res.records;
|
||||
});
|
||||
}
|
||||
|
||||
let actionSelect = ( e ) => {
|
||||
if ( e.name == '报损' ) {
|
||||
// 权限
|
||||
hasPermission('允许提交报损').then(ele => {
|
||||
if (ele) {
|
||||
//打开报损弹窗
|
||||
reportDamage.value.open(actions.actions.id);
|
||||
report.data.name = actions.actions.conName
|
||||
report.data.unit = actions.actions.conUnit
|
||||
}
|
||||
})
|
||||
} else if ( e.name == '编辑' ) {
|
||||
toUrl('PAGES_ADD_CONSUMABLES', {
|
||||
item: JSON.stringify(actions.actions)
|
||||
})
|
||||
} else if ( e.name == '清点' ) {
|
||||
hasPermission('允许耗材盘点').then(ele => {
|
||||
if (ele) {
|
||||
toUrl('PAGES_SALES_INVENTORYCHECK', {
|
||||
item: JSON.stringify(actions.actions)
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if ( e.name == '入库' ) {
|
||||
hasPermission('允许耗材入库').then(ele => {
|
||||
if (ele) {
|
||||
toUrl('PAGES_SALES_WAREHOUSEENTRY', {
|
||||
consId: actions.actions.id,
|
||||
item: JSON.stringify(actions.actions)
|
||||
})
|
||||
}
|
||||
})
|
||||
} else if ( e.name == '出库' ) {
|
||||
hasPermission('允许耗材出库').then(ele => {
|
||||
if (ele) {
|
||||
toUrl('PAGES_SALES_OUTBOUND', {
|
||||
consId: actions.actions.id,
|
||||
item: JSON.stringify(actions.actions)
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function inputEvent(d) {
|
||||
pageData.query.conName = d.detail.value.replace(/\s*/g, "");
|
||||
getList()
|
||||
}
|
||||
/**
|
||||
* 获取耗材类别
|
||||
*/
|
||||
let gettbConsTypeList = () => {
|
||||
getConsGrpupList({
|
||||
page: 1,
|
||||
size: 30
|
||||
}).then((res) => {
|
||||
pageData.typeList = [[{ name: '全部', id: '' }, ...res]];
|
||||
});
|
||||
};
|
||||
|
||||
function filtersSproductId(d) {
|
||||
if (!d) return ''
|
||||
// const dataArr = d.split(',')
|
||||
let str = ''
|
||||
d.forEach(ele => {
|
||||
// str += ele.name
|
||||
// const startIndex = ele.indexOf('_')
|
||||
// const productId = ele.slice(0, startIndex)
|
||||
// const productName = ele.slice(startIndex + 1, ele.length)
|
||||
str = ele.name + ',' + str
|
||||
})
|
||||
return str
|
||||
}
|
||||
let toUrl = (url, d) => {
|
||||
go.to(url, d)
|
||||
function confirmConsGroup(e) {
|
||||
pageData.show = false;
|
||||
pageData.query.consGroupId = e.value[0].id;
|
||||
pageData.title = e.value[0].name;
|
||||
getList();
|
||||
}
|
||||
|
||||
/**
|
||||
* 报损确认
|
||||
*/
|
||||
function affirm() {
|
||||
uni.showToast({
|
||||
title: '操作成功',
|
||||
icon: 'none'
|
||||
});
|
||||
getList();
|
||||
// 获取分类列表
|
||||
gettbConsTypeList();
|
||||
}
|
||||
|
||||
let toggle = (d) => {
|
||||
// refMoreSheet.value.open()
|
||||
actions.show = true;
|
||||
actions.actions = d;
|
||||
report.data.consId = d.id;
|
||||
};
|
||||
|
||||
let actionSelect = (e) => {
|
||||
if (e.name == '报损') {
|
||||
// 权限
|
||||
hasPermission('允许提交报损').then((ele) => {
|
||||
if (ele) {
|
||||
//打开报损弹窗
|
||||
reportDamage.value.open(actions.actions.id);
|
||||
report.data.name = actions.actions.conName;
|
||||
report.data.unit = actions.actions.conUnit;
|
||||
}
|
||||
});
|
||||
} else if (e.name == '编辑') {
|
||||
toUrl('PAGES_ADD_CONSUMABLES', {
|
||||
item: JSON.stringify(actions.actions)
|
||||
});
|
||||
} else if (e.name == '清点') {
|
||||
hasPermission('允许耗材盘点').then((ele) => {
|
||||
if (ele) {
|
||||
toUrl('PAGES_SALES_INVENTORYCHECK', {
|
||||
item: JSON.stringify(actions.actions)
|
||||
});
|
||||
}
|
||||
});
|
||||
} else if (e.name == '入库') {
|
||||
hasPermission('允许耗材入库').then((ele) => {
|
||||
if (ele) {
|
||||
toUrl('PAGES_SALES_WAREHOUSEENTRY', {
|
||||
consId: actions.actions.id,
|
||||
item: JSON.stringify(actions.actions)
|
||||
});
|
||||
}
|
||||
});
|
||||
} else if (e.name == '出库') {
|
||||
hasPermission('允许耗材出库').then((ele) => {
|
||||
if (ele) {
|
||||
toUrl('PAGES_SALES_OUTBOUND', {
|
||||
consId: actions.actions.id,
|
||||
item: JSON.stringify(actions.actions)
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
function inputEvent(d) {
|
||||
pageData.query.conName = d.detail.value.replace(/\s*/g, '');
|
||||
getList();
|
||||
}
|
||||
|
||||
function filtersSproductId(d) {
|
||||
if (!d) return '';
|
||||
// const dataArr = d.split(',')
|
||||
let str = '';
|
||||
d.forEach((ele) => {
|
||||
// str += ele.name
|
||||
// const startIndex = ele.indexOf('_')
|
||||
// const productId = ele.slice(0, startIndex)
|
||||
// const productName = ele.slice(startIndex + 1, ele.length)
|
||||
str = ele.name + ',' + str;
|
||||
});
|
||||
return str;
|
||||
}
|
||||
let toUrl = (url, d) => {
|
||||
go.to(url, d);
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
page {
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
page {
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
</style>
|
||||
<style scoped lang="less">
|
||||
ul,
|
||||
li {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
ul,
|
||||
li {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ConsumablesTop {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
padding-bottom: 22rpx;
|
||||
background-color: #fff;
|
||||
|
||||
> view:first-child,
|
||||
> view:last-child {
|
||||
font-size: 24rpx;
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 500;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.ConsumablesTop {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
padding-bottom: 22rpx;
|
||||
background-color: #fff;
|
||||
> view:last-child {
|
||||
color: #318afe;
|
||||
}
|
||||
|
||||
>view:first-child,
|
||||
>view:last-child {
|
||||
font-size: 24rpx;
|
||||
> view:nth-child(2) {
|
||||
width: 414rpx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
background: #f9f9f9;
|
||||
border-radius: 32rpx 32rpx 32rpx 32rpx;
|
||||
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
font-size: 28rpx;
|
||||
color: #999999;
|
||||
}
|
||||
}
|
||||
|
||||
.ConsumablesConent {
|
||||
min-height: 80vh;
|
||||
background-color: #f9f9f9;
|
||||
padding-top: 1rpx;
|
||||
|
||||
> view {
|
||||
width: 694rpx;
|
||||
height: 332rpx;
|
||||
background: #ffffff;
|
||||
border-radius: 10rpx 10rpx 10rpx 10rpx;
|
||||
padding: 32rpx 16rpx;
|
||||
box-sizing: border-box;
|
||||
margin: 32rpx auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
|
||||
> view:first-child {
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 500;
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
}
|
||||
.df;
|
||||
|
||||
>view:last-child {
|
||||
color: #318AFE;
|
||||
}
|
||||
|
||||
>view:nth-child(2) {
|
||||
width: 414rpx;
|
||||
height: 60rpx;
|
||||
line-height: 60rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
background: #F9F9F9;
|
||||
border-radius: 32rpx 32rpx 32rpx 32rpx;
|
||||
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
font-size: 28rpx;
|
||||
color: #999999;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.ConsumablesConent {
|
||||
min-height: 80vh;
|
||||
background-color: #f9f9f9;
|
||||
padding-top: 1rpx;
|
||||
|
||||
>view {
|
||||
width: 694rpx;
|
||||
height: 332rpx;
|
||||
background: #FFFFFF;
|
||||
border-radius: 10rpx 10rpx 10rpx 10rpx;
|
||||
padding: 32rpx 16rpx;
|
||||
box-sizing: border-box;
|
||||
margin: 32rpx auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
|
||||
>view:first-child {
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 500;
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
.df;
|
||||
|
||||
>view {
|
||||
// width: 90rpx;
|
||||
padding: 2rpx 10rpx;
|
||||
height: 36rpx;
|
||||
line-height: 36rpx;
|
||||
background: #EBF4FC;
|
||||
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
||||
text-align: center;
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #318AFE;
|
||||
margin-left: 12rpx;
|
||||
}
|
||||
}
|
||||
|
||||
>view:nth-child(2) {
|
||||
width: 662rpx;
|
||||
height: 128rpx;
|
||||
background: #F9F9F9;
|
||||
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
||||
.df;
|
||||
justify-content: space-around;
|
||||
> view {
|
||||
// width: 90rpx;
|
||||
padding: 2rpx 10rpx;
|
||||
height: 36rpx;
|
||||
line-height: 36rpx;
|
||||
background: #ebf4fc;
|
||||
border-radius: 4rpx 4rpx 4rpx 4rpx;
|
||||
text-align: center;
|
||||
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
color: #318afe;
|
||||
margin-left: 12rpx;
|
||||
}
|
||||
}
|
||||
|
||||
>view:last-child {
|
||||
> view:nth-child(2) {
|
||||
width: 662rpx;
|
||||
height: 128rpx;
|
||||
background: #f9f9f9;
|
||||
border-radius: 12rpx 12rpx 12rpx 12rpx;
|
||||
.df;
|
||||
justify-content: space-around;
|
||||
text-align: center;
|
||||
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
> view:last-child {
|
||||
.df;
|
||||
justify-content: space-between;
|
||||
|
||||
> view:last-child {
|
||||
.df;
|
||||
justify-content: space-between;
|
||||
|
||||
>view:last-child {
|
||||
.df;
|
||||
> button {
|
||||
width: 128rpx;
|
||||
height: 48rpx;
|
||||
background: #ffffff;
|
||||
// border-radius: 28rpx 28rpx 28rpx 28rpx;
|
||||
}
|
||||
|
||||
>button {
|
||||
width: 128rpx;
|
||||
height: 48rpx;
|
||||
background: #FFFFFF;
|
||||
// border-radius: 28rpx 28rpx 28rpx 28rpx;
|
||||
}
|
||||
|
||||
>button:last-child {
|
||||
margin-left: 24rpx;
|
||||
}
|
||||
> button:last-child {
|
||||
margin-left: 24rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ConsumablesBottom {
|
||||
.df;
|
||||
position: fixed;
|
||||
bottom: 20rpx;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
.ConsumablesBottom {
|
||||
.df;
|
||||
position: fixed;
|
||||
bottom: 20rpx;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
|
||||
>view {
|
||||
width: 346rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
border: 2rpx solid #318AFE;
|
||||
> view {
|
||||
width: 346rpx;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
text-align: center;
|
||||
border: 2rpx solid #318afe;
|
||||
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 500;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
>view:first-child {
|
||||
border-radius: 56rpx 0rpx 0rpx 56rpx;
|
||||
color: #318AFE;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
>view:last-child {
|
||||
border-radius: 0 56rpx 56rpx 0;
|
||||
background-color: #318AFE;
|
||||
color: #fff;
|
||||
}
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: 500;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.popup-content {
|
||||
padding: 15px;
|
||||
> view:first-child {
|
||||
border-radius: 56rpx 0rpx 0rpx 56rpx;
|
||||
color: #318afe;
|
||||
background-color: #fff;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
>view {
|
||||
> view:last-child {
|
||||
border-radius: 0 56rpx 56rpx 0;
|
||||
background-color: #318afe;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.popup-content {
|
||||
padding: 15px;
|
||||
background-color: #fff;
|
||||
margin: 0 auto;
|
||||
|
||||
> view {
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
width: 660rpx;
|
||||
border-top: 10rpx solid #f9f9f9;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.operate {
|
||||
> view {
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
width: 660rpx;
|
||||
border-top: 10rpx solid #f9f9f9;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.operate {
|
||||
>view {
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
text-align: center;
|
||||
width: 660rpx;
|
||||
border-bottom: 2rpx solid #E5E5E5;
|
||||
|
||||
}
|
||||
width: 660rpx;
|
||||
border-bottom: 2rpx solid #e5e5e5;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.status {
|
||||
position: absolute;
|
||||
// top: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10;
|
||||
background-color: #fff;
|
||||
}
|
||||
.status {
|
||||
position: absolute;
|
||||
// top: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 10;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.zhezhaopop {
|
||||
padding: 34rpx 32rpx;
|
||||
width: 594rpx;
|
||||
.zhezhaopop {
|
||||
padding: 34rpx 32rpx;
|
||||
width: 594rpx;
|
||||
|
||||
>view:first-child {
|
||||
> view:first-child {
|
||||
.df;
|
||||
justify-content: space-between;
|
||||
|
||||
.df;
|
||||
justify-content: space-between;
|
||||
|
||||
>span:nth-child(2) {
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: bold;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
}
|
||||
> span:nth-child(2) {
|
||||
font-family: Source Han Sans CN, Source Han Sans CN;
|
||||
font-weight: bold;
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.df() {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.df() {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.fixed-in-btn {
|
||||
position: fixed;
|
||||
right: 20upx;
|
||||
bottom: 20%;
|
||||
z-index: 999;
|
||||
.img {
|
||||
width: 120upx;
|
||||
}
|
||||
</style>
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user