|
|
|
@ -5,14 +5,32 @@
|
|
|
|
|
<template #title>
|
|
|
|
|
<span>保存</span>
|
|
|
|
|
</template>
|
|
|
|
|
<span class="ds-action-svg-btn" @click="copyHandle">
|
|
|
|
|
<span class="ds-action-svg-btn" @click="handleSave">
|
|
|
|
|
<img src="../../../assets/svg/infoclient/baocun.svg" class="SvgImg" />
|
|
|
|
|
</span>
|
|
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip placement="top" :mouseEnterDelay="0.5">
|
|
|
|
|
<template #title>
|
|
|
|
|
<span>上一条</span>
|
|
|
|
|
</template>
|
|
|
|
|
<span class="ds-action-svg-btn" @click="ClickLast('next')">
|
|
|
|
|
<img src="../../../assets/svg/infoclient/shangxia.svg" class="SvgImg" />
|
|
|
|
|
</span>
|
|
|
|
|
</a-tooltip>
|
|
|
|
|
<a-tooltip placement="top" :mouseEnterDelay="0.5">
|
|
|
|
|
<template #title>
|
|
|
|
|
<span>下一条</span>
|
|
|
|
|
</template>
|
|
|
|
|
<span class="ds-action-svg-btn" @click="ClickLast('last')">
|
|
|
|
|
<img src="../../../assets/svg/infoclient/shangxia.svg" class="SvgImg" />
|
|
|
|
|
</span>
|
|
|
|
|
</a-tooltip>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ds-detail-box sea-export-detail">
|
|
|
|
|
<div :style="{ display: 'flex' }">
|
|
|
|
|
<ActionBar
|
|
|
|
|
ref="RefActionBar"
|
|
|
|
|
v-show="false"
|
|
|
|
|
:id="route.query.id"
|
|
|
|
|
name="wldw"
|
|
|
|
|
:save="handleSave"
|
|
|
|
@ -38,7 +56,7 @@
|
|
|
|
|
<span class="title Fapiao">发票信息</span>
|
|
|
|
|
<a-button type="link" @click="TableAdd" class="pl0">
|
|
|
|
|
<span class="iconfont icon-new_document"></span>
|
|
|
|
|
新增
|
|
|
|
|
添加
|
|
|
|
|
</a-button>
|
|
|
|
|
<a-popconfirm
|
|
|
|
|
title="确定要删除所选数据?"
|
|
|
|
@ -71,7 +89,8 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="BTable">
|
|
|
|
|
<BasicTable @register="registerTable" @row-dbClick="EditRow" :maxHeight="140">
|
|
|
|
|
<template #toolbar>
|
|
|
|
|
<template #tableTitle>
|
|
|
|
|
<span class="title">银行信息</span>
|
|
|
|
|
<a-button
|
|
|
|
|
type="link"
|
|
|
|
|
@click="addboxLine({ id: rowId })"
|
|
|
|
@ -649,6 +668,12 @@
|
|
|
|
|
// // setModalProps({ confirmLoading: false, loading: false })
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
const RefActionBar = ref()
|
|
|
|
|
// 上一票
|
|
|
|
|
function ClickLast(type) {
|
|
|
|
|
console.log(RefActionBar.value)
|
|
|
|
|
RefActionBar.value.toPage(type)
|
|
|
|
|
}
|
|
|
|
|
async function refresh() {
|
|
|
|
|
const res: API.DataResult = await getCodeGoodsTypeInfo({ id: unref(rowId) })
|
|
|
|
|
if (res.succeeded) {
|
|
|
|
@ -793,14 +818,20 @@
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.infoclientBox {
|
|
|
|
|
display: flex;
|
|
|
|
|
background: rgba(245, 249, 252, 1);
|
|
|
|
|
padding: 15px 20px;
|
|
|
|
|
.SvgImg {
|
|
|
|
|
width: 12px;
|
|
|
|
|
|
|
|
|
|
// &:hover {
|
|
|
|
|
// background: #257afa;
|
|
|
|
|
// }
|
|
|
|
|
.ds-action-svg-btn {
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
|
> .SvgImg {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.SvgImg {
|
|
|
|
|
width: 16px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -815,7 +846,7 @@
|
|
|
|
|
color: rgba(51, 56, 61, 1);
|
|
|
|
|
text-align: left;
|
|
|
|
|
&.Fapiao {
|
|
|
|
|
padding: 5px;
|
|
|
|
|
padding: 7px 5px 5px 5px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.FlexTable {
|
|
|
|
@ -827,7 +858,8 @@
|
|
|
|
|
padding: 14px 8px 8px 8px;
|
|
|
|
|
display: flex;
|
|
|
|
|
.Fapiao {
|
|
|
|
|
flex: 1;
|
|
|
|
|
// flex: 1;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|