test.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <div class="card-search">
  3. <a-divider orientation="left">历史搜索使用方式</a-divider>
  4. <a-form ref="formRef" name="advanced_search" class="ant-advanced-search-form"
  5. :model="formState"
  6. @finish="onFinish">
  7. <a-row :gutter="24">
  8. <a-col :span="12">
  9. <a-form-item
  10. name="keyString"
  11. label="关键字"
  12. :label-col="{span:3}">
  13. <!--AutoComplete继承至vue-->
  14. <QueryHistoryComplete ref="queryHistoryComplete" v-model:value="formState.keyString"></QueryHistoryComplete>
  15. </a-form-item>
  16. </a-col>
  17. <a-col :span="6" style="text-align: left">
  18. <a-button type="primary" html-type="submit" @click="onFinish">查询</a-button>
  19. </a-col>
  20. </a-row>
  21. </a-form>
  22. <a-divider orientation="left">热门搜索使用方式,实际应用改样式即可</a-divider>
  23. <div style="width: 600px;">
  24. <!--热门搜索历史使用示例,实际应用改样式即可-->
  25. <QueryHistoryList ref="queryHistoryList" :maxRows="20"></QueryHistoryList>
  26. </div>
  27. <a-divider orientation="left">列表单元格中显示简单的曲线图</a-divider>
  28. <div style="width:1000px;">
  29. <a-table :columns="columns" :data-source="data">
  30. <template #bodyCell="{ column, text }">
  31. <template v-if="column.dataIndex === 'chart'">
  32. <div style="height:40px">
  33. <!--列表单元格中显示曲线图,数据需要根据业务库整理-->
  34. <!--timeType day month year-->
  35. <!--dataType gas oil-->
  36. <ChartCell :timeType="('month')" :dataType="('oil')" :wellId="('吉45-144(A2)')" :lineColor="('#FF0000')"></ChartCell>
  37. </div>
  38. </template>
  39. </template>
  40. </a-table>
  41. </div>
  42. <a-divider orientation="left">Grid类型的图表</a-divider>
  43. <div style="width:1200px;">
  44. <ChartProdDynmics :wellId="('吉45-144(A2)')"></ChartProdDynmics>
  45. </div>
  46. <a-divider orientation="left">地图</a-divider>
  47. <div style="width:1000px;height: 400px">
  48. <ChartMap :wellId="('吉45-144(A2)')"></ChartMap>
  49. </div>
  50. </div>
  51. </template>
  52. <script lang="ts">
  53. import {ref,defineComponent,watch} from "vue";
  54. import { useRoute} from 'vue-router';
  55. import QueryHistoryList from '@/components/basic/querylog/history-list.vue'
  56. import QueryHistoryComplete from '@/components/basic/querylog/history-complete.vue'
  57. import ChartCell from '@/components/basic/chart/chart-cell.vue'
  58. import ChartProdDynmics from '@/components/basic/chart/chart-prod-dynamics.vue'
  59. import ChartMap from '@/components/basic/chart/chart-map.vue'
  60. export default defineComponent({
  61. name: 'QueryTest',
  62. components: {QueryHistoryList, QueryHistoryComplete, ChartCell, ChartProdDynmics, ChartMap},
  63. setup() {
  64. const route = useRoute();
  65. const queryHistoryComplete = ref<typeof QueryHistoryComplete>();
  66. const formState = ref({
  67. keyString: ""
  68. });
  69. console.log(route, formState);
  70. watch(formState.value, async (newQuestion) => {
  71. console.log("formState", newQuestion);
  72. })
  73. const onFinish = () => {
  74. //记录搜索关键字日志
  75. (queryHistoryComplete.value as any).saveHistory(formState.value.keyString);
  76. };
  77. const columns = [
  78. { title: 'Name', dataIndex: 'name', key: 'name', },
  79. { title: 'Age', dataIndex: 'age', key: 'age', width: 80, },
  80. { title: 'Address', dataIndex: 'address', key: 'address 1', ellipsis: true, },
  81. { title: 'Long Column Long Column Long Column', dataIndex: 'address', key: 'address 2', ellipsis: true},
  82. { title: 'ChartCell', dataIndex: 'chart', key: 'ChartCell', width:160}
  83. ];
  84. const data = [
  85. { key: '1', name: 'John Brown', age: 32, address: 'New York No. 1 Lake Park, New York No. 1 Lake Park', tags: ['nice', 'developer']},
  86. { key: '2', name: 'Jim Green', age: 42, address: 'London No. 2 Lake Park, London No. 2 Lake Park', tags: ['loser']},
  87. { key: '3', name: 'Joe Black', age: 32, address: 'Sidney No. 1 Lake Park, Sidney No. 1 Lake Park', tags: ['cool', 'teacher']},
  88. ];
  89. return {
  90. formState,
  91. onFinish,
  92. queryHistoryComplete,
  93. columns,
  94. data
  95. };
  96. }
  97. });
  98. </script>