Bladeren bron

Merge remote-tracking branch 'origin/master'

chenpm 6 maanden geleden
bovenliggende
commit
3a54928d68

+ 2 - 1
src/main.js

@@ -1,7 +1,7 @@
 import Vue from 'vue'
 import 'normalize.css/normalize.css' // A modern alternative to CSS resets
 import ElementUI from 'element-ui'
-import 'element-ui/lib/theme-chalk/index.css'
+
 import locale from 'element-ui/lib/locale/lang/zh-CN' // lang i18n zh-CN/en
 import '@/styles/index.scss' // global css
 import '@/styles/common.scss' // global css
@@ -32,6 +32,7 @@ import md5 from 'js-md5'
 import SearchBar from 'search-bar-vue2'
 // 引入第三方字体
 import '@/assets/css/font.css'
+import 'element-ui/lib/theme-chalk/index.css'
 // 弹窗拖动
 import elDragDialog from './dialog'
 

+ 8 - 4
src/views/customerManagement/numberManagement/addCustomer.vue

@@ -8,7 +8,7 @@
             <el-row>
               <el-col :span="3" class="col-txt"><span>小区-分期</span></el-col>
               <el-col :span="9" class="col-input">
-                <el-form-item>
+                <el-form-item prop="findids">
                   <el-cascader
                     ref="findids"
                     v-model="form.findids"
@@ -22,7 +22,7 @@
               </el-col>
               <el-col :span="3" class="col-txt"><span>选房日</span></el-col>
               <el-col :span="9" class="col-input">
-                <el-form-item prop="">
+                <el-form-item prop="roomSelectionDate">
                   <el-date-picker
                     v-model="form.roomSelectionDate"
                     popper-class="statistic_base"
@@ -36,13 +36,13 @@
             <el-row>
               <el-col :span="3" class="col-txt"><span>批次号</span></el-col>
               <el-col :span="9" class="col-input">
-                <el-form-item prop="companyId">
+                <el-form-item prop="batchNumber">
                   <el-input v-model="form.batchNumber" />
                 </el-form-item>
               </el-col>
               <el-col :span="3" class="col-txt"><span>选房号</span></el-col>
               <el-col :span="9" class="col-input">
-                <el-form-item prop="companyId">
+                <el-form-item prop="roomSelectionNumber">
                   <el-input v-model="form.roomSelectionNumber" />
                 </el-form-item>
               </el-col>
