Commit 47e3cd2e authored by zhengke's avatar zhengke

修改

parent 9981e7e7
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
<img :src="sItem.UserPhoto" class="UserPhote" alt="" /> <img :src="sItem.UserPhoto" class="UserPhote" alt="" />
<span style="margin-left:5px;">{{sItem.UserName}}</span> <span style="margin-left:5px;">{{sItem.UserName}}</span>
</div> </div>
<div style="margin-left:35px;"> <div style="margin-top:5px;color:#777777">
{{sItem.GoodsName}}<span v-if="sItem.GoodServiceTime>0"> | {{sItem.GoodsName}}<span v-if="sItem.GoodServiceTime>0"> |
{{getHours(sItem.GoodServiceTime)}}小时</span> {{getHours(sItem.GoodServiceTime)}}小时</span>
</div> </div>
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
dataList: [], dataList: [],
msg: { msg: {
StoreId: 0, //门店名 StoreId: 0, //门店名
WorkDate: '2020-11-03' //日期 WorkDate: '' //日期
}, },
StoreList: [], //门店下拉 StoreList: [], //门店下拉
scheduleData: {}, scheduleData: {},
...@@ -158,6 +158,11 @@ ...@@ -158,6 +158,11 @@
} }
}, },
mounted() { mounted() {
var date=new Date();
var year = date.getFullYear();
var month = date.getMonth()+1;
var day = date.getDate();
this.msg.WorkDate = year+'-'+month+'-'+day;
this.getStoreList(); this.getStoreList();
this.getList(); this.getList();
} }
...@@ -178,13 +183,12 @@ ...@@ -178,13 +183,12 @@
} }
.appointmentBoard .UserPhote { .appointmentBoard .UserPhote {
width: 30px; width: 25px;
height: 30px; height: 25px;
border-radius: 50%; border-radius: 50%;
} }
.appointmentBoard .OrderDiv_Main { .appointmentBoard .OrderDiv_Main {
width: 200px;
text-align: left; text-align: left;
margin: 10px; margin: 10px;
cursor: pointer; cursor: pointer;
...@@ -196,7 +200,7 @@ ...@@ -196,7 +200,7 @@
.Order_Popover .OrderList_top { .Order_Popover .OrderList_top {
display: flex; display: flex;
align-items: center; align-items: top;
padding:15px 0; padding:15px 0;
border-bottom: 1px solid #d1d1d1; border-bottom: 1px solid #d1d1d1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment