|
@@ -545,10 +545,10 @@ export default {
|
|
|
backfill: undefined,
|
|
|
tamp: undefined,
|
|
|
levelingTheSite: undefined,
|
|
|
- zEngineeringNodeBo: {
|
|
|
+ /* zEngineeringNodeBo: {
|
|
|
type: "危险作业工程",
|
|
|
zEngineeringInfoBo: {} //节点信息
|
|
|
- }
|
|
|
+ }*/
|
|
|
},
|
|
|
zEngineeringInfoBo: {
|
|
|
constructAddre: '', // 施工地址
|
|
@@ -589,9 +589,6 @@ export default {
|
|
|
form: {},
|
|
|
// 表单校验
|
|
|
rules: {
|
|
|
- id: [
|
|
|
- {required: true, message: "不能为空", trigger: "blur"}
|
|
|
- ],
|
|
|
basicInformation: [
|
|
|
{required: true, message: "作业基本信息不能为空", trigger: "blur"}
|
|
|
],
|
|
@@ -709,7 +706,7 @@ export default {
|
|
|
],*/
|
|
|
},
|
|
|
// 节点规则校验
|
|
|
- nodeRules: {
|
|
|
+ /* nodeRules: {
|
|
|
type: [
|
|
|
{required: true, message: "节点类型不能为空", trigger: 'blur'}
|
|
|
],
|
|
@@ -729,7 +726,7 @@ export default {
|
|
|
{required: true, message: "负责人电话不能为空", trigger: 'blur'}
|
|
|
],
|
|
|
|
|
|
- },
|
|
|
+ },*/
|
|
|
//备用
|
|
|
/* nodesRule:{
|
|
|
zEngiineeringPhotoBoList: [
|
|
@@ -889,7 +886,7 @@ export default {
|
|
|
this.zEngineeringInfoBo.zEngiineeringPhotoBoList = this.$refs.obsImageUpload.fileList ? this.$refs.obsImageUpload.fileList.map(e => e.url) : [];
|
|
|
},
|
|
|
/** 查询危险工程列表 */
|
|
|
- getList() {
|
|
|
+ /* getList() {
|
|
|
this.loading = true;
|
|
|
listEngineeringDangerous({
|
|
|
basicInformation: this.queryParams.basicInformation,
|
|
@@ -901,6 +898,14 @@ export default {
|
|
|
this.total = res.total;
|
|
|
this.loading = false;
|
|
|
});
|
|
|
+ },*/
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ listEngineeringDangerous(this.queryParams).then(response => {
|
|
|
+ this.engineeringDangerousList = response.rows;
|
|
|
+ this.total = response.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
},
|
|
|
// 取消按钮
|
|
|
cancel() {
|