Tcsm
2023-07-18 b34fbeffb0d128b75ec0a91acf7fe8ac3816c597
ruoyi-ui/src/views/economy/index.vue
@@ -86,7 +86,7 @@
          plain
          icon="el-icon-download"
          size="mini"
          @click="handleExportTemplate"
          @click="handleExport"
          v-hasPermi="['family:note:export']"
        >导入模板下载</el-button>
      </el-col>
@@ -118,13 +118,14 @@
      <el-table-column label="收入/支出" prop="price" sortable width="100" >
      </el-table-column>
      <el-table-column label="金额" prop="balance" sortable width="100" />
      <el-table-column label="用途" prop="useFor" sortable width="100" />
      <el-table-column label="使用人" prop="usePeople" sortable width="100" />
      <el-table-column label="现金/自动扣划" prop="kind" sortable width="130" >
        <template slot-scope="scope">{{scope.row.kind? scope.row.kind: '————'}}</template>
      </el-table-column>
      <el-table-column label="余额" prop="balance" sortable width="100" />
      <el-table-column label="电子文件" prop="url" align="center" sortable  width="110" >
        <template slot-scope="scope" >
          <img
@@ -171,6 +172,7 @@
        </template>
      </el-table-column>
    </el-table>
    <pagination
      v-show="total>0"
      :total="total"
@@ -217,6 +219,8 @@
          <el-input v-model="formDat.kind" placeholder="请输入支付方式" clearable :style="{width: '100%'}" >
          </el-input>
        </el-form-item>
        <el-form-item label="备注" prop="remark">
          <el-input v-model="formDat.remark" placeholder="请输入备注" clearable :style="{width: '100%'}" ></el-input>
        </el-form-item>
@@ -421,7 +425,8 @@
        {
          value: '支出',
          label: '支出',
        }],
        }
      ],
      typeOptions1: [
        {
          value: '0',
@@ -515,10 +520,6 @@
    cancel() {
      this.open = false;
      this.reset();
    },
    getRowId(row)
    {
      return row.id
    },
    // 取消按钮(数据权限)
    cancelDataScope() {
@@ -645,7 +646,7 @@
    /** 删除按钮操作 */
    handleDelete(row) {
      const Ids = row.id || this.ids;
      this.$modal.confirm('是否确认删除序号为"' + Ids + '"的数据项?').then(function() {
      this.$modal.confirm('是否确认删除所选数据项?').then(function() {
        return delEconomy(Ids);
      }).then(() => {
        this.getList();
@@ -654,24 +655,10 @@
    },
    /** 导出按钮操作 */
    handleExport() {
      const Ids = this.ids;
      if(Ids.length==0)
      {
      this.download('/zfEconomy/export', {
        ...this.queryParams
      }, `zfEconomy_${new Date().getTime()}.xlsx`)
      }else
      {
        this.download('/zfEconomy/export1/'+Ids, {
        }, `zfEconomy_${new Date().getTime()}.xlsx`)
      }
    }
  ,
  handleExportTemplate(){
      this.download('/zfEconomy/model', {
      }, `zfEconomy_${new Date().getTime()}.xlsx`)
  },
  /** 导入操作*/
  handleEnport(params){
@@ -689,7 +676,6 @@
      Message({ message: "导入失败", type: 'error' })
    }
  }
  }
};