diff --git a/public/static/config.js b/public/static/config.js
index 2873d3c..3043a9f 100644
--- a/public/static/config.js
+++ b/public/static/config.js
@@ -1,5 +1,5 @@
window.g = {
AXIOS_TIMEOUT: 10000,
- ApiUrl: 'http://192.168.99.72:15000', // 配置服务器地址
+ ApiUrl: 'http://172.17.162.10:15000', // 配置服务器地址
ApiWebRtcServerUrl: '127.0.0.1:8000', // 配置监控视频服务器地址
}
\ No newline at end of file
diff --git a/src/api/asset/index.js b/src/api/asset/index.js
index c469d84..285366b 100644
--- a/src/api/asset/index.js
+++ b/src/api/asset/index.js
@@ -17,7 +17,6 @@ export function FetchAssetInfoDetailsByMark(params) {
})
}
-
// 新增盘点单
export function add(data) {
return request({
@@ -53,11 +52,21 @@ export function FetchDeleteStockTake(ids) {
})
}
+// 根据照片id删除
+export function FetchDeleteAssetInfoPhotoById(ids) {
+ return request({
+ url: 'api/asset/deleteAssetInfoPhotoById',
+ method: 'post',
+ data: ids
+ })
+}
+
export default {
FetchInitAssetInfo,
add,
FetchAssetInfoDetailsByMark,
FetchStockTakeDetailsByTaskId,
FetchStockSettle,
- FetchDeleteStockTake
+ FetchDeleteStockTake,
+ FetchDeleteAssetInfoPhotoById
}
diff --git a/src/views/assetManage/inOutLog/index.vue b/src/views/assetManage/inOutLog/index.vue
new file mode 100644
index 0000000..143b9ba
--- /dev/null
+++ b/src/views/assetManage/inOutLog/index.vue
@@ -0,0 +1,491 @@
+
+ 明细列表
+
-->
-
-