Commit 3d8b9b23 by 米嘉伟

目标逻辑库 信息卡

parent 87e6bfee
...@@ -9499,6 +9499,14 @@ ...@@ -9499,6 +9499,14 @@
"pinkie": "^2.0.0" "pinkie": "^2.0.0"
} }
}, },
"pinyin-match": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/pinyin-match/-/pinyin-match-1.2.2.tgz",
"integrity": "sha512-C0yOq4LkToJMkDHiQFKOY69El2GRcwdS2lVEjgWjIV8go3wE4mloGFNkVicGHFGYHDg523m2/lKzW8Hh+JR9nw==",
"requires": {
"rollup": "^2.44.0"
}
},
"pkcs7": { "pkcs7": {
"version": "1.0.4", "version": "1.0.4",
"resolved": "https://registry.npmjs.org/pkcs7/-/pkcs7-1.0.4.tgz", "resolved": "https://registry.npmjs.org/pkcs7/-/pkcs7-1.0.4.tgz",
...@@ -11196,6 +11204,22 @@ ...@@ -11196,6 +11204,22 @@
"inherits": "^2.0.1" "inherits": "^2.0.1"
} }
}, },
"rollup": {
"version": "2.60.2",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.60.2.tgz",
"integrity": "sha512-1Bgjpq61sPjgoZzuiDSGvbI1tD91giZABgjCQBKM5aYLnzjq52GoDuWVwT/cm/MCxCMPU8gqQvkj8doQ5C8Oqw==",
"requires": {
"fsevents": "~2.3.2"
},
"dependencies": {
"fsevents": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
"optional": true
}
}
},
"run-async": { "run-async": {
"version": "2.4.1", "version": "2.4.1",
"resolved": "https://registry.npm.taobao.org/run-async/download/run-async-2.4.1.tgz", "resolved": "https://registry.npm.taobao.org/run-async/download/run-async-2.4.1.tgz",
......
...@@ -605,7 +605,10 @@ export default { ...@@ -605,7 +605,10 @@ export default {
// this.search(); // this.search();
}, },
// 人员信息卡操作 // 人员信息卡操作
isShowRyxxkBtn () { isShowRyxxkBtn (row) {
// console.log("row", row)
this.rowData = row
console.log("row", row)
this.isShowRyxxk = true; this.isShowRyxxk = true;
}, },
closeRyxxk (val) { closeRyxxk (val) {
......
...@@ -260,7 +260,8 @@ export default { ...@@ -260,7 +260,8 @@ export default {
height: 110px; height: 110px;
background: #ffffff; background: #ffffff;
border-radius: 2px; border-radius: 2px;
border: 1px solid #00b88d; // border: 1px solid #00b88d;
border: 1px solid #cccccc;
} }
.zwName { .zwName {
width: 110px; width: 110px;
......
...@@ -29,16 +29,16 @@ ...@@ -29,16 +29,16 @@
<div class='jbxxLeft'> <div class='jbxxLeft'>
<div class='sjx l1'> <div class='sjx l1'>
<span class="span1">人员编号:</span> <span class="span1">人员编号:</span>
<span class="span2">R888888888888888888888888</span> <span class="span2">{{ysryjbxx.ysxtAsjxgrybh}}</span>
<span class="span3">比中</span> <span class="span3">比中</span>
</div> </div>
<div class='sjx l2'> <div class='sjx l2'>
<span class="span1">姓名:</span> <span class="span1">姓名:</span>
<span class="span2">张三李四</span> <span class="span2">{{ysryjbxx.xm}}</span>
</div> </div>
<div class='sjx l3'> <div class='sjx l3'>
<span class="span1">性别:</span> <span class="span1">性别:</span>
<span class="span2"></span> <span class="span2">{{ysryjbxx.xbdm | xbdmFormat}}</span>
</div> </div>
</div> </div>
<div class='jbxxCenter'> <div class='jbxxCenter'>
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
</div> </div>
<div class='sjxRight'> <div class='sjxRight'>
<div> <div>
<span>2</span>/次 <span>{{fcxInfo.queryCount?fcxInfo.queryCount:'暂无发查询记录'}}</span>/次
</div> </div>
<div> <div>
发查询历史次数 发查询历史次数
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
</div> </div>
<div class='sjxRight'> <div class='sjxRight'>
<div> <div>
<span>2021-02-21</span> <span>{{fcxInfo.lastQueryTime?fcxInfo.lastQueryTime:'暂无发查询记录'}}</span>
</div> </div>
<div> <div>
最后一次发查询时间 最后一次发查询时间
...@@ -83,9 +83,15 @@ ...@@ -83,9 +83,15 @@
<div class='jbxxRight'> <div class='jbxxRight'>
<div class='sjlxImg'> <div class='sjlxImg'>
<img <img
v-if="fcxInfo.queryType==1"
src="../../../assets/img/xxk/TL.png" src="../../../assets/img/xxk/TL.png"
alt="" alt=""
> >
<img
v-if="fcxInfo.queryType==0"
src="../../../assets/img/xxk/TT.png"
alt=""
>
</div> </div>
</div> </div>
</div> </div>
...@@ -118,11 +124,28 @@ ...@@ -118,11 +124,28 @@
</div> </div>
<div class='zwDivBody'> <div class='zwDivBody'>
<div class='zw'> <div class='zw'>
<div class='zwImg'></div> <div class='zwImg'>
<img src="" alt="">
<!-- <img
v-if="RollImg[0].image!=null"
:src="'data:image/jpeg;base64,' + RollImg[0].image"
alt=""
>
<img
src=""
alt=""
> -->
</div>
<div class='zwName'>右拇</div> <div class='zwName'>右拇</div>
</div> </div>
<div class='zw'> <div class='zw'>
<div class='zwImg'></div> <div class='zwImg'>
<!-- <img
v-if="RollImg[1].image"
:src="'data:image/jpeg;base64,' + RollImg[1].image"
alt=""
> -->
</div>
<div class='zwName'>右食</div> <div class='zwName'>右食</div>
</div> </div>
<div class='zw'> <div class='zw'>
...@@ -306,11 +329,23 @@ export default { ...@@ -306,11 +329,23 @@ export default {
drawer: false, // 抽屉开关 drawer: false, // 抽屉开关
direction: 'rtl', // 抽屉类型 direction: 'rtl', // 抽屉类型
radio1: 1, // 指纹,掌纹,人像 radio1: 1, // 指纹,掌纹,人像
ysryjbxx: { // 人员基本信息(人员库获取)
ysxtAsjxgrybh: '', //人员编号
xm: "",// 姓名
xbdm: "",// 性别代码
id: '', // 人员id
},
fcxInfo: { // 发查询信息
lastQueryTime: '',
queryCount: '',
queryType: '',
},
RollImg: [], // 滚动
}; };
}, },
mounted () { mounted () {
this.drawer = this.isShowRyxxk; this.drawer = this.isShowRyxxk;
}, },
watch: { watch: {
isShowRyxxk (newVal, oldVal) { isShowRyxxk (newVal, oldVal) {
...@@ -318,11 +353,49 @@ export default { ...@@ -318,11 +353,49 @@ export default {
}, },
drawer (val) { drawer (val) {
this.$emit('closeRyxxk', this.drawer); this.$emit('closeRyxxk', this.drawer);
},
rowData (val) {
// console.log(val, '人员信息')
this.ysryjbxx.ysxtAsjxgrybh = val.ysxtAsjxgrybh
this.ysryjbxx.xm = val.xm
this.ysryjbxx.xbdm = val.xbdm
this.ysryjbxx.id = val.id
this.getfileinfo()
this.getRollByBarcode()
} }
}, },
methods: { methods: {
getRollByBarcode () { // 人员滚动压缩图
this.$axios
.post("/api/png/rollByBarcode/barcode", { 'barcode': this.ysryjbxx.ysxtAsjxgrybh })
.then((response) => {
if (response.data.code === 0) {
console.log(response.data)
this.RollImg = response.data.ret
} else {
this.$message.error(response.data.message);
}
});
},
getfileinfo () { // 获取发查询信息
this.$axios
.get("api/fileinfo/queryque/" + this.ysryjbxx.ysxtAsjxgrybh)
.then((response) => {
if (response.data.code === 0) {
console.log(response.data)
this.fcxInfo.lastQueryTime = response.data.ret.lastQueryTime
this.fcxInfo.queryCount = response.data.ret.queryCount
this.fcxInfo.queryType = response.data.ret.queryType
//console.info("查询结果===>", this.tableDate);
// this.userInfo = this.getUserInfo(this.tableDate);
} else {
this.$message.error(response.data.message);
}
});
},
handleClose (done) { handleClose (done) {
console.log(1111111111111111) // console.log(1111111111111111)
// this.$confirm('确认关闭?') // this.$confirm('确认关闭?')
// .then(_ => { // .then(_ => {
// done(); // done();
...@@ -335,6 +408,23 @@ export default { ...@@ -335,6 +408,23 @@ export default {
closeDrawer () { closeDrawer () {
this.drawer = false this.drawer = false
this.$emit('closeRyxxk', this.drawer); this.$emit('closeRyxxk', this.drawer);
},
},
filters: {
xbdmFormat: function (val) {
let showProp = null;
if (val == 0) {
showProp = "未知";
} else if (val == 1) {
showProp = "男";
} else if (val == 2) {
showProp = "女";
} else if (val == 9) {
showProp = "未说明";
} else {
showProp = "---";
}
return showProp;
} }
} }
}; };
...@@ -492,7 +582,8 @@ export default { ...@@ -492,7 +582,8 @@ export default {
height: 110px; height: 110px;
background: #ffffff; background: #ffffff;
border-radius: 2px; border-radius: 2px;
border: 1px solid #00b88d; // border: 1px solid #00b88d;
border: 1px solid #cccccc;
} }
.zwName { .zwName {
width: 110px; width: 110px;
...@@ -504,7 +595,8 @@ export default { ...@@ -504,7 +595,8 @@ export default {
} }
} }
.cz { .cz {
height: 86px; height: 55px;
// 86px UI
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
......
...@@ -60,11 +60,11 @@ ...@@ -60,11 +60,11 @@
<el-col :span="12"> <el-col :span="12">
<el-form-item <el-form-item
label="案事件发生地点:" label="案事件发生地点:"
prop="asjfsddDzmc" prop="asjfsddXzqhdm"
> >
<Cascader <Cascader
:form="ruleForm" :form="ruleForm"
id="asjfsddDzmc" id="asjfsddXzqhdm"
codeName="CODE_XZQH" codeName="CODE_XZQH"
></Cascader> ></Cascader>
</el-form-item> </el-form-item>
...@@ -141,11 +141,11 @@ ...@@ -141,11 +141,11 @@
<div>案件逻辑分库</div> <div>案件逻辑分库</div>
</el-row> </el-row>
<el-row class="flexBox"> <el-row class="flexBox">
<el-checkbox <!-- <el-checkbox
:indeterminate="isIndeterminate" :indeterminate="isIndeterminate"
v-model="checkAll" v-model="checkAll"
@change="handleCheckAllChange" @change="handleCheckAllChange"
>全选</el-checkbox> >全选</el-checkbox> -->
<div style="margin: 15px 0"></div> <div style="margin: 15px 0"></div>
<el-checkbox-group <el-checkbox-group
v-model="checkedTargets" v-model="checkedTargets"
...@@ -303,6 +303,7 @@ export default { ...@@ -303,6 +303,7 @@ export default {
checkedTargets: [], // 选定的目标逻辑库 checkedTargets: [], // 选定的目标逻辑库
targets: targetOptions, // 目标逻辑库 targets: targetOptions, // 目标逻辑库
isIndeterminate: false, // 目标逻辑库不确定状态 isIndeterminate: false, // 目标逻辑库不确定状态
logicDatabaseCode: [],// 逻辑库代码
ruleForm: { ruleForm: {
ysxtAsjbh: "", // 案事件编号 ysxtAsjbh: "", // 案事件编号
xckybh: "", // 现场勘验编号 xckybh: "", // 现场勘验编号
...@@ -321,6 +322,10 @@ export default { ...@@ -321,6 +322,10 @@ export default {
zwbdxtlxms: "默认", // zwbdxtlxms: "默认", //
tqdwGajgmc: "默认", // tqdwGajgmc: "默认", //
barcode: "1", barcode: "1",
// logicDatabaseCode: [],// 逻辑库代码
// logicDatabaseName: [],//逻辑库名称
}, },
rules: { rules: {
ysxtAsjbh: [ ysxtAsjbh: [
...@@ -329,7 +334,7 @@ export default { ...@@ -329,7 +334,7 @@ export default {
xckybh: [ xckybh: [
{ required: true, message: "请输入现场勘验编号", trigger: "blur" }, { required: true, message: "请输入现场勘验编号", trigger: "blur" },
], ],
asjfsddDzmc: [ asjfsddXzqhdm: [
{ required: true, message: "请输入案事件发生地", trigger: "blur" }, { required: true, message: "请输入案事件发生地", trigger: "blur" },
], ],
sfmaPdbz: [ sfmaPdbz: [
...@@ -377,12 +382,39 @@ export default { ...@@ -377,12 +382,39 @@ export default {
submitForm (formName) { submitForm (formName) {
this.$refs[formName].validate((valid) => { this.$refs[formName].validate((valid) => {
if (valid) { if (valid) {
if (this.checkedTargets.length == 0) {
this.$message.error('请选择逻辑库')
} else {
for (var i = 0; i <= this.checkedTargets.length; i++) {
if (this.checkedTargets[i] == '本地案件库') {
this.logicDatabaseCode.push('1')
} else if (this.checkedTargets[i] == '比中案件库') {
this.logicDatabaseCode.push('2')
} else if (this.checkedTargets[i] == '已破案件库') {
this.logicDatabaseCode.push('3')
} else if (this.checkedTargets[i] == '重大案件库') {
this.logicDatabaseCode.push('4')
} else if (this.checkedTargets[i] == 'B类案件库') {
this.logicDatabaseCode.push('5')
} else if (this.checkedTargets[i] == 'C类案件库') {
this.logicDatabaseCode.push('6')
} else if (this.checkedTargets[i] == '勘查案件库') {
this.logicDatabaseCode.push('7')
} else if (this.checkedTargets[i] == '协查案件库') {
this.logicDatabaseCode.push('8')
}
}
let reqParam = { let reqParam = {
caseBase: "", caseBase: "",
logicList: [] // 逻辑库
}; };
reqParam.caseBase = this.ruleForm; reqParam.caseBase = this.ruleForm;
reqParam.caseBase.ysxtAsjbh = "A" + this.ruleForm.ysxtAsjbh; reqParam.caseBase.ysxtAsjbh = "A" + this.ruleForm.ysxtAsjbh;
reqParam.caseBase.xckybh = "K" + this.ruleForm.xckybh; reqParam.caseBase.xckybh = "K" + this.ruleForm.xckybh;
// reqParam.caseBase.logicDatabaseCode = this.logicDatabaseCode;
// reqParam.caseBase.logicDatabaseName = this.checkedTargets;
reqParam.logicList = this.logicDatabaseCode;
this.$axios this.$axios
.post("/api/casestore/caseadd", reqParam) .post("/api/casestore/caseadd", reqParam)
.then((response) => { .then((response) => {
...@@ -396,6 +428,7 @@ export default { ...@@ -396,6 +428,7 @@ export default {
this.$message.error("新增失败"); this.$message.error("新增失败");
} }
}); });
}
} else { } else {
return false; return false;
} }
......
...@@ -310,11 +310,11 @@ ...@@ -310,11 +310,11 @@
<div>人员逻辑分库</div> <div>人员逻辑分库</div>
</el-row> </el-row>
<el-row class="flexBox"> <el-row class="flexBox">
<el-checkbox <!-- <el-checkbox
:indeterminate="isIndeterminate" :indeterminate="isIndeterminate"
v-model="checkAll" v-model="checkAll"
@change="handleCheckAllChange" @change="handleCheckAllChange"
>全选</el-checkbox> >全选</el-checkbox> -->
<div style="margin: 15px 0"></div> <div style="margin: 15px 0"></div>
<el-checkbox-group <el-checkbox-group
v-model="checkedTargets" v-model="checkedTargets"
...@@ -465,6 +465,7 @@ export default { ...@@ -465,6 +465,7 @@ export default {
checkedTargets: [], // 选定的目标逻辑库 checkedTargets: [], // 选定的目标逻辑库
targets: targetOptions, // 目标逻辑库 targets: targetOptions, // 目标逻辑库
isIndeterminate: false, // 目标逻辑库不确定状态 isIndeterminate: false, // 目标逻辑库不确定状态
logicDatabaseCode: [],// 逻辑库代码
ruleForm: { ruleForm: {
ysxtAsjxgrybh: "", // 人员编号 ysxtAsjxgrybh: "", // 人员编号
jzrybh: "", // 警综人员编号 jzrybh: "", // 警综人员编号
...@@ -486,6 +487,9 @@ export default { ...@@ -486,6 +487,9 @@ export default {
xzzDzmc: "", // 现住址 xzzDzmc: "", // 现住址
bz: "", // 备注 bz: "", // 备注
// logicDatabaseCode: [],// 逻辑库代码
// logicDatabaseName: [],//逻辑库名称
nydwGajgmc: "", // 捺印单位 nydwGajgmc: "", // 捺印单位
nyryXm: "", // 捺印人姓名 nyryXm: "", // 捺印人姓名
nysj: "", // 捺印时间 nysj: "", // 捺印时间
...@@ -584,24 +588,49 @@ export default { ...@@ -584,24 +588,49 @@ export default {
} }
}, },
submitForm (formName) { submitForm (formName) {
console.log(this.checkedTargets)
this.$refs[formName].validate((valid) => { this.$refs[formName].validate((valid) => {
if (valid) { if (valid) {
if (this.checkedTargets.length == 0) {
this.$message.error('请选择逻辑库')
} else {
// for (var i = 0; i <= this.checkedTargets.length; i++) {
// if (this.checkedTargets[i] == '基本人员库') {
// this.logicDatabaseCode.push('1')
// } else if (this.checkedTargets[i] == '高危人员库') {
// this.logicDatabaseCode.push('2')
// } else if (this.checkedTargets[i] == '非法人员库') {
// this.logicDatabaseCode.push('3')
// } else if (this.checkedTargets[i] == '在逃人员库') {
// this.logicDatabaseCode.push('4')
// } else if (this.checkedTargets[i] == '布控人员库') {
// this.logicDatabaseCode.push('5')
// } else if (this.checkedTargets[i] == '前科人员库') {
// this.logicDatabaseCode.push('6')
// } else if (this.checkedTargets[i] == '协查人员库') {
// this.logicDatabaseCode.push('7')
// }
// }
// console.log(this.logicDatabaseCode)
let reqParam = { let reqParam = {
personDo: "", personDo: "",
}; };
reqParam.personDo = this.ruleForm; reqParam.personDo = this.ruleForm;
reqParam.personDo.ysxtAsjxgrybh = 'R' + this.ruleForm.ysxtAsjxgrybh reqParam.personDo.ysxtAsjxgrybh = 'R' + this.ruleForm.ysxtAsjxgrybh
this.$axios // reqParam.personDo.logicDatabaseCode = this.logicDatabaseCode
.post("/api/personstore/personadd", reqParam) // reqParam.personDo.logicDatabaseName = this.checkedTargets
.then((response) => { // this.$axios
if (response.data.code === 0) { // .post("/api/personstore/personadd", reqParam)
this.$message.success("新增成功"); // .then((response) => {
this.dialogVisible = false; // if (response.data.code === 0) {
// this.$message.success("新增成功");
// this.dialogVisible = false;
} else { // } else {
this.$message.error("新增失败"); // this.$message.error("新增失败");
// }
// });
} }
});
} else { } else {
return false; return false;
} }
......
...@@ -476,7 +476,10 @@ export default { ...@@ -476,7 +476,10 @@ export default {
newArr: [], newArr: [],
logicList: [] // 目标逻辑库数组 logicList: [], // 目标逻辑库数组
logicPsnList: [],// 比中关系人员逻辑库数组
logicCaseList: [], //比中关系案件逻辑库数组
}; };
}, },
...@@ -721,7 +724,7 @@ export default { ...@@ -721,7 +724,7 @@ export default {
this.$message.error('请选择逻辑分库') this.$message.error('请选择逻辑分库')
} else { } else {
if (this.drlx == 3) { if (this.drlx == 3) {
for (var i = 0; i < this.checkedTargets.length; i++) { for (var i = 0; i <= this.checkedTargets.length; i++) {
if (this.checkedTargets[i] == '基本人员库') { if (this.checkedTargets[i] == '基本人员库') {
this.logicList.push('1') this.logicList.push('1')
} else if (this.checkedTargets[i] == '高危人员库') { } else if (this.checkedTargets[i] == '高危人员库') {
...@@ -739,7 +742,7 @@ export default { ...@@ -739,7 +742,7 @@ export default {
} }
} }
} else if (this.drlx == 6) { // ['本地案件库', '比中案件库', '已破案件库', '重大案件库', 'B类案件库', 'C类案件库', '', '协查案件库']; } else if (this.drlx == 6) { // ['本地案件库', '比中案件库', '已破案件库', '重大案件库', 'B类案件库', 'C类案件库', '', '协查案件库'];
for (var i = 0; i < this.checkedTargets.length; i++) { for (var i = 0; i <= this.checkedTargets.length; i++) {
if (this.checkedTargets[i] == '本地案件库') { if (this.checkedTargets[i] == '本地案件库') {
this.logicList.push('1') this.logicList.push('1')
} else if (this.checkedTargets[i] == '比中案件库') { } else if (this.checkedTargets[i] == '比中案件库') {
...@@ -765,6 +768,42 @@ export default { ...@@ -765,6 +768,42 @@ export default {
if (this.targetsLeft.length == 0 || this.targetsRight.length == 0) { if (this.targetsLeft.length == 0 || this.targetsRight.length == 0) {
this.$message.error('请选择逻辑分库') this.$message.error('请选择逻辑分库')
} else { } else {
for (var i = 0; i <= this.checkedTargetsLeft.length; i++) {
if (this.checkedTargetsLeft[i] == '基本人员库') {
this.logicPsnList.push('1')
} else if (this.checkedTargetsLeft[i] == '高危人员库') {
this.logicPsnList.push('2')
} else if (this.checkedTargetsLeft[i] == '非法人员库') {
this.logicPsnList.push('3')
} else if (this.checkedTargetsLeft[i] == '在逃人员库') {
this.logicPsnList.push('4')
} else if (this.checkedTargetsLeft[i] == '布控人员库') {
this.logicPsnList.push('5')
} else if (this.checkedTargetsLeft[i] == '前科人员库') {
this.logicPsnList.push('6')
} else if (this.checkedTargetsLeft[i] == '协查人员库') {
this.logicPsnList.push('7')
}
}
for (var i = 0; i <= this.checkedTargetsRight.length; i++) {
if (this.checkedTargetsRight[i] == '本地案件库') {
this.logicCaseList.push('1')
} else if (this.checkedTargetsRight[i] == '比中案件库') {
this.logicCaseList.push('2')
} else if (this.checkedTargetsRight[i] == '已破案件库') {
this.logicCaseList.push('3')
} else if (this.checkedTargetsRight[i] == '重大案件库') {
this.logicCaseList.push('4')
} else if (this.checkedTargetsRight[i] == 'B类案件库') {
this.logicCaseList.push('5')
} else if (this.checkedTargetsRight[i] == 'C类案件库') {
this.logicCaseList.push('6')
} else if (this.checkedTargetsRight[i] == '勘查案件库') {
this.logicCaseList.push('7')
} else if (this.checkedTargetsRight[i] == '协查案件库') {
this.logicCaseList.push('8')
}
}
this.upload() this.upload()
} }
} }
...@@ -788,8 +827,12 @@ export default { ...@@ -788,8 +827,12 @@ export default {
formData.append('file', file.raw) formData.append('file', file.raw)
}) })
// 添加自定义参数,不传可删除 // 添加自定义参数,不传可删除
if (this.drlx == 3 || this.drlx == 6) {
formData.append('logicList', this.logicList) formData.append('logicList', this.logicList)
} else if (this.drlx == 9) {
formData.append('logicPsnList', this.logicPsnList)
formData.append('logicCaseList', this.logicCaseList)
}
//console.log('formData', formData) //console.log('formData', formData)
// //console.log('this.selectArr', this.selectArr) // //console.log('this.selectArr', this.selectArr)
// //console.log('this.nowSelectRightData', this.nowSelectRightData) // //console.log('this.nowSelectRightData', this.nowSelectRightData)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment