From 02110e2f136dd6533e2ef768d23637bcaeead9b3 Mon Sep 17 00:00:00 2001 From: jiangweiguo <1578967617@qq.com> Date: Fri, 22 Nov 2024 18:24:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=963?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 13 +++++-- .../myGetPlan/components/UserList.vue | 4 +-- .../mySupplier/components/UserList.vue | 34 +++++++++---------- .../mySupplierMsg/components/UserList.vue | 2 +- src/views/contract/payPlan/index.vue | 2 ++ src/views/login/index.vue | 14 ++++---- vue.config.js | 5 +-- 7 files changed, 43 insertions(+), 31 deletions(-) diff --git a/.env.production b/.env.production index 47c3c66..7b9a7c6 100644 --- a/.env.production +++ b/.env.production @@ -2,7 +2,13 @@ # 页面 title 前缀 VUE_APP_TITLE='链友融财务数字一体化信息系统' -VUE_APP_ENVIRONMENT_TITLE='正式服' + +#部署ip地址 +VUE_APP_BASE_API = 'http://139.224.253.31:8081' + + + + # 页面根路径 BASE_URL='/' @@ -15,8 +21,11 @@ VUE_APP_API= '/' # 方楠 # VUE_APP_BASE_API = 'http://one-h5.lyrfp.com' # 开发环境 不要删 -VUE_APP_BASE_API = 'http://192.168.3.128:58088' +# VUE_APP_BASE_API = 'http://192.168.3.128:58088' +# VUE_APP_BASE_API = 'http://139.224.253.31:8081' # VUE_APP_BASE_API = 'http://60.204.223.58:8080' #线上预览 VUE_APP_ONLINE_API = 'http://139.224.253.31:48012' + +VUE_APP_ENVIRONMENT_TITLE='正式服' \ No newline at end of file diff --git a/src/views/contract/myGetPlan/components/UserList.vue b/src/views/contract/myGetPlan/components/UserList.vue index f8b7fef..2437273 100644 --- a/src/views/contract/myGetPlan/components/UserList.vue +++ b/src/views/contract/myGetPlan/components/UserList.vue @@ -16,13 +16,13 @@ clearable input-align="left" /> - + /> --> 回到顶部 -
添加申请
- + -->
@@ -60,12 +60,12 @@ import { mapState } from 'vuex' import dayjs from 'dayjs' export default { props: { - listType: String, // EnrollmentOrder: 报名订单 EnrollmentCollection: 报名收款 ShiftRecord: 换班记录 WaitPay: 待支付 + listType: String // EnrollmentOrder: 报名订单 EnrollmentCollection: 报名收款 ShiftRecord: 换班记录 WaitPay: 待支付 }, components: { HeaderFilter: () => import('./HeaderFilter.vue'), RMList: () => import('@/components/ReComponents/RMList'), - MySupplierListCard: () => import('@/components/MySupplierListCard'), + MySupplierListCard: () => import('@/components/MySupplierListCard') }, data() { return { @@ -98,15 +98,15 @@ export default { files: null, other: null, createTime: [], - processInstanceId: null, - }, + processInstanceId: null + } } }, computed: { ...mapState({ singlePageSize: (state) => state.common.setting.singlePageSize, - pageSize: (state) => state.common.setting.pageSize, - }), + pageSize: (state) => state.common.setting.pageSize + }) }, activated() { this.handleScrollInit() @@ -124,7 +124,7 @@ export default { handleInitSpList() { let queryParams = { pageNo: 1, - pageSize: this.singlePageSize, + pageSize: this.singlePageSize } getSupplierCompanyPage(queryParams).then((res) => { this.spList = res.data.list || [] @@ -134,7 +134,7 @@ export default { return new Promise((resolve, reject) => { let listQuery = { pageNo: 1, - pageSize: this.singlePageSize, + pageSize: this.singlePageSize } getSupplierContractPage(listQuery) .then((res) => { @@ -166,8 +166,8 @@ export default { ...paramProp, invoiceDate: paramProp.startDate && [ dayjs(paramProp.startDate).format('YYYY-MM-DD HH:ss:mm'), - dayjs(paramProp.endDate).format('YYYY-MM-DD HH:ss:mm'), - ], + dayjs(paramProp.endDate).format('YYYY-MM-DD HH:ss:mm') + ] } this.finished = false this.handleRefresh() @@ -191,8 +191,8 @@ export default { this.$router.push({ path: '/supplier', query: { - type: 'add', - }, + type: 'add' + } }) }, handleAllRefresh() { @@ -223,7 +223,7 @@ export default { getTableList(val) { // const { shellIdsLocal, collegeInfoIdLocal, startDate, endDate, keyword, type, method, targets, usePersonId, teacherIds, chargePersonIds } = this.listQuery const query = { - ...this.listQuery, + ...this.listQuery } this.moreLoading = true this.$loading(true, 'tableLoading') @@ -248,8 +248,8 @@ export default { }) // this.$loading(false, `cTableLoading_${this.listType}`) }) - }, - }, + } + } }