index.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748
  1. <template>
  2. <div class="query-index">
  3. <div class="query-index-tree" v-if="showTree">
  4. <div class="query-index-tree-search">
  5. <a-tabs v-model:activeKey="activeTab" @change="tabChange" style="width:97%;">
  6. <a-tab-pane key="1" tab="组织架构目录">
  7. </a-tab-pane>
  8. <a-tab-pane key="2" tab="地质单元目录" forceRender="true">
  9. </a-tab-pane>
  10. </a-tabs>
  11. <DoubleLeftOutlined @click="showTree=false;colspan=6;"/>
  12. </div>
  13. <div style="margin-top: -15px">
  14. <a-input-search
  15. v-model:value="subjectTrees.searchStr"
  16. placeholder="查找目录..." allow-clear
  17. @search="searchTree"
  18. />
  19. </div>
  20. <div class="query-index-tree-box">
  21. <a-tree
  22. ref="treeRef"
  23. :show-line="true" blockNode="true"
  24. :tree-data="subjectTrees.data"
  25. v-model:expandedKeys="subjectTrees.expandedKeys"
  26. v-model:selectedKeys="subjectTrees.selectedKeys"
  27. :replace-fields="replaceFields"
  28. :autoExpandParent="subjectTrees.autoExpandParent"
  29. @expand="treeOnExpand" @select="treeOnSelect">
  30. <template #switcherIcon="{ switcherCls }">
  31. <caret-down-outlined style="font-size:20px;" :class="switcherCls"/>
  32. </template>
  33. <template #title="{ label,value,children }">
  34. <span v-if="label!=null&&label.indexOf(subjectTrees.searchStr) > -1">
  35. {{ label.substr(0, label.indexOf(subjectTrees.searchStr)) }}
  36. <span style="color: #f50">{{ subjectTrees.searchStr }}</span>
  37. {{ label.substr(label.indexOf(subjectTrees.searchStr) + subjectTrees.searchStr.length) }}
  38. </span>
  39. <span v-else>{{ label }}</span>
  40. </template>
  41. </a-tree>
  42. </div>
  43. </div>
  44. <div class="query-index-close" v-else>
  45. <DoubleRightOutlined @click="showTree=true;colspan=8;"/>
  46. </div>
  47. <div class="query-index-content">
  48. <div class="query-index-form">
  49. <a-form ref="formRef" name="fromQuery"
  50. class="ant-advanced-search-form"
  51. :label-col="labelCol"
  52. :model="formState">
  53. <a-row :gutter="24" class="query-index-row">
  54. <a-col :span="6">
  55. <a-form-item name="well_common_name" label="井名:">
  56. <a-input v-model:value="formState.well_common_name"/>
  57. </a-form-item>
  58. </a-col>
  59. <a-col :span="6">
  60. <a-form-item name="well_type" label="井型:">
  61. <a-select ref="select" v-model:value="formState.well_type"
  62. :options="wellTypeList" :field-names="{label:'name',value:'value'}" :allow-clear="true">
  63. </a-select>
  64. </a-form-item>
  65. </a-col>
  66. <a-col :span="6">
  67. <a-form-item name="well_type" label="井别:">
  68. <a-select ref="select" v-model:value="formState.well_purpose"
  69. :options="wellPurposeList" :field-names="{label:'name',value:'value'}" :allow-clear="true">
  70. </a-select>
  71. </a-form-item>
  72. </a-col>
  73. <a-col :span="6" style="text-align: left">
  74. <MenuOutlined @click="showQuery=true" v-if="!showQuery"/>
  75. <LineOutlined @click="showQuery=false" v-else/>
  76. <a-button type="primary" html-type="submit" @click="onQuery" style="margin-left: 10px;">查询</a-button>
  77. <a-button html-type="submit"
  78. @click="() => {resetFields();formState.ref_date=new Date(); onQuery()}"
  79. style="margin-left: 10px;">
  80. 重置
  81. </a-button>
  82. </a-col>
  83. </a-row>
  84. <a-row :gutter="24" class="query-index-row" v-if="showQuery">
  85. <a-col :span="18">
  86. <a-form-item name="well_id" label="组织机构:">
  87. <a-tree-select
  88. v-model:value="formState.orgList"
  89. show-search
  90. allow-clear
  91. multiple
  92. tree-line
  93. :tree-data="subjectTrees.organizationTree"
  94. tree-node-filter-prop="label" >
  95. </a-tree-select>
  96. </a-form-item>
  97. </a-col>
  98. </a-row>
  99. <a-row :gutter="24" class="query-index-row" v-if="showQuery">
  100. <a-col :span="18">
  101. <a-form-item name="spud_date_begin" label="地址单元:">
  102. <a-tree-select
  103. v-model:value="formState.unitList"
  104. show-search
  105. allow-clear
  106. multiple
  107. tree-line
  108. :tree-data="subjectTrees.constructUnitTree"
  109. tree-node-filter-prop="label" >
  110. </a-tree-select>
  111. </a-form-item>
  112. </a-col>
  113. </a-row>
  114. <a-row :gutter="24" class="query-index-row" v-if="showQuery">
  115. <a-col :span="6">
  116. <a-form-item name="completion_date_begin" label="完井日期:">
  117. <a-range-picker :key="formState.ref_date" format="YYYY-MM-DD" :placeholder="['开始日期', '结束日期']"
  118. @change="(d)=>{onRangeChange(d,'completion_date_begin','completion_date_end')}"/>
  119. </a-form-item>
  120. </a-col>
  121. <a-col :span="6">
  122. <a-form-item name="oil_prod_begin_date_begin" label="投产日期:">
  123. <a-range-picker :key="formState.ref_date" format="YYYY-MM-DD" :placeholder="['开始日期', '结束日期']"
  124. @change="(d)=>{onRangeChange(d,'oil_prod_begin_date_begin','oil_prod_begin_date_end')}"/>
  125. </a-form-item>
  126. </a-col>
  127. <a-col :span="6">
  128. <a-form-item name="spud_date_begin" label="开钻日期:">
  129. <a-range-picker :key="formState.ref_date" format="YYYY-MM-DD" :placeholder="['开始日期', '结束日期']"
  130. @change="(d)=>{onRangeChange(d,'spud_date_begin','spud_date_end')}"/>
  131. </a-form-item>
  132. </a-col>
  133. </a-row>
  134. <a-row class="edit-operation">
  135. <a-col :span="24" style="text-align: right">
  136. <a-checkbox-group v-model:value="showColumnType" @change="onCheckboxChange">
  137. <a-row>
  138. <a-col :span="8">
  139. <a-checkbox value="oil">显示产油</a-checkbox>
  140. </a-col>
  141. <a-col :span="8">
  142. <a-checkbox value="gas">显示产气</a-checkbox>
  143. </a-col>
  144. <a-col :span="8">
  145. <a-checkbox value="water">显示产水</a-checkbox>
  146. </a-col>
  147. </a-row>
  148. </a-checkbox-group>
  149. <a-radio-group v-model:value="viewModel" style="text-align: left">
  150. <a-radio-button value="list">
  151. <UnorderedListOutlined/>
  152. 列表
  153. </a-radio-button>
  154. <a-radio-button value="card">
  155. <TableOutlined/>
  156. 卡片
  157. </a-radio-button>
  158. </a-radio-group>
  159. </a-col>
  160. </a-row>
  161. </a-form>
  162. </div>
  163. <a-spin :spinning="loading">
  164. <div class="query-index-table" v-if="viewModel=='list'">
  165. <a-table :columns="filterColumns" :data-source="data" :scroll="{ x:'100%', y: 550 }"
  166. :row-key="record=>record.tempId" :pagination="false"
  167. bordered>
  168. <template #bodyCell="{ column,record }">
  169. <template v-if="column.dataIndex === 'oil'">
  170. <div style="height:25px">
  171. <ChartCell :timeType="('month')" :dataType="('oil')" :wellId="record.well_id"></ChartCell>
  172. </div>
  173. </template>
  174. <template v-if="column.dataIndex === 'gas'">
  175. <div style="height:25px">
  176. <ChartCell :timeType="('month')" :dataType="('gas')" :wellId="record.well_id"></ChartCell>
  177. </div>
  178. </template>
  179. <template v-if="column.dataIndex === 'water'">
  180. <div style="height:25px">
  181. <ChartCell :timeType="('month')" :dataType="('water')" :wellId="record.well_id"></ChartCell>
  182. </div>
  183. </template>
  184. <template v-if="column.key === 'well_common_name'">
  185. <a-button type="link" size="small" @click="detail(record.well_id)">{{
  186. record.well_common_name
  187. }}
  188. </a-button>
  189. </template>
  190. <template v-if="column.key === 'operation'">
  191. <a-button type="link" size="small" @click="showDoc(record.well_id)">相关文档</a-button>
  192. </template>
  193. </template>
  194. </a-table>
  195. </div>
  196. <div class="query-index-table" v-else>
  197. <a-row :gutter="[24,8]">
  198. <a-col :span="colspan" v-for="item in data">
  199. <a-card :title="'井名:'+item.well_common_name" class="ant-card-index" bodyStyle="padding: 10px;">
  200. <template #extra>
  201. <a-button type="link" @click="detail(item.well_id)">查看详情</a-button>
  202. <a-button type="link" @click="showDoc(item.well_id)">相关文档</a-button>
  203. </template>
  204. <table class="well-card-table">
  205. <tr>
  206. <th>井型:</th>
  207. <td>{{ item.well_type }}</td>
  208. <th>状态:</th>
  209. <td>{{ item.current_state_name }}</td>
  210. </tr>
  211. <tr>
  212. <th>开钻日期:</th>
  213. <td>{{ item.spud_date }}</td>
  214. <th>含水率:</th>
  215. <td><span style="padding:2px 10px;" :class="getTdColor( item.water_cut)">{{ item.water_cut }}</span>
  216. </td>
  217. </tr>
  218. <tr>
  219. <th>开始采油日期:</th>
  220. <td>{{ item.oil_prod_begin_date }}</td>
  221. <th>最近采油日期:</th>
  222. <td>{{ item.oil_prod_recent_date }}</td>
  223. </tr>
  224. <tr v-if="showColumnType.includes('oil')">
  225. <th>最近月产油量:</th>
  226. <td>
  227. {{ item.oil_prod_mon == null ? "" : (item.oil_prod_mon + "t") }}
  228. </td>
  229. <td colspan="2" rowspan="2">
  230. <div style="height:25px">
  231. <ChartCell :timeType="('month')" :dataType="('oil')" :wellId="item.well_id"
  232. :lineColor="('#E63038')"></ChartCell>
  233. </div>
  234. </td>
  235. </tr>
  236. <tr v-if="showColumnType.includes('oil')">
  237. <th>累产油量:</th>
  238. <td>
  239. {{ item.oil_prod_year == null ? "" : (item.oil_prod_year + "t") }}
  240. </td>
  241. </tr>
  242. <tr v-if="showColumnType.includes('gas')">
  243. <th>最近月产气量:</th>
  244. <td>
  245. {{ item.gas_prod_mon == null ? "" : (item.gas_prod_mon + "m³") }}
  246. </td>
  247. <td colspan="2" rowspan="2">
  248. <div style="height:25px">
  249. <ChartCell :timeType="('month')" :dataType="('gas')" :wellId="item.well_id"></ChartCell>
  250. </div>
  251. </td>
  252. </tr>
  253. <tr v-if="showColumnType.includes('gas')">
  254. <th>累产气量:</th>
  255. <td>
  256. {{ item.gas_prod_year == null ? "" : (item.gas_prod_year + "m³") }}
  257. </td>
  258. </tr>
  259. <tr v-if="showColumnType.includes('water')">
  260. <th>最近注水量:</th>
  261. <td>
  262. {{ item.water_prod_mon == null ? "" : (item.water_prod_mon + "t") }}
  263. </td>
  264. <td colspan="2" rowspan="2">
  265. <div style="height:25px">
  266. <ChartCell :timeType="('month')" :dataType="('water')" :wellId="item.well_id"></ChartCell>
  267. </div>
  268. </td>
  269. </tr>
  270. <tr v-if="showColumnType.includes('water')">
  271. <th>累注水量:</th>
  272. <td>
  273. {{ item.water_prod_year == null ? "" : (item.water_prod_year + "10kt") }}
  274. </td>
  275. </tr>
  276. </table>
  277. </a-card>
  278. </a-col>
  279. </a-row>
  280. </div>
  281. <a-pagination :page-size-options="pagination.pageSizeOptions" show-size-changer
  282. v-model:current="pagination.current" :total="pagination.total"
  283. style="float: right;margin-top: 10px;"
  284. :pageSize="pagination.pageSize" :show-total="total => `共 ${total} 条`"
  285. @change="(current)=>handleTableChange({ current: current,pageSize: pagination.pageSize })"
  286. @showSizeChange="(current,pageSize)=>handleTableChange({ current: current,pageSize: pageSize })"/>
  287. </a-spin>
  288. <div style="width:100%;height: 500px;margin-top:15px">
  289. <ChartMap :datas="data"></ChartMap>
  290. </div>
  291. </div>
  292. <a-modal v-model:visible="isShowDoc" title="相关文档" :footer="null" @onCancel="isShowDoc=false">
  293. <a-input-search
  294. v-model:value="docKey"
  295. placeholder="查找文档" allow-clear
  296. />
  297. <div style="max-height:300px;overflow-y:scroll;margin-top:10px;">
  298. <a-list item-layout="horizontal" :data-source="docList">
  299. <template #renderItem="{ item }">
  300. <a-list-item v-if="item.file_name.indexOf(docKey)>-1||docKey==''">
  301. <template #actions>
  302. <filePreview :fileName="item.file_name" :filePath="item.storage_path"></filePreview>
  303. <a-button type="link" @click="downFile(item)" functioncode="T010502" danger>下载</a-button>
  304. </template>
  305. <a-list-item-meta
  306. :description="item.file_business_type">
  307. <template #title>
  308. {{ item.file_name }}
  309. </template>
  310. <template #avatar>
  311. <img src="~@/assets/images/file.png"/>
  312. </template>
  313. </a-list-item-meta>
  314. </a-list-item>
  315. </template>
  316. </a-list>
  317. </div>
  318. </a-modal>
  319. </div>
  320. </template>
  321. <script lang="ts">
  322. import {ref, defineComponent, computed, watch} from 'vue';
  323. import type {FormInstance} from 'ant-design-vue';
  324. import {useRoute} from 'vue-router';
  325. import { get,postData} from "@/api/common";
  326. import {getPaginationTotalTitle} from "@/utils/common";
  327. import { message } from 'ant-design-vue';
  328. import type {TableProps} from "ant-design-vue";
  329. import {useTabsViewStore} from "@/store/modules/tabsView";
  330. import ChartCell from '@/components/basic/chart/chart-cell.vue'
  331. import ChartMap from '@/components/basic/chart/chart-map.vue'
  332. import {download} from "@/utils/downloadFile";
  333. import {columns, filterColumns, formState, getTdColor} from './table'
  334. import filePreview from '@/components/basic/file-preview/index.vue'
  335. export default defineComponent({
  336. name: 'wellinfoindex',
  337. components: {ChartCell, ChartMap, filePreview},
  338. setup() {
  339. const route = useRoute();
  340. const expand = ref(false);
  341. const formRef = ref<FormInstance>();
  342. const loading = ref(false);
  343. const showQuery = ref(false);
  344. const selectedRowKeys = ref([]);
  345. const activeTab = ref("1");
  346. const colspan = ref(8);
  347. const showTree = ref(true);
  348. const isShowDoc = ref(false);
  349. const showColumnType = ref(['oil', 'gas', 'water']);
  350. const data = ref([{children: [], label: '', value: ''}]);
  351. const viewModel = ref("list");
  352. const tabsViewStore = useTabsViewStore();
  353. const docKey = ref('');
  354. const docList = ref([]);
  355. const wellTypeList = ref([{label: "直井", value: "直井"}, {label: "定向井", value: "定向井"}, {label: "分支井",value: "分支井"}]);
  356. const wellPurposeList = ref([{label: "探井", value: "探井"}, {label: "开发井", value: "开发井"}, {label: "水井",value: "水井"}]);
  357. const replaceFields = {
  358. children: 'children',
  359. title: 'label',
  360. key: 'value',
  361. };
  362. const downFile = (record: any) => {
  363. download(record.file_business_type, record.file_name);
  364. };
  365. const resetFields = function () {
  366. let keys: string[] = Object.keys(formState);
  367. keys.forEach(key => {
  368. if (typeof (formState[key]) == "string") {
  369. formState[key] = '';
  370. }else if(typeof (formState[key]) == "object"){
  371. formState[key] = [];
  372. }
  373. })
  374. }
  375. filterColumns.value = [...columns];
  376. watch(
  377. () => showColumnType.value,
  378. () => {
  379. const filterValue = columns.filter((item: any) => {
  380. if (!showColumnType.value.includes("oil")) {
  381. if (["oil_prod_mon", "oil_prod_year", "oil"].includes(item.dataIndex)) {
  382. return false
  383. }
  384. }
  385. if (!showColumnType.value.includes("gas")) {
  386. if (["gas_prod_mon", "gas_prod_year", "gas"].includes(item.dataIndex)) {
  387. return false
  388. }
  389. }
  390. if (!showColumnType.value.includes("water")) {
  391. if (["water_prod_mon", "water_prod_year", "water"].includes(item.dataIndex)) {
  392. return false
  393. }
  394. }
  395. return true
  396. })
  397. filterColumns.value = [...filterValue];
  398. }
  399. );
  400. const preCheckValues = ref(Object.assign(showColumnType.value));
  401. const onCheckboxChange = (checkValues: []) => {
  402. setTimeout(() => {
  403. let tbody = document.getElementsByClassName("ant-table-body")[0];
  404. if (tbody) {
  405. tbody.scrollLeft = preCheckValues.value.length > checkValues.length ? 0 : tbody.scrollWidth;
  406. }
  407. preCheckValues.value = checkValues;
  408. }, 300)
  409. }
  410. const onSelectChange = (keys: any) => {
  411. selectedRowKeys.value = keys;
  412. };
  413. const pagination = computed(() => ({
  414. total: formState.total,
  415. current: formState.page,
  416. pageSize: formState.rows,
  417. showSizeChanger: true,
  418. pageSizeOptions: viewModel.value == "list" ? ['10', '20', '30', '40', '50'] : ['12', '24', '36', '48', '60'],
  419. showTotal: total => getPaginationTotalTitle(total)
  420. }));
  421. watch(() => viewModel.value,
  422. () => {
  423. pagination.value.current = 1;
  424. formState.page = 1;
  425. if (viewModel.value == "list") {
  426. formState.rows = 10;
  427. pagination.value.pageSize = 10;
  428. } else {
  429. formState.rows = 12;
  430. pagination.value.pageSize = 12;
  431. }
  432. loadData();
  433. });
  434. const loadData = async function () {
  435. loading.value = true;
  436. const result: any = await postData('wellInfo/getList',formState);
  437. data.value = result.list;
  438. formState.total = result.total;
  439. loading.value = false;
  440. }
  441. const handleTableChange: TableProps['onChange'] = (
  442. pag: { pageSize: number; current: number },
  443. ) => {
  444. formState.page = pag.current;
  445. formState.rows = pag.pageSize;
  446. loadData();
  447. };
  448. const onRangeChange = (dateString, begin, end) => {
  449. formState[begin] = dateString ? dateString[0].format("YYYY-MM-DD") : '';
  450. formState[end] = dateString ? dateString[1].format("YYYY-MM-DD") : '';
  451. };
  452. const tabChange = (key) => {
  453. console.log("tabChange", key);
  454. if (key == "2") {
  455. formState.org_id_a1 = '';
  456. subjectTrees.value.data = Object.assign(subjectTrees.value.constructUnitTree);
  457. } else {
  458. formState.project_id = ''
  459. subjectTrees.value.data = Object.assign(subjectTrees.value.organizationTree);
  460. }
  461. loadData();
  462. getSubjectTree();
  463. }
  464. const detail = (well_id) => {
  465. tabsViewStore.addTabByPath('/wellinfo/detail', {id: well_id});
  466. }
  467. const onQuery = () => {
  468. loadData();
  469. }
  470. const treeRef = ref();
  471. const subjectTrees = ref({
  472. data: [],
  473. organizationTree: [],
  474. constructUnitTree: [],
  475. expandedKeys: [''],
  476. selectedKeys: [''],
  477. autoExpandParent: true,
  478. searchStr: ''
  479. });
  480. const getSubjectData = async function () {
  481. get('wellInfo/getOrganizationTree', {tabName: subjectTrees.value.searchStr}).then(data => {
  482. subjectTrees.value.organizationTree = data;
  483. subjectTrees.value.data = Object.assign(data);
  484. getSubjectTree();
  485. });
  486. get('wellInfo/getConstructUnitTree', {tabName: subjectTrees.value.searchStr}).then(data => {
  487. subjectTrees.value.constructUnitTree = data;
  488. });
  489. }
  490. const getSubjectTree = async function () {
  491. //计算第一个展开节点
  492. subjectTrees.value.expandedKeys = [];
  493. if (subjectTrees.value.data && subjectTrees.value.data.length > 0) {
  494. subjectTrees.value.expandedKeys.push((subjectTrees.value.data[0] as any).value + "");
  495. }
  496. generateList(subjectTrees.value.data);
  497. }
  498. getSubjectData();
  499. const searchTree = () => {
  500. if (subjectTrees.value.searchStr == "") {
  501. return;
  502. }
  503. const expanded = dataList
  504. .map((item: any) => {
  505. if (item.label != null && item.label.indexOf(subjectTrees.value.searchStr) > -1) {
  506. return getParentKey(item.value as string, subjectTrees.value.data);
  507. }
  508. return null;
  509. })
  510. .filter((item, i, self) => item && self.indexOf(item) === i);
  511. if (expanded.length==0) {
  512. message.warning('没有查询到相关目录');
  513. }
  514. subjectTrees.value.expandedKeys = expanded as string[];
  515. subjectTrees.value.autoExpandParent = true;
  516. // (treeRef.value as any).scrollTo({key:expanded[0]});
  517. }
  518. const dataList: any[] = [];
  519. const generateList = (data: any[]) => {
  520. for (let i = 0; i < data.length; i++) {
  521. const node = data[i];
  522. const label = node.label;
  523. dataList.push({value: node.value, label: label as string});
  524. if (node.children) {
  525. generateList(node.children);
  526. }
  527. }
  528. };
  529. const getParentKey = (key: string, tree: any[]): string | number | undefined => {
  530. let parentKey;
  531. for (let i = 0; i < tree.length; i++) {
  532. const node = tree[i];
  533. if (node.children) {
  534. if (node.children.some(item => item.value === key)) {
  535. parentKey = node.value;
  536. } else if (getParentKey(key, node.children)) {
  537. parentKey = getParentKey(key, node.children);
  538. }
  539. }
  540. }
  541. return parentKey;
  542. };
  543. const treeOnExpand = function (keys: string[]) {
  544. subjectTrees.value.expandedKeys = keys;
  545. subjectTrees.value.autoExpandParent = false;
  546. }
  547. const treeOnSelect = function (selected, selectedNodes, node) {
  548. console.log(selected, selectedNodes, node);
  549. if (selectedNodes.node.parent != undefined || activeTab.value == "1") {
  550. if (activeTab.value == "1") {
  551. formState.org_id_a1 = selected.length > 0 ? selectedNodes.node.key : '';
  552. } else {
  553. formState.project_id = selected.length > 0 ? selectedNodes.node.key : '';
  554. }
  555. loadData();
  556. }
  557. }
  558. const showDoc = (id) => {
  559. get('wellInfo/getWellDocumentList', {wellId: id}).then(data => {
  560. docList.value = data;
  561. isShowDoc.value = true;
  562. })
  563. };
  564. const labelCol = {style: {width: '100px'}};
  565. return {
  566. route, selectedRowKeys, loading, activeTab, showTree, onSelectChange, data,
  567. expand, onQuery, loadData, onRangeChange, showQuery, wellTypeList,wellPurposeList, replaceFields,
  568. formRef, viewModel, handleTableChange, detail,
  569. formState, isShowDoc, showDoc, docKey, docList, resetFields, showColumnType, filterColumns,
  570. labelCol, getTdColor, downFile,
  571. tabChange, onCheckboxChange, treeRef, colspan,
  572. treeOnExpand,
  573. subjectTrees,
  574. getSubjectTree, searchTree,
  575. treeOnSelect, pagination,
  576. };
  577. },
  578. created
  579. () {
  580. this.loadData();
  581. }
  582. ,
  583. activated() {
  584. }
  585. });
  586. </script>
  587. <style lang="less">
  588. .query-index {
  589. display: flex;
  590. flex-direction: row;
  591. min-height: 100%;
  592. background-color: white;
  593. }
  594. .query-index-tree {
  595. min-width: 260px;
  596. max-width: 360px;
  597. border-right: 2px solid #f2f2f2;
  598. margin-right: 5px;
  599. }
  600. .query-index-close {
  601. width: 15px;
  602. padding-top: 10px;
  603. padding-left: 10px;
  604. }
  605. .query-index-content {
  606. flex-grow: 1;
  607. display: flex;
  608. flex-direction: column;
  609. width: 80%;
  610. }
  611. .query-index-form {
  612. padding: 15px 10px 10px 15px;
  613. }
  614. .query-index-table {
  615. flex-grow: 1;
  616. display: flex;
  617. .ant-row {
  618. width: 100%;
  619. }
  620. }
  621. .query-index-tabs {
  622. margin-left: 10px;
  623. margin-right: 10px;
  624. height: 100%;
  625. flex: 1;
  626. }
  627. .tabs-view-content {
  628. padding: 0px;
  629. }
  630. .query-index-tree-item {
  631. white-space: nowrap; /*强制span不换行*/
  632. display: inline-block; /*将span当做块级元素对待*/
  633. text-overflow: ellipsis; /*超出部分以点号代替*/
  634. }
  635. .query-index-tree-search {
  636. padding: 5px;
  637. border-bottom: 2px solid #f2f2f2;
  638. display: flex;
  639. align-items: center;
  640. }
  641. .query-index-tree-box {
  642. padding: 5px;
  643. padding-top: 10px;
  644. overflow-y: scroll;
  645. max-height: 1000px;
  646. }
  647. .col-text {
  648. padding-right: 0px !important;
  649. text-align: right;
  650. font-weight: bold;
  651. }
  652. .col-content {
  653. width: 200px;
  654. overflow: hidden;
  655. text-overflow: ellipsis;
  656. white-space: nowrap;
  657. }
  658. .ant-card-body {
  659. padding: 10px;
  660. }
  661. .well-card-table {
  662. width: 100%;
  663. th {
  664. width: 25%;
  665. text-align: left;
  666. font-size: 12px;
  667. }
  668. td {
  669. width: 25%;
  670. text-align: left;
  671. font-size: 12px;
  672. }
  673. }
  674. .ant-card-index {
  675. .ant-card-head-title {
  676. font-weight: bold;
  677. color: #1f37dd;
  678. }
  679. .ant-card-head {
  680. padding: 0px 10px;
  681. height: 35px;
  682. background-color: #F9FCFF;
  683. }
  684. .ant-card-head-wrapper {
  685. height: 35px;
  686. margin-top: 5px;
  687. }
  688. }
  689. .ant-card-index:hover {
  690. box-shadow: 3px 2px 10px #999;
  691. opacity: 0.8;
  692. }
  693. .color_level1, .ant-table-tbody > tr > td.color_level1:hover {
  694. }
  695. .color_level2, .ant-table-tbody > tr > td.color_level2:hover {
  696. background-color: #EAF4FF !important;
  697. }
  698. .color_level3, .ant-table-tbody > tr > td.color_level3:hover {
  699. background-color: #D5EAFF !important;
  700. }
  701. .color_level4, .ant-table-tbody > tr > td.color_level4:hover {
  702. background-color: #B7DBFF !important;
  703. }
  704. </style>