消除引用
This commit is contained in:
@@ -6,16 +6,13 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AiLoading from "../../components/AiLoading";
|
|
||||||
import GsLocation from "./gsLocation";
|
import GsLocation from "./gsLocation";
|
||||||
import AiTabbar from "../../components/AiTabbar";
|
|
||||||
import WardList from "./wardList";
|
import WardList from "./wardList";
|
||||||
import EarlyWarning from "./earlyWarning";
|
import EarlyWarning from "./earlyWarning";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "AppGuardianship",
|
name: "AppGuardianship",
|
||||||
appName: "智慧监护",
|
appName: "智慧监护",
|
||||||
components: {AiTabbar, AiLoading},
|
|
||||||
provide() {
|
provide() {
|
||||||
return {
|
return {
|
||||||
top: this
|
top: this
|
||||||
|
|||||||
@@ -21,13 +21,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AiSearchPopup from "../../../components/AiSearchPopup";
|
|
||||||
import AiCell from "../../../components/AiCell";
|
|
||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "areaSelector",
|
name: "areaSelector",
|
||||||
components: {AiCell, AiSearchPopup},
|
|
||||||
props: {
|
props: {
|
||||||
areaId: {default: ""}
|
areaId: {default: ""}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -32,14 +32,10 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AiTopFixed from "../../components/AiTopFixed";
|
|
||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
import AiDate from "../../components/AiDate";
|
|
||||||
import AiSelect from "../../components/AiSelect";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "earlyWarning",
|
name: "earlyWarning",
|
||||||
components: {AiSelect, AiDate, AiTopFixed},
|
|
||||||
inject: ['top'],
|
inject: ['top'],
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['user']),
|
...mapState(['user']),
|
||||||
|
|||||||
@@ -50,16 +50,13 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AiSearchPopup from "../../components/AiSearchPopup";
|
|
||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
import UPopup from "../../uview/components/u-popup/u-popup";
|
|
||||||
import MakeCalls from "./component/makeCalls";
|
import MakeCalls from "./component/makeCalls";
|
||||||
import OpenMap from "./component/openMap";
|
import OpenMap from "./component/openMap";
|
||||||
import AiMap from "../../components/AiMap";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "gsLocation",
|
name: "gsLocation",
|
||||||
components: {AiMap, OpenMap, MakeCalls, UPopup, AiSearchPopup},
|
components: {OpenMap, MakeCalls},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['user']),
|
...mapState(['user']),
|
||||||
markers() {
|
markers() {
|
||||||
|
|||||||
@@ -12,11 +12,9 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AiBack from "../../components/AiBack";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "historyList",
|
name: "historyList",
|
||||||
components: {AiBack},
|
|
||||||
computed: {
|
computed: {
|
||||||
itemLabel() {
|
itemLabel() {
|
||||||
return '历史' + this.$dict.getLabel('intelligentGuardianshipItem', this.$route.query.type) + `(${this.$dict.getLabel('intelligentGuardianshipItemUnit', this.$route.query.type)})`
|
return '历史' + this.$dict.getLabel('intelligentGuardianshipItem', this.$route.query.type) + `(${this.$dict.getLabel('intelligentGuardianshipItemUnit', this.$route.query.type)})`
|
||||||
|
|||||||
@@ -58,12 +58,10 @@
|
|||||||
<script>
|
<script>
|
||||||
import MakeCalls from "./component/makeCalls";
|
import MakeCalls from "./component/makeCalls";
|
||||||
import OpenMap from "./component/openMap";
|
import OpenMap from "./component/openMap";
|
||||||
import AiCell from "../../components/AiCell";
|
|
||||||
import AiBack from "../../components/AiBack";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "userDetail",
|
name: "userDetail",
|
||||||
components: {AiBack, AiCell, OpenMap, MakeCalls},
|
components: {OpenMap, MakeCalls},
|
||||||
computed: {
|
computed: {
|
||||||
batteryIcon() {
|
batteryIcon() {
|
||||||
return this.cdn(this.detail.electricQuantity == 100 ? 'dcm' : 'dcq')
|
return this.cdn(this.detail.electricQuantity == 100 ? 'dcm' : 'dcq')
|
||||||
|
|||||||
@@ -19,13 +19,12 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import AiTopFixed from "../../components/AiTopFixed";
|
|
||||||
import {mapState} from "vuex";
|
import {mapState} from "vuex";
|
||||||
import AreaSelector from "./component/areaSelector";
|
import AreaSelector from "./component/areaSelector";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "wardList",
|
name: "wardList",
|
||||||
components: {AreaSelector, AiTopFixed},
|
components: {AreaSelector},
|
||||||
computed: {
|
computed: {
|
||||||
...mapState(['user']),
|
...mapState(['user']),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -27,12 +27,10 @@
|
|||||||
<script>
|
<script>
|
||||||
import OpenMap from "./component/openMap";
|
import OpenMap from "./component/openMap";
|
||||||
import MakeCalls from "./component/makeCalls";
|
import MakeCalls from "./component/makeCalls";
|
||||||
import AiBack from "../../components/AiBack";
|
|
||||||
import AiMap from "../../components/AiMap";
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "warningDetail",
|
name: "warningDetail",
|
||||||
components: {AiMap, AiBack, MakeCalls, OpenMap},
|
components: {MakeCalls, OpenMap},
|
||||||
computed: {
|
computed: {
|
||||||
phoneList() {
|
phoneList() {
|
||||||
let {name: guardianName, phone: guardianPhone} = this.detail
|
let {name: guardianName, phone: guardianPhone} = this.detail
|
||||||
|
|||||||
Reference in New Issue
Block a user