@@ -4,7 +4,8 @@ | |||
export default { | |||
version: '1.0', | |||
name: 'JNDZ考核管理系统', // 项目名称 | |||
baseURL: 'http://121.40.249.52:9031/api/', // 接口地址 | |||
// baseURL: 'http://121.40.249.52:9031/api/', // 接口地址 | |||
baseURL: 'http://47.98.157.120:9031/api/', // 接口地址 | |||
whiteList: ['/login', '/forget'], // 路由白名单(不需要登录的) | |||
keepAliveList: [], // 需要缓存的组件名称 | |||
menuUrl: '/index/getMenuList', // 菜单数据接口 |
@@ -296,8 +296,8 @@ export default { | |||
: []; | |||
this.form = detail; | |||
this.form.chainIndustryId = detail.id; | |||
this.form.isApply = 2; | |||
console.log(this.form); | |||
// this.form.isApply = 2; | |||
// console.log(this.form); | |||
}, | |||
save() { | |||
// if (this.form.note) { |
@@ -110,7 +110,7 @@ | |||
</template> | |||
</el-table-column> | |||
</el-table> | |||
<!-- <el-pagination | |||
<el-pagination | |||
:current-page.sync="page.page" | |||
:page-size="page.limit" | |||
:total="count" | |||
@@ -119,7 +119,7 @@ | |||
:pager-count="5" | |||
class="ele-pagination-circle" | |||
@current-change="getDataList()" | |||
/> --> | |||
/> | |||
<el-dialog | |||
title="审核配合申请" | |||
:visible.sync="showEdit" | |||
@@ -161,11 +161,11 @@ export default { | |||
searchParams: {}, | |||
dataList: [], | |||
count: 0, | |||
tableHeight: document.documentElement.clientHeight - 220, | |||
tableHeight: document.documentElement.clientHeight - 260, | |||
page: { | |||
page: 1, | |||
limit: Math.floor( | |||
(document.documentElement.clientHeight - 220 - 45) / 45 | |||
(document.documentElement.clientHeight - 260 - 45) / 45 | |||
), | |||
}, | |||
loading: false, |