123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <template>
- <!-- #ifdef APP -->
- <scroll-view style="flex:1">
- <!-- #endif -->
- <!--
- <camera style="width: 100%; height: 300px;" :resolution="'high'" :mode="'scanCode'" @scancode="handleScanCode">
- </camera> -->
- <swiper class="swiper-box my-swiper" :current="swiperDotIndex" :indicator-dots="true">
- <swiper-item v-for="item in data">
- <view class="swiper-item" @tap="previewSingleImage(item.image)">
- <image class="my-image" :src="item.image" mode="aspectFill" />
- </view>
- <view>
- <text class="demo-view-label">{{ item?.name ?? ''}}</text>
- </view>
- </swiper-item>
- </swiper>
- <view class="camera-scan-code-back-wrap">
- <button class="btn block bg-blue lg round" @click="chooseImage">
- 浏览相册
- </button>
- </view>
- <view class="camera-scan-code-table">
- <view class="camera-scan-code-table-pair" v-if="joinRecord.imgname!=''" >
- <view class="camera-scan-code-table-pair-label">
- <text>已存图片(最多能存{{joinRecord.num}}张)</text>
- </view>
- <view class="camera-scan-code-table-pair-value">
- <text class="txt">{{joinRecord.imgname}}</text>
- </view>
- </view>
-
- <view class="camera-scan-code-table-pair">
- <view class="camera-scan-code-table-pair-label">
- <text>待存图片</text>
- </view>
- <view class="camera-scan-code-table-pair-value">
- <!--
- <checkbox-group @change="checkboxChange">
- <view v-for="(item, index) in data">
- <checkbox :value="item.name" :checked="true"></checkbox>
- <view>{{ dyImgName+"-"+(index+1)+".jpg"}}</view>
- </view>
- </checkbox-group>-->
- <text class="txt">{{ dyImgName+"-"+minAvailableNumber+".jpg"}}</text>
- </view>
- </view>
- </view>
- <view class="camera-scan-code-back-wrap">
- <button class="btn block bg-blue lg round" @click="saveImage">
- 保存图片
- </button>
- </view>
- <view class="camera-scan-code-back-wrap">
- <button type="default" class="btn bg-blue round" @click="navigateBack">返回拍照</button>
- </view>
-
- <view class="camera-scan-code-back-wrap">
- <button type="default" class="btn bg-blue round" @click="navigateExit">退出拍照</button>
- </view>
- <!-- #ifdef APP -->
- </scroll-view>
- <!-- #endif -->
- </template>
- <script lang="uts">
- type CameraScanCodeResult = {
- type : string | null;
- result : string | null;
- }
- type ImageItem = {
- image : string,
- name : string,
- checked : boolean
- }
- import { getJoinList, JoinRecord, updateData } from '@/api/work';
- export default {
- data() {
- return {
- result: null as CameraScanCodeResult | null,
- swiperDotIndex: 0 as number,
- path: '',
- recordId: 0,
- imgArrLen: 0,
- joinRecord: {
- sxid: 0,
- senum: 0,
- photoitem: "",
- productno: "",
- descb:"",
- part: "",
- date: "",
- partno : "",
- num : 0,
- status : 1,
- urlspl : "",
- imgname : "",
- urlpdt : "",
- pid: 0,
- workorder: "",
- invname: ""
- } as JoinRecord,
- num: 0,
- dyImgName: '',
- minAvailableNumber: 1,
- data: [{
- image: '/static/images/banner/banner01.png',
- name: 'banner01.png',
- checked: true
- }] as ImageItem[]
- }
- },
- onBackPress() {
- // 覆盖系统默认的返回行为,返回到指定页面
- //?photoitem=${photoitem}&num=${num}&pid=${pid}
- uni.navigateTo({
- url: `/pages/work/record/RecordList?photoitem=${this.joinRecord.photoitem}&num=${this.joinRecord.num}&pid=${this.joinRecord.pid}&senum=${this.joinRecord.senum}`,
- // 修改动画方向为从左到右退回
- animationType: 'slide-in-left', // 使用从左到右滑出的动画效果
- animationDuration: 300 // 动画持续时间,单位ms
- })
- // 返回true表示拦截默认返回行为
- return true
- },
- onLoad(options) {
- this.path = options?.['path'] ?? ''
- let recordId = options?.['recordId'] ?? ''
- let num = options?.['num'] ?? ''
- console.log(this.path)
- if (this.path != '') {
- this.data = []
- this.data.push({ image: this.path, name: '', checked: true })
- }
- if (recordId != '') {
- this.recordId = parseInt(recordId)
- getJoinList('app_media_record as r', 'app_media_info as i', 'r.*,i.workorder,i.invname', 'r.pid=i.pdid', 'sxid', recordId, null).then((res : UTSJSONObject) => {
- let dataList = res?.['data'] as UTSJSONObject[] ?? Array<UTSJSONObject>()
- if (dataList != null && dataList.length > 0) {
- dataList.forEach(item => {
- if (item != null) {
- let record = JSON.parse<JoinRecord>(item.toJSONString());
- if (record != null) {
- this.num = record.num;
- this.dyImgName = record.workorder + record.invname + record.part + record.photoitem + record.partno;
- this.joinRecord = record
- this.imgArrLen = record.imgname.indexOf(",")>-1? record.imgname.split(",").length : (record.imgname!=''?1:0)
- // 计算最小可用编号
- this.calculateMinAvailableNumber();
-
- }
- }
- });
- }
- });
- }
- if (num != '') {
- this.num = parseInt(num)
- }
- },
- methods: {
- navigateBack() {
- //uni.navigateBack()
- uni.navigateTo({
- url: `/pages/work/record/Camera?id=${this.recordId}&num=${this.num}`
- })
- },
- navigateExit(){
- uni.navigateTo({
- url: `/pages/work/record/InfoDetail?id=${this.joinRecord.pid}`
- })
- },
- checkboxChange() {
- console.log("选择图片名称")
- },
- chooseImage() {
- uni.chooseImage({
- sourceType: ['album'],
- success: (res) => {
- //this.data = res.tempFilePaths; // 获取选中的图片路径
- this.data = []
- for (let i = 0; i < res.tempFilePaths.length; i++) {
- this.data.push({ image: res.tempFilePaths[i], name: '', checked: true })
- }
- },
- fail: (err) => {
- console.error('选择图片失败', err);
- }
- });
- },
- saveImage() {
- //保存图片进入相册文件
- if(this.path==''){
- uni.showToast({
- title: '没有拍照文件',
- icon: 'error',
- duration: 2000
- });
- return;
- }
- if(this.imgArrLen == this.joinRecord.num){
- uni.showToast({
- title: '拍照图片已满',
- icon: 'error',
- duration: 2000
- });
- return;
- }
-
- /*
- uni.saveImageToPhotosAlbum({
- filePath: this.path,
- success: () => {
- uni.showToast({
- title: "保存成功!",
- });
- },
- fail: () => {
- uni.showToast({
- title: "保存失败",
- });
- },
- }); */
- let updateImgs = ''
- let updateNames = ''
- let updateStatus = ''
-
- // 动态生成最小的可用图片编号
- const getMinAvailableNumber = () => {
- if(this.imgArrLen === 0) return 1;
-
- // 从已有的图片名称中提取编号
- const existingNumbers = new Set<number>();
- const imgNames = this.joinRecord.imgname.split(',');
-
- imgNames.forEach((name : string) => {
- if(name != '') {
- // 提取图片名称中的数字部分
- const match = name.match(/-(\d+)\.jpg$/);
- if(match != null && match[1] != null) {
- const numStr = match[1] as string;
- existingNumbers.add(parseInt(numStr));
- }
- }
- });
-
- // 查找1到所需图片数量之间最小的未使用编号
- for(let i = 1; i <= this.joinRecord.num; i++) {
- if(!existingNumbers.has(i)) {
- return i;
- }
- }
-
- // 如果1到所需数量都被使用了,则使用当前数量+1
- return this.imgArrLen + 1;
- };
-
- const minAvailableNumber = getMinAvailableNumber();
- const newImgName = this.dyImgName + "-" + minAvailableNumber + ".jpg";
-
- if(this.imgArrLen == 0){
- updateImgs = this.path
- updateNames = newImgName;
- }else{
- updateImgs = this.joinRecord.urlpdt + "," + this.path
- updateNames = this.joinRecord.imgname + "," + newImgName;
- }
-
- let updatedData = "imgname='" + updateNames + "',urlpdt='" + updateImgs + "'"
-
- if(this.joinRecord.num === this.imgArrLen + 1 ){
- updateStatus = "status='3'"
- updatedData = updatedData + "," + updateStatus
- }else if(this.joinRecord.status === 1){
- updateStatus = "status='2'"
- updatedData = updatedData + "," + updateStatus
- }
- console.log(updatedData)
-
- updateData('app_media_record', updatedData, 'sxid', this.recordId.toString()).then((res : UTSJSONObject) => {
- let dataList = res?.['data'] as UTSJSONObject[] ?? Array<UTSJSONObject>()
- if (dataList != null && dataList.length > 0) {
- console.log(dataList[0])
- uni.showToast({
- title: "保存成功!",
- });
- /*
- uni.reLaunch({
- url: '/pages/record/camera-scan-code?path='+this.path+'&recordId='+this.recordId+'&num='+this.num
- }); */
- }
- });
- },
- previewSingleImage(imageUrl : string) {
- uni.previewImage({
- urls: [imageUrl], // 需要预览的图片链接列表
- current: 0, // 当前显示图片的索引
- indicator: 'number', // 图片指示器样式
- loop: false // 是否可循环预览
- });
- },
- handleScanCode(ev : UniCameraScanCodeEvent) {
- const deatil = ev.detail;
- this.result = {
- type: deatil.type,
- result: deatil.result
- } as CameraScanCodeResult
- },
- // 计算最小的可用图片编号
- calculateMinAvailableNumber() {
- if(this.imgArrLen === 0) {
- this.minAvailableNumber = 1;
- return;
- }
-
- // 从已有的图片名称中提取编号
- const existingNumbers = new Set<number>();
- const imgNames = this.joinRecord.imgname.split(',');
-
- imgNames.forEach((name : string) => {
- if(name != '') {
- // 提取图片名称中的数字部分
- const match = name.match(/-(\d+)\.jpg$/);
- if(match != null && match[1] != null) {
- const numStr = match[1] as string;
- existingNumbers.add(parseInt(numStr));
- }
- }
- });
-
- // 查找1到所需图片数量之间最小的未使用编号
- for(let i = 1; i <= this.joinRecord.num; i++) {
- if(!existingNumbers.has(i)) {
- this.minAvailableNumber = i;
- return;
- }
- }
-
- // 如果1到所需数量都被使用了,则使用当前数量+1
- this.minAvailableNumber = this.imgArrLen + 1;
- },
- }
- }
- </script>
- <style>
- .camera-scan-code-back-wrap {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .camera-scan-code-table {
- background-color: white;
- margin-top: 20px;
- }
- .camera-scan-code-table-pair {
- height: 150px;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- .camera-scan-code-table-pair-label {
- flex-grow: 1;
- margin-left: 15px;
- }
- .camera-scan-code-table-pair-value {
- flex-grow: 2;
- }
-
- .camera-scan-code-table-pair-value .txt {
- font-size: 14px;
- }
- .camera-scan-code-table-top-line {
- border-top: 1px solid #eee;
- }
- .swiper {
- height: 300rpx;
- }
- .swiper-box {
- height: 150px;
- }
- .swiper-item {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #fff;
- height: 300rpx;
- line-height: 300rpx;
- }
- .btn {
- margin-top: 30px;
- height: 45px;
- }
- </style>
|