暂存
This commit is contained in:
parent
dcb363e505
commit
db099fbc43
@ -190,9 +190,13 @@ export const trademarkTypeSearch = (params:any) => aiShopRequest.get(`/aishop/ap
|
|||||||
// 第二步选择商标类别提交
|
// 第二步选择商标类别提交
|
||||||
export const uptrademarkList = (trademarkId:any,params:any) => aiShopRequest.post(`/aishop/api/trademark/save2/${trademarkId}`,params)
|
export const uptrademarkList = (trademarkId:any,params:any) => aiShopRequest.post(`/aishop/api/trademark/save2/${trademarkId}`,params)
|
||||||
|
|
||||||
|
// 第三步
|
||||||
|
// 新增商标申请人信息
|
||||||
|
export const addTrademarkApplicant = (params:any) => aiShopRequest.post(`/aishop/api/trademarkuser/save`,params)
|
||||||
|
// 商标申请人分页列表
|
||||||
|
export const trademarkApplicantList = (params:any) => aiShopRequest.get(`/aishop/api/trademarkuser/listpage`,{params})
|
||||||
|
// 删除商标申请人
|
||||||
|
export const deleteTrademarkApplicant = (trademarkUserId:any) => aiShopRequest.delete(`/aishop/api/trademarkuser/remove/${trademarkUserId}`)
|
||||||
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
|
@ -236,6 +236,7 @@ export default function TrademarkAiEdit() {
|
|||||||
}}>
|
}}>
|
||||||
<EditThree
|
<EditThree
|
||||||
// key={editProcess}
|
// key={editProcess}
|
||||||
|
trademarkId={trademarkId}
|
||||||
setEditProcess={setEditProcess}></EditThree>
|
setEditProcess={setEditProcess}></EditThree>
|
||||||
</div>
|
</div>
|
||||||
<div style={{
|
<div style={{
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,32 @@
|
|||||||
.addPeopleBox{
|
/* 自定义滚动条宽度 */
|
||||||
|
/* .editThreeAddPeopleBox {
|
||||||
|
overflow-y: auto;
|
||||||
|
scrollbar-width: thin;
|
||||||
|
scrollbar-color: #888 #f1f1f1;
|
||||||
|
}
|
||||||
|
.editThreeAddPeopleBox::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
}
|
||||||
|
.editThreeAddPeopleBox::-webkit-scrollbar-track {
|
||||||
|
background: #f1f1f1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editThreeAddPeopleBox::-webkit-scrollbar-thumb {
|
||||||
|
background: #888;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editThreeAddPeopleBox::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: #555;
|
||||||
|
} */
|
||||||
|
.editThreeAddPeopleBox{
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
.addPeopleBox {
|
||||||
width: 300px;
|
width: 300px;
|
||||||
height: 150px;
|
height: 150px;
|
||||||
border: 1px solid #D9D9D9;
|
border: 1px solid #D9D9D9;
|
||||||
color:#979797;
|
color: #979797;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -11,25 +35,80 @@
|
|||||||
margin-left: 100px;
|
margin-left: 100px;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
.addPeopleBox:hover{
|
|
||||||
|
.addPeopleBox:hover {
|
||||||
border: 1px solid #5892e9;
|
border: 1px solid #5892e9;
|
||||||
color: #5892e9;
|
color: #5892e9;
|
||||||
}
|
}
|
||||||
.addPeopleTitle{
|
|
||||||
|
.addPeopleTitle {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
|
/* margin-top: 10px; */
|
||||||
}
|
}
|
||||||
.addPeopleItem{
|
|
||||||
|
.addPeopleItem {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
margin-top: 30px;
|
||||||
}
|
}
|
||||||
.addPeopleItemTitle{
|
|
||||||
|
.addPeopleFormItem {
|
||||||
|
/* display: flex; */
|
||||||
|
/* margin-top: 20px; */
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
.addFormItemTitle{
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
.addPeopleFormItemR{
|
||||||
|
margin-left: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.addPeopleItemTitle {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
/* background-color: skyblue; */
|
/* background-color: skyblue; */
|
||||||
width: 120px;
|
/* width: 120px; */
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
.redTips{
|
.addPeopleItemTitleS{
|
||||||
|
width: 90px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.redTips {
|
||||||
color: red;
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editThreeUpBox {
|
||||||
|
width: 300px;
|
||||||
|
height: 150px;
|
||||||
|
border: 1px dashed #D9D9D9;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: #979797;
|
||||||
|
}
|
||||||
|
|
||||||
|
.exampleImg {
|
||||||
|
width: 190px;
|
||||||
|
height: 150px;
|
||||||
|
border: 1px dashed #D9D9D9;
|
||||||
|
border: 1px dashed #D9D9D9;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-left: 20px;
|
||||||
|
|
||||||
|
}
|
||||||
|
.addressLine{
|
||||||
|
width: 10px;
|
||||||
|
height: 1px;
|
||||||
|
background: rgb(182, 182, 182);
|
||||||
|
margin-left: 5px;
|
||||||
|
margin-right: 5px;
|
||||||
}
|
}
|
BIN
src/static/editThree/individualLicense.png
Normal file
BIN
src/static/editThree/individualLicense.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 889 KiB |
BIN
src/static/editThree/personCard.png
Normal file
BIN
src/static/editThree/personCard.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 218 KiB |
BIN
src/static/editThree/personLicense.png
Normal file
BIN
src/static/editThree/personLicense.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 610 KiB |
Loading…
Reference in New Issue
Block a user