3.10 工程代码同步master
This commit is contained in:
@ -1,11 +1,12 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
|
||||
.header {
|
||||
background-color: rgb(170, 0, 0);
|
||||
background-color: #b30000;
|
||||
color: white;
|
||||
font-size: 40px;
|
||||
height: 70px;
|
||||
font-weight: 800;
|
||||
font-size: 16px;
|
||||
height: 56px;
|
||||
line-height: 56px;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
.headerAlign {
|
||||
align-self: center;
|
||||
@ -22,14 +23,17 @@
|
||||
}
|
||||
.titleTop {
|
||||
font-size: 30px;
|
||||
font-weight: 600;
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
background-color: aliceblue;
|
||||
}
|
||||
.desStyle{
|
||||
background-color: white;
|
||||
padding: 0px 24px;
|
||||
margin-top: 16px;
|
||||
.ant-descriptions-item-label{
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
text-align: right;
|
||||
font-size: 20px;
|
||||
min-width: 200px;
|
||||
}
|
||||
@ -39,7 +43,22 @@
|
||||
max-width: 750px;
|
||||
}
|
||||
}
|
||||
|
||||
.xsy-tools-div{
|
||||
width:100%;
|
||||
height:32px;
|
||||
padding:0px 24px;
|
||||
}
|
||||
.xsy-table-header{
|
||||
font-size: 20px;
|
||||
}
|
||||
.xsy-table{
|
||||
background-color: white;
|
||||
padding:0px 24px;
|
||||
margin-top:10px;
|
||||
.ant-table-cell{
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
:global {
|
||||
.drawerStyle {
|
||||
.ant-drawer-content-wrapper {
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,14 +1,32 @@
|
||||
import request from '@/utils/request';
|
||||
|
||||
import { getSessionRoleData } from '@/utils/session';
|
||||
//获取列表
|
||||
export async function getList(params?: any) {
|
||||
return request(`/api/biz-service-ebtp-resps/v1/tfile/getOpenTenderList`,{
|
||||
let url = '/api/biz-service-ebtp-resps/v1/tfile/getOpenTenderList';
|
||||
if(getSessionRoleData().roleCode === 'ebtp-supplier'){//ebtp-agency-project-manager 代理 ebtp-supplier 供应商
|
||||
url = '/api/biz-service-ebtp-resps/v1/tfile/getOpenTenderListBySupplier'
|
||||
}
|
||||
return request(url,{
|
||||
method:'POST',
|
||||
data:{
|
||||
...params
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export async function getRoomList(params?: any) {
|
||||
let url = '/api/biz-service-ebtp-resps/v1/tfile/getOpenTenderList';
|
||||
if(getSessionRoleData().roleCode === 'ebtp-supplier'){
|
||||
url = '/api/biz-service-ebtp-resps/v1/tfile/getOpenTenderListBySupplier'
|
||||
}
|
||||
return request(url,{
|
||||
method:'POST',
|
||||
data:{
|
||||
...params
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//获取开标状态及信息列表数据
|
||||
export async function getOpenDt(params?: any) {
|
||||
return request(`/api/biz-service-ebtp-opening/v1/bizbidsingconfigure/getlist`,{
|
||||
@ -29,9 +47,11 @@ export async function singBid(params?: any) {
|
||||
}
|
||||
//解密
|
||||
export async function jieMi(params?: any) {
|
||||
console.log(params);
|
||||
|
||||
return request(`/api/biz-service-ebtp-resps/v1/tfile/executeDecrypt`,{
|
||||
let url = '/api/biz-service-ebtp-resps/v1/tfile/executeDecrypt';
|
||||
if(getSessionRoleData().roleCode === 'ebtp-supplier'){
|
||||
url = '/api/biz-service-ebtp-resps/v1/tfile/executeDecryptBySupplier'
|
||||
}
|
||||
return request(url,{
|
||||
method:'POST',
|
||||
data:{
|
||||
...params
|
||||
@ -40,7 +60,11 @@ export async function jieMi(params?: any) {
|
||||
}
|
||||
//解密进度
|
||||
export async function jmRate(params?: any) {
|
||||
return request(`/api/biz-service-ebtp-resps/v1/tfile/getDecryptProgress`,{
|
||||
let url = '/api/biz-service-ebtp-resps/v1/tfile/getDecryptProgress';
|
||||
if(getSessionRoleData().roleCode === 'ebtp-supplier'){
|
||||
url = '/api/biz-service-ebtp-resps/v1/tfile/getDecryptProgressBySupplier'
|
||||
}
|
||||
return request(url,{
|
||||
method:'POST',
|
||||
data:{
|
||||
...params
|
||||
@ -49,8 +73,8 @@ export async function jmRate(params?: any) {
|
||||
}
|
||||
//设置解密时限
|
||||
export async function endTimeUp(params?: any) {
|
||||
return request(`/api/biz-service-ebtp-opening/v1/bizbidopenroom/updateOpenRoom/`,{
|
||||
method:'PUT',
|
||||
return request(`/api/biz-service-ebtp-resps/v1/tdoc/updateTdocDecryptEndDate`,{
|
||||
method:'POST',
|
||||
data:{
|
||||
...params
|
||||
}
|
||||
@ -58,7 +82,7 @@ export async function endTimeUp(params?: any) {
|
||||
}
|
||||
//补录报价
|
||||
export async function updatePrice(params?: any) {
|
||||
return request(`/api/biz-service-ebtp-resps/v1/tfiletendererprice`,{
|
||||
return request(`/api/biz-service-ebtp-resps/v1/tfilecontentdata/insertPrice`,{
|
||||
method:'POST',
|
||||
data:{
|
||||
...params
|
||||
@ -74,7 +98,7 @@ export async function queryFx(params?: any) {
|
||||
}
|
||||
});
|
||||
}
|
||||
//查看分项报价
|
||||
export async function confirmOffer(reviewTurnId?: any) {
|
||||
return request(`/api/biz-service-ebtp-tender/v1/supplier_register/update/sign/${reviewTurnId}`);
|
||||
//供应商确认报价
|
||||
export async function confirmOffer(reviewTurnId?: any,tdocId?: any) {
|
||||
return request(`/api/biz-service-ebtp-tender/v1/supplier_register/update/sign/${reviewTurnId}?tdocId=${tdocId}`);
|
||||
}
|
Reference in New Issue
Block a user