| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <div class="popupContentClass" :style="{'height':testHeight1+'px'}">
- <el-row class="rowClass">
- <el-col :span="3" class="nameClass">项目名称:</el-col>
- <el-col :span="9" class="valueClass" :style="{'height':testHeight+'px'}">{{curEventInfo.wtdstNm}}</el-col>
- <el-col :span="3" class="nameClass">项目位置:</el-col>
- <el-col :span="9" class="valueClass" :style="{'height':testHeight+'px'}">{{curEventInfo.locNm}}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="3" class="nameClass">计划完成:</el-col>
- <el-col :span="9" class="valueClass" :style="{'height':testHeight+'px'}">{{curEventInfo.planRcvrTm==null?'-':curEventInfo.planRcvrTm}}</el-col>
- <el-col :span="3" class="nameClass">项目进度:</el-col>
- <el-col :span="9" class="valueClass" :style="{'height':testHeight+'px'}">{{curEventInfo.wtdstState == '2' ? '待开工' : curEventInfo.wtdstState == '1' ? '正修复' : curEventInfo.wtdstState == '0' ? '已修复' : ''}}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="3" class="nameClass">水毁情况:</el-col>
- <el-col :span="21" class="valueClass" :style="{'height':testHeight+'px'}">{{curEventInfo.wtdstDtle}}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="3" class="nameClass">建议措施:</el-col>
- <el-col :span="21" class="valueClass" :style="{'height':testHeight+'px'}">{{curEventInfo.adNm}}</el-col>
- </el-row>
- <el-row class="rowClass">
- <el-col :span="3" class="nameClass">备注:</el-col>
- <el-col :span="21" class="valueClass" :style="{'height':testHeight+'px'}">{{curEventInfo.note}}</el-col>
- </el-row>
- </div>
- </template>
- <script>
- export default {
- name: "WaterloggingProject",
- components:{
-
- },
- props:['shInfoCon'],
- data(){
- return {
- testHeight:(window.innerHeight * 0.5 - 30) / 5,
- testHeight1:window.innerHeight * 0.5,
- curEventInfo:this.shInfoCon,
- }
- },
- computed: {
- persId() {
- return localStorage.getItem("userid")? localStorage.getItem("userid"): "1098101939614724096";
- }
- },
- mounted(){
-
- },
- watch:{
- shInfoCon(val){
- this.curEventInfo = val;
- }
- },
- methods:{
-
- }
- }
- </script>
- <style scoped>
- @import "../../../assets/css/popup.css";
- </style>
|