zhangyanpeng
2020-02-11 ee7a140cf101c0e863d699dbe2da10767914f95b
src/components/popup/portion/substepReadOnly.vue
@@ -1,6 +1,9 @@
<template>
  <div class="class_substep">
      <div style="width: 79%; height: 100%; overflow: auto; padding-top: 0px; box-sizing: border-box;">
  <div class="class_substep" >
      <div style="width: 79%;text-align: center; margin: 0 10px;">
         <h2 style="margin: 10px;">项目总金额:<span style="font-weight: bold;">{{money}}</span></h2>
      </div>
      <div style="width: 79%; height: 88%; overflow: auto; padding-top: 0px; box-sizing: border-box;">
         <transition name="el-zoom-in-top">
            <div v-show="showData['title']" class="transition-box" style="text-align: center; margin: 0 10px;">
               <h3 style="margin: 10px;">立题服务</h3>
@@ -1190,7 +1193,9 @@
    data() {
      return {
            showData: {},
            money:0,
            hideData: {
               'title': false,
               'scheme': false,
               'search': false,
@@ -1441,7 +1446,6 @@
           let url = "/api/sysRoleMapping/detail";
           this.$axios.get(url)
           .then(data_ => {
             console.log(data_);
             let list = data_.data.data;
             let parId = "";
             let obj = {};
@@ -1472,13 +1476,19 @@
             me.options_users = result;
         
           }).catch(error =>{
               console.log(error);
           })
         },
         
         getDetailed() {
            this.showData = this.showData_;
            this.form_= this.form_objs;
            this.money = 0;
            for (let itm_k in this.showData_) {
               let form_obj = {};
               form_obj = this.form_objs[itm_k];
               this.money += form_obj.budget;
            }
         },
         
         //单一事件
@@ -1500,6 +1510,7 @@
<style>
   .class_substep {
      height: 100%;
      overflow: hidden;
   }
   
   .class_substep .el-divider--horizontal {