Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

肖康 / cloudSystem

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 4b87ed81 authored 4 years ago by 肖康's avatar 肖康
Browse files
Options
  • _('Browse Files')
  • Download
  • Email Patches
  • Plain Diff

x

parent 60ffaa15
Expand all Hide whitespace changes
Inline Side-by-side
Showing with 36 additions and 30 deletions
  • src/ajax/index.js
  • src/assets/css/public/common.less
  • src/assets/css/public/common.min.css
  • src/views/Store/enter.vue
src/ajax/index.js
View file @ 4b87ed81
......@@ -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':
//测试环境
......
This diff is collapsed. Click to expand it.
src/assets/css/public/common.less
View file @ 4b87ed81
......@@ -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;
......
This diff is collapsed. Click to expand it.
src/assets/css/public/common.min.css
View file @ 4b87ed81
This diff is collapsed. Click to expand it.
src/views/Store/enter.vue
View file @ 4b87ed81
......@@ -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)
......
This diff is collapsed. Click to expand it.
  • Write
  • Preview
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