Commit 16848392 by 张超军

Merge branch 'dev_zwpt' of http://47.92.108.28/changchao/founder_vue into dev_zwpt

parents 7459482b 0ebf00c0
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
</div> </div>
<div class="right"> <div class="right">
<div class="rightTop"> <div class="rightTop">
<div></div>
</div> </div>
<div class="rightBottom"> <div class="rightBottom">
<div class='msg1'><span class="colorspan"></span> 本次预估剩余 <span class="numbspan">85</span> </div> <div class='msg1'><span class="colorspan"></span> 本次预估剩余 <span class="numbspan">85</span> </div>
...@@ -33,7 +34,13 @@ ...@@ -33,7 +34,13 @@
v-if="this.type== 'ry'" v-if="this.type== 'ry'"
> >
<div class='barCodeNum'> <div class='barCodeNum'>
<div class="point"></div>源条码号 <span>已选择 <span>3</span></span> <div v-if='this.rowData.length>1'>
<div class="point"></div>源条码号 <span>已选择 <span>3</span></span>
</div>
<div v-else>
<div class="point"></div>源条码号 <span>{{this.rowData.barcode}}</span> <span>已选择 <span>1</span></span>
</div>
</div> </div>
<el-form <el-form
...@@ -631,6 +638,11 @@ export default { ...@@ -631,6 +638,11 @@ export default {
width: 610px; width: 610px;
height: 24px; height: 24px;
background-color: #02c89a; background-color: #02c89a;
div {
width: 20px;
height: 12px;
background-color: #111;
}
} }
.rightBottom { .rightBottom {
display: flex; display: flex;
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
</div> </div>
<div class="lt_main"> <div class="lt_main">
<div class="lt_main_left"> <div class="lt_main_left">
<l-t-src :src-data="srcDataList"></l-t-src> <l-t-src :src-data="qid"></l-t-src>
</div> </div>
<div class="lt_main_middle"> <div class="lt_main_middle">
<!-- <div class="lt_main_header">顶部工具</div> <!-- <div class="lt_main_header">顶部工具</div>
...@@ -38,13 +38,12 @@ export default { ...@@ -38,13 +38,12 @@ export default {
}, },
data() { data() {
return { return {
srcDataList: null qid: null
}; };
}, },
created() { created() {
this.srcDataList = this.$route.query.rowData; this.qid = this.$route.query.rowData;
console.log("源数据src====>", this.srcDataList); console.log("源qid====>", this.qid);
console.log(this.srcDataList.barcode);
}, },
methods: { methods: {
/** /**
...@@ -81,7 +80,7 @@ export default { ...@@ -81,7 +80,7 @@ export default {
// 跟新列表数据 // 跟新列表数据
self.$bus.emit("updateFinderSource"); self.$bus.emit("updateFinderSource");
console.log(response); console.log(response);
this.$message.success('比中成功!') this.$message.success("比中成功!");
}); });
}, },
/** /**
...@@ -89,16 +88,16 @@ export default { ...@@ -89,16 +88,16 @@ export default {
* @param {*} * @param {*}
* @return {*} * @return {*}
*/ */
Rdwc () { Rdwc() {
let self = this let self = this;
console.log('认定完成'); console.log("认定完成");
// let affirmState = 1 // let affirmState = 1
let srcseqno = sessionStorage.getItem('srcseqno') || '' let srcseqno = sessionStorage.getItem("srcseqno") || "";
let destseqno = sessionStorage.getItem('destseqno') || '' let destseqno = sessionStorage.getItem("destseqno") || "";
let srcbarcode = sessionStorage.getItem('srcbarcode') || '' let srcbarcode = sessionStorage.getItem("srcbarcode") || "";
let destbarcode = sessionStorage.getItem('destbarcode') || '' let destbarcode = sessionStorage.getItem("destbarcode") || "";
let qqid = sessionStorage.getItem('qqid') || '' let qqid = sessionStorage.getItem("qqid") || "";
let qid = sessionStorage.getItem('qid') || '' let qid = sessionStorage.getItem("qid") || "";
// 2:正查 // 2:正查
let querytype = 2; let querytype = 2;
this.$axios({ this.$axios({
...@@ -118,7 +117,7 @@ export default { ...@@ -118,7 +117,7 @@ export default {
// 跟新列表数据 // 跟新列表数据
self.$bus.emit("updateFinderSource"); self.$bus.emit("updateFinderSource");
console.log(response); console.log(response);
this.$message.success('认定完成!') this.$message.success("认定完成!");
}); });
} }
} }
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
</div> </div>
<div class="tt_main_top_table"> <div class="tt_main_top_table">
<span>源条码号:{{ barcode }}</span> <span>源条码号:{{ barcode }}</span>
<el-table :data="srcDataList" class="lt_candidate_table" height="150"> <el-table :data="tableData" class="lt_candidate_table" height="150">
<el-table-column <el-table-column
label="排名" label="排名"
type="index" type="index"
...@@ -61,19 +61,36 @@ export default { ...@@ -61,19 +61,36 @@ export default {
}, },
data() { data() {
return { return {
srcDataList: null, qid: null,
qqid: null,
tableData: [],
isFinger: true, isFinger: true,
isPlam: false, isPlam: false,
isFace: false, isFace: false,
barcode: "123455624323" barcode: null
}; };
}, },
created() { created() {
this.srcDataList = this.$route.query.rowData; this.qid = this.$route.query.qid;
console.log("源数据src====>", this.srcDataList); this.qqid = this.$route.query.qqid;
console.log(this.srcDataList.barcode); this.barcode = this.$route.query.barcode;
console.log("源qid====>", this.qid);
console.log("源barcode====>", this.barcode);
// this.search();
}, },
methods: { methods: {
// 加载候选人
search() {
this.$axios
.get("/api/query/matchcand/src", {
params: {
qqid: this.qqid
}
})
.then(res => {
console.info(res);
});
},
finger() { finger() {
this.isFinger = true; this.isFinger = true;
this.isPlam = false; this.isPlam = false;
......
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