-

中国联通智慧供应链平台 | 招标采购中心
+
+
+

+
+
+ 采购平台供应商统一管理系统
+ CHINA COSCO SHIPPING CORPORATION LIMITED
+
+
diff --git a/src/components/GlobalHeader/index.less b/src/components/GlobalHeader/index.less
index 72eeb15..f3dfeec 100644
--- a/src/components/GlobalHeader/index.less
+++ b/src/components/GlobalHeader/index.less
@@ -25,8 +25,8 @@
float: left;
line-height: 56px;
font-size: 14px;
- color: #fff;
- padding: 0 14px;
+ color: inherit;
+ padding: 0 12px;
list-style: none;
span {
@@ -35,7 +35,7 @@
}
a {
- color: #fff;
+ color: #131414 !important;
}
}
}
diff --git a/src/components/GlobalHeader/services.ts b/src/components/GlobalHeader/services.ts
index 750f8a5..a6ba67f 100644
--- a/src/components/GlobalHeader/services.ts
+++ b/src/components/GlobalHeader/services.ts
@@ -22,3 +22,9 @@ export async function getLogout() { // 退出登录,注销
// params
});
}
+
+export async function logout() {
+ return request('/api/v1/login/logout', {
+ method: 'post',
+ });
+}
\ No newline at end of file
diff --git a/src/global.less b/src/global.less
index c85eb4b..af3d51a 100644
--- a/src/global.less
+++ b/src/global.less
@@ -51,7 +51,7 @@ ol {
}
// 兼容IE11
-@media screen and(-ms-high-contrast: active), (-ms-high-contrast: none) {
+@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
body .ant-design-pro > .ant-layout {
min-height: 100vh;
}
diff --git a/src/models/bidev.js b/src/models/bidev.js
index d4d0e79..067150e 100644
--- a/src/models/bidev.js
+++ b/src/models/bidev.js
@@ -1,4 +1,4 @@
-import { fetchManagerList,openBizassessroom,resetVerificationCode,fetchJuryList,fetchSupplierList
+import { fetchManagerList,openBizassessroom,openOffBizassessroom,resetVerificationCode,fetchJuryList,fetchSupplierList
,fetchJuryMemInfo,updateJuryMemInfo,validateVerificationCode,fetchbidslist
,fetchPreSupplierList,fetchPreList,fetchPreListt,bxmultifetchPreListt,pushRedirectRe,getCheckedByRoomId,checkOpenBidSupplier,zmmultiOpenBizassessroom } from '../services/bidev';
import { message } from 'antd';
@@ -43,6 +43,23 @@ export default {
}
callback();
},
+ // 开启线下评审室
+ *openOffBizassessroom({payload,callback}, { call, put }){
+ const response =yield call(openOffBizassessroom,payload)
+ if(response?.code==200){
+ // 查询招标代理列表
+ const params={
+ pageNo:1,
+ pageSize:10,
+ reviewMethod:1,
+ roomType: getURLInformation('roomType'),
+ tpId:getProId()//项目id
+ }
+ yield put({ type: 'fetchManagerList', payload: {...params} });
+ message.success("开启成功!")
+ }
+ callback();
+ },
// 开启评审室(多轮招募)
*zmmultiOpenBizassessroom({payload,callback}, { call, put }){
const response =yield call(zmmultiOpenBizassessroom,payload)
diff --git a/src/pages/Agency/AgencyManager/components/SelectProvider.tsx b/src/pages/Agency/AgencyManager/components/SelectProvider.tsx
index 40c3e25..8a300af 100644
--- a/src/pages/Agency/AgencyManager/components/SelectProvider.tsx
+++ b/src/pages/Agency/AgencyManager/components/SelectProvider.tsx
@@ -45,17 +45,19 @@ const SelectProvider: React.FC
= ({ onSelect, visible = fal
const columns: ProColumns[] = [
{ title: '序号', valueType: 'index', width: 50, search: false, },
{ title: '供应商名称', dataIndex: 'name', },//, ellipsis: true
- { title: '供应商分类code', dataIndex: 'kindCode', hideInTable:true,
- valueEnum: { 'EBTP': { text: '招标采购中心', status: 'EBTP' }, },
+ { title: '供应商分类', dataIndex: 'kindCode',
+ valueEnum: { 'dvs': { text: '境内企业/机构', status: 'dvs' }, 'ovs': { text: '境外企业', status: 'ovs' },'pe': { text: '个人/机构', status: 'pe' },},
},
- { title: '供应商分类', dataIndex: 'kindName',
-
+ { title: '供应商分类名', dataIndex: 'kindName',
+ hideInTable:true,
},//, ellipsis: true//, ellipsis: true
{ title: '品类', dataIndex: 'goodsTypeName', },
{ title: '准入时间', dataIndex: 'accessTime', },//, ellipsis: true
{ title: '准入人', dataIndex: 'accessUser', search: false, hideInTable:true,},//, ellipsis: true
- { title: '状态', dataIndex: 'agent', },//, ellipsis: true
+ { title: '状态', dataIndex: 'agent',
+ valueEnum: { 0: { text: '未合作', status: 0 }, 1: { text: '已合作', status: 1 },2: { text: '失效', status: 2 },},
+ },//, ellipsis: true
{ title: 'id', dataIndex: 'id', search: false,hideInTable:true,},//, ellipsis: true
// { title: '创建时间', dataIndex: 'createDate', width: '10%', valueType: 'dateTime', search: false },
diff --git a/src/pages/Agency/AgencyManager/index.tsx b/src/pages/Agency/AgencyManager/index.tsx
index a0eeb83..0f738fa 100644
--- a/src/pages/Agency/AgencyManager/index.tsx
+++ b/src/pages/Agency/AgencyManager/index.tsx
@@ -319,7 +319,7 @@ const [currentProviderId, setCurrentProviderId] = useState('');