|
@@ -1,63 +1,66 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <view class="billing_box_bg">
|
|
|
|
|
- <view class="top-view"> </view>
|
|
|
|
|
- <view class="result-view">
|
|
|
|
|
- <view class="iconfont iconchenggong"></view>
|
|
|
|
|
- <view class="result-title">开单成功</view>
|
|
|
|
|
- <button class="admin-button-com blue big">发货详情</button>
|
|
|
|
|
- <button class="admin-button-com big">打印单据</button>
|
|
|
|
|
- <button class="admin-button-com big">继续开单</button>
|
|
|
|
|
- <button class="admin-button-com big">订单列表</button>
|
|
|
|
|
- </view>
|
|
|
|
|
- </view>
|
|
|
|
|
|
|
+ <appResult>
|
|
|
|
|
+ <button class="admin-button-com blue big">发货详情</button>
|
|
|
|
|
+ <button class="admin-button-com big">打印单据</button>
|
|
|
|
|
+ <button class="admin-button-com big">继续开单</button>
|
|
|
|
|
+ <button class="admin-button-com big">订单列表</button>
|
|
|
|
|
+ </appResult>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
+import appResult from '@/components/app-result'
|
|
|
export default {
|
|
export default {
|
|
|
- name: "BillingResult" // 开单结果
|
|
|
|
|
|
|
+ name: "BillingResult", // 开单结果
|
|
|
|
|
+ components:{
|
|
|
|
|
+ appResult
|
|
|
|
|
+ }
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
-.billing_box_bg {
|
|
|
|
|
- position: relative;
|
|
|
|
|
- padding: 60px 30px;
|
|
|
|
|
- height: 100%;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- flex-direction: column;
|
|
|
|
|
-
|
|
|
|
|
- .top-view {
|
|
|
|
|
- position: absolute;
|
|
|
|
|
- top: 0;
|
|
|
|
|
- left: 0;
|
|
|
|
|
- width: 100%;
|
|
|
|
|
-
|
|
|
|
|
- height: 299px;
|
|
|
|
|
- background: #3385ff;
|
|
|
|
|
- border-radius: 0px 0px 83px 83px;
|
|
|
|
|
- }
|
|
|
|
|
- .result-view {
|
|
|
|
|
- position: relative;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- flex-direction: column;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- padding: 70px;
|
|
|
|
|
- width: 100%;
|
|
|
|
|
- background: #ffffff;
|
|
|
|
|
- border-radius: 20px;
|
|
|
|
|
- z-index: 1;
|
|
|
|
|
- .iconchenggong {
|
|
|
|
|
- font-size: 170px;
|
|
|
|
|
- color: $mainColor1;
|
|
|
|
|
- }
|
|
|
|
|
- .result-title {
|
|
|
|
|
- margin: 50px 0 70px;
|
|
|
|
|
- font-size: 32px;
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
.admin-button-com {
|
|
.admin-button-com {
|
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
}
|
|
}
|
|
|
-}
|
|
|
|
|
|
|
+// .billing_box_bg {
|
|
|
|
|
+// position: relative;
|
|
|
|
|
+// padding: 60px 30px;
|
|
|
|
|
+// height: 100%;
|
|
|
|
|
+// display: flex;
|
|
|
|
|
+// flex-direction: column;
|
|
|
|
|
+
|
|
|
|
|
+// .top-view {
|
|
|
|
|
+// position: absolute;
|
|
|
|
|
+// top: 0;
|
|
|
|
|
+// left: 0;
|
|
|
|
|
+// width: 100%;
|
|
|
|
|
+
|
|
|
|
|
+// height: 299px;
|
|
|
|
|
+// background: #3385ff;
|
|
|
|
|
+// border-radius: 0px 0px 83px 83px;
|
|
|
|
|
+// }
|
|
|
|
|
+// .result-view {
|
|
|
|
|
+// position: relative;
|
|
|
|
|
+// display: flex;
|
|
|
|
|
+// flex-direction: column;
|
|
|
|
|
+// align-items: center;
|
|
|
|
|
+// padding: 70px;
|
|
|
|
|
+// width: 100%;
|
|
|
|
|
+// background: #ffffff;
|
|
|
|
|
+// border-radius: 20px;
|
|
|
|
|
+// z-index: 1;
|
|
|
|
|
+// .iconchenggong {
|
|
|
|
|
+// font-size: 170px;
|
|
|
|
|
+// color: $mainColor1;
|
|
|
|
|
+// }
|
|
|
|
|
+// .result-title {
|
|
|
|
|
+// margin: 50px 0 70px;
|
|
|
|
|
+// font-size: 32px;
|
|
|
|
|
+// }
|
|
|
|
|
+// }
|
|
|
|
|
+// .admin-button-com {
|
|
|
|
|
+// margin-bottom: 20px;
|
|
|
|
|
+// width: 100%;
|
|
|
|
|
+// }
|
|
|
|
|
+// }
|
|
|
</style>
|
|
</style>
|