33 lines
687 B
Vue
33 lines
687 B
Vue
|
|
<template>
|
||
|
|
<div>
|
||
|
|
<CMySelect
|
||
|
|
:type_out="costanti.FieldType.object"
|
||
|
|
:label="label"
|
||
|
|
v-model="myvalue"
|
||
|
|
:pickup="false"
|
||
|
|
:addnone="true"
|
||
|
|
:tablesel="table"
|
||
|
|
:myclass="myclass"
|
||
|
|
:optval="fieldsTable.getKeyByTable(jointable)"
|
||
|
|
:optlab="fieldsTable.getLabelByTable(jointable)"
|
||
|
|
:options="
|
||
|
|
globalStore.getTableJoinByName(
|
||
|
|
jointable,
|
||
|
|
false,
|
||
|
|
false,
|
||
|
|
''
|
||
|
|
)"
|
||
|
|
:useinput="false"
|
||
|
|
@update:value="changevalRec"
|
||
|
|
>
|
||
|
|
</CMySelect>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" src="./CMySelectCity.ts">
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import './CMySelectCity.scss';
|
||
|
|
</style>
|