mtask日志提交
This commit is contained in:
parent
33343150bf
commit
8837579a5d
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 1.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 10 KiB |
|
@ -70,9 +70,9 @@ export default {
|
|||
},
|
||||
submitSameDay:{
|
||||
name: "提交同一天的该部门下的所有兄弟小任务",
|
||||
req: async function(data){
|
||||
req: async function(id,data){
|
||||
return await http.post(
|
||||
`${config.API_URL}/pm/mtask/submit_related_same_day/`,
|
||||
`${config.API_URL}/pm/mtask/${id}/submit_related_same_day/`,
|
||||
data
|
||||
);
|
||||
}
|
||||
|
|
|
@ -1854,7 +1854,7 @@ const routes = [
|
|||
"name": "bigScreenP",
|
||||
"meta": {
|
||||
"title": "数据看板",
|
||||
"icon": "el-icon-position",
|
||||
"icon": "el-icon-platform",
|
||||
"perms": ["bigScreenP"],
|
||||
"fullpage": true,
|
||||
},
|
||||
|
@ -1866,7 +1866,7 @@ const routes = [
|
|||
"name": "bigScreenP",
|
||||
"meta": {
|
||||
"title": "车间看板",
|
||||
"icon": "el-icon-position",
|
||||
"icon": "el-icon-trend-charts",
|
||||
"perms": ["bigScreenP"],
|
||||
"fullpage": true,
|
||||
},
|
||||
|
@ -1878,7 +1878,7 @@ const routes = [
|
|||
"name": "bigScreenP",
|
||||
"meta": {
|
||||
"title": "统计分析",
|
||||
"icon": "el-icon-position",
|
||||
"icon": "el-icon-histogram",
|
||||
"perms": ["bigScreenP"],
|
||||
"fullpage": true,
|
||||
},
|
||||
|
|
|
@ -28,7 +28,7 @@ a,button,input,textarea{-webkit-tap-highlight-color:rgba(0,0,0,0);box-sizing: bo
|
|||
.adminui-header-left {display: flex;align-items: center;padding-left:4px;}
|
||||
.adminui-header-right {display: flex;align-items: center;}
|
||||
.adminui-header .logo-bar {font-size: 20px;font-weight: bold;display: flex;align-items: center;}
|
||||
.adminui-header .logo-bar .logo {margin-right: 10px;height: 52px;background: #ffffff;display: inline-block;padding: 4px 10px;border-radius: 5px;margin:auto}
|
||||
.adminui-header .logo-bar .logo {margin-right: 10px;height: 52px;display: inline-block;padding: 4px;border-radius: 5px;margin:auto}
|
||||
.adminui-header .nav {display: flex;height: 100%;margin-left: 40px;}
|
||||
.adminui-header .nav li {padding:0 10px;margin: 0 10px 0 0;font-size: 14px;color: rgba(255, 255, 255, 0.6);list-style: none;height: 100%;display: flex;align-items: center;cursor: pointer;}
|
||||
.adminui-header .nav li i {margin-right: 5px;}
|
||||
|
|
|
@ -170,6 +170,11 @@
|
|||
resetQuery() {
|
||||
this.query = {};
|
||||
},
|
||||
submitForm(){
|
||||
this.$API.pm.mtask.submitSameDay.req(this.orderObj.id).then(re=>{
|
||||
console.log(res)
|
||||
})
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue