文件名修改

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

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