Browse Source

[完善]去掉卸油区剪头标绘的限制

develop
邵佳豪 2 years ago
parent
commit
406d24ada4
  1. 2
      package.json
  2. 4
      proxy.config.json
  3. 5
      src/app/system-management/host-config/host-config.component.ts
  4. 10
      src/app/system-management/image-label2/image-label2.component.ts

2
package.json

@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config proxy.config.json --open --port 4000 ",
"start": "ng serve --proxy-config proxy.config.json --open --port 1234 ",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"

4
proxy.config.json

@ -1,11 +1,11 @@
{
"/api": {
"target": "http://10.156.134.54:8080",
"target": "http://121.36.37.70:8080",
"secure": false,
"changeOrigin": true
},
"/signalr": {
"target": "http://10.156.134.54:8080",
"target": "http://121.36.37.70:8080",
"secure": false,
"ws": true,
"logLevel": "debug"

5
src/app/system-management/host-config/host-config.component.ts

@ -359,7 +359,10 @@ sources:`
return item.isEnabled;
})
console.log(copyListOfData)
console.log('摄像头列表',copyListOfData)
// return
let config1 = `[property]
enable=1

10
src/app/system-management/image-label2/image-label2.component.ts

@ -104,7 +104,15 @@ export class ImageLabel2Component implements OnInit {
}
this.camerasData.dimensionedPoints.polygon = this.points
} else if (this.markType === 2) {
if (this.arrowPoints.length != 2 || this.oblongPoints.length != 2 || !this.oblongPoints.find(item => { return item.oilUnloadingArea }) || !this.oblongPoints.find(item => { return !item.oilUnloadingArea })) {
console.log(this.arrowPoints)
if(this.arrowPoints.length == 1){
this.message.create('warning', '请将箭头标绘完整!');
return
}
if (this.oblongPoints.length != 2 || !this.oblongPoints.find(item => { return item.oilUnloadingArea }) || !this.oblongPoints.find(item => { return !item.oilUnloadingArea })) {
this.message.create('warning', '绘制完整后可保存!');
return
}

Loading…
Cancel
Save