|
|
@@ -2,16 +2,16 @@
|
|
|
<div>
|
|
|
<el-breadcrumb class="heading">
|
|
|
<el-breadcrumb-item :to="{ path: '/' }">平台首页</el-breadcrumb-item>
|
|
|
- <el-breadcrumb-item>缴费信息列表</el-breadcrumb-item>
|
|
|
+ <el-breadcrumb-item>交费信息列表</el-breadcrumb-item>
|
|
|
</el-breadcrumb>
|
|
|
<el-card class="box-card" style="height: calc(100vh - 115px);">
|
|
|
<div slot="header">
|
|
|
<span>
|
|
|
- <i class="icon icon-table2"></i> 缴费信息列表
|
|
|
+ <i class="icon icon-table2"></i> 交费信息列表
|
|
|
</span>
|
|
|
- <el-button type="primary" size="mini" style="float: right;margin-top: -3px;margin-left: 15px" v-if="authUser.Profile.IsCompanyUser != '1'" @click="addpayinfo">添加缴费信息</el-button>
|
|
|
+ <el-button type="primary" size="mini" style="float: right;margin-top: -3px;margin-left: 15px" v-if="authUser.Profile.IsCompanyUser != '1'" @click="addpayinfo">添加交费信息</el-button>
|
|
|
<el-form ref="form" :inline="true" style="float: right; margin-top: -10px;">
|
|
|
- <!--<el-form-item label="缴费日期">-->
|
|
|
+ <!--<el-form-item label="交费日期">-->
|
|
|
<!--<el-date-picker size="mini" style="width: 220px" v-model="CreateOn" type="daterange" range-separator="至"-->
|
|
|
<!--start-placeholder="生成日期" end-placeholder="结束日期"></el-date-picker>-->
|
|
|
<!--</el-form-item>-->
|
|
|
@@ -61,18 +61,18 @@
|
|
|
<el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="SupplierName" label="企业名称"></el-table-column>
|
|
|
<el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="CommercialNo" label="组织机构代码"></el-table-column>
|
|
|
<el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="SupplierTypeName" label="项目类型"></el-table-column>
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="PayType" label="缴费类型">
|
|
|
+ <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="PayType" label="交费类型">
|
|
|
<template slot-scope="scope">
|
|
|
{{ transferStr(scope.row.PayType) }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="Amount" label="缴费金额">
|
|
|
+ <el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="Amount" label="交费金额">
|
|
|
</el-table-column>
|
|
|
<el-table-column sortable min-width="120" align="center" show-overflow-tooltip prop="IsPay" label="状态">
|
|
|
<template slot-scope="scope">
|
|
|
<span style="color: yellowgreen" v-if="scope.row.IsPay == 0">待确认</span>
|
|
|
- <span style="color: #00bcd4" v-if="scope.row.IsPay == 1">待缴费</span>
|
|
|
- <span style="color: green" v-if="scope.row.IsPay == 2">已缴费</span>
|
|
|
+ <span style="color: #00bcd4" v-if="scope.row.IsPay == 1">待交费</span>
|
|
|
+ <span style="color: green" v-if="scope.row.IsPay == 2">已交费</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -82,7 +82,7 @@
|
|
|
</el-pagination>
|
|
|
</el-card>
|
|
|
|
|
|
- <el-dialog title="添加缴费信息" :visible.sync="dialogVisible" width="720px">
|
|
|
+ <el-dialog title="添加交费信息" :visible.sync="dialogVisible" width="720px">
|
|
|
<el-form ref="searchForm" label-width="110px">
|
|
|
<el-row>
|
|
|
|
|
|
@@ -117,7 +117,7 @@
|
|
|
<!--</el-col>-->
|
|
|
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="缴费类型">
|
|
|
+ <el-form-item label="交费类型">
|
|
|
<el-select v-model="addForm.PayType" filterable placeholder="请选择">
|
|
|
<el-option
|
|
|
v-for="item in payTypeOptions"
|
|
|
@@ -130,7 +130,7 @@
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="缴费金额">
|
|
|
+ <el-form-item label="交费金额">
|
|
|
<el-input v-model="addForm.Amount" style="width:100%" placeholder="请输入"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
@@ -182,15 +182,15 @@
|
|
|
payTypeOptions: [
|
|
|
{
|
|
|
Id: '1',
|
|
|
- Value: '准入缴费'
|
|
|
+ Value: '准入交费'
|
|
|
},
|
|
|
{
|
|
|
Id: '2',
|
|
|
- Value: '年审缴费'
|
|
|
+ Value: '年审交费'
|
|
|
},
|
|
|
{
|
|
|
Id: '3',
|
|
|
- Value: '增项缴费'
|
|
|
+ Value: '增项交费'
|
|
|
}
|
|
|
],
|
|
|
supplierOptions: [],
|
|
|
@@ -354,11 +354,11 @@
|
|
|
|
|
|
transferStr (val) {
|
|
|
if (val === '1') {
|
|
|
- return '准入缴费'
|
|
|
+ return '准入交费'
|
|
|
} else if (val === '2') {
|
|
|
- return '年审缴费'
|
|
|
+ return '年审交费'
|
|
|
} else if (val === '3') {
|
|
|
- return '增项缴费'
|
|
|
+ return '增项交费'
|
|
|
} else {
|
|
|
return val
|
|
|
}
|
|
|
@@ -387,7 +387,7 @@
|
|
|
})
|
|
|
},
|
|
|
deleteEntity (row) {
|
|
|
- this.$confirm('此操作将永久删除该数据,删除后将不需要缴费直接到待入库中, 是否继续?', '提示', {
|
|
|
+ this.$confirm('此操作将永久删除该数据,删除后将不需要交费直接到待入库中, 是否继续?', '提示', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
type: 'warning'
|