diff --git a/src/api/system/building.js b/src/api/system/building.js
index a8d46ae..00e274b 100644
--- a/src/api/system/building.js
+++ b/src/api/system/building.js
@@ -9,23 +9,6 @@ export function createBuilding(data) {
})
}
-// 查询楼层导视
-export function listBuilding(query) {
- return request({
- url: '/system/building/list01',
- method: 'get',
- params: query
- })
-}
-
-// 获楼层精简信息列表
-export function listSimpleBuildings() {
- return request({
- url: '/system/building/list-all-simple',
- method: 'get'
- })
-}
-
// 更新楼层导视
export function updateBuilding(data) {
return request({
diff --git a/src/utils/dict.js b/src/utils/dict.js
index a8db4da..930260d 100644
--- a/src/utils/dict.js
+++ b/src/utils/dict.js
@@ -15,6 +15,7 @@ export const DICT_TYPE = {
WQ_TYPE: 'wq_type',
WQWT_TYPE: 'wqwt_type',
BUILDING_STATUS: 'building_status',
+ BUILDING_DIRECTION: 'building_direction',
DZ_TYPE_NUM: 'dz_type_num',
BLACKLIST_TYPE: 'blacklist_type',
EXPRESS_STATUS: 'express_status',
diff --git a/src/views/system/building/index.vue b/src/views/system/building/index.vue
index d271375..6798c92 100644
--- a/src/views/system/building/index.vue
+++ b/src/views/system/building/index.vue
@@ -1,85 +1,120 @@
-
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
搜索
重置
+
新增
- 展开/折叠
+ 导出
-
-
-
-
-
-
-
-
+
+
+
+
+
-
+
+
{{ parseTime(scope.row.createTime) }}
+
+
+
+
+
+
+
+
+
+
修改
-
- 新增
-
- 删除
+ 删除
-
+
-
-
-
-
+
-
-
-
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
![]()
+
+
+
+
diff --git a/src/views/system/nxexpress/index.vue b/src/views/system/nxexpress/index.vue
index 1e22254..a688b1a 100644
--- a/src/views/system/nxexpress/index.vue
+++ b/src/views/system/nxexpress/index.vue
@@ -446,10 +446,10 @@ export default {
},
/** 开始自动刷新 */
startAutoRefresh() {
- // 每10秒直接调用一次getList()方法
+ // 每100秒直接调用一次getList()方法
this.autoRefreshTimer = setInterval(() => {
this.getList();
- }, 10000);
+ }, 60000);
},
/** 停止自动刷新 */
stopAutoRefresh() {
@@ -535,7 +535,8 @@ export default {
this.$modal.confirm('是否确认打回该申请?').then(() => {
// 使用专门的打回接口,只需要传递id
const rejectData = {
- id: row.id
+ id: row.id,
+ status: 4,
};
console.log('打回操作提交的数据:', rejectData);