|
|
|
@ -253,8 +253,8 @@
|
|
|
|
|
<div class="face-content">
|
|
|
|
|
<img v-if="play" id="video" ref="img" width="200px" height="200px" :src="play" alt="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="name">程小红</div>
|
|
|
|
|
<div class="code">工号:779</div>
|
|
|
|
|
<div class="name">{{ opt_current_user.real_name }}</div>
|
|
|
|
|
<div class="code">工号:{{ opt_current_user.user_code }}</div>
|
|
|
|
|
<div class="result">
|
|
|
|
|
请稍后,<br>
|
|
|
|
|
正在为您录入人脸信息..
|
|
|
|
@ -336,7 +336,8 @@ export default {
|
|
|
|
|
web_stream: null,
|
|
|
|
|
img_list: [],
|
|
|
|
|
play: null,
|
|
|
|
|
rflag: false
|
|
|
|
|
rflag: false,
|
|
|
|
|
opt_current_user: {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
@ -352,11 +353,15 @@ export default {
|
|
|
|
|
methods: {
|
|
|
|
|
getModelList() {
|
|
|
|
|
get_module_list().then(res => {
|
|
|
|
|
this.drug_module_idOptions = res.data.sys_manage
|
|
|
|
|
this.client_module_idOptions = res.data.client_manage
|
|
|
|
|
this.drug_module_idOptions = res.data.drug_manage
|
|
|
|
|
this.dangerous_module_idOptions = res.data.dangerous_manage
|
|
|
|
|
this.standard_module_idOptions = res.data.standard_manage
|
|
|
|
|
this.consumables_module_idOptions = res.data.consumables_manage
|
|
|
|
|
this.instrument_module_idOptions = res.data.instrument_manage
|
|
|
|
|
this.client_module_idOptions = res.data.client_manage
|
|
|
|
|
// this.drug_module_idOptions = res.data.sys_manage
|
|
|
|
|
// this.client_module_idOptions = res.data.client_manage
|
|
|
|
|
// this.standard_module_idOptions = res.data.standard_manage
|
|
|
|
|
// this.consumables_module_idOptions = res.data.consumables_manage
|
|
|
|
|
// this.instrument_module_idOptions = res.data.instrument_manage
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getRoleList() {
|
|
|
|
@ -439,6 +444,7 @@ export default {
|
|
|
|
|
const data = {
|
|
|
|
|
'user_id': row.user_id
|
|
|
|
|
}
|
|
|
|
|
this.opt_current_user = row
|
|
|
|
|
addStart(data).then(res => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
this.play = process.env.VUE_APP_FACE_API + '/face/play/'
|
|
|
|
@ -463,10 +469,14 @@ export default {
|
|
|
|
|
// instrument_manage: []
|
|
|
|
|
// standard_manage
|
|
|
|
|
|
|
|
|
|
this.formData.consumables_module_id = res.data.consumables_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
// this.formData.consumables_module_id = res.data.consumables_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
// this.formData.drug_module_id = res.data.drug_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
// this.formData.instrument_module_id = res.data.instrument_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
// this.formData.standard_module_id = res.data.standard_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
// this.formData.client_module_id = res.data.client_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
this.formData.drug_module_id = res.data.drug_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
this.formData.instrument_module_id = res.data.instrument_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
this.formData.standard_module_id = res.data.standard_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
this.formData.dangerous_module_id = res.data.dangerous_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
this.formData.client_module_id = res.data.client_manage.filter(item => item.have === 1).map(item => item.module_id)
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
this.tabsLoading = false
|
|
|
|
@ -508,11 +518,17 @@ export default {
|
|
|
|
|
// 提交-分配用户权限form
|
|
|
|
|
handleSubmitForm() {
|
|
|
|
|
const data = JSON.parse(JSON.stringify(this.formData))
|
|
|
|
|
// data.drug_module_id = JSON.stringify(data.drug_module_id)
|
|
|
|
|
// data.client_module_id = JSON.stringify(data.client_module_id)
|
|
|
|
|
// data.standard_module_id = JSON.stringify(data.standard_module_id)
|
|
|
|
|
// data.consumables_module_id = JSON.stringify(data.consumables_module_id)
|
|
|
|
|
// data.instrument_module_id = JSON.stringify(data.instrument_module_id)
|
|
|
|
|
data.drug_module_id = JSON.stringify(data.drug_module_id)
|
|
|
|
|
data.client_module_id = JSON.stringify(data.client_module_id)
|
|
|
|
|
data.standard_module_id = JSON.stringify(data.standard_module_id)
|
|
|
|
|
data.consumables_module_id = JSON.stringify(data.consumables_module_id)
|
|
|
|
|
data.instrument_module_id = JSON.stringify(data.instrument_module_id)
|
|
|
|
|
// data.instrument_module_id = JSON.stringify(data.instrument_module_id)
|
|
|
|
|
// data.dangerous_module_id = JSON.stringify(data.dangerous_module_id)
|
|
|
|
|
add_user_power(stringify(data)).then(
|
|
|
|
|
res => {
|
|
|
|
|
this.$message.success(res.msg)
|
|
|
|
@ -525,10 +541,14 @@ export default {
|
|
|
|
|
this.formData = {
|
|
|
|
|
user_id: undefined,
|
|
|
|
|
drug_module_id: [],
|
|
|
|
|
client_module_id: [],
|
|
|
|
|
dangerous_module_id: [],
|
|
|
|
|
standard_module_id: [],
|
|
|
|
|
consumables_module_id: [],
|
|
|
|
|
instrument_module_id: []
|
|
|
|
|
client_module_id: []
|
|
|
|
|
// drug_module_id: [],
|
|
|
|
|
// client_module_id: [],
|
|
|
|
|
// standard_module_id: [],
|
|
|
|
|
// consumables_module_id: [],
|
|
|
|
|
// instrument_module_id: []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
handleFaceCancel: function() {
|
|
|
|
|