Merge branch 'master' of http://60.209.125.238:13080/whm/BookingHeChuanFront
commit
87d0b377a8
@ -0,0 +1,184 @@
|
|||||||
|
<template>
|
||||||
|
<div class="operation-area">
|
||||||
|
<a-card :bordered="false" :bodyStyle="{ 'padding': '10px', 'margin-bottom': '10px' }">
|
||||||
|
<div class="btn-list more-view">
|
||||||
|
<a-popconfirm
|
||||||
|
placement="bottom"
|
||||||
|
title="刷新页面将丢失未保存数据,是否继续?"
|
||||||
|
ok-text="是"
|
||||||
|
cancel-text="否"
|
||||||
|
@confirm="refreshPage"
|
||||||
|
@cancel="cancelRefresh"
|
||||||
|
>
|
||||||
|
<button><span class="iconfont icon-shuaxin"></span>刷新</button>
|
||||||
|
</a-popconfirm>
|
||||||
|
<button><span class="iconfont icon-fuzhi1"></span>复制</button>
|
||||||
|
<button @click="saveFun"><span class="iconfont icon-icon_baocun"></span>保存</button>
|
||||||
|
<button><span class="iconfont icon-printing"></span>打印</button>
|
||||||
|
</div>
|
||||||
|
</a-card>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
details: {
|
||||||
|
type: Object,
|
||||||
|
default: () => {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
id: this.$route.query.id
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
refreshPage() {
|
||||||
|
this.$emit('refresh')
|
||||||
|
},
|
||||||
|
cancelRefresh() {
|
||||||
|
return false
|
||||||
|
},
|
||||||
|
saveFun () {
|
||||||
|
// 分单保存
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="less" scoped>
|
||||||
|
@import url('../index.less');
|
||||||
|
.operation-area {
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
.btn-list {
|
||||||
|
padding: 0 4px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
text-align: left;
|
||||||
|
// height: 48px;
|
||||||
|
// margin-bottom: 20px;
|
||||||
|
position: relative;
|
||||||
|
background: #fff;
|
||||||
|
&::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 7px;
|
||||||
|
right: 0;
|
||||||
|
width: 1px;
|
||||||
|
height: 35px;
|
||||||
|
background: #ccc;
|
||||||
|
}
|
||||||
|
&:nth-last-of-type(1) {
|
||||||
|
&::before {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
border: none;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #666;
|
||||||
|
cursor: pointer;
|
||||||
|
background: #fff;
|
||||||
|
.iconfont {
|
||||||
|
font-size: 16px;
|
||||||
|
margin-right: 6px;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.more-view {
|
||||||
|
// width: 140px;
|
||||||
|
.iconfont {
|
||||||
|
color: #2095f2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.more-view-1 {
|
||||||
|
width: 240px;
|
||||||
|
.iconfont {
|
||||||
|
color: #26b578;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.more-view-2 {
|
||||||
|
width: 200px;
|
||||||
|
.iconfont {
|
||||||
|
color: #1ebcd5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.more-view-3 {
|
||||||
|
width: 160px;
|
||||||
|
.iconfont {
|
||||||
|
color: #f36f48;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.single-view {
|
||||||
|
width: 80px;
|
||||||
|
.iconfont {
|
||||||
|
color: #fcd017;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.single-view-1 {
|
||||||
|
width: 100px;
|
||||||
|
.iconfont {
|
||||||
|
color: #3455b6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.single-view-4 {
|
||||||
|
width: 80px;
|
||||||
|
// padding-top: 10px;
|
||||||
|
.iconfont {
|
||||||
|
color: #1e7ece;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.box-flex {
|
||||||
|
display: flex;
|
||||||
|
padding-top: 8px;
|
||||||
|
span {
|
||||||
|
display: inline-block;
|
||||||
|
width: 60px;
|
||||||
|
text-align: right;
|
||||||
|
height: 32px;
|
||||||
|
line-height: 32px;
|
||||||
|
font-size: 13px;
|
||||||
|
color: @primary-color;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.item-box {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
padding-bottom: 20px;
|
||||||
|
padding-top: 20px;
|
||||||
|
overflow: hidden;
|
||||||
|
border-bottom: 1px dashed #ccc;
|
||||||
|
&:nth-last-of-type(1) {
|
||||||
|
border: none;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.book-model-box {
|
||||||
|
position: relative;
|
||||||
|
padding-left: 50px;
|
||||||
|
.book-check {
|
||||||
|
position: absolute;
|
||||||
|
width: 50px;
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.pdf-view {
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
.no-pdf {
|
||||||
|
text-align: center;
|
||||||
|
margin: 20px 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue