|
@@ -45,8 +45,12 @@
|
|
|
<DoubleRightOutlined @click="showTree=true;colspan=8;"/>
|
|
|
</div>
|
|
|
<v-tour name="testTour" style="z-index: 100;" :steps="steps" :options="myOptions" :callbacks="myCallbacks"></v-tour>
|
|
|
- <div class="query-index-content" style="z-index: 1;">
|
|
|
- <div class="query-index-form">
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <div class="query-index-content" >
|
|
|
+ <div class="query-index-form" >
|
|
|
<a-form ref="formRef" name="fromQuery"
|
|
|
class="ant-advanced-search-form"
|
|
|
:label-col="labelCol"
|
|
@@ -144,8 +148,8 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
- <a-row class="edit-operation" style="width: 500px;float:right;" data-v-step="3">
|
|
|
- <a-col :span="24" style="text-align: right">
|
|
|
+ <a-row class="edit-operation" style="width:500px;float:right;" data-v-step="3">
|
|
|
+ <a-col :span="24" >
|
|
|
<a-checkbox-group v-model:value="showColumnType" @change="onCheckboxChange">
|
|
|
<a-row>
|
|
|
<a-col :span="8">
|
|
@@ -173,9 +177,9 @@
|
|
|
</a-row>
|
|
|
</a-form>
|
|
|
</div>
|
|
|
- <div style="flex-grow: 1;overflow: auto;height: 500px;" >
|
|
|
- <a-spin :spinning="loading" data-v-step="4">
|
|
|
- <div class="query-index-table" v-if="viewModel=='list'" >
|
|
|
+ <div style="flex-grow: 1;overflow: auto;height: 500px;">
|
|
|
+ <a-spin :spinning="loading" >
|
|
|
+ <div class="query-index-table" data-v-step="4" v-if="viewModel=='list'" >
|
|
|
<a-table :columns="filterColumns" :data-source="data" :scroll="{ x:'100%', y: '100%' }"
|
|
|
:row-key="record=>record.tempId" :pagination="false" @resizeColumn="handleResizeColumn"
|
|
|
bordered>
|
|
@@ -207,9 +211,9 @@
|
|
|
</template>
|
|
|
</a-table>
|
|
|
</div>
|
|
|
- <div class="query-index-table" v-else >
|
|
|
+ <div class="query-index-table" data-v-step="4" v-else >
|
|
|
<a-row :gutter="[24,8]">
|
|
|
- <a-col :span="colspan" v-for="item in data">
|
|
|
+ <a-col :span="colspan" v-for="item in data" >
|
|
|
<a-card :title="'井名:'+item.well_common_name" class="ant-card-index" bodyStyle="padding: 10px;">
|
|
|
<template #extra>
|
|
|
<a-button type="link" @click="detail(item.well_id)">查看详情</a-button>
|
|
@@ -413,7 +417,7 @@ export default defineComponent({
|
|
|
},
|
|
|
content:'<div></div>',
|
|
|
params:{
|
|
|
- placement:'top'
|
|
|
+ placement:'left'
|
|
|
}
|
|
|
},{
|
|
|
target:'[data-v-step="3"]',
|
|
@@ -435,7 +439,7 @@ export default defineComponent({
|
|
|
},
|
|
|
content:'<div></div>',
|
|
|
params:{
|
|
|
- placement:'bottom'
|
|
|
+ placement:'top'
|
|
|
}
|
|
|
},{
|
|
|
target:'[data-v-step="5"]',
|