提交 25afd104 编写于 作者: zhentian.jia's avatar zhentian.jia

update 项目列表接口联调

上级 907480ef
...@@ -8,8 +8,8 @@ export const envConfig = { ...@@ -8,8 +8,8 @@ export const envConfig = {
// baseUrl: 'https://test1-sc.yunqueyi.com/', // baseUrl: 'https://test1-sc.yunqueyi.com/',
//baseUrl: 'https://uat-sc.yunqueyi.com/', //baseUrl: 'https://uat-sc.yunqueyi.com/',
baseUrl: 'http://10.177.15.150:11905/', // baseUrl: 'http://10.177.15.150:11905/',
// baseUrl: 'https://dev-sc.yunqueyi.com/', baseUrl: 'https://dev-sc.yunqueyi.com/',
apiUrl: 'https://dev-api.yunqueyi.com/', apiUrl: 'https://dev-api.yunqueyi.com/',
qiniuFileUrl: "https://dev-sc.yunqueyi.com/contents/admin/qiniu/token1", qiniuFileUrl: "https://dev-sc.yunqueyi.com/contents/admin/qiniu/token1",
qiniuResourceUrl: "https://test1-videos.yunqueyi.com", qiniuResourceUrl: "https://test1-videos.yunqueyi.com",
......
...@@ -54,8 +54,8 @@ service.interceptors.request.use(config => { ...@@ -54,8 +54,8 @@ service.interceptors.request.use(config => {
} }
if( process.env.BUILD_ENV == "development" ){ // 本地开发环境 if( process.env.BUILD_ENV == "development" ){ // 本地开发环境
// console.log('环境变量>>>> ', process.env.BUILD_ENV); // console.log('环境变量>>>> ', process.env.BUILD_ENV);
// config.headers['token'] = '367F0B613A604751AC94CE12CD4E0E53'; config.headers['token'] = '367F0B613A604751AC94CE12CD4E0E53';
config.headers['token'] = '16B877F215A84D528C285D4FA3081C37'; // config.headers['token'] = '16B877F215A84D528C285D4FA3081C37';
}else{ }else{
config.headers['token'] = localStorage.getItem('storageToken') config.headers['token'] = localStorage.getItem('storageToken')
} }
......
...@@ -166,7 +166,7 @@ const vueFilter = { ...@@ -166,7 +166,7 @@ const vueFilter = {
}, },
reportStatus: (value) => { reportStatus: (value) => {
if(value == 1) { if(value == 1) {
return '已开始' return '进行中'
}else if(value == 2) { }else if(value == 2) {
return '已结束' return '已结束'
} }
......
...@@ -101,11 +101,11 @@ export default { ...@@ -101,11 +101,11 @@ export default {
}, },
{ {
label: "进行中", label: "进行中",
value: "1" value: 1
}, },
{ {
label: "已结束", label: "已结束",
value: "2" value: 2
} }
], ],
tableData: [ tableData: [
...@@ -143,8 +143,8 @@ export default { ...@@ -143,8 +143,8 @@ export default {
vm.GET("portal/portalInfo/getPortalReportProject", req).then(res => { vm.GET("portal/portalInfo/getPortalReportProject", req).then(res => {
closeLoading(vm); closeLoading(vm);
if (res.code == "000000") { if (res.code == "000000") {
vm.tableData = res.data.data; vm.tableData = res.data;
vm.totalRows = res.data.totalRows; vm.totalRows = res.totalRows;
} }
}); });
}, },
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册