|
@@ -244,7 +244,7 @@ const solution = {
|
244
|
244
|
getTree() {
|
245
|
245
|
let that = this;
|
246
|
246
|
that.$http
|
247
|
|
- .post("service/solution/fetchDataList/solutionType", {
|
|
247
|
+ .post("/service/solution/fetchDataList/solutionType", {
|
248
|
248
|
idx: 0,
|
249
|
249
|
sum: 100
|
250
|
250
|
})
|
|
@@ -498,7 +498,7 @@ export default {
|
498
|
498
|
var that = this;
|
499
|
499
|
if (this.model.emergency) {
|
500
|
500
|
this.$http
|
501
|
|
- .post("service/bpm/data/fetchDataList/prioritymatrix", {
|
|
501
|
+ .post("/service/bpm/data/fetchDataList/prioritymatrix", {
|
502
|
502
|
idx: 0,
|
503
|
503
|
sum: 1000,
|
504
|
504
|
prioritymatrix: {
|
|
@@ -534,7 +534,7 @@ export default {
|
534
|
534
|
var that = this;
|
535
|
535
|
if (this.model.influence) {
|
536
|
536
|
this.$http
|
537
|
|
- .post("service/bpm/data/fetchDataList/prioritymatrix", {
|
|
537
|
+ .post("/service/bpm/data/fetchDataList/prioritymatrix", {
|
538
|
538
|
idx: 0,
|
539
|
539
|
sum: 1000,
|
540
|
540
|
prioritymatrix: {
|
|
@@ -730,7 +730,7 @@ export default {
|
730
|
730
|
// 获取事件单号
|
731
|
731
|
getsjnum() {
|
732
|
732
|
var that = this;
|
733
|
|
- this.$http.get("service/bpm/bpm/restful/sj", {}).then(function(res) {
|
|
733
|
+ this.$http.get("/service/bpm/bpm/restful/sj", {}).then(function(res) {
|
734
|
734
|
that.modelData.incident.incidentsign = res.data.data;
|
735
|
735
|
});
|
736
|
736
|
},
|
|
@@ -738,7 +738,7 @@ export default {
|
738
|
738
|
getSource() {
|
739
|
739
|
var that = this;
|
740
|
740
|
this.$http
|
741
|
|
- .post("service/common/common/getDictionary", {
|
|
741
|
+ .post("/service/common/common/getDictionary", {
|
742
|
742
|
key: "incident_source",
|
743
|
743
|
type: "list"
|
744
|
744
|
})
|
|
@@ -756,7 +756,7 @@ export default {
|
756
|
756
|
getPriority() {
|
757
|
757
|
var that = this;
|
758
|
758
|
this.$http
|
759
|
|
- .post("service/common/common/getDictionary", {
|
|
759
|
+ .post("/service/common/common/getDictionary", {
|
760
|
760
|
key: "incident_priority",
|
761
|
761
|
type: "list"
|
762
|
762
|
})
|
|
@@ -774,7 +774,7 @@ export default {
|
774
|
774
|
getMergency() {
|
775
|
775
|
var that = this;
|
776
|
776
|
this.$http
|
777
|
|
- .post("service/common/common/getDictionary", {
|
|
777
|
+ .post("/service/common/common/getDictionary", {
|
778
|
778
|
key: "incident_emergency",
|
779
|
779
|
type: "list"
|
780
|
780
|
})
|
|
@@ -792,7 +792,7 @@ export default {
|
792
|
792
|
getInfluence() {
|
793
|
793
|
var that = this;
|
794
|
794
|
this.$http
|
795
|
|
- .post("service/common/common/getDictionary", {
|
|
795
|
+ .post("/service/common/common/getDictionary", {
|
796
|
796
|
key: "incident_influence",
|
797
|
797
|
type: "list"
|
798
|
798
|
})
|
|
@@ -810,7 +810,7 @@ export default {
|
810
|
810
|
getHandleCategory() {
|
811
|
811
|
var that = this;
|
812
|
812
|
this.$http
|
813
|
|
- .post("service/common/common/getDictionary", {
|
|
813
|
+ .post("/service/common/common/getDictionary", {
|
814
|
814
|
key: "incident_handleCategory",
|
815
|
815
|
type: "list"
|
816
|
816
|
})
|
|
@@ -828,7 +828,7 @@ export default {
|
828
|
828
|
getClosecode() {
|
829
|
829
|
var that = this;
|
830
|
830
|
this.$http
|
831
|
|
- .post("service/common/common/getDictionary", {
|
|
831
|
+ .post("/service/common/common/getDictionary", {
|
832
|
832
|
key: "incident_closecode",
|
833
|
833
|
type: "list"
|
834
|
834
|
})
|
|
@@ -846,7 +846,7 @@ export default {
|
846
|
846
|
getHandlerUser() {
|
847
|
847
|
var that = this;
|
848
|
848
|
this.$http
|
849
|
|
- .post("service/user/data/fetchDataList/user", {
|
|
849
|
+ .post("/service/user/data/fetchDataList/user", {
|
850
|
850
|
idx: 0,
|
851
|
851
|
sum: 1000,
|
852
|
852
|
user: {
|
|
@@ -868,7 +868,7 @@ export default {
|
868
|
868
|
getCandidateGroups() {
|
869
|
869
|
var that = this;
|
870
|
870
|
this.$http
|
871
|
|
- .post("service/user/data/fetchDataList/group", {
|
|
871
|
+ .post("/service/user/data/fetchDataList/group", {
|
872
|
872
|
idx: 0,
|
873
|
873
|
sum: 1000,
|
874
|
874
|
group: { selectType: "nouser" }
|
|
@@ -1101,7 +1101,7 @@ export default {
|
1101
|
1101
|
"2020年4月25日14:09:29"
|
1102
|
1102
|
);
|
1103
|
1103
|
that.$http
|
1104
|
|
- .post("service/bpm/bpm/start/bpm_incident", that.modelData)
|
|
1104
|
+ .post("/service/bpm/bpm/start/bpm_incident", that.modelData)
|
1105
|
1105
|
.then(function(res) {
|
1106
|
1106
|
if (res.data) {
|
1107
|
1107
|
that.action.target = that.action.target + res.data.id;
|
|
@@ -1273,7 +1273,7 @@ export default {
|
1273
|
1273
|
getIncidentcategory() {
|
1274
|
1274
|
var that = this;
|
1275
|
1275
|
this.$http
|
1276
|
|
- .post("service/bpm/data/fetchDataList/incidentcategory", {
|
|
1276
|
+ .post("/service/bpm/data/fetchDataList/incidentcategory", {
|
1277
|
1277
|
idx: 0,
|
1278
|
1278
|
sum: 1000
|
1279
|
1279
|
})
|
|
@@ -1395,7 +1395,7 @@ export default {
|
1395
|
1395
|
getAreaData() {
|
1396
|
1396
|
var that = this;
|
1397
|
1397
|
this.$http
|
1398
|
|
- .post("service/user/data/fetchDataList/area", {
|
|
1398
|
+ .post("/service/user/data/fetchDataList/area", {
|
1399
|
1399
|
idx: 0,
|
1400
|
1400
|
sum: 1000,
|
1401
|
1401
|
area: {
|
|
@@ -1416,7 +1416,7 @@ export default {
|
1416
|
1416
|
getPlaceData() {
|
1417
|
1417
|
var that = this;
|
1418
|
1418
|
this.$http
|
1419
|
|
- .post("service/user/data/fetchDataList/place", {
|
|
1419
|
+ .post("/service/user/data/fetchDataList/place", {
|
1420
|
1420
|
idx: 0,
|
1421
|
1421
|
sum: 1000,
|
1422
|
1422
|
area: {
|
|
@@ -1450,7 +1450,7 @@ export default {
|
1450
|
1450
|
getFaultLocation(type) {
|
1451
|
1451
|
var that = this;
|
1452
|
1452
|
this.$http
|
1453
|
|
- .post("service/apply/bpm/searchFaultLocation", {
|
|
1453
|
+ .post("/service/apply/bpm/searchFaultLocation", {
|
1454
|
1454
|
searchKey: this.inpLocalVal || ""
|
1455
|
1455
|
})
|
1456
|
1456
|
.then(function(res) {
|
|
@@ -1500,7 +1500,7 @@ export default {
|
1500
|
1500
|
getDept(type) {
|
1501
|
1501
|
var that = this;
|
1502
|
1502
|
this.$http
|
1503
|
|
- .post("service/user/data/fetchDataList/department", {
|
|
1503
|
+ .post("/service/user/data/fetchDataList/department", {
|
1504
|
1504
|
idx: 0,
|
1505
|
1505
|
sum: 50,
|
1506
|
1506
|
department: { dept: that.deptInpVal || "" }
|