|
@@ -35,6 +35,16 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="老人姓名" align="center" prop="xm" />
|
|
|
<el-table-column label="身份证件号码" align="center" prop="zjhm" />
|
|
|
+ <el-table-column label="性别" align="center" prop="xb">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag :options="dict.type.C0007" :value="scope.row.xb" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="出生日期" align="center" prop="csrq" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ special(scope.row.csrq) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="发放年月" align="center" prop="ffny">
|
|
|
<template v-slot="{ row }">
|
|
|
{{ row.ffny | ffyfFilter }}
|
|
@@ -47,6 +57,11 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="补贴金额" align="center" prop="btje" />
|
|
|
+ <el-table-column label="受理日期" align="center" prop="slsj" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ special(scope.row.slsj ? scope.row.slsj.substring(0,8) : '') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button v-if="!scope.row.spjg && !scope.row.editFlg" size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['business:jebgsp:edit']">修改/审核</el-button>
|
|
@@ -171,7 +186,7 @@ import { decryptData_ECB, decryptRowData_ECB } from "@/api/tool/sm4";
|
|
|
|
|
|
export default {
|
|
|
name: 'jebgsp',
|
|
|
- dicts: ['CZ002', 'CH016', 'XZ074', 'CH019'],
|
|
|
+ dicts: ['CZ002', 'CH016', 'XZ074', 'CH019', 'C0007'],
|
|
|
data() {
|
|
|
return {
|
|
|
// 遮罩层
|
|
@@ -267,7 +282,7 @@ export default {
|
|
|
getList() {
|
|
|
this.loading = true
|
|
|
selectBgspList(this.queryParams).then((response) => {
|
|
|
- this.jewhList = decryptRowData_ECB(response.rows, [], [])
|
|
|
+ this.jewhList = decryptRowData_ECB(response.rows, ["xm", "zjhm"], [1, 2])
|
|
|
this.total = response.total
|
|
|
this.loading = false
|
|
|
})
|
|
@@ -331,7 +346,7 @@ export default {
|
|
|
this.reset()
|
|
|
const id = row.id || this.ids
|
|
|
getJewh(id).then((response) => {
|
|
|
- this.form = decryptData_ECB(response.data, [], [])
|
|
|
+ this.form = decryptData_ECB(response.data, ["xm", "zjhm"], [1, 2])
|
|
|
/****** sks 需要改动的地方 start ******/
|
|
|
this.copyForm = this.deepCopy(response.data)
|
|
|
/****** sks 需要改动的地方 end ******/
|
|
@@ -344,7 +359,7 @@ export default {
|
|
|
this.reset()
|
|
|
const id = row.id || this.ids
|
|
|
getJewh(id).then((response) => {
|
|
|
- this.xqForm = decryptData_ECB(response.data, [], [])
|
|
|
+ this.xqForm = decryptData_ECB(response.data, ["xm", "zjhm"], [1, 2])
|
|
|
this.openXQ = true
|
|
|
})
|
|
|
},
|