123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913 |
- <!--
- *@description: 民用工程
- *@author: yh Fu
- *@date: 2024-01-04 13:08:59
- *@version: V1.0.5
- -->
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="110px">
- <el-form-item label="小区" prop="areaId">
- <el-select v-model="queryParams.areaId" placeholder="请选择小区" filterable @change="getBuildings">
- <el-option
- v-for="obj in areas"
- :key="obj.id"
- :label="obj.name"
- :value="obj.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="楼栋" prop="buildingId">
- <el-select v-model="queryParams.buildingId" placeholder="请选择楼栋" filterable @change="getUnits">
- <el-option
- v-for="obj in builds"
- :key="obj.id"
- :label="obj.name"
- :value="obj.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="单元" prop="unitId">
- <el-select v-model="queryParams.unitId" placeholder="请选择单元" filterable @change="getHouses">
- <el-option
- v-for="obj in units"
- :key="obj.id"
- :label="obj.name"
- :value="obj.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="房间号" prop="houseId">
- <el-select v-model="queryParams.houseId" placeholder="请选择房间号" filterable>
- <el-option
- v-for="obj in houses"
- :key="obj.id"
- :label="obj.name"
- :value="obj.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
-
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['zdsz:openbolt:add']"
- >新增</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- plain
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['zdsz:openbolt:edit']"
- >修改</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['zdsz:openbolt:remove']"
- >删除</el-button>
- </el-col>
- <!-- <el-col :span="1.5">-->
- <!-- <el-button-->
- <!-- type="warning"-->
- <!-- plain-->
- <!-- icon="el-icon-download"-->
- <!-- size="mini"-->
- <!-- @click="handleExport"-->
- <!-- v-hasPermi="['zdsz:openbolt:export']"-->
- <!-- >导出</el-button>-->
- <!-- </el-col>-->
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
-
- <el-table v-loading="loading" :data="comprehensiveList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" align="center" />
- <!-- <el-table-column label="" align="center" prop="id" v-if="true"/>-->
- <el-table-column label="小区" align="center" prop="areaName" />
- <el-table-column label="楼栋" align="center" prop="buildingName" />
- <el-table-column label="单元" align="center" prop="unitName" />
- <el-table-column label="房间" align="center" prop="houseName" />
- <el-table-column label="安检是否合格" align="center" prop="isQualified">
- <template slot-scope="scope">
- <dict-tag :options="dict.type.pass_check" :value="scope.row.isQualified"/>
- </template>
- </el-table-column>
- <el-table-column label="备注" align="center" prop="remark" show-overflow-tooltip/>
- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['zdsz:comprehensive:edit']"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['zdsz:comprehensive:remove']"
- >删除</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="addNewPipe(scope.row)"
- >新增顶管工程</el-button>
- </template>
- </el-table-column>
- </el-table>
-
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 顶管工程新增 -->
- <EngineePipe ref="enginPipe"/>
- <!-- 添加或修改开栓|安检|维修对话框 -->
- <el-dialog :title="title" :visible.sync="open" append-to-body customClass="appendElDialog">
- <el-form ref="form" :model="queryParams" :rules="rules" label-width="110px">
- <el-form-item label="行政区" prop="district">
- <el-select
- v-model="queryParams.district"
- placeholder="请选择行政区"
- @change="districtHasChanged"
- >
- <el-option
- v-for="e in dict.type.district"
- :key="e.value"
- :label="e.label"
- :value="e.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="小区" prop="areaId">
- <el-select
- v-model="queryParams.areaId"
- placeholder="请选择小区"
- @change="communityHasChanged"
- >
- <el-option
- v-for="e in communityOptions"
- :key="e.id"
- :label="e.name"
- :value="e.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="楼栋" prop="buildingId">
- <el-select
- v-model="queryParams.buildingId"
- placeholder="请选择楼栋"
- @change="buildingHasChanged"
- >
- <el-option
- v-for="e in buildingOptions"
- :key="e.id"
- :label="e.name"
- :value="e.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="单元" prop="unitId">
- <el-select
- v-model="queryParams.unitId"
- placeholder="请选择单元"
- @change="unitHasChanged"
- >
- <el-option
- v-for="e in unitOptions"
- :key="e.id"
- :label="e.name"
- :value="e.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="房间" prop="houseId">
- <el-select
- v-model="queryParams.houseId"
- placeholder="请选择房间"
- >
- <el-option
- v-for="e in houseOptions"
- :key="e.id"
- :label="e.name"
- :value="e.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="工程类型" prop="enginType">
- <el-select
- v-model="queryParams.enginType"
- placeholder="请选择工程类型"
- @change="enginTypeHasChanged"
- >
- <el-option
- v-for="e in enginTypeOption"
- :key="e.value"
- :label="e.label"
- :value="e.value"
- ></el-option>
- </el-select>
- </el-form-item> -->
- <el-form-item label="工程类型">
- <el-cascader
- v-model="value"
- :options="options"
- @change="currentEnginTypeChange">
- </el-cascader>
- </el-form-item>
- <el-form-item label="工程节点">
- <el-select
- v-model="enginClassification"
- placeholder="请选择工程节点"
- >
- <el-option
- v-for="e in enginClassificationOption"
- :key="e.value"
- :label="e.label"
- :value="e.value"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="工程周期" prop="enginCycle">
- <el-select
- 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-form-item label="备注" prop="remark">
- <el-input
- v-model="queryParams.remark"
- type="textarea"
- placeholder="请输入内容"
- class="remark_input"
- />
- </el-form-item> -->
- </el-form>
- <div slot="footer" class="dialog-footer">
- <!-- <el-button :loading="buttonLoading" type="primary" @click="submitForm">确定</el-button> -->
- <el-button :loading="buttonLoading" type="primary" @click="toNodeDetail">填写节点信息</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 节点信息dialog -->
- <enginee-node
- ref="childNode"
- @closeToSucceed="closeToSucceed"
- />
- </div>
- </template>
-
- <script>
- import { listComprehensive, getComprehensive, delComprehensive, addComprehensive, updateComprehensive } from "@/api/zdsz/comprehensive";
- import {getBuildings} from "@/api/zdsz/building";
- import {getUnits} from "@/api/zdsz/unit";
- import {getAreas} from "@/api/zdsz/area";
- import {getHouses, listHouse} from "@/api/zdsz/house";
- import EngineeNode from '@/components/EngineeNode/index'
- import {
- getEngineeringCivil, // 查询工程列表
- addEnginee, // 新增工程
- getAreaList, // 获取当前小区集合
- getBuildingList, // 获取当前楼栋集合
- getUnitList, // 获取当前单元集合
- getHousesList, // 获取当前房间集合
- putEngineeringCivil, // 民用工程修改
- viewEngineeringCivil, // 民用工程查看详情
- deleteEngineeringCivil, // 删除民用工程
- } from "@/api/zdsz/enginee"
- import EngineePipe from "@/components/EngineePipe"
-
- export default {
- name: "openrepair",
- dicts:['pass_check',
- 'is_repair',
- 'engin_type',
- 'self_closing_valve_type',
- 'visit_type','district',
- 'new_built_indoor_engin',
- "old_renovation_indoor_engin",
- "old_renovation_courtyard_engin",
- "old_renovation_overhead",
- "new_built_indoor_engin",
- "new_built_courtyard_engin",
- "new_built_overhead",
- "engin_cycle"
- ],
- components:{
- EngineePipe,
- EngineeNode
- },
- data() {
- var validatePass = (rule, value, callback) => {
- console.log('校验值', value)
- if (value === '') {
- callback(new Error('请输入密码'));
- } else {
- if (this.ruleForm.checkPass !== '') {
- this.$refs.ruleForm.validateField('checkPass');
- }
- callback();
- }
- };
- return {
- // 按钮loading
- buttonLoading: false,
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 开栓|安检|维修表格数据
- comprehensiveList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- enginTypeOption:[
- {
- value:'old_renovation',
- label:'旧改'
- },
- {
- value:'new_built',
- label:'新建'
- }
- ],
- nodeType:'1', // 节点类型
- enginClassification:'',
- // 查询参数
- queryParams: {
- district:null, // 行政区
- areaId:'', // 小区
- enginType:'', // 工程类型
- buildingId:null,
- unitId:null,
- houseId:null,
- type:'01', // 类型 01工业工程 02市政工程
- district:'', // 工程类型 民用工程 0 ,市政工程 1,工业工程 2 ,顶管工程 3,危险作业工程 4,基建工程 5
- enginClassification:null, // 工程分类
- zEngineeringNodeBo:{
- type:'',
- zEngineeringInfoBo:{}, //节点信息
- }
- },
- zEngineeringInfoBo:{
- constructAddre:'', // 施工地址
- constructPhone:'', // 施工人电话
- constructUser:'', // 施工人
- headName:'', // 负责人
- headPhone:'', // 负责人电话
- constructAccordingDrawings:'', // 是否按图纸施工
- segmentedCompressionQualified:'', // 分段打压是否合格
- selfClosingValveType:'', // 自闭阀类型
- visitType:'', // 上门类型
- backfillTime:'', // 回填时间
- constructTime:'', // 施工时间
- zEngiineeringPhotoBoList:[], // 图片列表
- zEngineeringMaterialBo:[],// 用料对象
- }, // 节点信息
- constructAccordingDrawingsOption:[
- {
- value:'1',
- label:'是'
- },
- {
- value:'0',
- label:'否'
- }
- ],
- segmentedCompressionQualifiedOption:[
- {
- value:'1',
- label:'是'
- },
- {
- value:'0',
- label:'否'
- }
- ],
- nodeDetailVisible:false,
- // 表单参数
- form: {},
- areas: [],
- builds: [],
- units: [],
- rooms: [],
- houses: [],
- // 表单校验
- rules: {
- areaId: [
- { required: true, message: "小区不能为空", trigger: "change" }
- ],
- district: [
- { required: true, message: "现场负责人不能为空" ,trigger: 'blur'}
- ],
- supervisionUnit: [
- { required: true, message: "监理单位不能为空" ,trigger: 'blur'}
- ],
- district: [
- { required: true, message: "现场负责人不能为空" ,trigger: 'blur'}
- ],
- supervisionPhone: [
- { required: true, message: "建立联系电话不能为空" ,trigger: 'blur'}
- ],
- constructUnit: [
- { required: true, message: "建筑单位不能为空" ,trigger: 'blur'}
- ],
- areaId: [
- { required: true, message: "设计负责人不能为空" ,trigger: 'blur'}
- ],
- enginCycle: [
- { required: true, message: "设计单位不能为空" ,trigger: 'blur'}
- ],
- designPhone: [
- { required: true, message: "联系方式不能为空" ,trigger: 'blur'}
- ],
- supervisionHead: [
- { required: true, message: "监理负责人不能为空" ,trigger: 'blur'}
- ],
- buildingId: [
- { required: true, message: "楼栋不能为空", trigger: "change" }
- ],
- unitId: [
- { required: true, message: "单元不能为空", trigger: "change" }
- ],
- houseId: [
- { required: true, message: "房间不能为空", trigger: "change" }
- ],
- type: [
- { required: false, message: "类型不能为空", trigger: "change" }
- ],
- isQualified: [
- { required: true, message: "安检是否合格不能为空", trigger: "blur" }
- ],
- // remark: [
- // { required: false, message: "备注不能为空", trigger: "blur" }
- // ],
- },
- // 节点规则校验
- nodeRules:{
- type: [
- { required: true, message: "施工地址不能为空" ,trigger: 'blur'}
- ],
- constructAddre: [
- { required: true, message: "施工地址不能为空" ,trigger: 'blur'}
- ],
- constructPhone: [
- { required: true, message: "施工人电话不能为空" ,trigger: 'blur'}
- ],
- constructUser: [
- { required: true, message: "施工人不能为空" ,trigger: 'blur'}
- ],
- headName: [
- { required: true, message: "负责人不能为空" ,trigger: 'blur'}
- ],
- headPhone: [
- { required: true, message: "负责人电话不能为空" ,trigger: 'blur'}
- ],
- },
- currentDistrict:null, // 当前行政区
- currentCommunity:null, // 当前小区
- currentBuilding:null, // 当前楼宇
- currentUnit:null, // 当前单元
- communityOptions:[
- ],
- buildingOptions:[], // 楼栋集合
- unitOptions:[], // 单元集合
- houseOptions:[], // 房间集合
- enginClassification_list:[],// 室内节点
- new_built_list:[
- {
- label:'旧改',
- value:'old'
- },
- {
- label:'新建',
- value:'new'
- },
- ],
- currentEnginType:[],
- enginTypeOptions:[
- {
- value:'old_renovation',
- label:'旧改',
- children:[
- {
- value:'inside',
- lable:'室内',
- },
- {
- value:'yard',
- lable:'庭院',
- },
- {
- value:'float',
- lable:'架空',
- },
- ]
- },
- {
- value:'new_built',
- label:'新建',
- children:[
- {
- value:'inside',
- lable:'室内',
- },
- {
- value:'yard',
- lable:'庭院',
- },
- {
- value:'float',
- lable:'架空',
- },
- ]
- },
- ],
- value: [],
- options: [
- {
- value: 'old_renovation',
- label: '旧改',
- children: [
- {
- value: 'old_renovation_indoor_engin',
- label: '室内',
-
- },
- {
- value: 'old_renovation_courtyard_engin',
- label: '庭院',
- },
- {
- value: 'old_renovation_overhead',
- label: '架空',
- }
- ]
- },
- {
- value: 'new_built',
- label: '新建',
- children: [
- {
- value: 'new_built_indoor_engin',
- label: '室内',
-
- },
- {
- value: 'new_built_courtyard_engin',
- label: '庭院',
- },
- {
- value: 'new_built_overhead',
- label: '架空',
- }
- ]
- },
- ],
- enginClassificationOption:[], // 工程节点集合
- currentType:null,
- };
- },
- created() {
- this.getList();
- // this.getAreas();
- },
- methods: {
- closeToSucceed(){
- this.open = false;
- },
- currentEnginTypeChange(val){
- const enginDict = val[1]
- const enginType = val[0]
- this.queryParams.enginType = enginType
- this.enginClassificationOption = this.dict.type[enginDict]
- },
- // 当前所选行政区发生改变 查询当前小区集合
- districtHasChanged(district){
- this.queryParams.areaId = null
- this.queryParams.buildingId = null
- this.queryParams.unitId = null
- getAreaList({district}).then(res => {
- this.communityOptions = res.data
- })
- },
- // 当前所选小区发生改变 查询当前楼栋集合
- communityHasChanged(areaId){
- this.queryParams.buildingId = null
- this.queryParams.unitId = null
- getBuildingList({areaId}).then(res => {
- this.buildingOptions = res.data
- })
- },
- buildingHasChanged(buildingId){
- this.queryParams.unitId = null
- getUnitList({buildingId}).then(res => {
- this.unitOptions = res.data
- })
- },
- unitHasChanged(unitId){
- getHousesList({unitId}).then(res => {
- console.log(res)
- this.houseOptions = res.data
- })
- },
- enginTypeHasChanged(val){
- if(val == 'old_renovation'){
-
- }else if(val == 'new_built'){
- }
- },
- // 新增顶管工程
- addNewPipe(data){
- this.$refs.enginPipe.openDialog({
- id:data.id
- },'add')
- },
- nodeCancel(){
- this.nodeDetailVisible = false
- },
- toNodeDetail(){
- if(this.currentType == 'put'){
- this.$refs.childNode.open(this.queryParams,16)
- this.currentType = null
- return
- }
- // 加工 enginClassification 工程节点
- const parts = this.value[1].split('_');
- let result = parts.slice(2).join('_');
- this.queryParams.zEngineeringNodeBo.type = this.enginClassification
- this.queryParams.enginClassification = result
- console.log(this.queryParams)
- this.$refs.childNode.open(this.queryParams,0)
- return
- this.$refs['form'].validate(e => {
- if(e){
- this.nodeDetailVisible = true
- }
- })
-
- },
- getUrl(url) {
- this.zEngineeringInfoBo.zEngiineeringPhotoBoList = this.$refs.obsImageUpload.fileList?this.$refs.obsImageUpload.fileList.map(e=>e.url):[];
- },
- getBuildings(id) {
- this.units = []
- this.houses = []
- this.queryParams.buildingId = undefined
- this.queryParams.unitId = undefined
- this.queryParams.houseId = undefined
- getBuildings(id).then(res => {
- this.builds = res.data
- })
- },
- getUnits(id) {
- this.houses = []
- this.queryParams.unitId = undefined
- this.queryParams.houseId = undefined
- getUnits(this.queryParams.areaId,id).then(res => {
- this.units = res.data
- })
- },
- getAreas() {
- this.builds = []
- this.units = []
- this.houses = []
- this.queryParams.buildingId = undefined
- this.queryParams.unitId = undefined
- this.queryParams.houseId = undefined
- this.form.buildingId = undefined
- this.form.unitId = undefined
- this.form.houseId = undefined
- getAreas().then(res => {
- this.areas = res.data;
- });
- },
- getHouses() {
- this.houses = []
- this.queryParams.houseId = undefined
- getHouses(this.queryParams.unitId).then(res => {
- this.houses = res.data;
- });
- },
- getBuildings1(id) {
- this.units = []
- this.houses = []
- this.form.buildingId = undefined
- this.form.unitId = undefined
- this.form.houseId = undefined
- getBuildings(id).then(res => {
- this.builds = res.data
- })
- },
- getUnits1(id) {
- this.houses = []
- this.form.unitId = undefined
- this.form.houseId = undefined
- getUnits(this.form.areaId,id).then(res => {
- this.units = res.data
- })
- },
- getHouses1() {
- this.houses = []
- this.form.houseId = undefined
- getHouses(this.form.unitId).then(res => {
- this.houses = res.data;
- });
- },
- /** 查询民用工程列表 */
- getList() {
- this.loading = true;
- getEngineeringCivil().then(res => {
- console.log(res)
- this.comprehensiveList = res.rows;
- this.total = res.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- this.houses = []
- this.units = []
- this.builds = []
- },
- // 表单重置
- reset() {
- this.$nextTick(() => {
- this.$refs['form'].resetFields()
- this.$refs['nodeForm'].resetFields()
- })
- this.resetForm("form");
- this.resetForm("nodeForm");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "新增工程";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- viewEngineeringCivil(row.id).then(res => {
- let newData = res.data
- console.log(newData)
- console.log(res.data.zEngineeringNodeBoList[0].type)
- let zEngineeringNodeBo = {
- type:res.data.zEngineeringNodeBoList[0].type,
- zEngineeringInfoBo:res.data.zEngineeringNodeBoList[0].zEngineeringInfoBo
- }
- newData.zEngineeringNodeBo = zEngineeringNodeBo
- this.currentType = 'put'
- this.queryParams = newData
- console.log(this.queryParams)
- this.zEngineeringInfoBo = newData.zEngineeringNodeBo.zEngineeringInfoBo
- this.open = true
- })
- },
- /** 提交按钮 */
- submitForm() {
- // this.$refs["nodeForm"].validate(valid => {
- // if (valid) {
- this.queryParams.zEngineeringNodeBo.zEngineeringInfoBo = this.zEngineeringInfoBo
- console.log(this.queryParams)
- addEnginee(this.queryParams).then(res => {
- console.log(res)
- })
- // }
- // });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- deleteEngineeringCivil(row.id).then(res => {
- if(res.code == 200){
- this.$modal.msgSuccess("删除成功");
- this.getList()
- }
- })
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download('zdsz/openbolt/export', {
- ...this.queryParams
- }, `comprehensive_${new Date().getTime()}.xlsx`)
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- ::v-deep .appendElDialog{
- width: 70%;
- height: 80%;
-
- .el-dialog__body{
- height: 85%;
- }
- .el-form-item{
- margin-bottom: 22px;
- width: 44%;
- display: inline-block;
- }
- .el-form-item:nth-child(2n+2){
- margin-left: 5%;
- }
- .el-form-item:not(:nth-child(1):nth-child(2)){
- margin-top: 0.5%;
- }
- .remark_input{
- .el-textarea__inner{
- width: 238%;
- height: 190px;
- }
- }
- }
- ::v-deep .appendElNodeDialog{
- // width: 70%;
- height: 80%;
-
- .el-dialog__body{
- height: 85%;
- }
- .el-form-item{
- margin-bottom: 22px;
- width: 44%;
- display: inline-block;
- }
- .el-form-item:nth-child(2n+2){
- margin-left: 5%;
- }
- .el-form-item:not(:nth-child(1):nth-child(2)){
- margin-top: 0.5%;
- }
- }
- </style>
-
|