11
WXL
2023-10-16 29b4ba2b27bd486b6beccb6f03678d8eb8d7b862
src/views/project/fundcheck/officeExpenseCheck/index.vue
@@ -69,6 +69,34 @@
        </el-col> -->
      </el-row>
      <el-row>
        <el-col :span="5">
          <el-form-item label-width="120px" label="申请材料状态" prop="checkstatus" style="float: left">
            <el-select
              v-model="queryParams.checkstatus"
              placeholder="请选择"
              style="width: 100%"
            >
              <el-option
                v-for="item in checkmaterials"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="5">
          <el-form-item label="捐献者" prop="donorname" style="float: left">
            <el-input
              v-model="queryParams.donorname"
              placeholder="请输入申请人捐献者"
              clearable
              size="small"
              @keyup.enter.native="flowconclusion"
            />
          </el-form-item>
        </el-col>
        <el-col :span="4">
          <div style="margin-bottom: 15px;">
            <el-button
@@ -167,6 +195,19 @@
              />
            </template>
          </el-table-column>
          <el-table-column
            label="申请材料状态"
            width="140"
            align="center"
            prop="checkstatus"
          >
            <template slot-scope="scope">
              <dict-tag
                :options="dict.type.sys_stage_type"
                :value="scope.row.checkstatus"
              />
            </template>
          </el-table-column>
          <el-table-column label="备注" align="center" prop="remark" />
          <el-table-column
            label="操作"
@@ -184,6 +225,7 @@
                @click="handleDetail(scope.row)"
                >详情</el-button
              >
              <el-button
                v-if="scope.row.checkFlag == 1"
                size="mini"
@@ -198,9 +240,9 @@
                type="text"
                icon="el-icon-download"
                @click="totaldayin(scope.row.id)"
                v-hasPermi="['project:donateconsolationfund:download']"
                >下载</el-button
              >
              <!-- v-hasPermi="['project:donateconsolationfund:download']" -->
              <!-- 新增审核页面 -->
              <!-- <el-button
@@ -872,8 +914,7 @@
import OrgSelecter from "@/views/project/components/orgselect";
import { getUserProfile } from "@/api/system/user";
import { getToken } from "@/utils/auth";
import { setItem,grtItem,removeItem } from '@/utils/storage.js';
import { setItem, grtItem, removeItem } from "@/utils/storage.js";
export default {
  components: {
@@ -892,7 +933,8 @@
    "sys_fund_type",
    "sys_finsubject",
    "sys_financeitemtype",
    "sys_consolationfundlevel"
    "sys_consolationfundlevel",
    "sys_stage_type"
  ],
  data() {
    return {
@@ -965,6 +1007,20 @@
        {
          value: 2,
          label: "全部"
        }
      ],
      checkmaterials: [
      {
          value: 1,
          label: "材料待审核"
        },
        {
          value: 2,
          label: "审查通过等待邮寄纸质材料"
        },
        {
          value: 3,
          label: "已收到纸质材料"
        }
      ],
      // 查询参数
@@ -1065,7 +1121,9 @@
  mounted() {
    if (grtItem("officeExpenseCheck")) {
      this.queryParams = grtItem("officeExpenseCheck");
    };
      this.queryParams.APPLICATIONBEGTIME = "";
      this.queryParams.APPLICATIONENDTIME = "";
    }
    this.selectReporters();
    this.getlistOrganization();
    //his.getlistUser();
@@ -1342,6 +1400,17 @@
        });
      }
    },
    beforehandCheck(row) {
      this.$router.push({
        path: "/finance/applyDetail/",
        query: {
          id: row.id,
          businessType: "4",
          beforehandType: "1",
          operationType: "check"
        }
      });
    },
    /** 审核按钮操作 */
    handleCheck(row) {
      this.$router.push({