diff --git a/src/views/basicData/warehouseMaintenance.vue b/src/views/basicData/warehouseMaintenance.vue
index d9396e3..5530095 100644
--- a/src/views/basicData/warehouseMaintenance.vue
+++ b/src/views/basicData/warehouseMaintenance.vue
@@ -271,18 +271,19 @@ export default {
remoteMethod(query){
if (query !== '') {
this.selectLoading = true;
- getAllUser({
- current:1,size:9999,realName:query
+ getUserByRoleAlias({
+ current:1,size:9999,realName:query,
+ roleAlias:'保管员'
}).then(res =>{
- this.keepList = res.data.data.records
+ this.keepList = res.data.data
this.selectLoading = false;
})
} else {
// this.options = [];
- getAllUser({
- current:1,size:9999
+ getUserByRoleAlias({
+ current:1,size:9999,roleAlias:'保管员'
}).then(res =>{
- this.keepList = res.data.data.records
+ this.keepList = res.data.data
})
}
},
@@ -292,11 +293,12 @@ export default {
this.checkUser = ''
this.chooseWare = []
this.noChooseWare = []
- getAllUser({
+ getUserByRoleAlias({
current:1,
- size:999999
+ size:999999,
+ roleAlias:"保管员"
}).then(res =>{
- this.keepList = res.data.data.records
+ this.keepList = res.data.data
})
}else{
this.checkWare = ""
@@ -478,12 +480,12 @@ export default {
this.getLocation()
}else if(this.tabPosition == "inventorySetup"){
this.checkUser = ''
- getAllUser({
- // roleAlias:"保管员"
+ getUserByRoleAlias({
+ roleAlias:"保管员",
current:1,
size:99999
}).then(res =>{
- this.keepList = res.data.data.records
+ this.keepList = res.data.data
})
}
},
diff --git a/src/views/desk/completedTasks.vue b/src/views/desk/completedTasks.vue
new file mode 100644
index 0000000..6d75326
--- /dev/null
+++ b/src/views/desk/completedTasks.vue
@@ -0,0 +1,234 @@
+
+
+
+
+ {{row.title}}
+
+
+ 审核通过
+ 审核拒绝
+
+
+
+
+
+
+
+
diff --git a/src/views/desk/myMessage.vue b/src/views/desk/myMessage.vue
new file mode 100644
index 0000000..ecbda58
--- /dev/null
+++ b/src/views/desk/myMessage.vue
@@ -0,0 +1,259 @@
+
+
+
+
+ 已读
+ 未读
+
+
+ 标记已读
+
+
+ {{row.content}}
+
+
+
+
+
+
+
+
diff --git a/src/views/desk/todoList.vue b/src/views/desk/todoList.vue
new file mode 100644
index 0000000..ff49863
--- /dev/null
+++ b/src/views/desk/todoList.vue
@@ -0,0 +1,178 @@
+
+
+
+
+ {{row.title}}
+
+
+
+
+
+
+
+
diff --git a/src/views/inboundOutboundManagement/otherIssuing/index.vue b/src/views/inboundOutboundManagement/otherIssuing/index.vue
index ba8d16b..34ad271 100644
--- a/src/views/inboundOutboundManagement/otherIssuing/index.vue
+++ b/src/views/inboundOutboundManagement/otherIssuing/index.vue
@@ -339,6 +339,7 @@ export default {
// public static final Short BF_TYPE_GLASS_CAKE = 3;
dicData:[
{ label: "到期维护报废", value: 1 },
+ { label: "未报废", value: 0 },
{ label: "归还报废", value: 2 },
{ label: "玻璃饼报废", value: 3 }
],
diff --git a/src/views/inboundOutboundManagement/otherIssuing/otherIssuingDailog.vue b/src/views/inboundOutboundManagement/otherIssuing/otherIssuingDailog.vue
index d49b880..98caaed 100644
--- a/src/views/inboundOutboundManagement/otherIssuing/otherIssuingDailog.vue
+++ b/src/views/inboundOutboundManagement/otherIssuing/otherIssuingDailog.vue
@@ -39,7 +39,7 @@
+ :label="`${item.realName}(${item.workNo})`" :value="item.id" />
diff --git a/src/views/inboundOutboundManagement/returnReceiving.vue b/src/views/inboundOutboundManagement/returnReceiving.vue
index 3aa1d9c..0f82896 100644
--- a/src/views/inboundOutboundManagement/returnReceiving.vue
+++ b/src/views/inboundOutboundManagement/returnReceiving.vue
@@ -278,6 +278,20 @@ export default {
},
],
},
+ {
+ label: "单价",
+ prop: "invadjMoney",
+ span: 24,
+ overflow: true,
+ search: false,
+ // rules: [
+ // {
+ // required: true,
+ // message: "请输入单位",
+ // trigger: "blur",
+ // },
+ // ],
+ },
{
label: "单位",
prop: "prtum",
diff --git a/src/views/oem/baseTemplate/index.vue b/src/views/oem/baseTemplate/index.vue
index 8671539..9fa6963 100644
--- a/src/views/oem/baseTemplate/index.vue
+++ b/src/views/oem/baseTemplate/index.vue
@@ -101,14 +101,18 @@ export default {
search: true,
searchLabelWidth: 80,
type:'select',
- dicData:[
- {
- label:'镀金'
- },
- {
- label:'镀银'
- }
- ]
+ dicUrl:"/api/blade-desk/BA/craftAbility/findList",
+ props:{
+ label:"caName",value:"id"
+ }
+ // dicData:[
+ // {
+ // label:'镀金'
+ // },
+ // {
+ // label:'镀银'
+ // }
+ // ]
},
{
label: '厂家',
diff --git a/src/views/oem/facInnerApproval/approvalDialog.vue b/src/views/oem/facInnerApproval/approvalDialog.vue
index 341d943..26093d4 100644
--- a/src/views/oem/facInnerApproval/approvalDialog.vue
+++ b/src/views/oem/facInnerApproval/approvalDialog.vue
@@ -18,6 +18,10 @@ export default {
type: Boolean,
default: false
},
+ woId:{
+ type: String,
+ default: ''
+ }
},
data() {
return {
diff --git a/src/views/oem/facInnerApproval/index.vue b/src/views/oem/facInnerApproval/index.vue
index e392e0e..e5ba775 100644
--- a/src/views/oem/facInnerApproval/index.vue
+++ b/src/views/oem/facInnerApproval/index.vue
@@ -6,6 +6,7 @@
:data="data"
v-model="form"
v-model:page="page"
+ v-model:search="search"
ref="crud"
@row-del="rowDel"
@search-change="searchChange"
@@ -17,22 +18,24 @@
@on-load="onLoad"
>
- 批量审批
+ 批量审批
- 审批
+ 审批
@@ -77,11 +152,57 @@ export default {
display: flex;
justify-content: space-between;
align-items: center;
+ border-bottom: 1px solid #eee;
+ padding-bottom: 10px;
.title{
font-weight: 550;
}
}
+ ::v-deep .el-tabs__nav-wrap::after{
+ height: 1px !important;
+ }
+
+ .back_box{
+ padding: 0 10px;
+ .back_item{
+ border-bottom: 1px solid #eee;
+ margin-bottom: 10px;
+ .back_top{
+ display: flex;
+ justify-content: space-between;
+
+ .title{
+ font-weight: 450;
+ color: #1F2937;
+ width: 70%;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+ .time{
+ color: #6B7280;
+ }
+ }
+ .bottom{
+ margin: 10px 0;
+ color: #4B5563;
+ width: 100%;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+ }
+ }
+
+ .el-button{
+ width: 280px;
+ height: 36px;
+ margin-left: 15px;
+ // margin-top: 20px;
+ position: fixed;
+ bottom: 35px;
+ }
.notice_data{
padding: 20px 0;