mtask日志提交

This commit is contained in:
shijing 2023-10-25 14:02:08 +08:00
parent 33343150bf
commit 8837579a5d
7 changed files with 11 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
public/favicon1.ico Normal file

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

View File

@ -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
);
}

View File

@ -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,
},

View File

@ -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;}

View File

@ -170,6 +170,11 @@
resetQuery() {
this.query = {};
},
submitForm(){
this.$API.pm.mtask.submitSameDay.req(this.orderObj.id).then(re=>{
console.log(res)
})
},
},
};
</script>