| | |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <!-- <el-col :span="6"> |
| | | <el-button type="primary" icon="el-icon-search" size="mini" @click="flowconclusion">搜索</el-button> |
| | | <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
| | | </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="6"> |
| | | <el-button |
| | | type="primary" |
| | | icon="el-icon-search" |
| | | size="mini" |
| | | @click="flowconclusion" |
| | | >搜索</el-button |
| | | > |
| | | <el-button icon="el-icon-refresh" size="mini" @click="resetQuery" |
| | | >重置</el-button |
| | | > |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | <el-form ref="infoform" label-width="100px"> |
| | |
| | | prop="managername" |
| | | width="150px" |
| | | /> |
| | | <!-- <el-table-column label="工作单位" align="center" prop="unitname" width="230px" /> --> |
| | | <!-- <el-table-column label="联系电话" align="center" prop="phone" width="160" /> --> |
| | | <!-- <el-table-column label="税后金额" align="center" prop="taxedcost" width="120px" /> |
| | | <el-table-column label="申请金额" align="center" prop="amountrequested" width="120px" /> |
| | | <el-table-column label="预支费用" align="center" prop="prepaidamount" width="120px" /> --> |
| | | <el-table-column |
| | | label="审核状态" |
| | | align="center" |
| | |
| | | <dict-tag |
| | | :options="dict.type.sys_recordstatus" |
| | | :value="scope.row.recordstatus" |
| | | /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | label="申请材料状态" |
| | | width="140" |
| | | align="center" |
| | | prop="checkFlag" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <dict-tag |
| | | :options="dict.type.sys_stage_type" |
| | | :value="scope.row.checkstatus" |
| | | /> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | fixed="right" |
| | | align="center" |
| | | class-name="small-padding fixed-width" |
| | | width="160px" |
| | | width="260px" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | |
| | | @click="handleDetail(scope.row)" |
| | | >详情</el-button |
| | | > |
| | | |
| | | <el-button |
| | | v-if="scope.row.checkFlag == 1" |
| | | size="mini" |
| | |
| | | import Li_area_select from "@/components/Address"; |
| | | import OrgSelecter from "@/views/project/components/orgselect"; |
| | | import { getUserProfile } from "@/api/system/user"; |
| | | // 导入本地存储的方法 |
| | | import { setItem, grtItem, removeItem } from "@/utils/storage.js"; |
| | | |
| | | export default { |
| | | components: { |
| | |
| | | "sys_ConsolationType", |
| | | "sys_fund_type", |
| | | "sys_finsubject", |
| | | "sys_financeitemtype" |
| | | "sys_financeitemtype", |
| | | "sys_stage_type" |
| | | ], |
| | | data() { |
| | | return { |
| | |
| | | label: "全部" |
| | | } |
| | | ], |
| | | checkmaterials: [ |
| | | { |
| | | value: 1, |
| | | label: "材料待审核" |
| | | }, |
| | | { |
| | | value: 2, |
| | | label: "审查通过等待邮寄纸质材料" |
| | | }, |
| | | { |
| | | value: 3, |
| | | label: "已收到纸质材料" |
| | | } |
| | | ], |
| | | |
| | | // 查询参数 |
| | | queryParams: { |
| | | pageNum: 1, |
| | |
| | | this.getUsermsg(); |
| | | }, |
| | | mounted() { |
| | | if (grtItem("ethicalExpertFeeCheck")) { |
| | | this.queryParams = grtItem("ethicalExpertFeeCheck"); |
| | | this.queryParams.APPLICATIONBEGTIME = ""; |
| | | this.queryParams.APPLICATIONENDTIME = ""; |
| | | } |
| | | this.selectReporters(); |
| | | this.getlistOrganization(); |
| | | //this.getlistUser(); |
| | |
| | | getlistbypower() { |
| | | this.loading = true; |
| | | listbypower(this.queryParams).then(res => { |
| | | removeItem("ethicalExpertFeeCheck"); |
| | | setItem("ethicalExpertFeeCheck", this.queryParams); |
| | | //console.log("根据权限显示列表", res); |
| | | this.loading = false; |
| | | let list = res.rows; |
| | |
| | | isopenvalue(index) { |
| | | this.isopen = index; |
| | | }, |
| | | |
| | | tojust(e) { |
| | | let username = "111"; |
| | | getFund(e).then(res => { |
| | |
| | | }); |
| | | } |
| | | }, |
| | | /** 修改按钮操作 */ |
| | | |
| | | /** 审核按钮操作 */ |
| | | handleCheck(row) { |
| | | this.$router.push({ |
| | | path: "/finance/applyDetail/", |