Commit 044c6712 authored by danfuman's avatar danfuman

修改

parent 0ce14e0a
...@@ -100,7 +100,7 @@ ...@@ -100,7 +100,7 @@
fixed="right" fixed="right"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span style="cursor: pointer;" @click="handleDetail(scope.row)">查看详情</span> <span style="cursor: pointer;color:#0081FF;" @click="handleDetail(scope.row)">查看详情</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
...@@ -168,7 +168,6 @@ ...@@ -168,7 +168,6 @@
}, },
data() { data() {
return { return {
changeTime,
isSkeleton:true, isSkeleton:true,
radio:null, radio:null,
date:'', date:'',
......
...@@ -160,8 +160,8 @@ ...@@ -160,8 +160,8 @@
}); });
configKey("customer-badness-time-frame").then(response => { configKey("customer-badness-time-frame").then(response => {
let times = response.data.configValue.split("-"); let times = response.data.configValue.split("-");
this.startTime = times[0].length<2 ?'0'+times[0]+':00':times[0] this.startTime = times[0].length<2 ?'0'+times[0]+':00':times[0]+':00'
this.endTime = times[1].length<2 ?'0'+times[1]+':00':times[1] this.endTime = times[1].length<2 ?'0'+times[1]+':00':times[1]+':00'
}); });
this.getList() this.getList()
}, },
......
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