139 lines
2.5 KiB
Vue
139 lines
2.5 KiB
Vue
<template>
|
|
<v-row class="search-box" align="center" no-gutters>
|
|
<v-col v-if="label" :cols="labelCols">
|
|
<label for="" class="search-box-label">
|
|
<v-icon v-if="iconShow" x-small :color="required ? '#fb8200' : 'primary'" class="mr-1"
|
|
>mdi-record-circle</v-icon
|
|
>
|
|
{{ label }}
|
|
</label>
|
|
</v-col>
|
|
<v-col :cols="label ? textCols : ''">
|
|
<v-text-field
|
|
v-model="InputValue"
|
|
class="v-input__custom"
|
|
:disabled="disabled"
|
|
:readonly="readonly"
|
|
outlined
|
|
:hide-details="true"
|
|
@keyup.enter="search"
|
|
@keydown="keydownEvent"
|
|
@keyup="keyupEvent"
|
|
:placeholder="placeholder"
|
|
></v-text-field>
|
|
</v-col>
|
|
</v-row>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapMutations } from 'vuex';
|
|
export default {
|
|
props: {
|
|
parentPrgmId: {
|
|
type: String,
|
|
require: true,
|
|
},
|
|
diffModel: {
|
|
type: String,
|
|
require: false,
|
|
},
|
|
label: {
|
|
type: String,
|
|
require: true,
|
|
},
|
|
valueNm: {
|
|
type: String,
|
|
require: true,
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
require: false,
|
|
default: false,
|
|
},
|
|
readonly: {
|
|
type: Boolean,
|
|
require: false,
|
|
default: false,
|
|
},
|
|
labelCols: {
|
|
type: Number,
|
|
require: false,
|
|
default: 4,
|
|
},
|
|
textCols: {
|
|
type: Number,
|
|
require: false,
|
|
default: 7,
|
|
},
|
|
searchOption: {
|
|
type: Boolean,
|
|
require: false,
|
|
},
|
|
required: {
|
|
type: Boolean,
|
|
require: false,
|
|
default: false,
|
|
},
|
|
iconShow:{
|
|
type:Boolean,
|
|
require:false,
|
|
default:true
|
|
},
|
|
replaceList:{
|
|
type:Array,
|
|
require:false,
|
|
default:null
|
|
},
|
|
placeholder:{
|
|
type:String,
|
|
require:false
|
|
}
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {
|
|
...mapState({
|
|
searchParam: state => state.pageData,
|
|
menuData: 'menuData',
|
|
}),
|
|
InputValue: {
|
|
get() {
|
|
return this.searchParam[this.parentPrgmId][this.valueNm];
|
|
},
|
|
set(value) {
|
|
if (!this.diffModel) {
|
|
if(this.replaceList){
|
|
for(var i=0; i<this.replaceList; i++){
|
|
value.replaceAll(this.replaceList[i]);
|
|
}
|
|
}
|
|
return this.setPageData({ [this.valueNm]: value });
|
|
}
|
|
},
|
|
},
|
|
},
|
|
created() {},
|
|
methods: {
|
|
...mapMutations({ setPageData: 'setPageData' }),
|
|
search() {
|
|
if (this.searchOption === true) {
|
|
this.setPageData({ isFind: true });
|
|
}
|
|
},
|
|
keydownEvent($event){
|
|
},
|
|
keyupEvent($event){
|
|
if(this.replaceList){
|
|
for(var i=0; i<this.replaceList.length; i++){
|
|
this.InputValue = this.InputValue.replaceAll(this.replaceList[i], '');
|
|
}
|
|
}
|
|
this.setPageData({ [this.valueNm]: this.InputValue });
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style></style>
|