index.vue 26 KB

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