Commit 62ddec06 authored by sxl's avatar sxl 💬

fix:[bug]:禅道问题处理

parent c0fac7cc
......@@ -560,9 +560,14 @@ export default {
goto(link) {
this.$router.push({ path: `${link}` });
},
clickVolume(id, index) {
const url = `/Transaction/minDet?id=${id}`;
window.open(url, '_blank'); // '_blank' 表示在新标签页中打开
async clickVolume(id, index) {
const result = await sendRequest("business/screening/trackMine", "get", {
id,
});
if (result.code === 200) {
const url = `/Transaction/minDet?id=${id}`;
window.open(url, '_blank'); // '_blank' 表示在新标签页中打开
}
},
async getKqTag() {
const result = await sendRequest(
......@@ -586,7 +591,6 @@ export default {
);
this.suggestList = result.data.rows;
this.suggestList1 = this.sliceArray(filterByFields(this.suggestList, [{ chkqType: "采矿权" }]), 6);
console.log(this.suggestList1, 'this.suggestList1');
this.suggestList2 = this.sliceArray(filterByFields(this.suggestList, [{ chkqType: "探矿权" }]), 6);
},
clear() {
......
......@@ -31,8 +31,7 @@
<div class="tra-card-left showpic" v-if="currentShowFile.src">
<video controls :style="{
width: '100%',
height: '100%',
marginTop: '-61px',
height: '100%'
}">
<source :src="baseApi + currentShowFile.src" type="video/mp4" />
您的浏览器不支持视频标签。
......@@ -529,7 +528,7 @@
.slotProbeIsimp == '1'
? 'kqlableAct'
: 'kqlable'
" label="槽探(m)" :span="1">
" label="槽探(m³)" :span="1">
{{
dataListTrue.parsedTitles[0].threeTitles[0]
.slotProbe || "联系平台"
......@@ -3826,6 +3825,7 @@ export default {
{ id: this.id }
);
this.dataListTrue = MinRes.data;
console.log(this.dataListTrue, 'this.dataListTrue');
if (MinRes.data.chkqType == "2") {
this.activeName = "2";
} else {
......
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