fix:按钮间距调整

pull/273/head
lihui_ocr 1 year ago
parent 1ded4dbd97
commit 0e237985bf

@ -764,7 +764,7 @@ defineExpose({
> >
<SvgIcon <SvgIcon
v-if="[1].includes(taskDetailInfo.historyStates)" v-if="[1].includes(taskDetailInfo.historyStates)"
style="cursor: pointer" style="cursor: pointer; margin-left: 10px"
name="t1" name="t1"
@click.stop="handleApproveMainImage" @click.stop="handleApproveMainImage"
/> />
@ -776,7 +776,7 @@ defineExpose({
/> />
<SvgIcon <SvgIcon
v-if="[1].includes(taskDetailInfo.historyStates)" v-if="[1].includes(taskDetailInfo.historyStates)"
style="cursor: pointer; margin-left: 30px" style="cursor: pointer; margin-left: 20px; margin-right:10px"
name="t9" name="t9"
@click.stop="handleRejectdubiousfileyd(taskDetailInfo.id)" @click.stop="handleRejectdubiousfileyd(taskDetailInfo.id)"
/> />
@ -934,19 +934,19 @@ defineExpose({
<div v-show="overTask && overTask.id === item.id" class="action"> <div v-show="overTask && overTask.id === item.id" class="action">
<SvgIcon <SvgIcon
v-if="item.historyStates === 1" v-if="item.historyStates === 1"
style="cursor: pointer" style="cursor: pointer; margin-left: 10px"
name="t1" name="t1"
@click.stop="approvalHandler" @click.stop="approvalHandler"
/> />
<SvgIcon <SvgIcon
v-if="[1].includes(item.historyStates)" v-if="[1].includes(item.historyStates)"
style="cursor: pointer; margin-left: 40px" style="cursor: pointer; margin-left: 30px"
name="t2" name="t2"
@click.stop="singleRejectHandler(item)" @click.stop="singleRejectHandler(item)"
/> />
<SvgIcon <SvgIcon
v-if="[1].includes(item.historyStates)" v-if="[1].includes(item.historyStates)"
style="cursor: pointer; margin-left: 30px" style="cursor: pointer; margin-left: 20px; margin-right:10px"
name="t9" name="t9"
@click.stop="handleRejectdubiousfileyd(item.pictureid)" @click.stop="handleRejectdubiousfileyd(item.pictureid)"
/> />
@ -990,7 +990,7 @@ defineExpose({
flex: 1; flex: 1;
flex-direction: column; flex-direction: column;
box-sizing: border-box; box-sizing: border-box;
margin-left: 16px !important; // margin-left: 16px !important;
margin-right: 16px !important; margin-right: 16px !important;
padding: 16px 16px 0px 16px; padding: 16px 16px 0px 16px;
background: #fff; background: #fff;

@ -21,7 +21,7 @@ function ApprovalOver(packageId) {
</div> </div>
<div class="main"> <div class="main">
<!-- 侧边 --> <!-- 侧边 -->
<Aside @approval-over="ApprovalOver" /> <Aside @approval-over="ApprovalOver" style="margin-right:16px"/>
<!-- 内容 --> <!-- 内容 -->
<Content ref="contentRef" /> <Content ref="contentRef" />

Loading…
Cancel
Save