@@ -162,6 +162,10 @@ export default {
                 ]
             },
             rules: {
+                findids: [{ required: true, message: '请选择小区-分期', trigger: 'change' }],
+                roomSelectionDate: [{ required: true, message: '请输入选房日', trigger: 'change' }],
+                batchNumber: [{ required: true, message: '请输入批次号', trigger: 'blur' }],
+                roomSelectionNumber: [{ required: true, message: '请输入选房号', trigger: 'blur' }],
                 phone: [{ required: true, message: '请输入手机号', trigger: 'blur' }, {
                     validator: checkPhone, trigger: 'blur'
                 }],

+ 1 - 0
src/views/customerManagement/numberManagement/index.vue

@@ -99,6 +99,7 @@
               >修改
               </el-button>
               <el-button
+                v-if="scope.row.roomSelectionCount <= 0"
                 size="mini"
                 type="text"
                 :disabled="scope.row.statusStr === '已签约' || scope.row.statusStr === '已入驻' || scope.row.statusStr === '已退房' || scope.row.statusStr === '放弃资格'"

+ 1 - 0
src/views/customerManagement/roomChose/addHouse.vue

@@ -38,6 +38,7 @@
             <el-table-column label="操作" width="180">
               <template scope="scope">
                 <el-button
+                  :disabled="scope.row.status != '1'"
                   size="mini"
                   type="text"
                   @click="handleDelete(scope.$index)"

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

@@ -191,13 +191,13 @@
               <el-table-column label="可售状态" prop="saleStatusStr" />
               <el-table-column label="已售状态" prop="soldStatusStr" />
               <el-table-column label="选房状态" prop="isChooseStr" />
-              <el-table-column label="操作" header-align="center" width="250">
-                <template scope="scope">
-                  <!--                  <el-button size="mini" type="text" @click="handleEdit(scope.row)">编辑</el-button>-->
-                  <!--                  <el-button size="mini" type="text" @click="handleDelete(scope.row)">删除</el-button>-->
-                  <el-button size="mini" type="text" @click="handleView(scope.row)">查看</el-button>
-                </template>
-              </el-table-column>
+<!--              <el-table-column label="操作" header-align="center" width="250">-->
+<!--                <template scope="scope">-->
+<!--                  &lt;!&ndash;                  <el-button size="mini" type="text" @click="handleEdit(scope.row)">编辑</el-button>&ndash;&gt;-->
+<!--                  &lt;!&ndash;                  <el-button size="mini" type="text" @click="handleDelete(scope.row)">删除</el-button>&ndash;&gt;-->
+<!--                  <el-button size="mini" type="text" @click="handleView(scope.row)">查看</el-button>-->
+<!--                </template>-->
+<!--              </el-table-column>-->
             </el-table>
             <div class="table-page">
               <el-pagination

+ 14 - 13
src/views/invoice/components/addInvoice.vue

@@ -101,19 +101,20 @@
               <el-col :span="4" class="col-txt"><span>税率</span></el-col>
               <el-col :span="20" class="col-input">
                 <el-form-item prop="invoiceTax">
-                  <el-select
-                    v-model="form.invoiceTax"
-                    filterable
-                    placeholder="请选择"
-                    popper-class="statistic_base"
-                  >
-                    <el-option
-                      v-for="item in dc_data.invoice_tax"
-                      :key="item.value"
-                      :label="item.label"
-                      :value="item.value"
-                    />
-                  </el-select>
+                  <!--                  <el-select-->
+                  <!--                    v-model="form.invoiceTax"-->
+                  <!--                    filterable-->
+                  <!--                    placeholder="请选择"-->
+                  <!--                    popper-class="statistic_base"-->
+                  <!--                  >-->
+                  <!--                    <el-option-->
+                  <!--                      v-for="item in dc_data.invoice_tax"-->
+                  <!--                      :key="item.value"-->
+                  <!--                      :label="item.label"-->
+                  <!--                      :value="item.value"-->
+                  <!--                    />-->
+                  <!--                  </el-select>-->
+                  <el-input v-model="form.invoiceTax" readonly />
                 </el-form-item>
               </el-col>
             </el-row>

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

@@ -572,7 +572,7 @@ export default {
                     jsonArray.push(item.roomNo)
                     jsonArray.push(item.actualInternalArea)
                     jsonArray.push(item.actualBuildArea)
-                    jsonArray.push(item.roomUse)
+                    jsonArray.push(item.roomUseStr)
                     jsonArray.push(item.decorationSituationStr)
                     jsonArray.push(item.saleStatusStr)
                     jsonArray.push(item.soldStatusStr)

+ 3 - 0
src/views/signingManagement/contractManagement/index.vue

@@ -165,6 +165,9 @@ export default {
         this.initDict(this.dc_key).then((res) => {
             this.getData()
         })
+        if (this.fromAddress === 'addInvoice') {
+            this.search.contractStatus = '2'
+        }
     },
     methods: {
 

+ 21 - 21
src/views/transactionRecord/collectionRecordIndex.vue

@@ -4,18 +4,19 @@
       <el-col :span="2">
         <span>分期</span>
       </el-col>
-      <el-col :span="6">
+      <el-col :span="4">
         <el-cascader
           v-model="search.findids"
           :append-to-body="false"
           :options="options"
           clearable
           :props="{ multiple: true}"
+          style="width: 100%"
           @change="handleChange"
         />
       </el-col>
       <el-col :span="2">
-        <span>收款日期</span>
+        <div style="text-align: center"><span>收款日期</span></div>
       </el-col>
       <el-col :span="4">
         <el-date-picker
@@ -49,10 +50,7 @@
         <el-input v-model="search.buyerName" />
       </el-col>
       <el-col :span="2">
-        <span>&nbsp;</span>
-      </el-col>
-      <el-col :span="2">
-        <span>收款类型</span>
+        <div style="text-align: center"><span>收款类型</span></div>
       </el-col>
       <el-col :span="4">
         <el-select
@@ -276,33 +274,35 @@ export default {
         // 导出
         handleExcel: function() {
             const _this = this
-            _this.AllData = []
             this.OutData = []
-            const title = ['单元/楼栋号', '所在层', '户室号', '套内面积', '建筑面积', '用途', '装修情况',
-                '可售状态', '已售状态']
+            const title = ['房屋', '流水号', '买受人', '金额(元)', '收款类型', '收款方式', '收款账号',
+                '银行流水号', '收款经办人', 'NCC提交状态', '最近提交日期', 'NCC提交人']
             this.OutData.push(title)
             const temp = []
-            this.baseRequest('collectionRecordExcelList', _this.search).then(res => {
+            this.baseRequest('collectionRecordListAll', _this.search).then(res => {
                 const data = res.data
-                data.data.forEach(function(item) {
+                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)
+                    jsonArray.push(item.houseName)
+                    jsonArray.push(item.serialNumber)
+                    jsonArray.push(item.buyerName)
+                    jsonArray.push(item.money)
+                    jsonArray.push(item.contentTypeStr)
+                    jsonArray.push(item.paymentMethodStr)
+                    jsonArray.push(item.bankNumber)
+                    jsonArray.push(item.bankSerialId)
+                    jsonArray.push(item.createdName)
+                    jsonArray.push(item.ncSubmitStatusStr)
+                    jsonArray.push(item.ncSubmitDate)
+                    jsonArray.push(item.ncSubmitName)
                     _this.OutData.push(jsonArray)
                 })
                 const OutSize = [{ wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { 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)
             })

+ 335 - 0
src/views/transactionRecord/convertRecordIndex.vue

@@ -0,0 +1,335 @@
+<template>
+  <div class="newIndexDiv">
+    <el-row class="handle-box" style="margin-bottom: 10px">
+      <el-col :span="2">
+        <span>分期</span>
+      </el-col>
+      <el-col :span="4">
+        <el-cascader
+          v-model="search.findids"
+          :append-to-body="false"
+          :options="options"
+          clearable
+          style="width: 100%"
+          @change="handleChange"
+        />
+      </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.handleDateFrom"
+          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.handleDateTo"
+          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">
+        <div style="text-align: center"><span>转换类型</span></div>
+      </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-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-button type="primary" size="small" style="float: right" @click="handleAdd()">&nbsp;NCC提交</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="houseName" />
+          <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="handleDate" />
+          <el-table-column label="付款账号" prop="bankNumber" />
+          <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>
+
+    <!-- ncc提交 -->
+    <el-dialog
+      :title="dialogTitle"
+      :visible.sync="dialogVisible"
+      width="50%"
+      top="50px"
+      :close-on-press-escape="false"
+      :close-on-click-modal="false"
+      append-to-body
+      @close="handleClose"
+    >
+      <ncc-submit-index v-if="dialogVisible" ref="nccSubmit" @editClose="handleClose" />
+    </el-dialog>
+
+  </div>
+</template>
+<script>
+import Base from '@/views/base/base'
+import BaseData from '@/views/base/baseData'
+import NccSubmitIndex from '@/views/transactionRecord/nccSubmitIndex.vue'
+
+export default {
+    name: 'ConvertRecordIndex',
+    components: { NccSubmitIndex },
+    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('convertRecord', 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
+        },
+        /* ncc提交*/
+        handleAdd: function(val) {
+            this.dialogTitle = 'NCC提交'
+            this.dialogVisible = true
+            this.$nextTick(() => {
+                this.$refs.nccSubmit.initData('转换')
+            })
+        },
+        handleClose(refresh) {
+            this.dialogVisible = false
+            this.getData()
+        },
+        handleView(val) {
+
+        },
+        handleChange() {
+
+        },
+        // 导出
+        handleExcel: function() {
+            const _this = this
+            this.OutData = []
+            const title = ['房屋', '流水号', '买受人', '金额(元)', '转换类型', '转换日期', '付款账号',
+                '转换经办人', 'NCC提交状态', '最近提交日期', 'NCC提交人']
+            this.OutData.push(title)
+            const temp = []
+            this.baseRequest('convertRecordListAll', _this.search).then(res => {
+                const data = res.data
+                data.forEach(function(item) {
+                    const json = _this.getItemJson(item)
+                    temp.push(json)
+                })
+                temp.forEach(function(item) {
+                    const jsonArray = []
+                    jsonArray.push(item.houseName)
+                    jsonArray.push(item.serialNumber)
+                    jsonArray.push(item.buyerName)
+                    jsonArray.push(item.money)
+                    jsonArray.push(item.contentTypeStr)
+                    jsonArray.push(item.handleDate)
+                    jsonArray.push(item.bankNumber)
+                    jsonArray.push(item.createdName)
+                    jsonArray.push(item.ncSubmitStatusStr)
+                    jsonArray.push(item.ncSubmitDate)
+                    jsonArray.push(item.ncSubmitName)
+                    _this.OutData.push(jsonArray)
+                })
+                const OutSize = [{ wch: 15 }, { wch: 15 }, { 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>

+ 3 - 0
src/views/transactionRecord/nccSubmitIndex.vue

@@ -80,6 +80,9 @@ export default {
             if (_this.form.type === '退款') {
                 soaUrl = 'refundRecordSubmit'
             }
+            if (_this.form.type === '转换') {
+                soaUrl = 'convertRecordSubmit'
+            }
             _this.loading = true
             const postData = Object.assign({}, _this.form)
             this.baseRequest(soaUrl, postData).then(res => {

+ 6 - 32
src/views/transactionRecord/refundRecordIndex.vue

@@ -4,17 +4,18 @@
       <el-col :span="2">
         <span>分期</span>
       </el-col>
-      <el-col :span="6">
+      <el-col :span="4">
         <el-cascader
           v-model="search.findids"
           :append-to-body="false"
           :options="options"
           clearable
+          style="width: 100%"
           @change="handleChange"
         />
       </el-col>
       <el-col :span="2">
-        <span>退款日期</span>
+        <div style="text-align: center"><span>退款日期</span></div>
       </el-col>
       <el-col :span="4">
         <el-date-picker
@@ -48,10 +49,7 @@
         <el-input v-model="search.buyerName" />
       </el-col>
       <el-col :span="2">
-        <span>&nbsp;</span>
-      </el-col>
-      <el-col :span="2">
-        <span>退款类型</span>
+          <div style="text-align: center"><span>退款类型</span></div>
       </el-col>
       <el-col :span="4">
         <el-select
@@ -74,30 +72,6 @@
           />
         </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">
@@ -124,7 +98,7 @@
           <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="paymentMethodStr" />-->
           <el-table-column label="付款账号" prop="bankNumber" />
           <el-table-column label="银行流水号" prop="bankSerialId" />
           <el-table-column label="退款经办人" prop="createdName" />
@@ -258,7 +232,7 @@ export default {
             this.dialogTitle = 'NCC提交'
             this.dialogVisible = true
             this.$nextTick(() => {
-                this.$refs.nccSubmit.initData('款')
+                this.$refs.nccSubmit.initData('退款')
             })
         },
         handleClose(refresh) {