diff --git a/src/api/EquipmentEntryApply/index.js b/src/api/EquipmentEntryApply/index.js index 5d0fdc55..47a0e81d 100644 --- a/src/api/EquipmentEntryApply/index.js +++ b/src/api/EquipmentEntryApply/index.js @@ -112,6 +112,15 @@ export const equipmentAddApiNew = (data = {}) => { }) } +// 新增装备 +export const addInterDevice = (data = {}) => { + return request({ + url: '/material-mall/order/interDevice', + method: 'POST', + data + }) +} + // 修改装备 新接口 export const equipmentEditApiNew = (data = {}) => { return request({ @@ -129,6 +138,13 @@ export const equipmentDraftListApiNew = (data = {}) => { params: data }) } +export const getDeviceListApi = (data) => { + return request({ + url: '/material-mall/order/getDevice', + method: 'GET', + params: data + }) +} // 提交申请接口 export const equipmentSubmitApiNew = (data = {}) => { @@ -226,5 +242,12 @@ export const fourthToSixthLevel = (data = {}) => { }) } +// 装备台账详情 +export const getDeviceApi = (id) => { + return request({ + url: `/material-mall/device/getDevice/${id}`, + method: 'GET', + }) +} diff --git a/src/api/EquipmentLedger/index.js b/src/api/EquipmentLedger/index.js index a2aa3155..bd7e9b47 100644 --- a/src/api/EquipmentLedger/index.js +++ b/src/api/EquipmentLedger/index.js @@ -50,3 +50,12 @@ export const delDevice = (ids) => { method: 'post', }) } + +// 厂家 +export const getManufacturerSelectApi = (data = {}) => { + return request({ + url: '/material-mall/ma_supplier_info/select', + method: 'GET', + params: data + }) +} \ No newline at end of file diff --git a/src/assets/images/pdf.png b/src/assets/images/pdf.png new file mode 100644 index 00000000..cf0170e8 Binary files /dev/null and b/src/assets/images/pdf.png differ diff --git a/src/assets/images/word.png b/src/assets/images/word.png new file mode 100644 index 00000000..4fef0d3c Binary files /dev/null and b/src/assets/images/word.png differ diff --git a/src/components/RightToolbar/index.vue b/src/components/RightToolbar/index.vue index 67da2930..17bf7ca6 100644 --- a/src/components/RightToolbar/index.vue +++ b/src/components/RightToolbar/index.vue @@ -11,7 +11,7 @@ - + + + diff --git a/src/views/EquipmentLedger/index.vue b/src/views/EquipmentLedger/index.vue index ce8266c6..14fb731e 100644 --- a/src/views/EquipmentLedger/index.vue +++ b/src/views/EquipmentLedger/index.vue @@ -1,8 +1,8 @@