You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
833 B
46 lines
833 B
<template>
|
|
<field-wrapper
|
|
:activate="activate"
|
|
:field="field"
|
|
:control-flag="controlFlag"
|
|
class="field-current-position"
|
|
@click="emitClick"
|
|
@action="handleAction">
|
|
|
|
<flexbox align="center" class="box">
|
|
<flexbox-item class="default-val" />
|
|
<span class="wk wk-icon-location" />
|
|
</flexbox>
|
|
|
|
</field-wrapper>
|
|
</template>
|
|
|
|
<script>
|
|
import FieldWrapper from './FieldWrapper'
|
|
import mixins from './mixins'
|
|
|
|
export default {
|
|
name: 'FieldCurrentPosition',
|
|
components: {
|
|
FieldWrapper
|
|
},
|
|
mixins: [mixins],
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.box {
|
|
width: 100%;
|
|
height: 32px;
|
|
font-size: 14px;
|
|
border: 1px solid #dcdfe6;
|
|
border-radius: $xr-border-radius-base;
|
|
background: white;
|
|
padding: 0 10px;
|
|
.wk-icon-location {
|
|
color: #999999;
|
|
}
|
|
}
|
|
</style>
|