diff --git a/.hbuilderx/launch.json b/.hbuilderx/launch.json index 69faf69..179fe2d 100644 --- a/.hbuilderx/launch.json +++ b/.hbuilderx/launch.json @@ -4,19 +4,16 @@ "version" : "0.0", "configurations" : [ { - "app-plus" : - { - "launchtype" : "local" - }, - "default" : - { - "launchtype" : "local" - }, - "mp-weixin" : - { - "launchtype" : "local" - }, - "type" : "uniCloud" + "app-plus" : { + "launchtype" : "local" + }, + "default" : { + "launchtype" : "local" + }, + "mp-weixin" : { + "launchtype" : "local" + }, + "type" : "uniCloud" }, { "playground" : "custom", diff --git a/src/api/repairOrder.js b/src/api/repairOrder.js index 1295cca..733da06 100644 --- a/src/api/repairOrder.js +++ b/src/api/repairOrder.js @@ -81,4 +81,12 @@ export function repairOrderList(params) { 'method': 'GET', params }) +} +// 获取维修工单的报修信息 +export function getDeviceRepairDetailsByNumber(params) { + return request({ + url: '/eam/device-repair-request/getDetailsByNumber', + 'method': 'GET', + params + }) } \ No newline at end of file diff --git a/src/manifest.json b/src/manifest.json index fb15d59..910e9a4 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -34,7 +34,8 @@ "", "", "" - ] + ], + "abiFilters" : [ "armeabi-v7a", "arm64-v8a", "x86" ] }, "ios" : { "dSYMs" : false diff --git a/src/pages/device/index.vue b/src/pages/device/index.vue index f327300..feb0ddd 100644 --- a/src/pages/device/index.vue +++ b/src/pages/device/index.vue @@ -1,39 +1,46 @@