diff --git a/src/api/system/deptUser.js b/src/api/system/deptUser.js index 97112a67..fbd1866b 100644 --- a/src/api/system/deptUser.js +++ b/src/api/system/deptUser.js @@ -10,6 +10,15 @@ export function listDeptUser(query) { }) } +// 查询部门列表 +export function filterListByDeptCode(query) { + return request({ + url: '/udi/auth/dept/user/list', + method: 'get', + params: query + }) +} + export function removeUser(data) { return axios({ url: "/udi/auth/dept/user/delete", diff --git a/src/views/components/deptSelect/index.js b/src/views/components/deptSelect/index.js index d71d0898..7b8c9cba 100644 --- a/src/views/components/deptSelect/index.js +++ b/src/views/components/deptSelect/index.js @@ -2,8 +2,9 @@ import {filterList} from "@/api/system/invWarehouse"; export default { - name: "deptSelect", - props: {value: {required: true},notCode:null}, + name: 'deptSelect', + props: { value: { required: true }, notCode: null,maintenance: null, + }, data() { return { val: '', @@ -24,7 +25,11 @@ export default { }, methods: { getList() { - filterList({enable: true}).then(res => { + let data = + {enable: true, + } + if (this.maintenance != null) data.maintenance = true + filterList(data).then(res => { if (res.code == 20000) { this.list = res.data.list || [] if(this.notCode!=null) { diff --git a/src/views/dev/deviceInfo.vue b/src/views/dev/deviceInfo.vue index 0446fac4..7d5561d5 100644 --- a/src/views/dev/deviceInfo.vue +++ b/src/views/dev/deviceInfo.vue @@ -2,21 +2,21 @@
- + - + - + - 查询 + 选入 +
- - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + - -
-
- {{ - `设备详情 ${clickRow ? '——' + clickRow.productName + '(' + clickRow.ggxh + ')' : ''}` - }} -
-
- 刷新 -
-
- - - - - - - 查询 - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -161,11 +177,11 @@ >设备码 - 选择 - + + + + + +

+

+
+ +
+
+ 设备号: + + {{ item.deviceCode }} +
+
+ + + + {{ item.productName }} + + + {{ item.ggxh }} + + + + + + + + + + + + +
+
diff --git a/src/views/dev/deviceRepair.vue b/src/views/dev/deviceRepair.vue index 333d2ece..6415b831 100644 --- a/src/views/dev/deviceRepair.vue +++ b/src/views/dev/deviceRepair.vue @@ -75,7 +75,7 @@ @@ -87,6 +87,57 @@ @pagination="getList" /> + + + +
+
+ {{ `设备号:${currentRow.deviceCode}` }} +
+
+ 完成维修 +
+
+ + {{ currentRow.id }} + {{ + currentRow.finishFlag ? '已完成' : '未完成' + }} + {{ currentRow.productName }} + {{ currentRow.ggxh }} + {{ currentRow.nameCode }} + {{ currentRow.zczbhhzbapzbh }} + {{ currentRow.manufactory }} + {{ currentRow.supName }} + {{ currentRow.batchNo }} + {{ currentRow.serialNo }} + {{ currentRow.udi }} + {{ currentRow.productionDate }} + {{ currentRow.expireDate }} + + {{ currentRow.innerFlag ? '内部维修' : '外部维修' }} + + + {{ currentRow.repairUserName }} + + + {{ currentRow.repairUserPhone }} + + + {{ currentRow.description }} + + + {{ currentRow.diagnosisInfo }} + + +
+
diff --git a/src/views/dev/deviceRepairApply.vue b/src/views/dev/deviceRepairApply.vue index a697186e..ddce12e6 100644 --- a/src/views/dev/deviceRepairApply.vue +++ b/src/views/dev/deviceRepairApply.vue @@ -5,15 +5,20 @@ - - - - + + - - + + + + + + + + + @@ -145,24 +150,29 @@ - - - - {{ user.locDeptName }} - - - - - {{ user.employeeName }} + + + + - + + + + + + + + + + + - +
@@ -176,21 +186,22 @@
- -
+ +
设备号:{{ item.deviceCode }}
-
+
移除
- + - {{ item.productName }} - {{ item.ggxh }} - + {{ item.productName }} + {{ item.ggxh }} + diff --git a/src/views/dev/deviceRepairApplyHall.vue b/src/views/dev/deviceRepairApplyHall.vue index 28cce17a..bf239155 100644 --- a/src/views/dev/deviceRepairApplyHall.vue +++ b/src/views/dev/deviceRepairApplyHall.vue @@ -1,11 +1,11 @@