2023-4-17-设备

zhc4dev
YTD 2 years ago
parent 69ccdd769d
commit 16cd8ca4d7
  1. 2
      ant-design-vue-jeecg/src/components/jeecg/modal/JPopupOnlReport.vue
  2. 92
      ant-design-vue-jeecg/src/components/jeecgbiz/JSelectUserByDep.vue
  3. 2
      ant-design-vue-jeecg/src/components/jeecgbiz/modal/JSelectUserByDepModal.vue

@ -119,7 +119,7 @@
total: 0 total: 0
} }
}, },
cgRpConfigId:"", cgRpConfigId:"1610839316058812417",
modalWidth:MODAL_WIDTH, modalWidth:MODAL_WIDTH,
tableScroll:{x:true}, tableScroll:{x:true},
dynamicParam:{}, dynamicParam:{},

@ -1,14 +1,28 @@
<template> <template>
<div> <div>
<a-input-search <!-- <a-input
v-model="userNames" v-model="userNames"
placeholder="请选择用户" placeholder="请点击选择用户"
readOnly readOnly
unselectable="on" unselectable="on"
@search="onSearchDepUser"> @search="onSearchDepUser"
:disabled="disabled"
@click="onSearchDepUser"
>
<a-icon slot="enterButton" type="cluster" title="部门选择控件" />
</a-input> -->
<a-input-search v-model="userNames" placeholder="请先选择用户" readOnly unselectable="on" @search="onSearchDepUser">
<a-button slot="enterButton" :disabled="disabled">选择用户</a-button> <a-button slot="enterButton" :disabled="disabled">选择用户</a-button>
</a-input-search> </a-input-search>
<j-select-user-by-dep-modal ref="selectModal" :modal-width="modalWidth" :multi="multi" @ok="selectOK" :user-ids="value" @initComp="initComp"/> <j-select-user-by-dep-modal
ref="selectModal"
:modal-width="modalWidth"
:multi="multi"
@ok="selectOK"
:user-ids="value"
@initComp="initComp"
/>
<!-- :user-ids="value" -->
</div> </div>
</template> </template>
@ -22,32 +36,32 @@
modalWidth: { modalWidth: {
type: Number, type: Number,
default: 1250, default: 1250,
required: false required: false,
}, },
value: { value: {
type: String, type: String,
required: false required: false,
}, },
disabled: { disabled: {
type: Boolean, type: Boolean,
required: false, required: false,
default: false default: false,
}, },
multi: { multi: {
type: Boolean, type: Boolean,
default: true, default: false,
required: false required: false,
}, },
backUser: { backUser: {
type: Boolean, type: Boolean,
default: false, default: false,
required: false required: false,
} },
}, },
data() { data() {
return { return {
userIds: "", userIds: '',
userNames: "" userNames: '',
} }
}, },
mounted() { mounted() {
@ -56,12 +70,12 @@
watch: { watch: {
value(val) { value(val) {
this.userIds = val this.userIds = val
}
}, },
model: {
prop: 'value',
event: 'change'
}, },
// model: {
// prop: 'value',
// event: 'change',
// },
methods: { methods: {
initComp(userNames) { initComp(userNames) {
this.userNames = userNames this.userNames = userNames
@ -76,7 +90,7 @@
for (let i = 0; i < arr1.length; i++) { for (let i = 0; i < arr1.length; i++) {
info.push({ info.push({
value: arr1[i], value: arr1[i],
text: arr2[i] text: arr2[i],
}) })
} }
this.$emit('back', info) this.$emit('back', info)
@ -87,25 +101,45 @@
this.$refs.selectModal.showModal() this.$refs.selectModal.showModal()
}, },
selectOK(rows, idstr) { selectOK(rows, idstr) {
console.log("当前选中用户", rows) //
console.log("当前选中用户ID", idstr) let temp = ''
if (!rows) { console.log('当前选中用户', rows)
console.log('当前选中用户ID', idstr)
//if(!rows)
if (!rows && rows.length <= 0) {
this.userNames = '' this.userNames = ''
this.userIds = '' this.userIds = ''
} else { } else {
let temp = '' // let temp = ''
//
for (let item of rows) { for (let item of rows) {
temp += ',' + item.realname //
console.log(item)
// temp += item.realname
console.log(temp)
//
temp += ' ' + item.realname
} }
this.userNames = temp.substring(1) // this.userNames = temp.substring(1)
this.userNames = temp
console.log(this.userNames)
this.userIds = idstr this.userIds = idstr
console.log(rows)
} }
this.$emit("change", this.userIds) this.$emit('change', this.userIds)
} //
} // this.$emit('change', this.userNames)
this.backDeparInfo()
},
},
model: {
prop: 'userNames',
event: 'change',
},
} }
</script> </script>
<style scoped> <style scoped></style>
</style>

@ -275,7 +275,7 @@
this.selectUserRows.push(row) this.selectUserRows.push(row)
} }
} }
this.selectUserIds = this.selectUserRows.map(row => row.username).join(',') this.selectUserIds = this.selectUserRows.map(row => row.id).join(',')
}, },
// , // ,
onDepSelect(selectedDepIds) { onDepSelect(selectedDepIds) {

Loading…
Cancel
Save