|
|
@@ -0,0 +1,139 @@
|
|
|
+<template>
|
|
|
+ <div class="sel-confirm-module">
|
|
|
+ <!-- 列表 -->
|
|
|
+ <time-axis>
|
|
|
+ <!-- 完成 -->
|
|
|
+ <timeaxis-item class="axis-list axis-first com-wrap" bgcolor="none">
|
|
|
+ <template v-slot:node>
|
|
|
+ <div class="tui-node node-big">
|
|
|
+ <div class="node-small"></div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <template v-slot:content>
|
|
|
+ <div class="axis-slot-wrap">
|
|
|
+ <div class="axis-title">完成</div>
|
|
|
+ <div class="axis-det">
|
|
|
+ <button class="admin-button-com big blue confirm-btn">订单归类</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </timeaxis-item>
|
|
|
+ <!-- 送达 -->
|
|
|
+ <timeaxis-item class="axis-list com-wrap" bgcolor="none">
|
|
|
+ <template v-slot:content>
|
|
|
+ <div class="axis-slot-wrap">
|
|
|
+ <div class="axis-title">送达</div>
|
|
|
+ <div class="axis-det">
|
|
|
+ <div class="app-color-0 app-bold">2019-10-10 18:00:00</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </timeaxis-item>
|
|
|
+ <!-- 发货 -->
|
|
|
+ <timeaxis-item class="axis-list confirm-wrap" bgcolor="none">
|
|
|
+ <template v-slot:content>
|
|
|
+ <div class="axis-slot-wrap">
|
|
|
+ <div class="axis-title">发货</div>
|
|
|
+ <div class="axis-det">
|
|
|
+ <div class="app-color-0 app-bold">2019-10-10 18:00:00</div>
|
|
|
+ <div>配送方:达达</div>
|
|
|
+ <div>距离:5.5km</div>
|
|
|
+ <div>运费:¥28</div>
|
|
|
+ <div>小费:¥5</div>
|
|
|
+ <div>
|
|
|
+ <span>状态:</span>
|
|
|
+ <span class="app-color-4">待接单</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </timeaxis-item>
|
|
|
+ <!-- 打单 -->
|
|
|
+ <timeaxis-item class="axis-list com-wrap" bgcolor="none">
|
|
|
+ <template v-slot:content>
|
|
|
+ <div class="axis-slot-wrap">
|
|
|
+ <div class="axis-title">打单</div>
|
|
|
+ <div class="axis-det">
|
|
|
+ <div class="app-bold">2019-10-10 18:00:00</div>
|
|
|
+ <card-name />
|
|
|
+ <div class="btn-wrap-com">
|
|
|
+ <button class="admin-button-com default">明细</button>
|
|
|
+ <button class="admin-button-com default">打印</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </timeaxis-item>
|
|
|
+ <!-- 下单 -->
|
|
|
+ <timeaxis-item class="axis-list com-wrap" bgcolor="none">
|
|
|
+ <template v-slot:content>
|
|
|
+ <div class="axis-slot-wrap">
|
|
|
+ <div class="axis-title">下单</div>
|
|
|
+ <div class="axis-det">
|
|
|
+ <div class="app-color-0 app-bold">2019-10-10 18:00:00</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </timeaxis-item>
|
|
|
+ </time-axis>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import TimeAxis from '@/pages/admin/components/plugin/time-axis'
|
|
|
+import TimeaxisItem from '@/pages/admin/components/plugin/timeaxis-item'
|
|
|
+import CardName from './card-name'
|
|
|
+export default {
|
|
|
+ name: 'sel-confirm-module',
|
|
|
+ components: {
|
|
|
+ TimeAxis,
|
|
|
+ TimeaxisItem,
|
|
|
+ CardName
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+ // 完成
|
|
|
+ .axis-first {
|
|
|
+ .axis-det {
|
|
|
+ margin-top: 40px !important;
|
|
|
+ }
|
|
|
+ .confirm-btn {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 发货
|
|
|
+ .confirm-wrap {
|
|
|
+ .axis-slot-wrap {
|
|
|
+ top: -4px !important;
|
|
|
+ }
|
|
|
+ .axis-det {
|
|
|
+ margin-top: 20px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ color: $fontColor2;
|
|
|
+ & > div {
|
|
|
+ margin-top: 14px;
|
|
|
+ &:first-child {
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .admin-button-com {
|
|
|
+ width: 120px;
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 打单
|
|
|
+ .com-wrap {
|
|
|
+ .axis-det {
|
|
|
+ margin-top: 14px;
|
|
|
+ & > div {
|
|
|
+ margin-top: 20px;
|
|
|
+ &:first-child {
|
|
|
+ margin-top: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|