zhouhailu
2021-02-03 84980c81f51fcde0bf07066233d76b85dfa78f2b
第五步完成
4个文件已修改
344 ■■■■ 已修改文件
src/view/MainEvaluationC/ProjectManagement.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/view/accessReport/accessReportList.vue 21 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/view/accessReport/chooseAssess.vue 269 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/view/reportForms/reportFormsManage.vue 46 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/view/MainEvaluationC/ProjectManagement.vue
@@ -79,8 +79,8 @@
                  <Tooltip :content="item.Title" theme="light" transfer max-width="200" slot="title"
                           placement="top-start">
                    <Checkbox v-if="isChangeCompanyGroup" :label="item.id"><span> </span></Checkbox>
                    <p class="cardTitle"
                       :style="{borderLeft:item.StockIntegrityFlag ? '4px solid green' : '4px solid green'}">
                    <p class="cardTitle" style="padding: 0;">
                      <!--:style="{borderLeft:item.StockIntegrityFlag ? '4px solid #fff' : '4px solid #fff'}"-->
                      <span>{{ item.Title }}</span>
                    </p>
                  </Tooltip>
@@ -1758,6 +1758,10 @@
}
</script>
<style lang="less">
  .clearfix  .ivu-card-head{
    padding-right: 12px;
    padding-left: 12px;
  }
#projectManagement .cardTitle {
  overflow: hidden;
  text-overflow: ellipsis;
src/view/accessReport/accessReportList.vue
@@ -22,8 +22,12 @@
                  :disabled="defaultmode" @click="addAccessBtn">新建评估报告</Button>
        </div>
        <div style="clear: both"></div>
        <Spin v-show="loading_report" fix>
          <Icon type="ios-loading" size=18 class="demo-spin-icon-load"></Icon>
          <div>Loading</div>
        </Spin>
        <Table ref="accessList" border :columns="accessListColumns" :data="accessList"
               :loading="loading" style="margin-top: 12px">
                style="margin-top: 12px">
          <template slot="action" slot-scope="params">
            <Tooltip content="编辑" class="tableActionMargin"  theme="light" transfer max-width="200"
                     placement="top">
