Commit 4b87ed81 by 肖康

x

parent 60ffaa15
......@@ -15,7 +15,7 @@ let NODE_ENVS = "/";
switch (envs) {
case 'development':
//开发环境
NODE_ENVS = 'http://192.168.2.142:8080';
NODE_ENVS = 'http://192.168.2.164:8080';
break;
case 'test':
//测试环境
......
......@@ -324,34 +324,21 @@ body {
box-shadow: 1px 2px 10px 3px rgba(119, 135, 145, 0.5);
}
.el-table td,
.el-table th.is-leaf {
border-bottom: 1px solid #D2D9E7;
}
.el-table--border{
border-bottom:0px!important;
position: relative;
&::after{
content:"";
position: absolute;
width:100%;
height:1px;
background: red;
left:0px;
bottom:-1px;
z-index: 3;
}
}
.el-table--border td,
.el-table--border th,
.el-table__body-wrapper .el-table--border.is-scrolling-left ~ .el-table__fixed {
border-right: 1px solid #D2D9E7;
}
.el-table--border,
.el-table--group {
border: 1px solid #D2D9E7;
}
// .el-table td,
// .el-table th.is-leaf {
// border-bottom: 1px solid #D2D9E7;
// }
// .el-table--border td,
// .el-table--border th,
// .el-table__body-wrapper .el-table--border.is-scrolling-left ~ .el-table__fixed {
// border-right: 1px solid #D2D9E7;
// }
// .el-table--border,
// .el-table--group {
// border: 1px solid #D2D9E7;
// }
.el-table__body-wrapper::-webkit-scrollbar {
width: 18px;
......
......@@ -8,6 +8,8 @@
<el-option label="待处理" value="1"></el-option>
<el-option label="处理中" value="2"></el-option>
<el-option label="已处理" value="3"></el-option>
<el-option label="其他失败" value="4"></el-option>
</el-select>
</el-form-item>
<el-form-item label="更新日期">
......@@ -77,6 +79,8 @@
data() {
return {
page:10,
formInline: {
status: '',
date: ''
......@@ -92,10 +96,25 @@
},
watch: {},
created() {
this.getData();
},
computed: {},
methods: {
getData(){
this.$http('GET', "/api/uploadSku/list", {
page:1,
status:1,
action_time:1,
end_time:1
}).then(res => {
if (res.err_code === 0) {
console.log(res)
} else {
Message(res.err_msg);
}
})
},
handleSelectionChange(val) {
this.multipleSelection = val;
console.log(this.multipleSelection)
......
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 sign in to comment