123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800 |
- <template>
- <view class="container">
- <view class="example">
- <!-- 基础表单校验 -->
- <uni-forms ref="valiForm" label-align="right" :rules="rules" :modelValue="valiFormData">
- <uni-forms-item label="单号" :required="true" name="orderNum">
- <uni-easyinput v-model="valiFormData.orderNum" placeholder="请输入单号" suffixIcon="scan" :focus="focusType" @iconClick="scan" />
- </uni-forms-item>
- <uni-forms-item label="重量" required name="weight">
- <uni-easyinput
- v-model="valiFormData.weight"
- placeholder="请输入重量"
- oninput="value=value.replace(/[^\d.]/g,'').replace(/^\./g, '').replace(/\.{2,}/g, '').replace('.', '$#$').replace(/\./g, '').replace('$#$', '.').match(/^\d*(\.?\d{0,2})/g)[0] || null"
- >
- <template #right>
- <view class="weight-right">KG</view>
- </template>
- </uni-easyinput>
- </uni-forms-item>
- <uni-forms-item label="图片" name="images">
- <view class="upload-container">
- <view class="preview">
- <view v-for="(img, index) in images" :key="index" class="image-container">
- <image :src="img.path" class="preview-image" mode="aspectFill" @click="openPreview(img.path)" />
- <progress :percent="img.progress || 0" :activeColor="Number(img.progress || 0) === 100 ? '#00ff00' : '#10AEFF'" stroke-width="3" />
- <text v-if="img.status === 'success'">1</text>
- <uni-icons class="delete-icon" @click="deleteImage(index)" type="clear" size="20" color="red" />
- </view>
- <view v-if="images.length < maxImages" class="choose-image-container" @click="chooseImage">
- <uni-icons type="plusempty" size="40" color="#ccc" />
- </view>
- </view>
- <text style="padding-top: 8px">最多选择6张图片</text>
- <!-- 放大预览 -->
- <view v-if="previewImage" class="preview-modal" @click="closePreview">
- <image :src="previewImage" class="preview-large" mode="aspectFit" @click.stop="closePreview" />
- </view>
- </view>
- </uni-forms-item>
- </uni-forms>
- <view class="button-group">
- <button type="info" @click="reset">重置</button>
- <button type="primary" @click="onsubmit" :loading="loading">
- <uni-icons v-if="!loading" type="checkmarkempty" size="18" color="white"></uni-icons>
- 提交
- </button>
- </view>
- </view>
- <view class="history">
- <view class="item" v-for="(item, i) in historyList.slice(0, 5)" :key="i">
- <text class="code" :style="{ color: item.status ? 'green' : '#666' }">
- {{ item.orderNum }}
- <text v-if="item.batch_text">批次号: {{ item.batch_text }}</text>
- <text v-if="item.space">仓位编码: {{ item.space }}</text>
- {{ item.type }}
- </text>
- <uni-icons v-if="item.status" type="checkmarkempty" class="status" size="16" color="green"></uni-icons>
- <text class="status fail" v-else>F</text>
- <text style="margin-left: 10rpx; font-weight: 300">
- {{ '\r\n' + item.createTime }}
- </text>
- </view>
- </view>
- <uni-popup ref="message" type="message">
- <uni-popup-message :type="messageType" :message="messageText" :duration="2000"></uni-popup-message>
- </uni-popup>
- <uni-popup ref="alertDialog" type="dialog">
- <uni-popup-dialog
- type="info"
- cancelText="否"
- confirmText="是"
- title="提示"
- content="是否按默认申报(默认申报为:衣服,10件,单价1)"
- @confirm="dialogConfirm"
- @close="dialogClose"
- ></uni-popup-dialog>
- </uni-popup>
- <uni-popup ref="printerDialog" type="dialog" :is-mask-click="false">
- <view style="width: 90%; margin: 0 auto; min-height: 250px; background-color: #fff; border-radius: 5px">
- <view class="" style="font-size: 20px; border-bottom: 1px solid #e1e1e1; padding: 15px 10px">
- <view>
- <view style="margin-bottom: 20px">
- <text>打印尾程面单</text>
- </view>
- <view>
- <view v-if="printerList">
- <view>
- <uni-data-checkbox
- multiple
- v-model="sendToPeinter"
- :localdata="[
- {
- text: '发送到标签打印机打印',
- value: 1
- }
- ]"
- @change="sendToPeinterFun"
- >
- >
- </uni-data-checkbox>
- <uni-data-checkbox :disabled="sendToPeinter.length === 0" v-model="selectPrinter" :localdata="printers"></uni-data-checkbox>
- </view>
- </view>
- </view>
- </view>
- <view style="text-align: center; position: absolute; bottom: 10px; width: 90%; display: flex; margin: 0 auto; left: 0; right: 0">
- <button @click="close" style="width: 35%">关闭</button>
- <button
- @click="printConfirm"
- :hover-stay-time="500"
- :loading="subLoading"
- :disabled="sendToPeinter.length === 0 || subLoading"
- class="my-bt-bg"
- style="width: 35%"
- >
- 打印
- </button>
- </view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script setup lang="ts">
- import dayjs from 'dayjs';
- import permision from '@/common/permission.js';
- import { ref, reactive, nextTick, computed } from 'vue';
- import { onShow, onHide, onNavigationBarButtonTap } from '@dcloudio/uni-app';
- import { getAliyunOssSignatureUrl, weighScanURL, checkWaybillGoodsURL, printWaybillLabelURL, getWarehouseSpaceURL, getBindParamsURL, getPrinterListURL } from '@/utils/api.js';
- import { uuid } from '@/utils/random.ts';
- const alertDialog = ref();
- const message = ref();
- const valiForm = ref();
- const printerDialog = ref();
- const token = ref(null);
- const user = ref(null);
- const loading = ref(false);
- const images = ref([]);
- const messageType = ref('');
- const messageText = ref('');
- const batchOptions = ref([] as any);
- const spaces = ref([] as any);
- const previewImage = ref(null);
- const maxImages = ref(6); // 最大上传图片数量
- const printerList = ref({} as any);
- const historyList = ref([] as any);
- const printers = ref([] as any);
- const sendToPeinter = ref([1]);
- const selectPrinter = ref(0);
- const subLoading = ref(false);
- const focusType = ref(true);
- const result = ref();
- // 校验表单数据
- const valiFormData = reactive({
- images: [],
- orderNum: '',
- batch_number: '',
- space_code: '',
- weight: '',
- typing: true,
- });
- const rules = computed(() => {
- return {
- orderNum: {
- rules: [
- {
- required: true,
- errorMessage: '单号不能为空'
- }
- ]
- },
- weight: {
- rules: [
- {
- required: true,
- errorMessage: '重量不能为空'
- },
- {
- format: 'number',
- errorMessage: '重量只能输入数字'
- }
- ]
- }
- };
- });
- const spaceRes = computed(() => {
- try {
- const res = spaces.value.find((item: any) => item.value === valiFormData.space_code) as any;
- // console.log(res);
- return res?.text;
- } catch (e) {
- console.log(e);
- return '';
- }
- });
- onShow(() => {
- focusType.value = true;
- loading.value = false;
- token.value = uni.getStorageSync('token');
- user.value = uni.getStorageSync('user');
- getWarehouseSpace();
- getBindParams();
- getPrinterList();
- });
- onHide(() => {
- focusType.value = false;
- loading.value = false;
- });
- onNavigationBarButtonTap((event: any) => {
- if (event.index === 0) {
- uni.navigateTo({
- url: '/pages/weigh/instockLog'
- });
- }
- });
- const getWarehouseSpace = () => {
- uni.request({
- url: getWarehouseSpaceURL,
- method: 'POST',
- header: {
- batoken: token.value
- },
- data: {
- code: ''
- },
- success: (res: any) => {
- if (res.data.code === 1) {
- spaces.value = res.data.data.spaces.map((item) => {
- return {
- text: item.name,
- value: item.code
- };
- });
- }
- }
- });
- };
- const getBindParams = () => {
- uni.request({
- url: getBindParamsURL,
- method: 'GET',
- header: {
- batoken: token.value
- },
- success: (res: any) => {
- if (res.data.code === 1) {
- batchOptions.value = res.data.data.batch_number.map((item) => {
- return {
- text: item.name,
- value: item.id
- };
- });
- }
- },
- fail(e) {
- console.log('fail--', e);
- }
- });
- };
- const getPrinterList = () => {
- uni.request({
- url: getPrinterListURL,
- method: 'GET',
- header: {
- batoken: token.value
- },
- success: (res: any) => {
- if (res.data.code === 1) {
- printerList.value = res.data.data.printers;
- printers.value = Object.values(printerList.value).map((item: any) => {
- return {
- text: item.name,
- value: item.value
- };
- });
- }
- },
- fail(e) {
- console.log('fail--', e);
- }
- });
- };
- const reset = () => {
- loading.value = false;
- focusType.value = false;
- images.value = [];
- valiFormData.orderNum = '';
- valiFormData.batch_number = '';
- valiFormData.weight = '';
- valiFormData.typing = true;
- nextTick(() => {
- focusType.value = true;
- });
- };
- const scan = async () => {
- // #ifdef APP-PLUS
- let status = await checkPermission();
- if (status !== 1) {
- return;
- }
- // #endif
- uni.scanCode({
- success: (res: any) => {
- result.value = res.result;
- valiFormData.orderNum = res.result;
- // this.onsubmit();
- },
- fail: (err) => {
- // 需要注意的是小程序扫码不需要申请相机权限
- }
- });
- };
- // #ifdef APP-PLUS
- const checkPermission = async () => {
- let status = permision.isIOS ? await permision.requestIOS('camera') : await permision.requestAndroid('android.permission.CAMERA');
- if (status === null || status === 1) {
- status = 1;
- } else {
- uni.showModal({
- content: 'Camera permission required',
- confirmText: 'Setting',
- success: function (res) {
- if (res.confirm) {
- permision.gotoAppSetting();
- }
- }
- });
- }
- return status;
- };
- // #endif
- let st;
- const warehouseScan = async () => {
- st && clearTimeout(st);
- await checkWaybillGoods();
- };
- const checkWaybillGoods = async () => {
- loading.value = true;
- uni.request({
- url: checkWaybillGoodsURL,
- method: 'POST',
- header: {
- batoken: token.value
- },
- data: {
- order_no: valiFormData.orderNum
- },
- success: (res: any) => {
- if (res.data.code === 1 && res.data.data.is_goods_empty) {
- alertDialog.value.open();
- } else {
- weighScan(0);
- }
- }
- });
- };
- const weighScan = (is_save_goods: number) => {
- const images = getImages();
- console.log('images--', images);
- let allImgVerify = true;
- for (var i = 0; i < images.length; i++) {
- if (!images[i].savePath) {
- allImgVerify = false;
- }
- }
- if (!allImgVerify) {
- messageType.value = 'error';
- messageText.value = '图片还没上传完毕,请稍后...';
- message.value.open();
- loading.value = false;
- return;
- }
- uni.request({
- url: weighScanURL,
- method: 'POST',
- header: {
- batoken: token.value
- },
- data: {
- order_no: valiFormData.orderNum,
- weight: valiFormData.weight,
- is_save_goods: is_save_goods,
- images
- },
- success: (res: any) => {
- loading.value = false;
- if (res.data.code == 1) {
- messageType.value = 'success';
- messageText.value = res.data.msg;
- message.value.open();
- console.log('res.data.data---', res.data.data);
- const historyItem = {
- orderNum: valiFormData.orderNum,
- createTime: new Date(),
- space: spaceRes.value,
- type: '称重',
- status: true
- };
- historyList.value.unshift(historyItem);
- uni.setStorageSync('weighHistory', historyList.value);
- getHistory();
- if (res.data.data.express_label) {
- console.log('有打印面单');
- // selectPrinter.value = sendToPeinter.value.length > 0 ? printers.value[0].value : 0;
- // printerDialog.value.open();
- } else {
- st = setTimeout(() => {
- reset();
- st && clearTimeout(st);
- }, 1000);
- }
- } else {
- messageType.value = 'error';
- messageText.value = res.data.msg;
- message.value.open();
- const historyItem = {
- orderNum: valiFormData.orderNum,
- createTime: new Date(),
- space: spaceRes.value,
- type: '称重',
- status: false
- };
- historyList.value.unshift(historyItem);
- uni.setStorageSync('weighHistory', historyList.value);
- getHistory();
- st = setTimeout(() => {
- reset();
- st && clearTimeout(st);
- }, 1000);
- }
- }
- });
- };
- const close = () => {
- printerDialog.value.close();
- st = setTimeout(() => {
- reset();
- st && clearTimeout(st);
- }, 700);
- };
- const dialogConfirm = () => {
- weighScan(1);
- };
- const dialogClose = () => {
- weighScan(0);
- };
- const sendToPeinterFun = (res: any) => {
- if (!res.detail.value.length > 0) {
- selectPrinter.value = 0;
- } else {
- selectPrinter.value = printers.value[0].value;
- }
- };
- const printConfirm = () => {
- subLoading.value = true;
- uni.request({
- url: printWaybillLabelURL,
- method: 'POST',
- header: {
- batoken: token.value
- },
- data: {
- order_no: valiFormData.orderNum,
- printer_code: selectPrinter
- },
- success: (res) => {
- close();
- subLoading.value = false;
- console.log('打印成功', res);
- messageType.value = 'success';
- messageText.value = '打印成功';
- message.value.open();
- }
- });
- };
- const onsubmit = () => {
- valiForm.value
- .validate()
- .then((res) => {
- warehouseScan();
- })
- .catch((err) => {
- console.log('err', err);
- });
- };
- const getHistory = () => {
- historyList.value = uni.getStorageSync('weighHistory');
- };
- const getImages = () => {
- const res = images.value.map((item: any) => {
- return {
- name: item.name,
- savePath: item.serverUrl,
- fileSize: item.size,
- mimeType: item.type
- };
- });
- console.log('res22 ', res);
- return res;
- };
- // 获取阿里云oss签名
- const getAliyunOssSignature = (rawFiles) => {
- uni.request({
- url: getAliyunOssSignatureUrl,
- method: 'GET',
- header: {
- batoken: token.value
- },
- success: ({ data }: any) => {
- const signature = data.data.signature;
- const uploadPromises = rawFiles.map((image) => {
- return upLoadFile(signature, image);
- });
- Promise.all(uploadPromises)
- .then((results) => {
- console.log('所有图片加载成功:', results);
- uni.showToast({
- title: '加载成功',
- icon: 'success'
- });
- })
- .catch((error) => {
- console.error('加载失败:', error);
- uni.showToast({
- title: '加载失败',
- icon: 'none'
- });
- });
- },
- fail: (err) => {
- console.log(err);
- }
- });
- };
- const upLoadFile = (signature, image) => {
- const fileData = {
- policy: signature.policy,
- signature: signature.signature,
- ossaccessKeyId: signature.ossAccessKeyId,
- key: signature.dir + dayjs().format('YYYYMMDD') + '/' + uuid() + '_' + image.name,
- dir: signature.dir,
- host: signature.host,
- file: image.file
- };
- return new Promise((resolve, reject) => {
- let name = image.name;
- // #ifdef APP-PLUS
- name = 'file';
- // #endif
- const uploadTask = uni.uploadFile({
- url: signature.host, // 你的上传接口地址
- filePath: image.path,
- name: name, // 这里根据后端需要的字段来定义
- formData: fileData,
- success: (uploadFileRes) => {
- if (uploadFileRes.statusCode === 204 || uploadFileRes.statusCode === 200) {
- image!.serverUrl = fileData.key;
- resolve(uploadFileRes);
- } else {
- reject(uploadFileRes);
- }
- },
- fail: (error) => {
- console.log('error++', error);
- reject(error);
- },
- // 更新上传进度
- complete: () => {
- console.log('complete---');
- image.progress = 100;
- }
- });
- // 可选:监听上传进度变化
- uploadTask.onProgressUpdate((progressEvent) => {
- image.progress = progressEvent.progress; // 更新进度
- });
- });
- };
- const chooseImage = () => {
- uni.chooseImage({
- count: maxImages.value - images.value.length,
- success: (res) => {
- images.value = images.value.concat(
- res.tempFiles.map((item) => {
- const res = {
- size: item.size,
- path: item.path,
- name: item.name,
- type: item.type,
- progress: 0,
- file: item
- };
- // #ifdef APP-PLUS
- //文件名操作
- //获取文件后缀
- const suffix = item.path.substring(item.path.lastIndexOf('.') + 1);
- //获取文件名
- const fileName = item.path.substring(item.path.lastIndexOf('/') + 1);
- res.name = fileName;
- res.type = suffix;
- // #endif
- return res;
- })
- );
- const paddingImages = images.value.filter((image) => image.progress === 0);
- nextTick(() => {
- getAliyunOssSignature(paddingImages);
- });
- },
- fail: (err) => {
- console.error(err);
- }
- });
- };
- const deleteImage = (index) => {
- images.value.splice(index, 1);
- };
- const openPreview = (image) => {
- previewImage.value = image; // 设置放大预览的图片
- };
- const closePreview = () => {
- previewImage.value = null; // 关闭预览
- };
- </script>
- <style lang="scss">
- .example {
- padding: 15px;
- background-color: #fff;
- }
- .checkbox-cum {
- margin-bottom: 20rpx;
- font-size: 14rpx;
- }
- .sub-choice {
- margin-bottom: 20rpx;
- margin-left: 20rpx;
- font-size: 14rpx;
- }
- .button-group {
- margin-top: 15px;
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- button {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 35px;
- width: 50%;
- margin-left: 10px;
- font-size: 16rpx;
- }
- .uni-icons {
- margin-right: 10px;
- }
- }
- .weight-right {
- padding-right: 10rpx;
- font-size: 14rpx;
- }
- .history {
- display: flex;
- width: 100%;
- flex-direction: column;
- justify-items: start;
- .title {
- padding: 20rpx;
- font-size: 24rpx;
- font-weight: 600;
- }
- .code {
- font-weight: 600;
- }
- .item {
- padding: 20rpx;
- font-size: 20rpx;
- color: #666;
- .status {
- padding-left: 20rpx;
- }
- .fail {
- font-weight: 600;
- color: #f00;
- }
- }
- }
- </style>
- <style scoped>
- .upload-container {
- padding: 16px;
- }
- .preview {
- display: flex;
- flex-wrap: wrap;
- }
- .image-container {
- position: relative;
- margin-right: 10px;
- margin-bottom: 10px;
- }
- .preview-image {
- width: 130rpx;
- height: 130rpx;
- }
- .delete-icon {
- position: absolute;
- top: 0;
- right: 0;
- cursor: pointer;
- }
- .choose-image-container {
- width: 130rpx;
- /* 与图片大小一致 */
- height: 130rpx;
- /* 与图片大小一致 */
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #fff;
- /* 背景颜色为白色 */
- border: 1px dashed #cccccc;
- /* 虚线边框 */
- border-radius: 5px;
- /* 圆角 */
- cursor: pointer;
- }
- .preview-modal {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.8);
- /* 半透明背景 */
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 999;
- }
- .preview-large {
- max-width: 90%;
- /* 最大宽度 */
- max-height: 90%;
- /* 最大高度 */
- }
- .progress-bar {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- }
- </style>
|