Parcourir la source

配置文件更改

user5 il y a 3 ans
Parent
commit
ab8f13b47a

+ 1 - 1
.env.development

@@ -10,4 +10,4 @@ VUE_APP_SERVER_URL = 'http://localhost:8084'
 #单点登录设置
 VUE_APP_SSO_LOGIN  = 'false'
 VUE_APP_CAS_SERVER = 'https://www.cainiao.com:8443/cas'
-VUE_APP_CLIENT_LOGIN = 'http://localhost:3000/#/casLogin'
+VUE_APP_CLIENT_LOGIN = 'http://localhost:3000/#/casLogin'

+ 2 - 1
.env.production

@@ -2,7 +2,8 @@
 ENV = 'production'
 
 #Jeeplus快速开发平台/后台地址
-VUE_APP_SERVER_URL = 'http:/xxxxxx.com/jeeplus-vue'
+VUE_APP_SERVER_URL = 'http://192.168.2.7:3000/jeeplus-vue'
+
 #单点登录设置
 VUE_APP_SSO_LOGIN  = 'false'
 VUE_APP_CAS_SERVER = 'https://www.cainiao.com:8443/cas'

+ 4 - 10
src/views/modules/reimbursementSys/reimbursementBusinessList.vue

@@ -12,7 +12,7 @@
             <el-button type="info" size="small" @click="goBack">返回</el-button>
           </el-col>
           <el-table
-            :data="columnForm.columnList"
+            :data="columnList"
             style="width: 100%">
             <el-table-column
               prop="userName"
@@ -64,10 +64,7 @@
           name: '',
           sqlCmd: ''
         },
-        columnForm: {
-          isNeedAll: true,
-          columnList: []
-        }
+        columnList: []
       }
     },
     reimbursementBusiness: null,
@@ -76,17 +73,14 @@
     },
     activated () {
       this.$refs['inputForm'].resetFields()
-      this.columnForm.columnList = []
+      this.columnList = []
       this.inputForm.id = this.$route.query.id
       if (this.inputForm.id) {
         this.reimbursementBusiness.findListByBusinessCodeId(this.inputForm.id).then(({data}) => {
-          this.columnForm.columnList = data
+          this.columnList = data
         })
       }
     },
-    components: {
-      editor: require('vue2-ace-editor')
-    },
     methods: {
       goBack () {
         this.$store.dispatch('tagsView/delView', {fullPath: this.$route.fullPath})

+ 1 - 3
src/views/modules/reimbursementSys/reimbursementList.vue

@@ -120,7 +120,6 @@ import reimbursementForm from './reimbursementForm'
 import reimbursementRatioForm from './reimbursementRatioForm'
 import reimbursementInvoiceForm from './reimbursementInvoiceForm'
 import reimbursementBusinessForm from './reimbursementBusinessForm'
-import reimbursementBusinessList from './reimbursementBusinessList'
 export default {
   data () {
     return {
@@ -143,8 +142,7 @@ export default {
     reimbursementForm,
     reimbursementRatioForm,
     reimbursementInvoiceForm,
-    reimbursementBusinessForm,
-    reimbursementBusinessList
+    reimbursementBusinessForm
   },
   ReimbursementSys: null,
   created () {