Browse Source

no message

aXin-0810 10 months ago
parent
commit
46eda69e63

+ 8 - 0
src/api/bankBalanceInquiry.js

@@ -0,0 +1,8 @@
+import request, { postBlob, getBlob, handleImport } from '@/utils/request'
+export function dailyBankCompanyAccountList(data) {
+  return request({
+    url: `/daily/bank/transfer/list?moduleId=${data.moduleId}`,
+    method: 'post',
+    data
+  })
+}

+ 62 - 0
src/views/engineerFeeSettlement/dailyMaintenanceBalance/bankBalanceInquiry/index.vue

@@ -0,0 +1,62 @@
+<template>
+  <template-page
+    ref="pageRef"
+    :get-list="getList"
+    :table-attributes="tableAttributes"
+    :table-events="tableEvents"
+    :options-evens-group="optionsEvensGroup"
+    :moreParameters="moreParameters"
+    :column-parsing="columnParsing"
+  >
+  </template-page>
+</template>
+
+<script>
+import TemplatePage from '@/components/template/template-page-1.vue'
+import import_mixin from '@/components/template/import_mixin.js'
+import ImageUpload from '@/components/file-upload'
+import operation_mixin from '@/components/template/operation_mixin.js'
+import { dailyBankCompanyAccountList } from '@/api/bankBalanceInquiry'
+export default {
+  components: { TemplatePage, ImageUpload },
+  mixins: [import_mixin, operation_mixin],
+  data() {
+    return {
+      // 表格属性
+      tableAttributes: {
+        // 启用勾选列
+        selectColumn: false
+      },
+      // 表格事件
+      tableEvents: {
+        'selection-change': this.selectionChange
+      },
+      // 勾选选中行
+      recordSelected: []
+    }
+  },
+  computed: {
+    // 更多参数
+    moreParameters() {
+      return []
+    },
+    optionsEvensGroup() {
+      return []
+    }
+  },
+  methods: {
+    // 列表请求函数
+    getList: dailyBankCompanyAccountList,
+    // 表格列解析渲染数据更改
+    columnParsing(item, defaultData) {
+      return defaultData
+    },
+    // 监听勾选变化
+    selectionChange(data) {
+      this.recordSelected = data
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped></style>