yxh
2023-12-20 2bf3fda0cd085d5e6af9b55471701e44768d26a9
src/views/project/fundcheck/performanceCheck/index.vue
@@ -66,6 +66,28 @@
        </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="4">
          <div style="margin-bottom: 15px;">
            <el-button
@@ -90,6 +112,17 @@
          :data="donateconsolationfundList"
          @selection-change="handleSelectionChange"
        >
          <el-table-column type="selection" width="45"> </el-table-column>
          <el-table-column
            label="个税计算情况"
            align="center"
            prop="recordstatus"
            width="200"
          >
            <template slot-scope="scope">
              <dict-tag :options="dict.type.sys_tax" :value="scope.row.istax" />
            </template>
          </el-table-column>
          <el-table-column
            label="申请日期"
            width="180"
@@ -139,7 +172,7 @@
            </template>
          </el-table-column>
          <el-table-column
            label="预审状态"
            label="申请材料状态"
            width="140"
            align="center"
            prop="checkstatus"
@@ -168,14 +201,7 @@
                @click="handleDetail(scope.row)"
                >详情</el-button
              >
              <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"
@@ -206,8 +232,6 @@
        />
      </el-row>
    </el-form>
  </div>
</template>
@@ -297,7 +321,9 @@
    "sys_finsubject",
    "sys_financeitemtype",
    "sys_consolationfundlevel",
    "sys_stage_type"
    "sys_stage_type",
    "sys_performance_type",
    "sys_tax"
  ],
  data() {
    return {
@@ -372,6 +398,20 @@
          label: "全部"
        }
      ],
      checkmaterials: [
        {
          value: 1,
          label: "材料待审核"
        },
        {
          value: 2,
          label: "审查通过等待邮寄纸质材料"
        },
        {
          value: 3,
          label: "已收到纸质材料"
        }
      ],
      // 查询参数
      queryParams: {
        pageNum: 1,
@@ -435,8 +475,10 @@
  },
  mounted() {
    if (grtItem("officeExpenseCheck")) {
      this.queryParams = grtItem("officeExpenseCheck");
    if (grtItem("performanceCheck")) {
      this.queryParams = grtItem("performanceCheck");
      this.queryParams.APPLICATIONBEGTIME = "";
      this.queryParams.APPLICATIONENDTIME = "";
    }
    this.getlistOrganization();
    //his.getlistUser();
@@ -453,8 +495,8 @@
      // this.queryParams.params = {};
      console.log("this.queryParams", this.queryParams);
      listbypower(this.queryParams).then(res => {
        removeItem("officeExpenseCheck");
        setItem("officeExpenseCheck", this.queryParams);
        removeItem("performanceCheck");
        setItem("performanceCheck", this.queryParams);
        this.loading = false;
        let list = res.rows;
        this.total = res.total;
@@ -589,7 +631,7 @@
          this.show = 3;
        }
      });
    },
    }
  }
};
</script>