|
@@ -566,7 +566,6 @@
|
|
|
style="grid-column: 1 / span 3"
|
|
|
>
|
|
|
<el-input
|
|
|
- disabled
|
|
|
v-model="form.hjdz"
|
|
|
placeholder="请输入户籍地址"
|
|
|
/>
|
|
@@ -581,6 +580,37 @@
|
|
|
placeholder="请输入详情居住地址"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="是否迁入" prop="isqr">
|
|
|
+ <el-radio-group v-model="form.isqr" @change="chengeIsqr">
|
|
|
+ <el-radio
|
|
|
+ v-for="dict in dict.type.CZ035"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.value"
|
|
|
+ >{{ dict.label }}
|
|
|
+ </el-radio>
|
|
|
+ </el-radio-group>
|
|
|
+ </el-form-item>
|
|
|
+ <!--<el-form-item label="户籍类型" prop="isqr">-->
|
|
|
+ <!--<el-radio-group v-model="form.isqr" @change="chengeIsqr">-->
|
|
|
+ <!--<el-radio-->
|
|
|
+ <!--v-for="dict in hjOpt"-->
|
|
|
+ <!--:key="dict.value"-->
|
|
|
+ <!--:label="dict.value"-->
|
|
|
+ <!-->{{ dict.label }}-->
|
|
|
+ <!--</el-radio>-->
|
|
|
+ <!--</el-radio-group>-->
|
|
|
+ <!--</el-form-item>-->
|
|
|
+ <el-form-item label="迁入日期" prop="qrsj" v-if="form.isqr=='1'">
|
|
|
+ <el-date-picker
|
|
|
+ clearable
|
|
|
+ v-model="form.qrsj"
|
|
|
+ @change="getQxBfPz"
|
|
|
+ type="date"
|
|
|
+ value-format="yyyyMMdd"
|
|
|
+ placeholder="请选择迁入日期"
|
|
|
+ >
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
</div>
|
|
|
<h3>银行卡信息</h3>
|
|
|
<div style="display: flex">
|
|
@@ -919,7 +949,30 @@
|
|
|
>
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
-
|
|
|
+ <el-form-item label="补发详细" style="grid-column: 1 / span 2" v-if="form.jfxxList&&form.jfxxList.length>0">
|
|
|
+ <el-table :data="form.jfxxList" ref="multipleTable" @selection-change="handleSelectionChange2">
|
|
|
+ <el-table-column
|
|
|
+ type="selection"
|
|
|
+ width="55">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="补贴月份" align="center" prop="ffyf" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.ffyf&&scope.row.ffyf.length>=6?scope.row.ffyf.slice(0,4)+'-'+scope.row.ffyf.slice(-2):scope.row.ffyf}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="补发金额" align="center" prop="ffje" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-form-item
|
|
|
+ :prop="'jfxxList.' + scope.$index + '.ffje'"
|
|
|
+ :rules="{ required: true, message: '金额不能为空', trigger: 'blur'}"
|
|
|
+ >
|
|
|
+ <number @changeValue="changeFfje" placeholder="补发金额" v-model.sync="scope.row.ffje" :min="0" :max="10000000000" :precision="2"/>
|
|
|
+ <!--<el-input v-model="scope.row.ffje"></el-input>-->
|
|
|
+ </el-form-item>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="补发月数" prop="sqbfys">
|
|
|
<el-input
|
|
|
disabled
|
|
@@ -971,75 +1024,65 @@
|
|
|
<!--</tr>-->
|
|
|
<div>
|
|
|
<h3 style="margin-top: 20px">社区(村)审核</h3>
|
|
|
- <table class="tableStyle">
|
|
|
- <tr>
|
|
|
- <td>
|
|
|
- <el-form-item label="审核结果" prop="sqShjg">
|
|
|
- <el-select
|
|
|
- v-model="form.sqShjg"
|
|
|
- placeholder="请选择审核结果"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in dict.type.GL007"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <el-form-item label="审核意见" prop="sqShyj">
|
|
|
- <el-input
|
|
|
- v-model="form.sqShyj"
|
|
|
- placeholder="请输入审核意见"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </td>
|
|
|
- <!--<td>-->
|
|
|
- <!--<el-form-item label="申请社区(村)审核时间" prop="sqShsj">-->
|
|
|
- <!--<el-date-picker clearable-->
|
|
|
- <!--v-model="form.sqShsj"-->
|
|
|
- <!--type="datetime"-->
|
|
|
- <!--value-format="yyyyMMddHHmmss"-->
|
|
|
- <!--placeholder="请选择申请社区(村)审核时间">-->
|
|
|
- <!--</el-date-picker>-->
|
|
|
- <!--</el-form-item>-->
|
|
|
- <!--</td>-->
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <div class="grid2">
|
|
|
+ <el-form-item label="审核结果" prop="sqShjg">
|
|
|
+ <el-select
|
|
|
+ v-model="form.sqShjg"
|
|
|
+ placeholder="请选择审核结果"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.GL007"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="审批人" prop="sqShrxm">
|
|
|
+ <el-input
|
|
|
+ v-model="form.sqShrxm"
|
|
|
+ placeholder="请输入审批人"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="审核意见" prop="sqShyj" style="grid-column: 1 / span 2">
|
|
|
+ <el-input
|
|
|
+ v-model="form.sqShyj"
|
|
|
+ placeholder="请输入审核意见"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div v-if="status == '1'">
|
|
|
<h3 style="margin-top: 20px">街道(乡镇)审核</h3>
|
|
|
- <table class="tableStyle">
|
|
|
- <tr>
|
|
|
- <td>
|
|
|
- <el-form-item label="审核结果" prop="jdShjg">
|
|
|
- <el-select
|
|
|
- v-model="form.jdShjg"
|
|
|
- placeholder="请选择申请街道(乡镇)审核结果"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in dict.type.GL007"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <el-form-item label="审核意见" prop="jdShyj">
|
|
|
- <el-input
|
|
|
- v-model="form.jdShyj"
|
|
|
- placeholder="请输入申请街道(乡镇)审核意见"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <div class="grid2">
|
|
|
+ <el-form-item label="审核结果" prop="jdShjg">
|
|
|
+ <el-select
|
|
|
+ v-model="form.jdShjg"
|
|
|
+ placeholder="请选择申请街道(乡镇)审核结果"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.GL007"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="审批人" prop="jdShrxm">
|
|
|
+ <el-input
|
|
|
+ v-model="form.jdShrxm"
|
|
|
+ placeholder="请输入审批人"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="审核意见" prop="jdShyj" style="grid-column: 1 / span 2">
|
|
|
+ <el-input
|
|
|
+ v-model="form.jdShyj"
|
|
|
+ placeholder="请输入申请街道(乡镇)审核意见"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </div>
|
|
|
<!--<el-form-item label="申请街道(乡镇)审核时间" prop="jdShsj">-->
|
|
|
<!--<el-date-picker clearable-->
|
|
|
<!--v-model="form.jdShsj"-->
|
|
@@ -1051,33 +1094,33 @@
|
|
|
</div>
|
|
|
<div v-if="status == '2'">
|
|
|
<h3 style="margin-top: 20px">区民政局审核</h3>
|
|
|
- <table class="tableStyle">
|
|
|
- <tr>
|
|
|
- <td>
|
|
|
- <el-form-item label="审核结果" prop="mzShjg">
|
|
|
- <el-select
|
|
|
- v-model="form.mzShjg"
|
|
|
- placeholder="请选择审核结果"
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="dict in dict.type.GL007"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <el-form-item label="审核意见" prop="mzShyj">
|
|
|
- <el-input
|
|
|
- v-model="form.mzShyj"
|
|
|
- placeholder="请输入审核意见"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </table>
|
|
|
+ <div class="grid2">
|
|
|
+ <el-form-item label="审核结果" prop="mzShjg">
|
|
|
+ <el-select
|
|
|
+ v-model="form.mzShjg"
|
|
|
+ placeholder="请选择审核结果"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.GL007"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="审批人" prop="jdShrxm">
|
|
|
+ <el-input
|
|
|
+ v-model="form.mzShrxm"
|
|
|
+ placeholder="请输入审批人"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="审核意见" prop="mzShyj" style="grid-column: 1 / span 2">
|
|
|
+ <el-input
|
|
|
+ v-model="form.mzShyj"
|
|
|
+ placeholder="请输入审核意见"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</el-form>
|
|
|
</el-scrollbar>
|
|
@@ -1213,6 +1256,7 @@ import {
|
|
|
endGljtSq,
|
|
|
getQxBfPz,
|
|
|
getBfys,
|
|
|
+ gljtSqFormList,
|
|
|
addGljtSqGstp,
|
|
|
} from "@/api/gljt/gljtSq";
|
|
|
import { chineseOne, idCard, Regular, Mobile } from "@/utils/regular";
|
|
@@ -1261,7 +1305,9 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ hjOpt:[{label:'本地户籍',value:'0'},{label:'外地迁入',value:'1'}],
|
|
|
glsqsjRange: [],
|
|
|
+ multipleSelection: [],
|
|
|
pickerOptions: {
|
|
|
shortcuts: [
|
|
|
{
|
|
@@ -1503,9 +1549,16 @@ export default {
|
|
|
trigger: "blur",
|
|
|
},
|
|
|
],
|
|
|
+ qrsj: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "迁入日期不能为空",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
mz: [{ required: true, message: "民族不能为空", trigger: "blur" }],
|
|
|
hjdz: [
|
|
|
- // {required: true, message: "申请人户籍地址地址不能为空", trigger: "blur"},
|
|
|
+ {required: true, message: "申请人户籍地址地址不能为空", trigger: "blur"},
|
|
|
],
|
|
|
yb: [
|
|
|
{
|
|
@@ -1786,6 +1839,23 @@ export default {
|
|
|
console.log(this.ids,'this.ids');
|
|
|
this.multiple = !selection.length
|
|
|
},
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange2(selection) {
|
|
|
+ this.multipleSelection = selection;
|
|
|
+ this.changeFfje();
|
|
|
+ console.log(this.multipleSelection,'<--------this.multipleSelection');
|
|
|
+ },
|
|
|
+ changeFfje(){
|
|
|
+ console.log('我变化了');
|
|
|
+ let sum=0;
|
|
|
+ this.multipleSelection.map(item=>{
|
|
|
+ sum+= Number(item.ffje)
|
|
|
+ })
|
|
|
+ // this.form.bfjeCity=sum;
|
|
|
+ // this.form.bfys= this.multipleSelection.length;
|
|
|
+ this.form.sqbfje = sum;
|
|
|
+ this.form.sqbfys = this.multipleSelection.length;
|
|
|
+ },
|
|
|
changHm() {
|
|
|
this.form.khmc = this.form.sqrXm;
|
|
|
},
|
|
@@ -1991,7 +2061,7 @@ export default {
|
|
|
if (!this.form.csrq) {
|
|
|
return;
|
|
|
}
|
|
|
- let res = await getQxBfPz({ csrq: this.form.csrq, isdb: this.form.isdb });
|
|
|
+ let res = await getQxBfPz({ csrq: this.form.csrq, isdb: this.form.isdb,qrsj:this.form.qrsj });
|
|
|
this.form.pc = res.data.pc;
|
|
|
this.isJy = false;
|
|
|
if (res.data.default) {
|
|
@@ -2040,6 +2110,14 @@ export default {
|
|
|
this.getBfys();
|
|
|
this.getQxBfPz();
|
|
|
},
|
|
|
+ chengeIsqr(){
|
|
|
+ this.form.qrsj='';
|
|
|
+ if(this.form.qfrq){
|
|
|
+ this.form.qrsj=this.form.qfrq;
|
|
|
+ this.getQxBfPz();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //获取补贴的详细列表
|
|
|
async getBfys() {
|
|
|
if (this.form.ffyf && this.form.csrq) {
|
|
|
let qur = {
|
|
@@ -2047,9 +2125,29 @@ export default {
|
|
|
csrq: this.form.csrq,
|
|
|
isdb: this.form.isdb,
|
|
|
};
|
|
|
- let res = await getBfys(qur);
|
|
|
- this.form.sqbfje = res.data.sqbfje;
|
|
|
- this.form.sqbfys = res.data.sqbfys;
|
|
|
+ // let res = await getBfys(qur);
|
|
|
+ // this.form.sqbfje = res.data.sqbfje;
|
|
|
+ // this.form.sqbfys = res.data.sqbfys;
|
|
|
+ this.form.jfxxList=[];
|
|
|
+ this.form.sqbfje =0;
|
|
|
+ this.form.sqbfys = 0;
|
|
|
+ let res=await gljtSqFormList(qur);
|
|
|
+ if(res.data.list&&res.data.list.length>0){
|
|
|
+ this.form.sqbfys=res.data.list.length;
|
|
|
+ let sum=0;
|
|
|
+ res.data.list.map(item=>{
|
|
|
+ sum+= Number(item.ffje)
|
|
|
+ })
|
|
|
+ this.form.sqbfje=sum;
|
|
|
+ this.form.jfxxList=res.data.list;
|
|
|
+ let that=this;
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ that.form.jfxxList.forEach(row => {
|
|
|
+ that.$refs.multipleTable.toggleRowSelection(row);
|
|
|
+ });
|
|
|
+ })
|
|
|
+ }
|
|
|
+ console.log(res,'我是列表');
|
|
|
}
|
|
|
},
|
|
|
getTime() {
|
|
@@ -2117,6 +2215,7 @@ export default {
|
|
|
getBack(data) {
|
|
|
if (data) {
|
|
|
this.form.fzjg = data.fzjg;
|
|
|
+ this.form.qfrq = data.qfrq;
|
|
|
}
|
|
|
},
|
|
|
getCard2(data) {
|
|
@@ -2169,6 +2268,7 @@ export default {
|
|
|
this.form.ffyf = "";
|
|
|
this.form.sqbfys = "";
|
|
|
this.form.sqbfje = "";
|
|
|
+ this.form.jfxxList=[];
|
|
|
},
|
|
|
clear2() {
|
|
|
this.form.dbrXm = "";
|
|
@@ -2203,6 +2303,7 @@ export default {
|
|
|
sqrZjbm: null,
|
|
|
sqrXm: null,
|
|
|
fzjg: null,
|
|
|
+ qfrq:null,
|
|
|
yb: null,
|
|
|
mz: null,
|
|
|
sndj: null,
|
|
@@ -2240,13 +2341,16 @@ export default {
|
|
|
tffj: null,
|
|
|
sqShjg: null,
|
|
|
sqShyj: null,
|
|
|
+ sqShrxm:null,
|
|
|
sqShsj: null,
|
|
|
jdShjg: null,
|
|
|
jdShyj: null,
|
|
|
jdShsj: null,
|
|
|
+ jdShrxm:null,
|
|
|
mzShjg: null,
|
|
|
mzShyj: null,
|
|
|
mzShsj: null,
|
|
|
+ mzShrxm:null,
|
|
|
tfsqShjg: null,
|
|
|
tfsqShyj: null,
|
|
|
tfsqShsj: null,
|
|
@@ -2268,6 +2372,7 @@ export default {
|
|
|
status: "0",
|
|
|
istk: "0",
|
|
|
isdb: "0",
|
|
|
+ isqr:"0",
|
|
|
iszc: "0",
|
|
|
dbzh: null, //低保证号
|
|
|
sqms: null, //申请描述
|
|
@@ -2281,6 +2386,8 @@ export default {
|
|
|
xjdxzqh: null, // 现居地行政区划
|
|
|
khwd: null, // 开户网点
|
|
|
gszp:null,
|
|
|
+ qrsj:null,
|
|
|
+ jfxxList:[]
|
|
|
};
|
|
|
this.clearHkb();
|
|
|
this.resetForm("form");
|
|
@@ -2311,10 +2418,27 @@ export default {
|
|
|
}
|
|
|
this.getAccessToken();
|
|
|
// this.createConnection();
|
|
|
+ // if(this.saveSpr();)
|
|
|
+ this.getSqShrxm();
|
|
|
this.status = null;
|
|
|
this.open = true;
|
|
|
this.title = "添加高龄津贴申请信息";
|
|
|
},
|
|
|
+ getSqShrxm(){
|
|
|
+ if(localStorage.getItem('sqShrxm')&&!this.form.sqShrxm){
|
|
|
+ this.form.sqShrxm=localStorage.getItem('sqShrxm')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getJdShrxm(){
|
|
|
+ if(localStorage.getItem('jdShrxm')&&!this.form.jdShrxm){
|
|
|
+ this.form.jdShrxm =localStorage.getItem('jdShrxm')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ getMzShrxm(){
|
|
|
+ if(localStorage.getItem('mzShrxm')&&!this.form.mzShrxm){
|
|
|
+ this.form.mzShrxm=localStorage.getItem('mzShrxm')
|
|
|
+ }
|
|
|
+ },
|
|
|
getAccessToken() {
|
|
|
getAccessToken().then((res) => {
|
|
|
if (res.access_token) {
|
|
@@ -2335,7 +2459,7 @@ export default {
|
|
|
this.formXq = {
|
|
|
...response.data,
|
|
|
isdb: this.translateDict("CZ035", response.data.isdb),
|
|
|
- // isdb: this.translateDict('CZ035', response.data.isdb),
|
|
|
+ isqr: this.translateDict('CZ035', response.data.isqr),
|
|
|
iszc: this.translateDict("CZ035", response.data.iszc),
|
|
|
istk: this.translateDict("CZ035", response.data.istk),
|
|
|
gx: this.translateDict("C0032", response.data.gx),
|
|
@@ -2361,11 +2485,23 @@ export default {
|
|
|
this.form.xjdxzqh = this.form.xjdxzqhCode
|
|
|
? JSON.stringify(this.form.xjdxzqhCode.split(","))
|
|
|
: [];
|
|
|
+ //草稿、被拒绝、社区审核
|
|
|
if (this.status == "4" || this.status == "0" || this.status == "50") {
|
|
|
+ this.getSqShrxm();
|
|
|
this.getAccessToken();
|
|
|
+
|
|
|
+ this.getBfys();
|
|
|
+ }
|
|
|
+ //街道审核
|
|
|
+ if(this.status == "1"){
|
|
|
+ this.getJdShrxm();
|
|
|
+ }
|
|
|
+ //区县审核
|
|
|
+ if(this.status == "2"){
|
|
|
+ this.getMzShrxm();
|
|
|
}
|
|
|
this.getQxBfPz2();
|
|
|
- this.getBfys();
|
|
|
+
|
|
|
this.open = true;
|
|
|
}
|
|
|
if (type === 2) {
|
|
@@ -2379,6 +2515,18 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ //缓存各级的审批人
|
|
|
+ saveSpr(){
|
|
|
+ if(this.form.sqShrxm){
|
|
|
+ localStorage.setItem('sqShrxm', this.form.sqShrxm);
|
|
|
+ }
|
|
|
+ if(this.form.jdShrxm){
|
|
|
+ localStorage.setItem('jdShrxm', this.form.jdShrxm);
|
|
|
+ }
|
|
|
+ if(this.form.mzShrxm){
|
|
|
+ localStorage.setItem('mzShrxm', this.form.mzShrxm);
|
|
|
+ }
|
|
|
+ },
|
|
|
handleXq(row) {
|
|
|
this.reset();
|
|
|
const id = row.id;
|
|
@@ -2433,8 +2581,6 @@ export default {
|
|
|
}
|
|
|
numberErr++;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
this.$modal.msgError(errorMessage)
|
|
|
// this.$model fields[0][0].message
|
|
|
}
|
|
@@ -2516,6 +2662,7 @@ export default {
|
|
|
jdShjg: this.form.jdShjg,
|
|
|
jdShyj: this.form.jdShyj,
|
|
|
jdShsj: this.getTime(),
|
|
|
+ jdShrxm: this.form.jdShrxm,
|
|
|
};
|
|
|
}
|
|
|
if (this.status == "2") {
|
|
@@ -2524,6 +2671,7 @@ export default {
|
|
|
mzShjg: this.form.mzShjg,
|
|
|
mzShyj: this.form.mzShyj,
|
|
|
mzShsj: this.getTime(),
|
|
|
+ mzShrxm: this.form.mzShrxm,
|
|
|
};
|
|
|
}
|
|
|
if (this.status == "4") {
|
|
@@ -2533,9 +2681,11 @@ export default {
|
|
|
qur.jdShjg = null;
|
|
|
qur.jdShyj = null;
|
|
|
qur.jdShsj = null;
|
|
|
+ qur.jdShrxm= null;
|
|
|
qur.mzShjg = null;
|
|
|
qur.mzShyj = null;
|
|
|
qur.mzShsj = null;
|
|
|
+ qur.mzShrxm= null;
|
|
|
}
|
|
|
if (is) {
|
|
|
qur.sqShyj = null;
|
|
@@ -2544,26 +2694,31 @@ export default {
|
|
|
qur.jdShjg = null;
|
|
|
qur.jdShyj = null;
|
|
|
qur.jdShsj = null;
|
|
|
+ qur.jdShrxm= null;
|
|
|
qur.mzShjg = null;
|
|
|
qur.mzShyj = null;
|
|
|
qur.mzShsj = null;
|
|
|
+ qur.mzShrxm= null;
|
|
|
}
|
|
|
if (this.form.id != null) {
|
|
|
if (this.status == "0" || this.status == "50") {
|
|
|
qur.sqShsj = this.getTime();
|
|
|
+ qur.jfxxList=this.multipleSelection;
|
|
|
}
|
|
|
updateGljtSq(qur)
|
|
|
.then((response) => {
|
|
|
this.$modal.msgSuccess("保存成功");
|
|
|
this.open = false;
|
|
|
+ this.saveSpr();
|
|
|
this.getList();
|
|
|
})
|
|
|
.finally(() => (this.submitFormLoading = false));
|
|
|
} else {
|
|
|
- addGljtSq({ ...qur, sqShsj: this.getTime() })
|
|
|
+ addGljtSq({ ...qur, sqShsj: this.getTime(),jfxxList:this.multipleSelection })
|
|
|
.then((response) => {
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
this.open = false;
|
|
|
+ this.saveSpr();
|
|
|
this.getList();
|
|
|
/****** sks 需要改动的地方 end ******/
|
|
|
})
|