LAPTOP-FO2T5SIU\35838 vor 8 Monaten
Ursprung
Commit
e54fced2ee

+ 9 - 9
src/views/customerManagement/roomChose/roomIndex.vue

@@ -606,10 +606,10 @@ export default {
             _this.AllData = []
             _this.queryParam.pageNum = _this.currentPage
             _this.queryParam.pageSize = _this.pageSize
-            _this.queryParam.roomUse = _this.roomUse.join(',')
-            _this.queryParam.saleStatus = _this.saleStatus.join(',')
-            _this.queryParam.soldStatus = _this.soldStatus.join(',')
-            _this.queryParam.decorationSituation = _this.decorationSituation.join(',')
+            _this.queryParam.roomUseStr = _this.roomUse.join(',')
+            _this.queryParam.saleStatusStr = _this.saleStatus.join(',')
+            _this.queryParam.soldStatusStr = _this.soldStatus.join(',')
+            _this.queryParam.decorationSituationStr = _this.decorationSituation.join(',')
             this.OutData = []
             const title = ['单元/楼栋号', '所在层', '户室号', '套内面积', '建筑面积', '用途', '装修情况',
                 '可售状态', '已售状态']
@@ -675,11 +675,11 @@ export default {
             _this.AllData = []
             _this.queryParam.pageNum = _this.currentPage
             _this.queryParam.pageSize = _this.pageSize
-            _this.queryParam.roomUse = _this.roomUse.join(',')
-            _this.queryParam.saleStatus = _this.saleStatus.join(',')
-            _this.queryParam.soldStatus = _this.soldStatus.join(',')
-            _this.queryParam.chooseStatus = _this.chooseStatus.join(',')
-            _this.queryParam.decorationSituation = _this.decorationSituation.join(',')
+            _this.queryParam.roomUseStr = _this.roomUse.join(',')
+            _this.queryParam.saleStatusStr = _this.saleStatus.join(',')
+            _this.queryParam.soldStatusStr = _this.soldStatus.join(',')
+            _this.queryParam.chooseStatusStr = _this.chooseStatus.join(',')
+            _this.queryParam.decorationSituationStr = _this.decorationSituation.join(',')
 
             _this.baseRequest('listByModel', _this.queryParam).then((res) => {
                 if (res.data.rows) {

+ 8 - 8
src/views/parkAssets/parkRoom/index.vue

@@ -550,10 +550,10 @@ export default {
             _this.AllData = []
             _this.queryParam.pageNum = _this.currentPage
             _this.queryParam.pageSize = _this.pageSize
-            _this.queryParam.roomUse = _this.roomUse.join(',')
-            _this.queryParam.saleStatus = _this.saleStatus.join(',')
-            _this.queryParam.soldStatus = _this.soldStatus.join(',')
-            _this.queryParam.decorationSituation = _this.decorationSituation.join(',')
+            _this.queryParam.roomUseStr = _this.roomUse.join(',')
+            _this.queryParam.saleStatusStr = _this.saleStatus.join(',')
+            _this.queryParam.soldStatusStr = _this.soldStatus.join(',')
+            _this.queryParam.decorationSituationStr = _this.decorationSituation.join(',')
             this.OutData = []
             const title = ['单元/楼栋号', '所在层', '户室号', '套内面积', '建筑面积', '用途', '装修情况',
                 '可售状态', '已售状态']
@@ -614,10 +614,10 @@ export default {
             _this.AllData = []
             _this.queryParam.pageNum = _this.currentPage
             _this.queryParam.pageSize = _this.pageSize
-            _this.queryParam.roomUse = _this.roomUse.join(',')
-            _this.queryParam.saleStatus = _this.saleStatus.join(',')
-            _this.queryParam.soldStatus = _this.soldStatus.join(',')
-            _this.queryParam.decorationSituation = _this.decorationSituation.join(',')
+            _this.queryParam.roomUseStr = _this.roomUse.join(',')
+            _this.queryParam.saleStatusStr = _this.saleStatus.join(',')
+            _this.queryParam.soldStatusStr = _this.soldStatus.join(',')
+            _this.queryParam.decorationSituationStr = _this.decorationSituation.join(',')
 
             _this.baseRequest('listByModel', _this.queryParam).then((res) => {
                 if (res.data.rows) {

+ 2 - 1
src/views/receiveRefundsManagement/paymentManagement/addPayment.vue

@@ -199,7 +199,8 @@ export default {
 
             this.getBankOptions()
             this.initDict(this.dc_key).then(res => {
-                this.contentTypeOption = this.dc_data.CONTENT_TYPE.filter(item => item.label !== '定金' && item.label !== '专项维修资金')
+                this.contentTypeOption = this.dc_data.CONTENT_TYPE.filter(item => item.label !== '定金' &&
+                    item.label !== '专项维修资金' && item.label !== '意向金')
                 if (data.id) {
                     this.getById(data)
                 } else {

+ 339 - 0
src/views/transactionRecord/collectionRecordIndex.vue

@@ -0,0 +1,339 @@
+<template>
+  <div class="newIndexDiv">
+    <el-row class="handle-box" style="margin-bottom: 10px">
+      <el-col :span="2">
+        <span>分期</span>
+      </el-col>
+      <el-col :span="6">
+        <el-cascader
+          v-model="search.findids"
+          :append-to-body="false"
+          :options="options"
+          clearable
+          :props="{ multiple: true}"
+          @change="handleChange"
+        />
+      </el-col>
+      <el-col :span="2">
+        <span>收款日期</span>
+      </el-col>
+      <el-col :span="4">
+        <el-date-picker
+          v-model="search.collectionDateFrom"
+          popper-class="statistic_base"
+          type="date"
+          placeholder="年月日"
+          value-format="yyyy-MM-dd"
+          style="width: 100%"
+        />
+      </el-col>
+      <el-col :span="2">
+        <div style="text-align: center"><span>至</span></div>
+      </el-col>
+      <el-col :span="4">
+        <el-date-picker
+          v-model="search.collectionDateTo"
+          popper-class="statistic_base"
+          type="date"
+          placeholder="年月日"
+          value-format="yyyy-MM-dd"
+          style="width: 100%"
+        />
+      </el-col>
+    </el-row>
+    <el-row class="handle-box" style="margin-bottom: 10px">
+      <el-col :span="2">
+        <span>姓名</span>
+      </el-col>
+      <el-col :span="4">
+        <el-input v-model="search.buyerName" />
+      </el-col>
+      <el-col :span="2">
+        <span>&nbsp;</span>
+      </el-col>
+      <el-col :span="2">
+        <span>收款类型</span>
+      </el-col>
+      <el-col :span="4">
+        <el-select
+          v-model="search.contentType"
+          style="width: 100%"
+          clearable
+          filterable
+          placeholder="收款类型"
+          :popper-append-to-body="false"
+          popper-class="statistic_base"
+          @change="handleSearch"
+        >
+          <el-option
+            v-for="item in dc_data.CONTENT_TYPE"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value"
+            :popper-append-to-body="false"
+            popper-class="statistic_base"
+          />
+        </el-select>
+      </el-col>
+      <el-col :span="2">
+        <div style="text-align: center"><span>收款方式</span></div>
+      </el-col>
+      <el-col :span="4">
+        <el-select
+          v-model="search.paymentMethod"
+          style="width: 100%"
+          clearable
+          filterable
+          placeholder="收款类型"
+          :popper-append-to-body="false"
+          popper-class="statistic_base"
+          @change="handleSearch"
+        >
+          <el-option
+            v-for="item in dc_data.COLLECTION_METHODS"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value"
+            :popper-append-to-body="false"
+            popper-class="statistic_base"
+          />
+        </el-select>
+      </el-col>
+    </el-row>
+    <el-row class="handle-box" style="margin-bottom: 10px">
+      <el-col :span="24" style="margin-top: 20px">
+        <el-button size="small" class="ch-button-export" style="float: right" @click="handleExcel"><i class="el-icon-menu" />&nbsp;导出EXCEL</el-button>
+
+        <el-button class="ch-button-warning" size="small" style="float: right" @click="handleReset()"><i class="el-icon-search" />&nbsp;重置</el-button>
+        <el-button class="ch-button" size="small" style="float: right" @click="handleSearch()"><i class="el-icon-search" />&nbsp;查询</el-button>
+      </el-col>
+    </el-row>
+    <el-row class="handle-box">
+      <el-col :span="24">
+        <el-table
+          ref="myTable"
+          v-loading="loading"
+          :data="AllData"
+          row-class-name="g_table_row"
+          border
+          :header-cell-style="{background:'#f2f2f2'}"
+          @selection-change="handleSelectionChange"
+        >
+          <el-table-column type="index" width="60" />
+          <el-table-column label="房屋" prop="" />
+          <el-table-column label="流水号" prop="serialNumber" />
+          <el-table-column label="买受人" prop="buyerName" width="200" />
+          <el-table-column label="金额(元)" prop="money" width="200" />
+          <el-table-column label="收款类型" prop="contentTypeStr" width="110" />
+          <el-table-column label="收款方式" prop="paymentMethodStr" />
+          <el-table-column label="收款账号" prop="" />
+          <el-table-column label="银行流水号" prop="bankSerialId" />
+          <el-table-column label="收款经办人" prop="createdName" />
+          <el-table-column label="NCC提交状态" prop="ncSubmitStatusStr" />
+          <el-table-column label="最近提交日期" prop="ncSubmitDate" />
+          <el-table-column label="NCC提交人" prop="ncSubmitName" />
+        </el-table>
+        <div class="table-page">
+          <el-pagination
+            :current-page.sync="currentPage"
+            :page-sizes="[10, 20, 50, 100]"
+            :page-size="pageSize"
+            background
+            layout="total, sizes, prev, pager, next, jumper"
+            :total="allpage"
+            @size-change="handleSizeChange"
+            @current-change="handleCurrentChange"
+          />
+        </div>
+      </el-col>
+    </el-row>
+
+  </div>
+</template>
+<script>
+import Base from '@/views/base/base'
+import BaseData from '@/views/base/baseData'
+
+export default {
+    name: 'CollectionRecordIndex',
+    components: { },
+    mixins: [Base, BaseData],
+    props: {
+        fromAddress: {
+            type: String,
+            default: ''
+        }
+    },
+    data() {
+        return {
+            dc_key: ['CONTENT_TYPE', 'COLLECTION_METHODS'],
+            // 列表相关
+            search: {
+            },
+            AllData: [],
+            loading: false,
+            // 弹框相关
+            dialogVisible: false,
+            dialogTitle: '新增',
+            selectedRows: [],
+            selectId: '',
+            options: []
+        }
+    },
+    mounted() {
+        this.getTreeSelectData()
+        this.initDict(this.dc_key).then((res) => {
+            this.getData()
+        })
+    },
+    methods: {
+        getTreeSelectData: function() {
+            this.baseInfoRequest('getTreeData3', {}).then((res) => {
+                this.options = res.data.data
+            }).catch(() => {
+            })
+        },
+        getData: function() {
+            const _this = this
+            _this.loading = true
+            _this.AllData = []
+            this.search.pageNum = this.currentPage
+            this.search.pageSize = this.pageSize
+            if (this.search.findids && this.search.findids.length > 0) {
+                const data = []
+                this.search.findids.forEach(item => {
+                    if (item[1]) {
+                        data.push(item[1])
+                    }
+                })
+                this.search.discIds = data.join(',')
+            }
+            this.baseRequest('collectionRecord', this.search).then((res) => {
+                if (res.data.rows) {
+                    res.data.rows.forEach(function(item) {
+                        const json = _this.getItemJson(item)
+                        _this.AllData.push(json)
+                    })
+                    _this.allpage = res.data.total
+                }
+                _this.loading = false
+            }).catch((e) => {
+                // console.log(e)
+            })
+            // this.initOutData()
+        },
+        handleSearch: function() {
+            this.getData()
+        },
+        handleReset: function() {
+            for (const i in this.search) {
+                if (i !== 'pageNum' && i !== 'pageSize') {
+                    this.search[i] = ''
+                }
+            }
+            this.handleSearch()
+        },
+        getItemJson: function(item) {
+            item.contentTypeStr = this.dc_map.CONTENT_TYPE[item.contentType]
+            item.paymentMethodStr = this.dc_map.COLLECTION_METHODS[item.paymentMethod]
+            item.ncSubmitStatusStr = item.ncSubmitStatus == '1' ? '已提交' : '未提交'
+            return item
+        },
+        /* 编辑*/
+        handleEdit: function(val) {
+
+        },
+        handleView(val) {
+
+        },
+        handleChange() {
+
+        },
+        // 导出
+        handleExcel: function() {
+            const _this = this
+            _this.AllData = []
+            this.OutData = []
+            const title = ['单元/楼栋号', '所在层', '户室号', '套内面积', '建筑面积', '用途', '装修情况',
+                '可售状态', '已售状态']
+            this.OutData.push(title)
+            const temp = []
+            this.baseRequest('collectionRecordExcelList', _this.search).then(res => {
+                const data = res.data
+                data.data.forEach(function(item) {
+                    const json = _this.getItemJson(item)
+                    temp.push(json)
+                })
+                temp.forEach(function(item) {
+                    const jsonArray = []
+                    jsonArray.push(item.buildName)
+                    jsonArray.push(item.floor)
+                    jsonArray.push(item.roomNo)
+                    jsonArray.push(item.actualInternalArea)
+                    jsonArray.push(item.actualBuildArea)
+                    jsonArray.push(item.roomUse)
+                    jsonArray.push(item.decorationSituationStr)
+                    jsonArray.push(item.saleStatusStr)
+                    jsonArray.push(item.soldStatusStr)
+                    _this.OutData.push(jsonArray)
+                })
+                const OutSize = [{ wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 },
+                    { wch: 15 }, { wch: 15 }]
+                const fileName = '收款记录导出 ' + new Date().Format('yyyyMMddhhmm')
+                this.$outputXlsxFile(this.OutData, OutSize, fileName)
+            })
+        },
+        cancel: function() {
+            this.dialogVisible = false
+        },
+        baseRequest(opUrl, postData) {
+            return this.$channel.globeRequest('TransactionRecordController', opUrl, postData, 'project')
+        },
+        baseInfoRequest: function(opUrl, postData) {
+            return this.$channel.baseRequest('ParkInfoController', opUrl, postData, 'User')
+        }
+    }
+}
+</script>
+<style lang="scss">
+   .newIndexDiv{
+       .qyrqBox{
+           display: inline-flex;align-items: center;
+           .el-input{
+               width: 220px !important;
+           }
+       }
+
+   }
+</style>
+<style scoped>
+  .ch-input .el-input__inner {
+      border-color: #32323A;
+  }
+  .ch-input-size {
+      width: 150px;
+  }
+  .ch-button {
+      border-color: #32323A;
+      background-color: #32323A;
+      color: #fff;
+  }
+  .ch-button-warning {
+      margin-left: 10px;
+      border-color: #E6A23C;
+      background-color: #E6A23C;
+      color: #fff;
+  }
+  .ch-button-export {
+      margin-left: 10px;
+      border-color: #98CC1F;
+      background-color: #98CC1F;
+      color: #fff;
+  }
+  /deep/.el-dialog__header {
+      padding: 10px 20px;
+  }
+  /deep/.el-dialog__body {
+      padding: 10px 20px;
+  }
+</style>

+ 337 - 0
src/views/transactionRecord/refundRecordIndex.vue

@@ -0,0 +1,337 @@
+<template>
+  <div class="newIndexDiv">
+    <el-row class="handle-box" style="margin-bottom: 10px">
+      <el-col :span="2">
+        <span>分期</span>
+      </el-col>
+      <el-col :span="6">
+        <el-cascader
+          v-model="search.findids"
+          :append-to-body="false"
+          :options="options"
+          clearable
+          @change="handleChange"
+        />
+      </el-col>
+      <el-col :span="2">
+        <span>退款日期</span>
+      </el-col>
+      <el-col :span="4">
+        <el-date-picker
+          v-model="search.collectionDateFrom"
+          popper-class="statistic_base"
+          type="date"
+          placeholder="年月日"
+          value-format="yyyy-MM-dd"
+          style="width: 100%"
+        />
+      </el-col>
+      <el-col :span="2">
+        <div style="text-align: center"><span>至</span></div>
+      </el-col>
+      <el-col :span="4">
+        <el-date-picker
+          v-model="search.collectionDateTo"
+          popper-class="statistic_base"
+          type="date"
+          placeholder="年月日"
+          value-format="yyyy-MM-dd"
+          style="width: 100%"
+        />
+      </el-col>
+    </el-row>
+    <el-row class="handle-box" style="margin-bottom: 10px">
+      <el-col :span="2">
+        <span>姓名</span>
+      </el-col>
+      <el-col :span="4">
+        <el-input v-model="search.buyerName" />
+      </el-col>
+      <el-col :span="2">
+        <span>&nbsp;</span>
+      </el-col>
+      <el-col :span="2">
+        <span>退款类型</span>
+      </el-col>
+      <el-col :span="4">
+        <el-select
+          v-model="search.contentType"
+          style="width: 100%"
+          clearable
+          filterable
+          placeholder="收款类型"
+          :popper-append-to-body="false"
+          popper-class="statistic_base"
+          @change="handleSearch"
+        >
+          <el-option
+            v-for="item in dc_data.CONTENT_TYPE"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value"
+            :popper-append-to-body="false"
+            popper-class="statistic_base"
+          />
+        </el-select>
+      </el-col>
+      <el-col :span="2">
+        <div style="text-align: center"><span>退款方式</span></div>
+      </el-col>
+      <el-col :span="4">
+        <el-select
+          v-model="search.paymentMethod"
+          style="width: 100%"
+          clearable
+          filterable
+          placeholder="退款类型"
+          :popper-append-to-body="false"
+          popper-class="statistic_base"
+          @change="handleSearch"
+        >
+          <el-option
+            v-for="item in dc_data.COLLECTION_METHODS"
+            :key="item.value"
+            :label="item.label"
+            :value="item.value"
+            :popper-append-to-body="false"
+            popper-class="statistic_base"
+          />
+        </el-select>
+      </el-col>
+    </el-row>
+    <el-row class="handle-box" style="margin-bottom: 10px">
+      <el-col :span="24" style="margin-top: 20px">
+        <el-button size="small" class="ch-button-export" style="float: right" @click="handleExcel"><i class="el-icon-menu" />&nbsp;导出EXCEL</el-button>
+        <el-button class="ch-button-warning" size="small" style="float: right" @click="handleReset()"><i class="el-icon-search" />&nbsp;重置</el-button>
+        <el-button class="ch-button" size="small" style="float: right" @click="handleSearch()"><i class="el-icon-search" />&nbsp;查询</el-button>
+      </el-col>
+    </el-row>
+    <el-row class="handle-box">
+      <el-col :span="24">
+        <el-table
+          ref="myTable"
+          v-loading="loading"
+          :data="AllData"
+          row-class-name="g_table_row"
+          border
+          :header-cell-style="{background:'#f2f2f2'}"
+          @selection-change="handleSelectionChange"
+        >
+          <el-table-column type="index" width="60" />
+          <el-table-column label="房屋" prop="" />
+          <el-table-column label="流水号" prop="serialNumber" />
+          <el-table-column label="买受人" prop="buyerName" width="200" />
+          <el-table-column label="金额(元)" prop="money" width="200" />
+          <el-table-column label="收款类型" prop="contentTypeStr" width="110" />
+          <el-table-column label="收款方式" prop="paymentMethodStr" />
+          <el-table-column label="收款账号" prop="" />
+          <el-table-column label="银行流水号" prop="bankSerialId" />
+          <el-table-column label="收款经办人" prop="createdName" />
+          <el-table-column label="NCC提交状态" prop="ncSubmitStatusStr" />
+          <el-table-column label="最近提交日期" prop="ncSubmitDate" />
+          <el-table-column label="NCC提交人" prop="ncSubmitName" />
+        </el-table>
+        <div class="table-page">
+          <el-pagination
+            :current-page.sync="currentPage"
+            :page-sizes="[10, 20, 50, 100]"
+            :page-size="pageSize"
+            background
+            layout="total, sizes, prev, pager, next, jumper"
+            :total="allpage"
+            @size-change="handleSizeChange"
+            @current-change="handleCurrentChange"
+          />
+        </div>
+      </el-col>
+    </el-row>
+
+  </div>
+</template>
+<script>
+import Base from '@/views/base/base'
+import BaseData from '@/views/base/baseData'
+
+export default {
+    name: 'RefundRecordIndexVue',
+    components: { },
+    mixins: [Base, BaseData],
+    props: {
+        fromAddress: {
+            type: String,
+            default: ''
+        }
+    },
+    data() {
+        return {
+            dc_key: ['CONTENT_TYPE', 'COLLECTION_METHODS'],
+            // 列表相关
+            search: {
+            },
+            AllData: [],
+            loading: false,
+            // 弹框相关
+            dialogVisible: false,
+            dialogTitle: '新增',
+            selectedRows: [],
+            selectId: '',
+            options: []
+        }
+    },
+    mounted() {
+        this.getTreeSelectData()
+        this.initDict(this.dc_key).then((res) => {
+            this.getData()
+        })
+    },
+    methods: {
+        getTreeSelectData: function() {
+            this.baseInfoRequest('getTreeData3', {}).then((res) => {
+                this.options = res.data.data
+            }).catch(() => {
+            })
+        },
+        getData: function() {
+            const _this = this
+            _this.loading = true
+            _this.AllData = []
+            this.search.pageNum = this.currentPage
+            this.search.pageSize = this.pageSize
+            if (this.search.findids && this.search.findids.length > 0) {
+                const data = []
+                this.search.findids.forEach(item => {
+                    if (item[1]) {
+                        data.push(item[1])
+                    }
+                })
+                this.search.discIds = data.join(',')
+            }
+            this.baseRequest('collectionRecord', this.search).then((res) => {
+                if (res.data.rows) {
+                    res.data.rows.forEach(function(item) {
+                        const json = _this.getItemJson(item)
+                        _this.AllData.push(json)
+                    })
+                    _this.allpage = res.data.total
+                }
+                _this.loading = false
+            }).catch((e) => {
+                // console.log(e)
+            })
+            // this.initOutData()
+        },
+        handleSearch: function() {
+            this.getData()
+        },
+        handleReset: function() {
+            for (const i in this.search) {
+                if (i !== 'pageNum' && i !== 'pageSize') {
+                    this.search[i] = ''
+                }
+            }
+            this.handleSearch()
+        },
+        getItemJson: function(item) {
+            item.contentTypeStr = this.dc_map.CONTENT_TYPE[item.contentType]
+            item.paymentMethodStr = this.dc_map.COLLECTION_METHODS[item.paymentMethod]
+            item.ncSubmitStatusStr = item.ncSubmitStatus == '1' ? '已提交' : '未提交'
+            return item
+        },
+        /* 编辑*/
+        handleEdit: function(val) {
+
+        },
+        handleView(val) {
+
+        },
+        handleChange() {
+
+        },
+        // 导出
+        handleExcel: function() {
+            const _this = this
+            _this.AllData = []
+            this.OutData = []
+            const title = ['单元/楼栋号', '所在层', '户室号', '套内面积', '建筑面积', '用途', '装修情况',
+                '可售状态', '已售状态']
+            this.OutData.push(title)
+            const temp = []
+            this.baseRequest('collectionRecordExcelList', _this.search).then(res => {
+                const data = res.data
+                data.data.forEach(function(item) {
+                    const json = _this.getItemJson(item)
+                    temp.push(json)
+                })
+                temp.forEach(function(item) {
+                    const jsonArray = []
+                    jsonArray.push(item.buildName)
+                    jsonArray.push(item.floor)
+                    jsonArray.push(item.roomNo)
+                    jsonArray.push(item.actualInternalArea)
+                    jsonArray.push(item.actualBuildArea)
+                    jsonArray.push(item.roomUse)
+                    jsonArray.push(item.decorationSituationStr)
+                    jsonArray.push(item.saleStatusStr)
+                    jsonArray.push(item.soldStatusStr)
+                    _this.OutData.push(jsonArray)
+                })
+                const OutSize = [{ wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 },
+                    { wch: 15 }, { wch: 15 }]
+                const fileName = '收款记录导出 ' + new Date().Format('yyyyMMddhhmm')
+                this.$outputXlsxFile(this.OutData, OutSize, fileName)
+            })
+        },
+        cancel: function() {
+            this.dialogVisible = false
+        },
+        baseRequest(opUrl, postData) {
+            return this.$channel.globeRequest('TransactionRecordController', opUrl, postData, 'project')
+        },
+        baseInfoRequest: function(opUrl, postData) {
+            return this.$channel.baseRequest('ParkInfoController', opUrl, postData, 'User')
+        }
+    }
+}
+</script>
+<style lang="scss">
+   .newIndexDiv{
+       .qyrqBox{
+           display: inline-flex;align-items: center;
+           .el-input{
+               width: 220px !important;
+           }
+       }
+
+   }
+</style>
+<style scoped>
+  .ch-input .el-input__inner {
+      border-color: #32323A;
+  }
+  .ch-input-size {
+      width: 150px;
+  }
+  .ch-button {
+      border-color: #32323A;
+      background-color: #32323A;
+      color: #fff;
+  }
+  .ch-button-warning {
+      margin-left: 10px;
+      border-color: #E6A23C;
+      background-color: #E6A23C;
+      color: #fff;
+  }
+  .ch-button-export {
+      margin-left: 10px;
+      border-color: #98CC1F;
+      background-color: #98CC1F;
+      color: #fff;
+  }
+  /deep/.el-dialog__header {
+      padding: 10px 20px;
+  }
+  /deep/.el-dialog__body {
+      padding: 10px 20px;
+  }
+</style>