Browse Source

缴费方式统计页面更改

wangxinyao
wangxy 2 years ago
parent
commit
df76dc2838
3 changed files with 8 additions and 3 deletions
  1. +2
    -2
      .env.development
  2. +2
    -1
      src/views/reportform/currentOldReport.vue
  3. +4
    -0
      vue.config.js

+ 2
- 2
.env.development View File

@ -5,6 +5,6 @@ NODE_ENV = 'production'
# base api # base api
# 玫苑 # 玫苑
# VUE_APP_BASE_API = 'http://101.201.121.115:8092'
VUE_APP_BASE_API = 'http://101.201.121.115:8092'
# 和瑞 # 和瑞
VUE_APP_BASE_API = 'http://101.201.121.115:8094'
# VUE_APP_BASE_API = 'http://101.201.121.115:8094'

+ 2
- 1
src/views/reportform/currentOldReport.vue View File

@ -46,6 +46,7 @@
<el-form-item label="缴费方式"> <el-form-item label="缴费方式">
<el-select v-model="searchForm.chargeWay" <el-select v-model="searchForm.chargeWay"
size="small" size="small"
clearable
placeholder="请选择"> placeholder="请选择">
<el-option v-for="item in wayArray" <el-option v-for="item in wayArray"
:key="item" :key="item"
@ -101,7 +102,7 @@ export default {
searchForm: { searchForm: {
start: '', start: '',
end: '', end: '',
chargeWay: '扫码',
chargeWay: '',
chargeType: 1 chargeType: 1
}, },
feesType: [ feesType: [


+ 4
- 0
vue.config.js View File

@ -44,6 +44,10 @@ module.exports = {
alias: { alias: {
'@': resolve('src') '@': resolve('src')
} }
},
// 关闭webpack的性能提示
performance: {
hints: false,
} }
}, },
chainWebpack(config) { chainWebpack(config) {


Loading…
Cancel
Save