Merge remote-tracking branch 'airkoon/master'

This commit is contained in:
ag 2025-03-21 17:14:16 +08:00
commit dd1c9a7d48
3 changed files with 242 additions and 235 deletions

View File

@ -12,6 +12,7 @@ import ArtSystem from './artSystem';
class ArtRepairFile {
constructor(params = {}) {
this.cellsysType = "ArtRepairFile";
this.id = params.id;
this.name = params.name;
this.description = params.description;
@ -41,6 +42,7 @@ class ArtRepairFile {
//发布状态有关逻辑
this.isPublish = params.is_publish;
this.isUnlock = params.is_unlock;
this.publishRange=params.publish_range
}
//艺术品封面图

View File

@ -78,7 +78,7 @@ class ArtRepairPlan {
//变更修复方案
modificationRepairPlan(params) {
let editTask = new EditTask(artApi.repairPlanInsert);
editTask.addParam('_repair_record_id', this.id);
editTask.addParam('_repair_record_id', params.repairRecordId);
editTask.addParam('_id', params.id);
editTask.addParam('_name', params.name);
editTask.addParam('_repair_nodes', params.repairNodes);

View File

@ -1,273 +1,278 @@
<template>
<div class="signature-pad">
<div class="container">
<vue-signature-pad
ref="signaturePadRef"
:scaleToDevicePixelRatio="false"
:options="options"></vue-signature-pad>
</div>
<div class="dialog-footer">
<el-button
style="margin-left: 20px"
@click="close">
取消
</el-button>
<el-button
type="danger"
style="margin-left: 20px"
@click="clear">
清除
</el-button>
<el-button
plain
type="primary"
:loading="btnloading"
style="margin-left: 20px"
@click="save">
保存
</el-button>
</div>
<div class="signature-pad">
<div class="container">
<vue-signature-pad
ref="signaturePadRef"
:scaleToDevicePixelRatio="false"
:options="options"></vue-signature-pad>
</div>
<div class="dialog-footer">
<el-button
style="margin-left: 20px"
@click="close">
取消
</el-button>
<el-button
type="danger"
style="margin-left: 20px"
@click="clear">
清除
</el-button>
<el-button
plain
type="primary"
:loading="btnloading"
style="margin-left: 20px"
@click="save">
保存
</el-button>
</div>
</div>
</template>
<script>
import { artApi } from '../../artApi.js';
import { ElMessageBox } from 'element-plus';
import { base64toFile } from '../../utils/utils.js';
import {artApi} from '../../artApi.js';
import {ElMessageBox} from 'element-plus';
import {base64toFile} from '../../utils/utils.js';
import ArtSystem from '../../artSystem.js';
import { VueSignaturePad } from 'vue-signature-pad';
import {VueSignaturePad} from 'vue-signature-pad';
export default {
name: 'write',
components: { VueSignaturePad },
emits: ['save', 'close'],
props: {
role: String,
id: Number,
module: {
type: String, //
},
name: 'write',
components: {VueSignaturePad},
emits: ['save', 'close'],
props: {
role: String,
id: Number,
module: {
type: String, //
},
data() {
return {
signaturePadKey: 0,
dialogVisible: false,
options: {
penColor: '#000',
onBegin: () => {
//bugcanvas使
this.$refs.signaturePadRef.resizeCanvas();
},
data() {
return {
signaturePadKey: 0,
dialogVisible: false,
options: {
penColor: '#000',
onBegin: () => {
//bugcanvas使
this.$refs.signaturePadRef.resizeCanvas();
},
},
uploadApi: `/v2${artApi.artUploadPicture}`, //api
btnloading: false,
};
},
mounted() {
//
// if (window.innerWidth < window.innerHeight) {
// this.lockOrientation();
// }
},
beforeUnmount() {
//退
this.exitFullscreenAndRestoreOrientation();
},
methods: {
// 退
exitFullscreenAndRestoreOrientation() {
//
if (screen.orientation && screen.orientation.unlock) {
// screen.orientation.unlock();
screen.orientation.lock('portrait');
} // 退
if (document.exitFullscreen && document.fullscreenElement !== null) {
document.exitFullscreen();
}
},
lockOrientation() {
if (document.documentElement.requestFullscreen) {
document.documentElement
.requestFullscreen()
.then(() => {
//
screen.orientation.lock('landscape').catch((err) => {
console.error('无法锁定横屏:', err);
});
})
.catch((err) => {
console.error('全屏失败:', err);
ElMessageBox.alert('请使用横屏进行签名', '提示', {
confirmButtonText: '确定',
callback: () => {
this.lockOrientation();
},
},
uploadApi: `/v2${artApi.artUploadPicture}`, //api
btnloading: false,
};
});
});
} else {
console.error('当前浏览器不支持全屏API');
}
},
mounted() {
//
if (window.innerWidth < window.innerHeight) {
this.lockOrientation();
}
},
beforeUnmount() {
//退
this.exitFullscreenAndRestoreOrientation();
},
methods: {
// 退
exitFullscreenAndRestoreOrientation() {
//
if (screen.orientation && screen.orientation.unlock) {
// screen.orientation.unlock();
screen.orientation.lock('portrait');
} // 退
if (document.exitFullscreen && document.fullscreenElement !== null) {
document.exitFullscreen();
}
},
lockOrientation() {
if (document.documentElement.requestFullscreen) {
document.documentElement
.requestFullscreen()
.then(() => {
//
screen.orientation.lock('landscape').catch((err) => {
console.error('无法锁定横屏:', err);
});
})
.catch((err) => {
console.error('全屏失败:', err);
ElMessageBox.alert('请使用横屏进行签名', '提示', {
confirmButtonText: '确定',
callback: () => {
this.lockOrientation();
},
});
});
} else {
console.error('当前浏览器不支持全屏API');
}
},
close() {
this.exitFullscreenAndRestoreOrientation();
this.$emit('close');
},
clear() {
this.$refs.signaturePadRef.clearSignature();
},
close() {
this.exitFullscreenAndRestoreOrientation();
this.$emit('close');
},
clear() {
this.$refs.signaturePadRef.clearSignature();
},
save() {
const signatureData = this.$refs.signaturePadRef.saveSignature();
this.btnloading = true;
let base64Url = signatureData.data;
let files = base64toFile(base64Url);
ArtSystem.uploadImage({
files: files,
module: this.module,
})
.then((res) => {
let { code, data, message } = res;
if (code !== 200) {
this.$message({
message: '签名图片提交失败!原因:' + message,
type: 'error',
});
return;
}
const imageUrl = data.img_path;
this.$emit('save', imageUrl);
})
.catch((error) => {
console.error(error);
this.$emit('error', error);
save() {
const signatureData = this.$refs.signaturePadRef.saveSignature();
this.btnloading = true;
let base64Url = signatureData.data;
let files = base64toFile(base64Url);
ArtSystem.uploadImage({
files: files,
module: this.module,
})
.then((res) => {
let {code, data, message} = res;
if (code !== 200) {
this.$message({
message: '签名图片提交失败!原因:' + message,
type: 'error',
});
return;
}
const imageUrl = data.img_path;
this.$emit('save', imageUrl);
})
.catch((error) => {
console.error(error);
this.$emit('error', error);
this.$message({
message: error,
type: 'error',
});
})
.finally(() => {
this.btnloading = false;
});
},
/*uploadSignatureImage(signatureData) {
this.btnloading = true;
let base64Url = signatureData.data;
let files = base64toFile(base64Url);
ArtSystem.uploadImage({
files: files,
module: this.module,
})
.then((res) => {
let { code, data, message } = res;
if (code !== 200) {
this.$message({
message: error,
message: '签名图片提交失败!原因:' + message,
type: 'error',
});
})
.finally(() => {
this.btnloading = false;
});
},
/*uploadSignatureImage(signatureData) {
this.btnloading = true;
let base64Url = signatureData.data;
let files = base64toFile(base64Url);
ArtSystem.uploadImage({
files: files,
module: this.module,
return;
}
const imageUrl = data.img_path;
this.$emit('uploadSignatureImage', imageUrl);
})
.then((res) => {
let { code, data, message } = res;
if (code !== 200) {
this.$message({
message: '签名图片提交失败!原因:' + message,
type: 'error',
});
return;
}
const imageUrl = data.img_path;
this.$emit('uploadSignatureImage', imageUrl);
})
.catch((error) => {
console.error(error);
this.$emit('error', error);
this.$message({
message: error,
type: 'error',
});
})
.finally(() => {
this.btnloading = false;
.catch((error) => {
console.error(error);
this.$emit('error', error);
this.$message({
message: error,
type: 'error',
});
},*/
},
})
.finally(() => {
this.btnloading = false;
});
},*/
},
};
</script>
<style scoped>
.signature-pad {
width: 100%;
height: 100%;
display: flex;
padding: 5px;
width: 100%;
height: 100%;
padding: 5px;
}
.container {
width: 100%;
height: 100%;
padding: 8px;
border: 1px solid;
width: 100%;
height: calc(100% - 120px);
padding: 8px;
border: 1px solid;
}
.dialog-footer {
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
height: 100px;
.otherSet {
width: 40%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
.otherSet {
width: 40%;
display: flex;
align-items: center;
.b1 {
width: 4px;
height: 4px;
}
.b2 {
width: 6px;
height: 6px;
}
.b3 {
width: 8px;
height: 8px;
}
.b1,
.b2,
.b3 {
display: inline-block;
background: #000;
border-radius: 50%;
}
.active {
border: 1px dashed #0074d9;
}
.circleWrap {
display: flex;
justify-content: center;
align-items: center;
width: 18px;
height: 18px;
cursor: pointer;
margin-right: 20px;
}
.penTxt {
width: 70px;
font-size: 12px;
color: #000;
}
.b1 {
width: 4px;
height: 4px;
}
.b2 {
width: 6px;
height: 6px;
}
.b3 {
width: 8px;
height: 8px;
}
.b1,
.b2,
.b3 {
display: inline-block;
background: #000;
border-radius: 50%;
}
.active {
border: 1px dashed #0074d9;
}
.circleWrap {
display: flex;
justify-content: center;
align-items: center;
width: 18px;
height: 18px;
cursor: pointer;
margin-right: 20px;
}
.penTxt {
width: 70px;
font-size: 12px;
color: #000;
}
}
}
:deep(.el-card) {
height: 25%;
width: 50%;
height: 25%;
width: 50%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.svgClass {
width: 5rem;
height: 5rem;
margin-bottom: 2rem;
width: 5rem;
height: 5rem;
margin-bottom: 2rem;
}
</style>