feige
2024-01-23 d0136913a2c74a44f5bb30327ebbb3fd85e24fce
ruoyi-ui/src/views/economy/economyInfo.vue
@@ -43,12 +43,12 @@
      <el-form-item label="备注" prop="remark">
        <el-input v-model="formData.remark" placeholder="请输入备注" clearable :style="{width: '100%'}" :disabled="dsb"></el-input>
      </el-form-item>
      <el-form-item label="是否是本家庭记录" prop="ownData">
        <el-input  v-model="formData.ownData=== 1 ? '是':'否'" placeholder=" " clearable :style="{width: '100%'}" :disabled=true></el-input>
      </el-form-item>
   <!--   <el-form-item label="是否是本家庭记录" prop="ownData">
        <el-input  v-model="formData.ownData === 1 ? '是':'否'" placeholder=" " clearable :style="{width: '100%'}" :disabled="true"></el-input>
      </el-form-item> -->
      <h4 class="form-header">相关图片 </h4>
      <h4 class="form-header">相关图片</h4>
      <el-upload
        action="#"
        list-type="picture-card"
@@ -183,7 +183,10 @@
    return {
      cdi:"资产详细信息",
      udi:"资产信息修改",
      fot:[".jpg",".jif"],
      // 数据范围选项
      fot:['.bmp','.jpg','.jpeg','.png','.tif','.gif','.pcx','.tga','.exif','.fpx',
        '.svg','.psd','.cdr','.pcd','.dxf','.ufo','.eps','.ai','.aw','.WMF','.webp','.apng'],
      fileList:[
      ],
      fileListOther:[
@@ -260,15 +263,13 @@
    let jd;
    if(this.$route.query.detail!=undefined)
    {
      jd =  this.$route.query.detail
      this.btn= jd
      this.dsb = !jd
      this.isShow=true
      document.title = "修改家庭收支台账详细信息";
      jd =  this.$route.query.detail;
      this.btn= jd;
      this.dsb = !jd;
      this.isShow=true;
      this.$route.meta.title = "修改家庭收支台账详细信息";//列表的名称
    }
    else{
      document.title = "家庭收支台账详细信息";
      this.$route.meta.title = "家庭收支台账详细信息";//列表的名称
      this.isShow=false;
      this.btn = false;
@@ -279,6 +280,8 @@
      this.loading = true;
      getEconomyInfo(id).then((response) => {
        this.formData = response.data;
       // console.log(this.formData)
        //alert(this.formData.ownData)
        let paths = response.data.url.split(",");
        for(let i = 0; i < paths.length; i++)
        {
@@ -425,6 +428,20 @@
          _this.fileListOther.push({name:response.data.fileName, url:response.data.url})
        }
        let ul = _this.fileList.map(function (elem){
            return elem.url.replace(process.env.VUE_APP_BASE_TRUE_API,"")
          }).join(",")
          let uls = _this.fileListOther.map(function (elem){
            return elem.url.replace(process.env.VUE_APP_BASE_TRUE_API,"")
          }).join(",")
          _this.formData.url = ul+","+uls
          console.log(_this.formData.url)
        //  alert(87)
          updateEconomy(_this.formData).then(response => {
            this.$modal.msgSuccess("图片上传成功");
            // this.open = false;
          });
      })
    },