返 回
@@ -22,17 +107,90 @@
},
data(){
return{
+ orederActive:0,
newVisible:false,
modeStyle:{
'min-height':'311px',
'padding-top':'15px'
},
+ step:0,
+ data:[
+ {
+ key: '1',
+ name: 'John Brown',
+ money: '¥300,000.00',
+ address: 'New York No. 1 Lake Park',
+ },
+ {
+ key: '2',
+ name: 'Jim Green',
+ money: '¥1,256,000.00',
+ address: 'London No. 1 Lake Park',
+ },
+ {
+ key: '3',
+ name: 'Joe Black',
+ money: '¥120,000.00',
+ address: 'Sidney No. 1 Lake Park',
+ },
+ ],
+ columns:[
+ {
+ title: '结算方',
+ className: 'table_column',
+ dataIndex: 'id',
+ width:'120px',
+ align:'center'
+ },
+ {
+ title: '结算内容',
+ dataIndex: 'money',
+ width:'120px',
+ align:'center'
+ },
+ {
+ title: '金额',
+ dataIndex: 'name',
+ width:'120px',
+ align:'center'
+ },
+ {
+ title: '税率',
+ dataIndex: '',
+ width:'120px',
+ align:'center'
+ },
+ {
+ title: '税额',
+ dataIndex: '',
+ width:'120px',
+ align:'center'
+ },
+ {
+ title: '结算金额',
+ dataIndex: '',
+ width:'120px',
+ align:'center'
+ },
+ {
+ title: '结算状态',
+ dataIndex: '',
+ width:'120px',
+ align:'center'
+ },
+ {
+ title: '结算流水号',
+ dataIndex: '',
+ width:'220px',
+ align:'center'
+ },
+ ]
}
},
methods:{
onClose() {
this.newVisible=false
- this.$emit('update:visible2', false)
+ this.$emit('update:visible', false)
}
},
watch:{
@@ -55,4 +213,67 @@
p{
margin-bottom: 0;
}
+ .steps_body{
+ padding: 0 55px;
+ }
+ .steps{
+ margin-top: 48px;
+ }
+ .order_body{
+ padding: 0 26px;
+ margin-top: 24px;
+ }
+ .order_title{
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ color: #4E73E4;
+ margin-bottom: 12px;
+ }
+ .order_title_left span{
+ display: inline-block;
+ cursor: pointer;
+ text-decoration: underline;
+ margin-right: 64px;
+ }
+
+ .order_title_right{
+ display: flex;
+ align-items: center;
+ }
+ .order_switch{
+ margin-left: 20px;
+ }
+ .oreder_content{
+ border: 1px #AAAAAA dashed ;
+ min-height: 422px;
+ border-radius: 5px;
+ padding: 24px 20px;
+ /* padding-top: 24px; */
+ }
+ .oreder_content_title{
+ font-size: 16px;
+ color: #4E5969;
+ margin-bottom: 15px;
+ font-weight: bold;
+ }
+ .oreder_info{
+ margin-bottom: 20px;
+ }
+ .oreder_info:last-child{
+ margin-bottom: 0;
+ }
+ /deep/ .ant-table-tbody > tr > td {
+ padding: 15px 16px;
+ }
+ /deep/ .ant-table-thead > tr > th {
+ padding: 15px 16px;
+ }
+ .order_download span{
+ display: inline-block;
+ cursor: pointer;
+ text-decoration: underline;
+ margin-right: 46px;
+ color: #AAAAAA;
+ }
diff --git a/src/components/page/order/closed.vue b/src/components/page/order/closed.vue
index 3f4e606..4ec8fe1 100644
--- a/src/components/page/order/closed.vue
+++ b/src/components/page/order/closed.vue
@@ -64,7 +64,7 @@
数据查看
- 订单详情
+ 订单详情
@@ -85,6 +85,7 @@