Commit 63710635 by gao_yingdong

人员档案照片

parent 0812216e
...@@ -602,6 +602,13 @@ export default { ...@@ -602,6 +602,13 @@ export default {
// window.open(daurl); // window.open(daurl);
// } // }
// }); // });
} else if (id == "ryda") {
this.$router.pushToTab({
path: "/rydaIndex",
query: {
zjhm: val,
},
});
} else { } else {
axios({ axios({
url: url.cadaURL + "/encodeByWaRyda", url: url.cadaURL + "/encodeByWaRyda",
......
...@@ -772,6 +772,36 @@ ...@@ -772,6 +772,36 @@
</div> </div>
</div> --> </div> -->
<!--4--> <!--4-->
<div class="clgjsf">
<div>
<div class="clgjsfTitle">
<img src="@/assets/img/ryda/title1.svg" />
<span
style="
margin-left: 10px;
color: #21272a;
font-size: 16px;
vertical-align: middle;
"
>
涉案人员照片</span
>
</div>
<div style="display: flex; flex-wrap: wrap" class="clgjsfTabel">
<div
style="margin-right: 30px"
v-for="(item, index) in saRyzpList"
:key="index"
>
<img
style="height: 180px; width: 160px"
:src="'data:image/image/jpeg;base64,' + item.ryzpDzwjnrStr"
alt=""
/>
</div>
</div>
</div>
</div>
<div> <div>
<div class="wrap wrap614"> <div class="wrap wrap614">
<div class="bt"> <div class="bt">
...@@ -1050,7 +1080,7 @@ import wxryBlue from "@/assets/img/ryda/wxryBlue.png"; ...@@ -1050,7 +1080,7 @@ import wxryBlue from "@/assets/img/ryda/wxryBlue.png";
import request from "@/utils/axiosHttp.js"; import request from "@/utils/axiosHttp.js";
import requests from "@/api/interface/dictionaryCode.js"; import requests from "@/api/interface/dictionaryCode.js";
import url from "@/api/base"; import url from "@/api/base";
import encrypt from '@/utils/encrypt' import encrypt from "@/utils/encrypt";
/*config为内网配置,config_internet为外网配置*/ /*config为内网配置,config_internet为外网配置*/
export default { export default {
name: "ryGl", name: "ryGl",
...@@ -1061,6 +1091,7 @@ export default { ...@@ -1061,6 +1091,7 @@ export default {
}, },
data() { data() {
return { return {
saRyzpList: [],
taDataGjsf: [ taDataGjsf: [
{ {
label: "算法名称", label: "算法名称",
...@@ -2155,6 +2186,13 @@ export default { ...@@ -2155,6 +2186,13 @@ export default {
method: "POST", method: "POST",
}); });
}, },
getAjxgRyzp(form) {
return request({
url: url.rzURL + "/newRyda/getAjxgRyzp",
data: JSON.parse(form),
method: "POST",
});
},
// 1经济评估-旅店信息 // 1经济评估-旅店信息
postgetJjpgLwxxList() { postgetJjpgLwxxList() {
let json = {}; let json = {};
...@@ -2451,6 +2489,16 @@ export default { ...@@ -2451,6 +2489,16 @@ export default {
ryBqShowWxxs() { ryBqShowWxxs() {
this.dialogRybqWxxsShowL = true; this.dialogRybqWxxsShowL = true;
}, },
getAjxgRyzpQuery() {
let self = this;
let json = {};
json["zjhm"] = sessionStorage.getItem("zjhm");
self.getAjxgRyzp(JSON.stringify(json)).then((res) => {
if ((res.success = true)) {
self.saRyzpList = res.data.rows;
}
});
},
postXgRyzpxx() { postXgRyzpxx() {
let self = this; let self = this;
let json = {}; let json = {};
...@@ -2503,6 +2551,7 @@ export default { ...@@ -2503,6 +2551,7 @@ export default {
// }); // });
self.postXxNew(JSON.stringify(json)).then((res) => { self.postXxNew(JSON.stringify(json)).then((res) => {
this.postXgRyzpxx(); this.postXgRyzpxx();
this.getAjxgRyzpQuery();
this.getBqList(); this.getBqList();
this.getwpxx(); this.getwpxx();
this.postWpxxCxList(); this.postWpxxCxList();
......
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