11
WXL
2023-10-09 13b518856345591ddf9ea7271aba77f6423a1bac
src/views/project/fundcheck/medicalCostCheck/index.vue
@@ -88,6 +88,17 @@
        </el-col> -->
      </el-row>
      <el-row>
        <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
@@ -187,6 +198,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="操作"
@@ -196,6 +220,14 @@
            width="260px"
          >
            <template slot-scope="scope">
              <el-button
                v-if="scope.row.checkFlag == 1"
                size="mini"
                type="text"
                icon="el-icon-edit"
                @click="beforehandCheck(scope.row)"
                >预审核</el-button
              >
              <el-button
                v-if="scope.row.checkFlag == 1"
                size="mini"
@@ -699,7 +731,7 @@
              fixed="right"
              align="center"
              label="操作"
              width="120"
              width="200"
            >
              <template slot-scope="scope">
                <el-button
@@ -891,6 +923,8 @@
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';
export default {
  components: {
@@ -909,7 +943,8 @@
    "sys_fund_type",
    "sys_finsubject",
    "sys_financeitemtype",
    "sys_consolationfundlevel"
    "sys_consolationfundlevel",
    "sys_stage_type"
  ],
  data() {
    return {
@@ -1080,6 +1115,9 @@
    this.getUsermsg();
  },
  mounted() {
    if (grtItem("medicalCostCheck")) {
      this.queryParams = grtItem("medicalCostCheck");
    };
    this.selectReporters();
    this.getlistOrganization();
    //his.getlistUser();
@@ -1094,6 +1132,8 @@
      this.loading = true;
      // this.queryParams.params = {};
      listbypower(this.queryParams).then(res => {
        removeItem("medicalCostCheck");
        setItem("medicalCostCheck", this.queryParams);
        this.loading = false;
        let list = res.rows;
        let arr = [];
@@ -1353,6 +1393,17 @@
        });
      }
    },
    beforehandCheck(row){
      this.$router.push({
        path: "/finance/applyDetail/",
        query: {
          id: row.id,
          businessType: "3",
          beforehandType:'1',
          operationType: "check",
        }
      });
    },
    /** 修改按钮操作 */
    handleCheck(row) {
      this.$router.push({