|
@@ -1,12 +1,136 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="sel-ship-confirm-module"></div>
|
|
|
|
|
|
|
+ <div class="sel-ship-confirm-module">
|
|
|
|
|
+ <!-- 列表 -->
|
|
|
|
|
+ <time-axis>
|
|
|
|
|
+ <!-- 完成 -->
|
|
|
|
|
+ <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>用途:送爱人/恋人</div>
|
|
|
|
|
+ <div>消息推送:已推送</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>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </timeaxis-item>
|
|
|
|
|
+ <!-- 发货 -->
|
|
|
|
|
+ <timeaxis-item class="axis-list axis-first confirm-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">
|
|
|
|
|
+ <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>状态:已接单</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-bold">2019-10-10 18:00:00</div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </timeaxis-item>
|
|
|
|
|
+ </time-axis>
|
|
|
|
|
+ </div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<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 {
|
|
export default {
|
|
|
- name: 'sel-ship-confirm-module'
|
|
|
|
|
|
|
+ name: 'sel-ship-confirm-module',
|
|
|
|
|
+ components: {
|
|
|
|
|
+ TimeAxis,
|
|
|
|
|
+ TimeaxisItem,
|
|
|
|
|
+ CardName
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
|
+ // 发货
|
|
|
|
|
+ .confirm-wrap {
|
|
|
|
|
+ .axis-slot-wrap {
|
|
|
|
|
+ top: -4px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ .axis-det {
|
|
|
|
|
+ margin-top: 20px;
|
|
|
|
|
+ margin-bottom: 10px;
|
|
|
|
|
+ color: $fontColor2;
|
|
|
|
|
+ & > div {
|
|
|
|
|
+ margin-top: 10px;
|
|
|
|
|
+ &:first-child {
|
|
|
|
|
+ margin-top: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ .admin-button-com {
|
|
|
|
|
+ width: 120px;
|
|
|
|
|
+ margin-top: 20px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .modify-btn {
|
|
|
|
|
+ color: $mainColor;
|
|
|
|
|
+ font-size: 24px;
|
|
|
|
|
+ margin-left: 30px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ // 打单
|
|
|
|
|
+ .com-wrap {
|
|
|
|
|
+ .axis-det {
|
|
|
|
|
+ margin-top: 14px;
|
|
|
|
|
+ & > div {
|
|
|
|
|
+ margin-top: 20px;
|
|
|
|
|
+ &:first-child {
|
|
|
|
|
+ margin-top: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
</style>
|
|
</style>
|
|
|
|
|
+
|