|
@@ -8,13 +8,8 @@
|
|
|
<view class="work-order-list">
|
|
<view class="work-order-list">
|
|
|
<orderList></orderList>
|
|
<orderList></orderList>
|
|
|
</view>
|
|
</view>
|
|
|
- <view class="work-detail" style="background:blue;">
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="operate-area" style="background:yellow;">
|
|
|
|
|
-
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="work-item-detail" style="background:red;">
|
|
|
|
|
-
|
|
|
|
|
|
|
+ <view class="work-order-info">
|
|
|
|
|
+ <orderInfo></orderInfo>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -25,9 +20,10 @@ import { mapGetters } from "vuex";
|
|
|
import productMins from "@/mixins/product";
|
|
import productMins from "@/mixins/product";
|
|
|
import casherNav from '@/components/casher-nav.vue'
|
|
import casherNav from '@/components/casher-nav.vue'
|
|
|
import orderList from './components/order-list.vue'
|
|
import orderList from './components/order-list.vue'
|
|
|
|
|
+import orderInfo from './components/order-info.vue'
|
|
|
export default {
|
|
export default {
|
|
|
name: "workIndex",
|
|
name: "workIndex",
|
|
|
- components: {casherNav,orderList},
|
|
|
|
|
|
|
+ components: {casherNav,orderList,orderInfo},
|
|
|
mixins: [productMins],
|
|
mixins: [productMins],
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
@@ -37,7 +33,7 @@ export default {
|
|
|
...mapGetters(["getLoginInfo"])
|
|
...mapGetters(["getLoginInfo"])
|
|
|
},
|
|
},
|
|
|
onLoad() {
|
|
onLoad() {
|
|
|
- this.initDataFromStorage()
|
|
|
|
|
|
|
+ //this.initDataFromStorage()
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
|
}
|
|
}
|
|
@@ -56,16 +52,9 @@ export default {
|
|
|
flex: 32;
|
|
flex: 32;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
}
|
|
}
|
|
|
- & .work-detail{
|
|
|
|
|
- flex: 40;
|
|
|
|
|
- }
|
|
|
|
|
- & .operate-area {
|
|
|
|
|
- flex: 9;
|
|
|
|
|
- height: 100vh;
|
|
|
|
|
- }
|
|
|
|
|
- & .work-item-detail {
|
|
|
|
|
- flex: 40;
|
|
|
|
|
|
|
+ & .work-order-info{
|
|
|
|
|
+ flex: 89;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
- }
|
|
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|