@@ -118,7 +122,8 @@
        ]
      },
      isNotAorE: false, // 是否是添加还是编辑
      deleteDateAccess: ''// 删除弹框信息
      deleteDateAccess: '',// 删除弹框信息
      loading_report:false
    }
  },
  mounted () {
@@ -184,7 +189,7 @@
            if (res.data.Check) {
              this.getAccessList()
              this.addAccessModal = false
              this.loading = false
              this.loading_report = false
              this.$router.push({path: '/chooseAssess', query: {pid: this.ProjId,FlowId:0,Id:res.data.Data}})
            } else {
@@ -201,7 +206,7 @@
           * 第一层table数据
           **/
    getAccessList () {
      this.loading = true
      this.loading_report= true
      let data = {
        ProjectId: this.ProjId,
        ReportName: this.searchIpt
@@ -213,7 +218,7 @@
      }).then(res => {
        if (res.data.Check) {
          this.accessList = res.data.Data
          this.loading = false
          this.loading_report= false
        } else {
        }
@@ -283,12 +288,14 @@
        align: 'center',
        render: (h, params) => {
          if (params.row.EvaState===0) {
            return h('span', '未开始')
            return h('span', '配置中')
          } else if (params.row.EvaState===1) {
            return h('span', '生成中')
          } else if (params.row.EvaState===2) {
            return h('span', '已完成')
          } else {
          } else if (params.row.EvaState===3) {
            return h('span', '生成失败')
          }else {
            return h('span', '')
          }
        },
src/view/accessReport/chooseAssess.vue
@@ -57,7 +57,6 @@
                </CheckboxGroup>
              </div>
            </div>
          </div>
        </Card>
        <div v-show="current=='1'">
@@ -132,7 +131,7 @@
          </Card>
        </div>
        <div v-show="current==='4'||current===4" class="fifthCardClass">
          <Card  style="margin: 25px 0;" >
          <Card  style="margin: 25px 0;">
            <Spin v-show="loadingfifth" fix>
              <Icon type="ios-loading" size=18 class="demo-spin-icon-load"></Icon>
              <div>Loading</div>
@@ -142,26 +141,32 @@
              <div style="width: 47%;display: inline-block;margin:0 1% 0 2%;">
                <Card style="width: 100%;padding: 0 12px 0 0;margin: 12px 0;" v-for="(item,index) in fifthListOne" :key="index" :value="item.CourseTitle" :label="item.CourseTitle">
                  <div style="display: flex;margin-bottom: 12px">
                    <h4 style="width:160px;text-align: right;font-size: 18px;margin-right: 10px">{{item.CourseTitle}}</h4>
                    <div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;">
                    <h4 style="width:160px;text-align: right;font-size: 16px;margin-right: 10px">{{item.CourseTitle}}</h4>
                    <div style="border:1px solid #dcdee2;width: calc(100% - 160px);height: 100px;overflow-y: auto">
                       <span v-for="i in item.Children">
                         <span v-show="i.TypeId===1">
                         <span v-show="i.MoveFlag===false" style="background: #fff;box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2); border-color: #eee;padding: 5px; margin: 5px;display: inline-block;">
                           {{i.CourseTitle}}
                         </span>
                         <!--<span  v-show="i.TypeId===2">-->
                            <!--<Select v-model="fifithSelectFirst" >-->
                              <!--<Option v-for="j in i" :value="j.CourseTitle">{{j.CourseTitle}}</Option>-->
                           <!--</Select>-->
                         <!--</span>-->
                          <span v-show="item.Children.length>0&&item.Children[0].MoveFlag===true">
                            <span class="fuzhaiclass" style="background: #fff;box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2); border-color: #eee;display: inline-block;margin: 5px;">
                             <span style="padding:3px 6px;display: inline-block;">{{i.CourseTitle}}</span>
                               <Poptip title="转移到">
                                   <span style="padding: 3px 6px;display: inline-block;border-left:1px solid #dcdee2;color:#5cadff;cursor: pointer"> > </span>
                                   <ul  slot="content">
                                      <li v-for="s in item.evaSubAtts" @click="clickMove(s,i)">{{s.CourseTitle}}</li>
                                    </ul>
                                 </Poptip>
                             </span>
                            </span>
                       </span>
                      <!--<span v-if="item.Children[0].TypeId===2" v-for="i in item.Children">-->
                        <!--{{i.CourseTitle}}-->
                      <!--</span>-->
                      <!--<span v-if="item.Children[0].TypeId===2">-->
                        <!--<Select v-model="fifithSelectFirst">-->
                          <!--<Option v-for="i in item.Children" :value="i.CourseTitle">{{i.CourseTitle}}</Option>-->
                        <!--</Select>-->
                      <!--</span>-->
                      <!--<ul>-->
                        <!--<li>{{item.CourseTitle}}</li>-->
                      <!--</ul>-->
                      <!--<span v-show="item.Children.length>0&&item.Children[0].MoveFlag===true">-->
                          <!--<Select v-model="fifithSelectFirst" style="margin: 5px;width:50%">-->
                            <!--<Option v-for="i in item.Children" :value="i.CourseTitle" :label="i.CourseTitle">{{i.CourseTitle}}</Option>-->
                         <!--</Select>-->
                       <!--</span>-->
                    </div>
                  </div>
                </Card>
@@ -169,128 +174,29 @@
              <div style="width: 47%;display: inline-block;float: right;margin:0 2% 0 1%">
                <Card style="width: 100%;padding: 0 12px 0 0;margin: 12px 0;" v-for="(item,index) in fifthListTwo" :key="index" :value="item.CourseTitle" :label="item.CourseTitle">
                  <div style="display: flex;margin-bottom: 12px">
                    <h4  style="width:160px;text-align: right;font-size: 18px;margin-right:10px">{{item.CourseTitle}}</h4>
                    <div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;">
                      asdasdasd
                    <h4  style="width:160px;text-align: right;font-size: 16px;margin-right:10px">{{item.CourseTitle}}</h4>
                    <div style="border:1px solid #000;width: calc(100% - 160px);height: 100px;overflow-y: auto">
                      <span v-for="i in item.Children">
                         <span v-show="i.MoveFlag===false" style="background: #fff;box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2); border-color: #eee;padding: 5px; margin: 5px;display: inline-block;">
                           {{i.CourseTitle}}
                         </span>
                         <span v-show="item.Children.length>0&&item.Children[0].MoveFlag===true">
                            <span style="background: #fff;box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2); border-color: #eee;display: inline-block;margin: 5px;" class="fuzhaiclass">
                               <span style="padding:3px 6px;display: inline-block;">{{i.CourseTitle}}</span>
                              <Poptip title="转移到">
                                 <span style="padding: 3px 6px;display: inline-block;border-left:1px solid #dcdee2;color:#5cadff;cursor: pointer"> > </span>
                                 <ul  slot="content">
                                    <li v-for="s in item.evaSubAtts" @click="clickMove(s,i)">{{s.CourseTitle}}</li>
                                  </ul>
                               </Poptip>
                            </span>
                         </span>
                       </span>
                    </div>
                  </div>
                </Card>
              </div>
            </div>
            <!--<div style="display: flex;margin-top: 20px" class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">应收类资产</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
              <!--<Card style="width: 47%;margin:0 2% 0 1%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">票证类负债</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="display: flex;margin-top: 20px" class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">债券投资资产</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
              <!--<Card style="width: 47%;margin:0 2% 0 1%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">融资性负债</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="display: flex;margin-top: 20px" class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">外部股权投资资产</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
              <!--<Card style="width: 47%;margin:0 2% 0 1%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">其他负债</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="margin-top: 20px"  class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">土地房产类投资资产</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="margin-top: 20px"  class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">商品类投资资产</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="margin-top: 20px"  class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">其他投资性资产</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="margin-top: 20px"  class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">经营性资产-存货</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="margin-top: 20px"  class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">经营性资产-其他</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
            <!--<div style="margin-top: 20px;padding-bottom: 12px"  class="fifth_class_title">-->
              <!--<Card style="width: 47%;margin:0 1% 0 2%;padding: 0 12px">-->
                <!--<div style="display: flex;margin-bottom: 12px">-->
                  <!--<h4  style="width:160px;text-align: right">经营性资产-净现金流</h4>-->
                  <!--<div style="border:1px solid #000;width: calc(100% - 160px);height: 120px;padding: 12px">-->
                    <!--asdasdasd-->
                  <!--</div>-->
                <!--</div>-->
              <!--</Card>-->
            <!--</div>-->
          </Card>
        </div>
        <div style="text-align: center">
@@ -389,7 +295,9 @@
      fifthList:[], //第五步数据获取
      fifthListOne:[], //第五步 资产
      fifthListTwo:[], //第五步负债
      fifithSelectFirst:""
      fifithSelectFirst:"",
      cunchuFuzhaiMenu:[], //负债的菜单
      cunchuZichanMenu:[]
    }
  },
  mounted () {
@@ -401,6 +309,7 @@
  watch:{
    FlowId(data){
      this.current=data-1
      console.log(this.current)
      if(this.current===0||this.current==="0"){
        this.getZhutiList()
      }else if(this.current===1||this.current==="1"){
@@ -415,10 +324,35 @@
    }
  },
  methods: {
    clickMove(params,s){
      console.log(params)
      console.log(s)
      let data={
        RId:this.RId,
        evaSubAttr:{
          Id:s.Id,
          TypeId:params.TypeId
        }
      }
      axios.request({
        url: '/EvaSubAttributionEx/UpdEvaSubAttribution',
        data,
        method: 'post'
      }).then(res => {
        if (res.data.Check) {
          this.getFifthList()
        } else {
        }
      }, res => {
      })
    },
    /**
     *  第五步数据获取
     **/
    getFifthList(){
      this.loadingfifth=true
      let data={
        RId:this.RId
      }
@@ -432,10 +366,14 @@
            if(this.fourthList.length>0){
              this.fifthListOne=[]
              this.fifthListTwo=[]
              this.cunchuFuzhaiMenu=[]
              this.cunchuZichanMenu=[]
              this.fifthList.forEach((val,index)=>{
                if(val.RangeFlag===1||val.RangeFlag===0){
                  this.cunchuZichanMenu.push(val)
                  this.fifthListOne.push(val)
                }else{
                  this.cunchuFuzhaiMenu.push(val)
                  this.fifthListTwo.push(val)
                }
              })
@@ -443,13 +381,12 @@
            // let a=[...this.fifthList[0].Children,...this.fifthList[1].Children]
            // this.fifthListOne=a
            // this.fifthListTwo=this.fifthList[1].Children
          console.log(this.fifthListOne)
          console.log(this.fifthListTwo)
            this.loadingfifth=false
        } else {
          this.loadingfifth=false
        }
      }, res => {
        this.loadingfifth=false
      })
    },
    /**
@@ -905,6 +842,7 @@
        this.getZhutiList()
      } else {
        this.current -= 1
        console.log(this.current)
        if (this.current ===0||this.current ==="0") {
          this.getZhutiList()
        }else if(this.current ===1||this.current ==="1"){
@@ -913,6 +851,8 @@
          this.getThirdList()
        }else if(this.current===3||this.current ==="3"){
          this.getFourthList()
        }else if(this.current===4||this.current ==="4"){
          this.getFifthList()
        }
      }
    },
@@ -944,7 +884,7 @@
        }).then(res => {
          if (res.data.Check) {
            this.getTableList()
            if (this.current == 6) {
            if (this.current == 8) {
              this.$Message.success("已完成全部操作")
            } else {
              this.current += 1
@@ -1046,7 +986,22 @@
        }
        this.getFifthList()
      }else if(parseInt(this.current)===4){
        let data={
          RId:this.RId,
          FlowId:this.current+1,
        }
        axios.request({
          url: '/EvaRecallPayParaEx/GetEvaRecallPayParaList',
          data,
          method: 'post'
        }).then(res => {
          if (res.data.Check) {
              this.current += 1
          } else {
          }
        }, res => {
        })
      }else if(parseInt(this.current)===5){
      }else if(parseInt(this.current)===6){
@@ -1075,7 +1030,7 @@
        align: 'center',
      })
      columns.push({
        title: '报告年份',
        title: '报告时间',
        key: 'ReportDate',
        slot:"reportYear",
        align: 'center',
@@ -1088,6 +1043,13 @@
        title: '天数',
        key: 'NumDays',
        align: 'center',
        render: (h, params) => {
          if(params.row.NumDays===365000){
            return h('span', "")
          }else{
            return h('span',params.row.NumDays)
          }
        }
      })
      columns.push({
        title: '基准年利率',
@@ -1138,6 +1100,29 @@
</script>
<style>
  .fuzhaiclass .ivu-poptip-body{
    padding-right: 0;
    padding-left: 0;
  }
  .fuzhaiclass  li:hover{
    color: #2D8CF0;
  }
  .fuzhaiclass  li{
    padding-top:4px;
    padding-bottom: 4px;
   // border-bottom: 1px solid #e8eaec;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
  }
  .fuzhaiclass .ivu-poptip-title{
    padding-top:4px;
    padding-bottom: 4px;
  }
  .fuzhaiclass .ivu-poptip-body{
    padding-top:0 ;
    padding-bottom: 0;
  }
  .fifth_class_title h4{
    font-size:18px;
    padding-right: 15px;
src/view/reportForms/reportFormsManage.vue
@@ -36,8 +36,12 @@
                  :disabled="defaultmode" @click="addReportFormFun">添加</Button>
        </div>
        <div style="clear: both"></div>
        <Spin v-show="loading_first" fix>
          <Icon type="ios-loading" size=18 class="demo-spin-icon-load"></Icon>
          <div>Loading</div>
        </Spin>
        <Table  ref="reportList" border :columns="ReportsListColumns" :data="reportList"
                :loading="loading" style="margin-top: 12px">
                style="margin-top: 12px">
          <template slot="action" slot-scope="params">
            <Tooltip content="查看" class="tableActionMargin"  theme="light" transfer max-width="200"
                     placement="top">
@@ -142,8 +146,16 @@
      </Modal>
      </Card>
      <Card  style="margin-top: 12px;" class="editCard " v-show="reportShow===false">
        <Spin v-show="loading_all" fix>
          <Icon type="ios-loading" size=18 class="demo-spin-icon-load"></Icon>
          <div>Loading</div>
        </Spin>
        <div v-show="notFuzhu">
            <div class="lists_read zhuticlass" style="margin-top: 0px;padding-bottom: 0px">
              <Spin v-show="loading_up" fix>
                <Icon type="ios-loading" size=18 class="demo-spin-icon-load"></Icon>
                <div>Loading</div>
              </Spin>
              <Form :model="editReportModel" :show-message="false" ref="editReportModel" class="reportAddList" :rules="editReportModelValidate">
                <div style="margin-left: 12px">
                  <div class="ipt_form_style_edit"  style="float: left;margin-right: 30px">
@@ -194,7 +206,7 @@
                </div>
              </Form>
            </div>
            <div>
            <div class="tabclass">
                <div style="position: relative;top: 12px">
                  <Tabs v-model="firstTab" type="card"  style="margin-top: 12px;z-index:0">
                    <TabPane label="资产负债表" name="tab1"></TabPane>
@@ -261,7 +273,7 @@
              </div>
            </div>
              <div  v-show="firstTab==='tab2'" >
              <div  v-show="firstTab==='tab2'" class="tabclass">
                <Spin v-show="loading_edit" fix>
                  <Icon type="ios-loading" size=18 class="demo-spin-icon-load"></Icon>
                  <div>Loading</div>
@@ -318,7 +330,7 @@
                  </template>
                </Table>
              </div>
              <div  v-show="firstTab==='tab3'" >
              <div  v-show="firstTab==='tab3'" class="tabclass">
                <Spin v-show="loading_edit" fix>
                  <Icon type="ios-loading" size=18 class="demo-spin-icon-load"></Icon>
                  <div>Loading</div>
@@ -802,6 +814,9 @@
      importFormLoading: false,
      checkbtn: false,
      xailaOption:"全部", //报表下拉筛选
      loading_up:false, //上面主体选项loading
      loading_all:false, //加载全部时loading
      loading_first:false, //第一层table
    }
  },
  mounted () {
@@ -1409,7 +1424,11 @@
         * 获取第二层table数据
         **/
    getSecTableList (params) {
      this.loading_edit = true
      if(this.loading_all===true){
        this.loading_edit = false
      }else{
        this.loading_edit = true
      }
      let data
      if (this.firstTab === 'tab1') {
        data = {
@@ -1560,9 +1579,11 @@
              }
            })
          }
          this.loading_all=false
          this.loading_edit = false
        } else {
          this.loading_edit = false
          this.loading_all=true
        }
      }, res => {
@@ -1598,7 +1619,7 @@
    /**
         * 表格添加数据
         **/
    editSecTableList () {
    editSecTableList (){
      this.getSubjectType()
      this.isNotAorE = false
      this.secAddModal = true
@@ -1666,7 +1687,7 @@
         * 编辑保存
         **/
    editReportListSubmit (editReportModelValidate) {
      this.loading_01 = true
      this.loading_all = true
      let a
      let b = new Date(this.editReportModel.assetsDate)
      console.log(b)
@@ -1708,7 +1729,7 @@
          })
        } else {
          this.$Message.error('请填写相关信息')
          this.loading_01 = false
          this.loading_up = false
        }
      })
    },
@@ -1756,6 +1777,7 @@
      this.editReportModel.assetsPeriod = params.Period
      this.editReportModel.assetsDate = new Date(params.ShortTime)
      this.editId = params.id
      this.loading_all=true
      this.checkbtn = true
      this.getSecTableList(params)
      this.reportShow = false
@@ -1803,6 +1825,7 @@
      console.log(this.editReportModel.assetsDate)
      this.editId = params.id
      this.checkbtn = false
      this.loading_all=true
      this.getSecTableList(params)
      this.reportShow = false
      let s = {
@@ -1889,7 +1912,7 @@
         *  获取table表格数据
         **/
    getTableList () {
      this.loading = true
      this.loading_first = true
      let data = {
        SubjectId: this.assetsID, // 主体Id
        ProjId: this.ProjId
@@ -1901,7 +1924,7 @@
      }).then(res => {
        if (res.data.Check) {
          this.reportList = res.data.Data
          this.loading = false
          this.loading_first = false
        } else {
        }
@@ -2490,6 +2513,9 @@
</script>
<style>
  .tabclass .ivu-spin-fix{
    top:unset;
  }
  /*.secTable3 th.ivu-table-column-center, td.ivu-table-column-center{*/
    /*text-align:left;*/
  /*}*/