Commit 62ddec06 authored by sxl's avatar sxl 💬

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

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