11
WXL
2023-10-12 e1d633ddeece986c1c866d4bc28e4193f3e3c41e
src/views/project/fundcheck/medicalCostCheck/index.vue
@@ -89,6 +89,23 @@
      </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"
@@ -114,8 +131,7 @@
          </div>
        </el-col>
      </el-row>
      </el-form
    >
    </el-form>
    <el-form ref="infoform" label-width="100px">
      <el-row>
        <el-table
@@ -199,18 +215,18 @@
            </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>
            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="操作"
@@ -220,14 +236,6 @@
            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"
@@ -923,8 +931,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: {
@@ -1017,6 +1024,20 @@
        {
          value: 2,
          label: "全部"
        }
      ],
      checkmaterials: [
        {
          value: 1,
          label: "待审查"
        },
        {
          value: 2,
          label: "审核通过等待材料"
        },
        {
          value: 3,
          label: "已收到材料"
        }
      ],
      // 查询参数
@@ -1117,9 +1138,9 @@
  mounted() {
    if (grtItem("medicalCostCheck")) {
      this.queryParams = grtItem("medicalCostCheck");
      this.queryParams.APPLICATIONBEGTIME = '';
      this.queryParams.APPLICATIONENDTIME ='';
    };
      this.queryParams.APPLICATIONBEGTIME = "";
      this.queryParams.APPLICATIONENDTIME = "";
    }
    this.selectReporters();
    this.getlistOrganization();
    //his.getlistUser();
@@ -1395,14 +1416,14 @@
        });
      }
    },
    beforehandCheck(row){
    beforehandCheck(row) {
      this.$router.push({
        path: "/finance/applyDetail/",
        query: {
          id: row.id,
          businessType: "3",
          beforehandType:'1',
          operationType: "check",
          beforehandType: "1",
          operationType: "check"
        }
      });
    },