Browse Source

Merge branch 'develop' of http://101.201.121.115:3000/leo/LAPP_MY_WEBFRONT into feature_herui

# Conflicts:
#	.env.development
feature_herui
wangxy 2 years ago
parent
commit
d4e0650706
3 changed files with 11 additions and 1 deletions
  1. +5
    -0
      src/utils/costum.js
  2. +2
    -1
      src/views/reportform/currentOldReport.vue
  3. +4
    -0
      vue.config.js

+ 5
- 0
src/utils/costum.js View File

@ -90,3 +90,8 @@ export function praseStrEmpty(str) {
} }
return str return str
} }
export function download(str) {
location.href=location.host+str
}

+ 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