导入按钮隐藏,解决打包报错问题
This commit is contained in:
parent
eb4e8c8c13
commit
619abc1808
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "bonus",
|
"name": "bonus",
|
||||||
"version": "3.6.4",
|
"version": "3.6.4",
|
||||||
"description": "博诺思管理系统",
|
"description": "安徽机具管理系统",
|
||||||
"author": "博诺思",
|
"author": "博诺思",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
@ -46,6 +46,7 @@
|
||||||
"file-saver": "2.0.5",
|
"file-saver": "2.0.5",
|
||||||
"fuse.js": "6.4.3",
|
"fuse.js": "6.4.3",
|
||||||
"highlight.js": "9.18.5",
|
"highlight.js": "9.18.5",
|
||||||
|
"html-webpack-plugin": "^5.6.0",
|
||||||
"js-beautify": "1.13.0",
|
"js-beautify": "1.13.0",
|
||||||
"js-cookie": "3.0.1",
|
"js-cookie": "3.0.1",
|
||||||
"jsencrypt": "3.0.0-rc.1",
|
"jsencrypt": "3.0.0-rc.1",
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
<el-button type="primary" @click="handleAddData()"
|
<el-button type="primary" @click="handleAddData()"
|
||||||
>新建</el-button
|
>新建</el-button
|
||||||
>
|
>
|
||||||
<el-button @click="handleImportData()">导入</el-button>
|
|
||||||
<el-button @click="handleExportData(queryParams)"
|
<el-button @click="handleExportData(queryParams)"
|
||||||
>导出</el-button
|
>导出</el-button
|
||||||
>
|
>
|
||||||
|
|
@ -58,10 +57,8 @@ export default {
|
||||||
formLabel,
|
formLabel,
|
||||||
columnsList,
|
columnsList,
|
||||||
dialogConfig,
|
dialogConfig,
|
||||||
// 新建时弹框标题
|
addDialogTitle: '新建往来单位', // 新建时弹框标题
|
||||||
addDialogTitle: '新建往来单位',
|
editDialogTitle: '修改往来单位', // 修改时弹框标题
|
||||||
// 修改时弹框标题
|
|
||||||
editDialogTitle: '修改往来单位',
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
<el-button type="primary" @click="handleAddData()"
|
<el-button type="primary" @click="handleAddData()"
|
||||||
>新建</el-button
|
>新建</el-button
|
||||||
>
|
>
|
||||||
<el-button @click="handleImportData()">导入</el-button>
|
|
||||||
<el-button @click="handleExportData(queryParams)"
|
<el-button @click="handleExportData(queryParams)"
|
||||||
>导出</el-button
|
>导出</el-button
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@
|
||||||
<el-button type="primary" @click="handleAddData()"
|
<el-button type="primary" @click="handleAddData()"
|
||||||
>新建</el-button
|
>新建</el-button
|
||||||
>
|
>
|
||||||
<el-button @click="handleImportData()">导入</el-button>
|
|
||||||
<el-button @click="handleExportData(queryParams)"
|
<el-button @click="handleExportData(queryParams)"
|
||||||
>导出</el-button
|
>导出</el-button
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ module.exports = {
|
||||||
proxy: {
|
proxy: {
|
||||||
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
// detail: https://cli.vuejs.org/config/#devserver-proxy
|
||||||
[process.env.VUE_APP_BASE_API]: {
|
[process.env.VUE_APP_BASE_API]: {
|
||||||
target: `http://192.168.2.39:18080`,
|
target: `http://192.168.2.39:18080`, // 代理的后台ip 端口 解决请求跨域
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
['^' + process.env.VUE_APP_BASE_API]: ''
|
['^' + process.env.VUE_APP_BASE_API]: ''
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue