Commit 47e3cd2e authored by zhengke's avatar zhengke

修改

parent 9981e7e7
......@@ -65,7 +65,7 @@
<img :src="sItem.UserPhoto" class="UserPhote" alt="" />
<span style="margin-left:5px;">{{sItem.UserName}}</span>
</div>
<div style="margin-left:35px;">
<div style="margin-top:5px;color:#777777">
{{sItem.GoodsName}}<span v-if="sItem.GoodServiceTime>0"> |
{{getHours(sItem.GoodServiceTime)}}小时</span>
</div>
......@@ -85,7 +85,7 @@
dataList: [],
msg: {
StoreId: 0, //门店名
WorkDate: '2020-11-03' //日期
WorkDate: '' //日期
},
StoreList: [], //门店下拉
scheduleData: {},
......@@ -158,6 +158,11 @@
}
},
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.getList();
}
......@@ -178,13 +183,12 @@
}
.appointmentBoard .UserPhote {
width: 30px;
height: 30px;
width: 25px;
height: 25px;
border-radius: 50%;
}
.appointmentBoard .OrderDiv_Main {
width: 200px;
text-align: left;
margin: 10px;
cursor: pointer;
......@@ -196,7 +200,7 @@
.Order_Popover .OrderList_top {
display: flex;
align-items: center;
align-items: top;
padding:15px 0;
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