linwenling
2023-04-25 f18059d2968f7851e14444457d06323659820a78
新增家庭收支台账
4个文件已修改
18 ■■■■■ 已修改文件
ruoyi-ui/src/api/economy/index.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/router/index.js 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/economy/economyInfo.vue 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/views/economy/index.vue 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-ui/src/api/economy/index.js
@@ -11,6 +11,7 @@
  })
}
// 根据id查询所有收支台账信息
export function getEconomyInfo(id) {
  return request({
ruoyi-ui/src/router/index.js
@@ -196,6 +196,7 @@
      }
    ]
  },
  //收藏和荣誉
  {
    path: '/familymodel/Collection',
ruoyi-ui/src/views/economy/economyInfo.vue
@@ -14,6 +14,7 @@
        <el-select v-model="formData.type" placeholder="请选择基金/台账" clearable :style="{width: '100%'}" :disabled="dsb" >
        </el-select>
      </el-form-item>
      <el-form-item label="时间" prop="createTime">
        <el-input v-model="formData.createTime" placeholder="请选择时间" clearable :style="{width: '100%'}" :disabled="dsb"></el-input>
      </el-form-item>
@@ -320,19 +321,19 @@
        saveAs(blob, filename)
      })
    },
      handlePictureCardPreview(file) {
        this.dialogFileUrl = file.url;
      const Base64 = require('js-base64').Base64
      this.desurl = process.env.VUE_APP_BASE_OTHER_API+'onlinePreview?url='+encodeURIComponent(Base64.encode(this.dialogFileUrl));
      myWindow=window.open(this.desurl,'','width=1200,height=800,top=150,left=300');
      },
//删除图片
    handleRemoveFile(file,) {
      for(let i = 0; i < this.fileListOther.length; i++)
      {
        if(this.fileListOther[i].url==file.url)
ruoyi-ui/src/views/economy/index.vue
@@ -53,6 +53,7 @@
      </el-form-item>
    </el-form>
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button
@@ -201,7 +202,7 @@
          ></el-option>
        </el-select>
      </el-form-item>
        <el-form-item label="时间" prop="createTime">
          <el-date-picker
            v-model='formDat.createTime'
@@ -501,7 +502,7 @@
      this.queryParams.happenEndTime = this.dateRange.length > 0 && this.dateRange[1]
      // console.log(this.queryParams)
      //  listProperty(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
        listEconomy(this.queryParams).then(response => {
          //  alert(123)
          //   console.log(response.data)
@@ -690,7 +691,7 @@
    }
    }
};
</script>