文件名修改

This commit is contained in:
2024-04-17 17:13:10 +08:00
parent 25765da896
commit fa93ed075a
3 changed files with 8 additions and 4 deletions

View File

@@ -35,7 +35,7 @@
} }
,{ ,{
"path" : "pages/manage/point-manage", "path" : "pages/manage/call-manage",
"style" : "style" :
{ {
"navigationStyle": "custom" "navigationStyle": "custom"

View File

@@ -32,7 +32,7 @@
return { return {
userName: '', userName: '',
menuList: [ menuList: [
{id: 1, title: '站点管理', icon: 'RF01', path: '/pages/manage/point-manage'}, {id: 1, title: '呼叫管理', icon: 'RF01', path: '/pages/manage/call-manage'},
{id: 2, title: '指令管理', icon: 'RF02', path: '/pages/manage/inst-manage'}, {id: 2, title: '指令管理', icon: 'RF02', path: '/pages/manage/inst-manage'},
{id: 3, title: '任务管理', icon: 'RF03', path: '/pages/manage/task-manage'} {id: 3, title: '任务管理', icon: 'RF03', path: '/pages/manage/task-manage'}
], ],

View File

@@ -1,6 +1,6 @@
<template> <template>
<view class="zd_container"> <view class="zd_container">
<nav-bar title="呼叫管理"></nav-bar> <nav-bar :title="title"></nav-bar>
<!-- <view class="zd-row jcflexstart state-wrap"> <!-- <view class="zd-row jcflexstart state-wrap">
<view class="zd-col-4 zd-row jcflexstart" v-for="e in state"> <view class="zd-col-4 zd-row jcflexstart" v-for="e in state">
<view class="state-color" :class="e.color"></view> <view class="state-color" :class="e.color"></view>
@@ -41,13 +41,14 @@
<script> <script>
import NavBar from '@/components/NavBar.vue' import NavBar from '@/components/NavBar.vue'
import {queryArea, queryPointByArea, callTask} from '@/utils/getData2.js' import {queryArea, queryPointByArea, callTask} from '@/utils/mork2.js'
export default { export default {
components: { components: {
NavBar NavBar
}, },
data() { data() {
return { return {
title: '',
interTime: this.$store.getters.setTime, interTime: this.$store.getters.setTime,
timer: null, timer: null,
state: [{color: 'bggray', name: '空位'}, {color: 'bggreen', name: '有货'}], state: [{color: 'bggray', name: '空位'}, {color: 'bggreen', name: '有货'}],
@@ -60,6 +61,9 @@
isS: false isS: false
}; };
}, },
onLoad (options) {
this.title = options.title
},
created () { created () {
this.initArea() this.initArea()
}, },