|
@@ -74,17 +74,17 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="工程周期" prop="enginCycle">
|
|
|
- <el-select v-model="queryParams1.enginCycle" placeholder="请选择工程周期" clearable
|
|
|
- @clear="">
|
|
|
- <el-option
|
|
|
- v-for="dict in dict.type.engin_cycle"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
+<!-- <el-form-item label="工程周期" prop="enginCycle">-->
|
|
|
+<!-- <el-select v-model="queryParams1.enginCycle" placeholder="请选择工程周期" clearable-->
|
|
|
+<!-- @clear="">-->
|
|
|
+<!-- <el-option-->
|
|
|
+<!-- v-for="dict in dict.type.engin_cycle"-->
|
|
|
+<!-- :key="dict.value"-->
|
|
|
+<!-- :label="dict.label"-->
|
|
|
+<!-- :value="dict.value"-->
|
|
|
+<!-- />-->
|
|
|
+<!-- </el-select>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
@@ -170,11 +170,11 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="工程分类" align="center" prop="enginClassificationName"/>
|
|
|
- <el-table-column label="工程周期" align="center" prop="enginCycle">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag :options="dict.type.engin_cycle" :value="scope.row.enginCycle"/>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
+<!-- <el-table-column label="工程周期" align="center" prop="enginCycle">-->
|
|
|
+<!-- <template slot-scope="scope">-->
|
|
|
+<!-- <dict-tag :options="dict.type.engin_cycle" :value="scope.row.enginCycle"/>-->
|
|
|
+<!-- </template>-->
|
|
|
+<!-- </el-table-column>-->
|
|
|
<!-- <el-table-column label="完工状态" align="center" prop="completionStatus"/>-->
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="300">
|
|
|
<template slot-scope="scope">
|
|
@@ -380,22 +380,22 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item label="工程周期" prop="enginCycle">
|
|
|
- <el-select
|
|
|
- :disabled="title == '添加用料' "
|
|
|
- v-model="queryParams.enginCycle"
|
|
|
- placeholder="请填写工程周期"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="e in dict.type.engin_cycle"
|
|
|
- :key="e.value"
|
|
|
- :label="e.label"
|
|
|
- :value="e.value"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
+<!-- <el-col :span="12">-->
|
|
|
+<!-- <el-form-item label="工程周期" prop="enginCycle">-->
|
|
|
+<!-- <el-select-->
|
|
|
+<!-- :disabled="title == '添加用料' "-->
|
|
|
+<!-- v-model="queryParams.enginCycle"-->
|
|
|
+<!-- placeholder="请填写工程周期"-->
|
|
|
+<!-- >-->
|
|
|
+<!-- <el-option-->
|
|
|
+<!-- v-for="e in dict.type.engin_cycle"-->
|
|
|
+<!-- :key="e.value"-->
|
|
|
+<!-- :label="e.label"-->
|
|
|
+<!-- :value="e.value"-->
|
|
|
+<!-- ></el-option>-->
|
|
|
+<!-- </el-select>-->
|
|
|
+<!-- </el-form-item>-->
|
|
|
+<!-- </el-col>-->
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="24" v-if="title!=='修改民用工程'">
|
|
@@ -882,7 +882,7 @@ export default {
|
|
|
unitId: undefined,
|
|
|
houseId: undefined,
|
|
|
enginType: undefined,
|
|
|
- enginCycle: undefined,
|
|
|
+ enginCycle: 0,
|
|
|
completionStatus: undefined,
|
|
|
enginClassification: undefined,
|
|
|
imgUrl: undefined,
|
|
@@ -915,7 +915,7 @@ export default {
|
|
|
houseId: undefined,
|
|
|
enginType: undefined,
|
|
|
enginClassification: undefined,
|
|
|
- enginCycle: undefined,
|
|
|
+ enginCycle: 0,
|
|
|
completionStatus: undefined,
|
|
|
imgUrl: undefined,
|
|
|
},
|
|
@@ -964,9 +964,9 @@ export default {
|
|
|
enginClassification: [
|
|
|
{required: true, message: "工程分类不能为空", trigger: "change"}
|
|
|
],
|
|
|
- enginCycle: [
|
|
|
- {required: true, message: "工程周期不能为空", trigger: "change"}
|
|
|
- ],
|
|
|
+ // enginCycle: [
|
|
|
+ // {required: true, message: "工程周期不能为空", trigger: "change"}
|
|
|
+ // ],
|
|
|
completionStatus: [
|
|
|
{required: true, message: "完工状态不能为空", trigger: "change"}
|
|
|
],
|
|
@@ -1132,9 +1132,9 @@ export default {
|
|
|
console.log(this.currentEnginName )
|
|
|
viewEngineeringCivilSource({
|
|
|
id: this.enginId,
|
|
|
- type: e || this.currentEnginName
|
|
|
+ type: e || this.currentEnginName
|
|
|
}).then(res => {
|
|
|
- console.log('______', res)
|
|
|
+ console.log('______', res)
|
|
|
this.createTime = res.data.createTime
|
|
|
try {
|
|
|
this.updateParams = res.data
|
|
@@ -1353,7 +1353,7 @@ export default {
|
|
|
houseId: undefined,
|
|
|
enginType: undefined,
|
|
|
enginClassification: undefined,
|
|
|
- enginCycle: undefined,
|
|
|
+ enginCycle: 0,
|
|
|
completionStatus: undefined,
|
|
|
version: undefined,
|
|
|
imgUrl: undefined,
|
|
@@ -1372,7 +1372,7 @@ export default {
|
|
|
houseId: undefined,
|
|
|
enginType: undefined,
|
|
|
enginClassification: undefined,
|
|
|
- enginCycle: undefined,
|
|
|
+ enginCycle: 0,
|
|
|
completionStatus: undefined,
|
|
|
imgUrl: undefined,
|
|
|
// zEngineeringNodeBo: {
|
|
@@ -1438,7 +1438,7 @@ export default {
|
|
|
console.log('nodeCollection:', nodeItem)
|
|
|
console.log('nodeCollection:', this.$refs['EnginNodeInfo' + idx][0])
|
|
|
},2000)
|
|
|
-
|
|
|
+
|
|
|
})
|
|
|
this.queryParams.zEngineeringNodeBoList = nodeCollection
|
|
|
if (this.enginNodeStatus == '修改') {
|
|
@@ -1502,7 +1502,7 @@ export default {
|
|
|
// this.$message.error(`请完善信息!`);
|
|
|
}
|
|
|
})
|
|
|
-
|
|
|
+
|
|
|
|
|
|
return
|
|
|
getDictList({enginType: ['new_built', 'old_renovation']}).then(res => {
|