2023-11-20-dist

This commit is contained in:
X1627315083
2023-11-20 17:37:32 +08:00
parent 4f26d58ca8
commit 8e22029ee7
37 changed files with 47 additions and 45 deletions

View File

@@ -47,7 +47,6 @@ export default defineComponent({
this.currentSign.left = event.clientX - this.imgBox.left
this.currentSign.top = event.clientY + scrollTop - this.imgBox.top
this.imgDian.push(this.currentSign)
console.log(this.currentSign)
this.intObj = null
}else{
if(this.startDian){

View File

@@ -728,7 +728,6 @@ export default defineComponent({
}
Https.axiosPost(Https.httpUrls.relationLibrary, data2).then(
(rv: any) => {
console.log(rv);
this.getLibraryList()
this.closeRenameModal()
@@ -971,7 +970,6 @@ export default defineComponent({
this.value.labelValue.forEach((item:any)=>{
labelArr.push(item[item.length-1])
})
console.log(this.value.labelValue);
let designType = this.selectCode == 'Sketchboard' || this.selectCode == 'MarketingSketch' ? this.designType : ''
let data = {
classificationIdList:labelArr,
@@ -1090,7 +1088,6 @@ export default defineComponent({
}
},
getgenerate(){
console.log(this.isTest);
if(this.isTest){//试用用户禁止使用
message.info(
@@ -1222,7 +1219,6 @@ export default defineComponent({
}
Https.axiosPost(Https.httpUrls.queryClassification, data).then(
(rv: any) => {
console.log(rv);
this.options = rv
rv.forEach((rvItem:any,rvIndex:number) => {
this.options[rvIndex].value = rvItem.id
@@ -1232,9 +1228,6 @@ export default defineComponent({
this.options[rvIndex].childList[index].label = childItem.classificationName
});
});
console.log(this.options);
}
).catch((res)=>{
});

View File

@@ -449,12 +449,15 @@ export default defineComponent({
(rv: any) => {
if (rv) {
this.createTimer();
let isTest
if(rv.isTrial == 1){
isTest = true
}else{
isTest = false
}
let token = rv.token;
let isTest = false
setCookie("token", token);
setCookie("isTest", isTest);
console.log();
setCookie("userInfo", JSON.stringify(rv));
this.turnToHomePage();
}