fix Registrazione data
fix linkref fix controllo login fix pagination CGridTableRec added CstatusReg e Cstatus
This commit is contained in:
0
src/components/CCardOperator/CCardOperator.scss
Normal file
0
src/components/CCardOperator/CCardOperator.scss
Normal file
22
src/components/CCardOperator/CCardOperator.ts
Normal file
22
src/components/CCardOperator/CCardOperator.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import Vue from 'vue'
|
||||
import { Component, Prop, Watch } from 'vue-property-decorator'
|
||||
|
||||
import { tools } from '../../store/Modules/tools'
|
||||
import { toolsext } from '@src/store/Modules/toolsext'
|
||||
import { CCard } from '@components'
|
||||
import MixinOperator from '../../mixins/mixin-operator'
|
||||
|
||||
@Component({
|
||||
name: 'CCardOperator',
|
||||
components: { CCard }
|
||||
})
|
||||
|
||||
export default class CCardOperator extends MixinOperator {
|
||||
@Prop({ required: true}) public username
|
||||
public tab: string = 'one'
|
||||
|
||||
get tools() {
|
||||
return tools
|
||||
}
|
||||
|
||||
}
|
||||
14
src/components/CCardOperator/CCardOperator.vue
Normal file
14
src/components/CCardOperator/CCardOperator.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<div>
|
||||
<CCard :op="getOperatorByUsername(username)" :tab="tab">
|
||||
</CCard>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./CCardOperator.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './CCardOperator.scss';
|
||||
</style>
|
||||
1
src/components/CCardOperator/index.ts
Normal file
1
src/components/CCardOperator/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export {default as CCardOperator} from './CCardOperator.vue'
|
||||
Reference in New Issue
Block a user