import dxui from '../../../../../dxmodules/dxUi.js'
|
import std from '../../../../../dxmodules/dxStd.js'
|
import viewUtils from "../../../viewUtils.js"
|
import topView from "../../../topView.js"
|
import localUserView from '../localUserView.js'
|
import faceEnterView from './faceEnterView.js'
|
import i18n from "../../../i18n.js"
|
import pinyin from '../../../pinyin/pinyin.js'
|
import screen from '../../../../screen.js'
|
const localUserAddView = {}
|
const dropdownData = ['保管员', '科长']
|
const dropdownData2 = ['User', 'Administrator']
|
|
localUserAddView.init = function () {
|
/**************************************************创建屏幕*****************************************************/
|
const screenMain = dxui.View.build('localUserAddView', dxui.Utils.LAYER.MAIN)
|
localUserAddView.screenMain = screenMain
|
screenMain.scroll(false)
|
screenMain.bgColor(0xffffff)
|
screenMain.on(dxui.Utils.ENUM.LV_EVENT_SCREEN_LOADED, () => {
|
topView.changeTheme(true)
|
refreshType()
|
if (!localUserAddView.deleteBtn.isHide()) {
|
//修改用户不允许改id
|
localUserAddView.userInfo[0].input.disable(true)
|
} else {
|
localUserAddView.userInfo[0].input.disable(false)
|
}
|
})
|
|
screenMain.on(dxui.Utils.ENUM.LV_EVENT_SCREEN_UNLOADED, () => {
|
})
|
|
const titleBox = viewUtils.title(screenMain, localUserView.screenMain, 'localUserAddViewTitle', 'localUserAddView.title', undefined)
|
localUserAddView.titleBox = titleBox
|
titleBox.align(dxui.Utils.ALIGN.TOP_MID, 0, 70)
|
|
const titleBox2 = viewUtils.title(screenMain, localUserView.screenMain, 'localUserAddViewTitle2', 'localUserAddView.title2', undefined)
|
localUserAddView.titleBox2 = titleBox2
|
titleBox2.align(dxui.Utils.ALIGN.TOP_MID, 0, 70)
|
titleBox2.hide()
|
|
const addUserBox = dxui.View.build('addUserBox', screenMain)
|
viewUtils._clearStyle(addUserBox)
|
addUserBox.setSize(screen.screenSize.width, 700)
|
addUserBox.align(dxui.Utils.ALIGN.TOP_MID, 0, 142)
|
addUserBox.borderWidth(1)
|
addUserBox.setBorderColor(0xDEDEDE)
|
addUserBox.obj.setStyleBorderSide(dxui.Utils.ENUM.LV_BORDER_SIDE_TOP, 0)
|
addUserBox.bgOpa(0)
|
|
addUserBox.flexFlow(dxui.Utils.FLEX_FLOW.ROW_WRAP)
|
addUserBox.flexAlign(dxui.Utils.FLEX_ALIGN.CENTER, dxui.Utils.FLEX_ALIGN.CENTER, dxui.Utils.FLEX_ALIGN.START)
|
addUserBox.obj.lvObjSetStylePadGap(0, dxui.Utils.ENUM._LV_STYLE_STATE_CMP_SAME)
|
|
localUserAddView.userInfo = [
|
{
|
title: 'localUserAddView.id',
|
value: null,
|
required: true,
|
type: 'input',
|
input: null
|
},
|
{
|
title: 'localUserAddView.name',
|
value: null,
|
required: true,
|
type: 'input',
|
input: null
|
},
|
{
|
title: 'localUserAddView.idCard',
|
value: null,
|
type: 'input',
|
input: null
|
},
|
{
|
title: 'localUserAddView.face',
|
value: null,
|
type: 'button',
|
btn: null,
|
btnEdit: null,
|
faceImg: null,
|
deleteBtn: null
|
},
|
{
|
title: 'localUserAddView.pwd',
|
value: null,
|
type: 'button',
|
btn: null,
|
btnEdit: null,
|
pwdLbl: null,
|
deleteBtn: null
|
},
|
{
|
title: 'localUserAddView.card',
|
value: null,
|
type: 'button',
|
btn: null,
|
btnEdit: null,
|
cardLbl: null,
|
deleteBtn: null
|
},
|
{
|
title: 'localUserAddView.type',
|
value: null,
|
type: 'dropdown'
|
}
|
]
|
|
localUserAddView.userInfo.forEach((item, index) => {
|
const userBox = dxui.View.build('userInfo' + index, addUserBox)
|
viewUtils._clearStyle(userBox)
|
userBox.setSize(700, 65)
|
userBox.borderWidth(1)
|
userBox.setBorderColor(0xDEDEDE)
|
userBox.obj.setStyleBorderSide(dxui.Utils.ENUM.LV_BORDER_SIDE_BOTTOM, 0)
|
userBox.bgOpa(0)
|
|
if (item.required) {
|
const titleLbl = dxui.Label.build('titleLblRequired' + index, userBox)
|
titleLbl.textFont(viewUtils.font(22))
|
titleLbl.align(dxui.Utils.ALIGN.LEFT_MID, 0, 0)
|
titleLbl.text('*')
|
titleLbl.textColor(0xFD5353)
|
}
|
|
const titleLbl = dxui.Label.build('titleLbl' + index, userBox)
|
titleLbl.textFont(viewUtils.font(22))
|
titleLbl.align(dxui.Utils.ALIGN.LEFT_MID, 10, 0)
|
titleLbl.dataI18n = item.title
|
|
if (item.type === 'input') {
|
const input = viewUtils.input(userBox, item.title, item.mode, undefined, "localUserAddView.input")
|
input.align(dxui.Utils.ALIGN.RIGHT_MID, 0, 0)
|
input.textFont(viewUtils.font(22))
|
input.setSize(260, 50)
|
item.input = input
|
|
input.on(dxui.Utils.EVENT.VALUE_CHANGED, () => {
|
if (input.text() === "") {
|
return
|
}
|
switch (item.title) {
|
case 'localUserAddView.id':
|
localUserAddView.nowUser.id = input.text()
|
localUserAddView.nowUser.userId = input.text()
|
break;
|
case 'localUserAddView.name':
|
localUserAddView.nowUser.name = input.text()
|
break;
|
case 'localUserAddView.idCard':
|
localUserAddView.nowUser.idCard = input.text()
|
break;
|
default:
|
break;
|
}
|
})
|
} else if (item.type === 'button') {
|
const btn = dxui.Button.build(item.title, userBox)
|
item.btn = btn
|
btn.setSize(150, 50)
|
btn.align(dxui.Utils.ALIGN.RIGHT_MID, 0, 0)
|
btn.bgColor(0xEEEEEE)
|
btn.radius(10)
|
const btnLbl = dxui.Label.build(item.title + 'btnLbl', btn)
|
btnLbl.textFont(viewUtils.font(22))
|
btnLbl.textColor(0x05AA8D)
|
btnLbl.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
|
const btnEdit = dxui.Button.build(item.title + 'edit', userBox)
|
item.btnEdit = btnEdit
|
btnEdit.setSize(150, 50)
|
btnEdit.align(dxui.Utils.ALIGN.RIGHT_MID, -60, 0)
|
btnEdit.bgColor(0xEEEEEE)
|
btnEdit.radius(10)
|
btnEdit.hide()
|
const btnEditLbl = dxui.Label.build(item.title + 'btnEditLbl', btnEdit)
|
btnEditLbl.textFont(viewUtils.font(22))
|
btnEditLbl.textColor(0x05AA8D)
|
btnEditLbl.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
|
const deleteBtn = viewUtils.imageBtn(userBox, item.title + 'deleteBtn', '/app/code/resource/image/delete.png')
|
item.deleteBtn = deleteBtn
|
deleteBtn.align(dxui.Utils.ALIGN.RIGHT_MID, 0, 0)
|
deleteBtn.hide()
|
|
if (item.title === 'localUserAddView.pwd') {
|
btnLbl.dataI18n = 'localUserAddView.generate'
|
btnEditLbl.dataI18n = 'localUserAddView.reset'
|
|
// 密码
|
const pwdLbl = dxui.Label.build(userBox.id + 'pwdLbl', userBox)
|
item.pwdLbl = pwdLbl
|
pwdLbl.align(dxui.Utils.ALIGN.LEFT_MID, 180, 0)
|
pwdLbl.textColor(0x767676)
|
pwdLbl.textFont(viewUtils.font(26))
|
pwdLbl.hide()
|
|
btn.on(dxui.Utils.EVENT.CLICK, () => {
|
pwdBoxBg.show()
|
pwdBoxBg.moveForeground()
|
topView.changeTheme(false)
|
localUserAddView.changePwd()
|
})
|
|
btnEdit.on(dxui.Utils.EVENT.CLICK, () => {
|
btn.send(dxui.Utils.EVENT.CLICK)
|
})
|
|
deleteBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
viewUtils.confirmOpen('localUserAddView.confirm', 'localUserAddView.confirmPwd', () => {
|
localUserAddView.removePwd()
|
}, () => { })
|
})
|
|
} else {
|
btnLbl.dataI18n = 'localUserAddView.enter'
|
btnEditLbl.dataI18n = 'localUserAddView.edit'
|
}
|
|
if (item.title === 'localUserAddView.card') {
|
// 卡
|
const cardLbl = dxui.Label.build(userBox.id + 'cardLbl', userBox)
|
item.cardLbl = cardLbl
|
cardLbl.align(dxui.Utils.ALIGN.LEFT_MID, 180, 0)
|
cardLbl.textColor(0x767676)
|
cardLbl.textFont(viewUtils.font(26))
|
cardLbl.hide()
|
cardLbl.longMode(dxui.Utils.LABEL_LONG_MODE.SCROLL_CIRCULAR)
|
cardLbl.width(150)
|
|
btn.on(dxui.Utils.EVENT.CLICK, () => {
|
cardBoxBg.show()
|
cardBoxBg.moveForeground()
|
topView.changeTheme(false)
|
// 开启刷卡识别
|
screen.getCardStart()
|
})
|
|
btnEdit.on(dxui.Utils.EVENT.CLICK, () => {
|
btn.send(dxui.Utils.EVENT.CLICK)
|
})
|
|
deleteBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
viewUtils.confirmOpen('localUserAddView.confirm', 'localUserAddView.confirmCard', () => {
|
localUserAddView.removeCard()
|
}, () => { })
|
})
|
}
|
|
if (item.title === 'localUserAddView.face') {
|
// userBox.height(220)
|
btn.on(dxui.Utils.EVENT.CLICK, () => {
|
if (!checkRequired()) {
|
return
|
}
|
dxui.loadMain(faceEnterView.screenMain)
|
})
|
|
btnEdit.on(dxui.Utils.EVENT.CLICK, () => {
|
if (!checkRequired()) {
|
return
|
}
|
dxui.loadMain(faceEnterView.screenMain)
|
})
|
|
// 人脸图片
|
const facePreview = dxui.Button.build('facePreview', userBox)
|
item.facePreview = facePreview
|
facePreview.bgColor(0x000000)
|
facePreview.align(dxui.Utils.ALIGN.LEFT_MID, 180, 0)
|
const facePreviewLbl = dxui.Label.build('facePreviewLbl', facePreview)
|
facePreviewLbl.textFont(viewUtils.font(22))
|
facePreviewLbl.dataI18n = "localUserAddView.preview"
|
facePreview.on(dxui.Utils.EVENT.CLICK, () => {
|
facePreviewBox.show()
|
facePreviewBox.moveForeground()
|
})
|
|
const facePreviewBox = dxui.View.build('facePreviewBox', screenMain)
|
viewUtils._clearStyle(facePreviewBox)
|
facePreviewBox.hide()
|
facePreviewBox.setSize(screenMain.width(), screenMain.height())
|
facePreviewBox.on(dxui.Utils.EVENT.CLICK, () => {
|
facePreviewBox.hide()
|
})
|
|
const faceImg = dxui.Image.build('faceImg', facePreviewBox)
|
faceImg.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
item.faceImg = faceImg
|
|
|
deleteBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
if (!checkRequired()) {
|
return
|
}
|
viewUtils.confirmOpen('localUserAddView.confirm', 'localUserAddView.confirmFace', () => {
|
localUserAddView.removeFace()
|
}, () => { })
|
})
|
}
|
} else if (item.type === 'dropdown') {
|
const dropdown = dxui.Dropdown.build(item.title, userBox)
|
item.dropdown = dropdown
|
dropdown.setSize(260, 50)
|
dropdown.align(dxui.Utils.ALIGN.RIGHT_MID, 0, 0)
|
dropdown.textFont(viewUtils.font(22))
|
dropdown.getList().textFont(viewUtils.font(22))
|
dropdown.setSymbol('/app/code/resource/image/down.png')
|
dropdown.on(dxui.Utils.EVENT.VALUE_CHANGED, () => {
|
localUserAddView.nowUser.type = dropdown.getSelected()
|
})
|
}
|
})
|
|
// 密码生成页
|
const pwdBoxBg = dxui.View.build('pwdBoxBg', screenMain)
|
viewUtils._clearStyle(pwdBoxBg)
|
pwdBoxBg.bgColor(0x000000)
|
pwdBoxBg.bgOpa(50)
|
pwdBoxBg.setSize(screen.screenSize.width, screen.screenSize.height)
|
pwdBoxBg.scroll(false)
|
pwdBoxBg.hide()
|
pwdBoxBg.on(dxui.Utils.EVENT.CLICK, () => {
|
pwdBoxCloseBtn.send(dxui.Utils.EVENT.CLICK)
|
})
|
|
const pwdBox = dxui.View.build('pwdBox', pwdBoxBg)
|
viewUtils._clearStyle(pwdBox)
|
pwdBox.setSize(screen.screenSize.width, 694)
|
pwdBox.align(dxui.Utils.ALIGN.BOTTOM_MID, 0, 50)
|
pwdBox.bgColor(0xffffff)
|
pwdBox.radius(50)
|
|
const pwdBoxLbl = dxui.Label.build('pwdBoxLbl', pwdBox)
|
pwdBoxLbl.dataI18n = 'localUserAddView.pwdBoxLbl'
|
pwdBoxLbl.textFont(viewUtils.font(36))
|
pwdBoxLbl.align(dxui.Utils.ALIGN.TOP_MID, 0, 39)
|
|
const pwdBoxCloseBtn = viewUtils.imageBtn(pwdBox, 'pwdBoxCloseBtn', '/app/code/resource/image/close_small.png')
|
pwdBoxCloseBtn.align(dxui.Utils.ALIGN.TOP_RIGHT, -55, 18)
|
pwdBoxCloseBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
pwdBoxBg.hide()
|
topView.changeTheme(true)
|
})
|
|
const pwdBoxContent = dxui.View.build('pwdBoxContent', pwdBox)
|
viewUtils._clearStyle(pwdBoxContent)
|
pwdBoxContent.setSize(650, 100)
|
pwdBoxContent.align(dxui.Utils.ALIGN.TOP_MID, 0, 172)
|
pwdBoxContent.flexFlow(dxui.Utils.FLEX_FLOW.ROW_WRAP)
|
pwdBoxContent.flexAlign(dxui.Utils.FLEX_ALIGN.SPACE_AROUND, dxui.Utils.FLEX_ALIGN.CENTER, dxui.Utils.FLEX_ALIGN.CENTER)
|
|
localUserAddView.pwdBoxContentItem = []
|
for (let i = 0; i < 6; i++) {
|
const pwdBoxContentItem = dxui.View.build('pwdBoxContentItem' + i, pwdBoxContent)
|
pwdBoxContentItem.setSize(78, 90)
|
pwdBoxContentItem.radius(13)
|
pwdBoxContentItem.borderWidth(1)
|
pwdBoxContentItem.setBorderColor(0xEAEAEA)
|
|
const pwdBoxContentItemLbl = dxui.Label.build('pwdBoxContentItemLbl' + i, pwdBoxContentItem)
|
pwdBoxContentItemLbl.textFont(viewUtils.font(30))
|
pwdBoxContentItemLbl.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
pwdBoxContentItemLbl.text('0')
|
localUserAddView.pwdBoxContentItem.push(pwdBoxContentItemLbl)
|
}
|
|
const pwdBoxSaveBtn = dxui.Button.build('pwdBoxSaveBtn', pwdBox)
|
pwdBoxSaveBtn.setSize(210, 60)
|
pwdBoxSaveBtn.align(dxui.Utils.ALIGN.TOP_LEFT, 87, 340)
|
pwdBoxSaveBtn.bgColor(0xEAEAEA)
|
pwdBoxSaveBtn.radius(10)
|
pwdBoxSaveBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
localUserAddView.changePwd()
|
})
|
|
const pwdBoxSaveBtnLbl = dxui.Label.build('pwdBoxSaveBtnLbl', pwdBoxSaveBtn)
|
pwdBoxSaveBtnLbl.dataI18n = 'localUserAddView.pwdBoxSaveBtnLbl'
|
pwdBoxSaveBtnLbl.textFont(viewUtils.font(24))
|
pwdBoxSaveBtnLbl.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
pwdBoxSaveBtnLbl.textColor(0x000000)
|
|
const pwdBoxConfirmBtn = dxui.Button.build('pwdBoxConfirmBtn', pwdBox)
|
pwdBoxConfirmBtn.setSize(210, 60)
|
pwdBoxConfirmBtn.align(dxui.Utils.ALIGN.TOP_RIGHT, -76, 340)
|
pwdBoxConfirmBtn.bgColor(0x000000)
|
pwdBoxConfirmBtn.radius(10)
|
pwdBoxConfirmBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
localUserAddView.addPwd(localUserAddView.pwdBoxContentFin)
|
pwdBoxCloseBtn.send(dxui.Utils.EVENT.CLICK)
|
})
|
|
const pwdBoxConfirmBtnLbl = dxui.Label.build('pwdBoxConfirmBtnLbl', pwdBoxConfirmBtn)
|
pwdBoxConfirmBtnLbl.dataI18n = 'localUserAddView.pwdBoxConfirmBtnLbl'
|
pwdBoxConfirmBtnLbl.textFont(viewUtils.font(24))
|
pwdBoxConfirmBtnLbl.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
|
// 读取卡片中
|
const cardBoxBg = dxui.View.build('cardBoxBg', screenMain)
|
viewUtils._clearStyle(cardBoxBg)
|
cardBoxBg.setSize(screen.screenSize.width, screen.screenSize.height)
|
cardBoxBg.align(dxui.Utils.ALIGN.TOP_MID, 0, 0)
|
cardBoxBg.bgColor(0x000000)
|
cardBoxBg.bgOpa(50)
|
cardBoxBg.scroll(false)
|
cardBoxBg.hide()
|
cardBoxBg.on(dxui.Utils.EVENT.CLICK, () => {
|
cardBoxCloseBtn.send(dxui.Utils.EVENT.CLICK)
|
})
|
|
const cardBox = dxui.View.build('cardBox', cardBoxBg)
|
viewUtils._clearStyle(cardBox)
|
cardBox.setSize(screen.screenSize.width, 694)
|
cardBox.align(dxui.Utils.ALIGN.BOTTOM_MID, 0, 50)
|
cardBox.bgColor(0xffffff)
|
cardBox.radius(50)
|
cardBox.on(dxui.Utils.EVENT.CLICK, () => {
|
})
|
|
const cardBoxLbl = dxui.Label.build('cardBoxLbl', cardBox)
|
cardBoxLbl.dataI18n = 'localUserAddView.cardBoxLbl'
|
cardBoxLbl.textFont(viewUtils.font(36))
|
cardBoxLbl.align(dxui.Utils.ALIGN.TOP_MID, 0, 39)
|
|
const cardBoxCloseBtn = viewUtils.imageBtn(cardBox, 'cardBoxCloseBtn', '/app/code/resource/image/close_small.png')
|
cardBoxCloseBtn.align(dxui.Utils.ALIGN.TOP_RIGHT, -55, 18)
|
cardBoxCloseBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
cardBoxBg.hide()
|
topView.changeTheme(true)
|
// 关闭刷卡识别
|
screen.endCardEnd()
|
})
|
|
const cardBoxInput = viewUtils.input(cardBox, 'localUserAddView.cardBoxInput', undefined, undefined, 'localUserAddView.cardBoxInput')
|
localUserAddView.cardBoxInput = cardBoxInput
|
cardBoxInput.align(dxui.Utils.ALIGN.TOP_MID, 0, 183)
|
cardBoxInput.setSize(630, 75)
|
cardBoxInput.on(dxui.Utils.EVENT.CLICK, () => {
|
cardBoxInput.align(dxui.Utils.ALIGN.TOP_MID, 0, 90)
|
pinyin.hideCb(() => {
|
cardBoxInput.align(dxui.Utils.ALIGN.TOP_MID, 0, 183)
|
})
|
})
|
|
const cardBoxResetBtn = dxui.Button.build('cardBoxResetBtn', cardBox)
|
cardBoxResetBtn.setSize(210, 60)
|
cardBoxResetBtn.align(dxui.Utils.ALIGN.TOP_LEFT, 87, 340)
|
cardBoxResetBtn.bgColor(0xEAEAEA)
|
cardBoxResetBtn.radius(10)
|
cardBoxResetBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
cardBoxInput.text('')
|
})
|
|
const cardBoxResetBtnLbl = dxui.Label.build('cardBoxResetBtnLbl', cardBoxResetBtn)
|
cardBoxResetBtnLbl.dataI18n = 'localUserAddView.cardBoxResetBtnLbl'
|
cardBoxResetBtnLbl.textFont(viewUtils.font(24))
|
cardBoxResetBtnLbl.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
cardBoxResetBtnLbl.textColor(0x000000)
|
|
const cardBoxSaveBtn = dxui.Button.build('cardBoxSaveBtn', cardBox)
|
cardBoxSaveBtn.setSize(210, 60)
|
cardBoxSaveBtn.align(dxui.Utils.ALIGN.TOP_RIGHT, -76, 340)
|
cardBoxSaveBtn.bgColor(0x000000)
|
cardBoxSaveBtn.radius(10)
|
cardBoxSaveBtn.on(dxui.Utils.EVENT.CLICK, () => {
|
cardBoxCloseBtn.send(dxui.Utils.EVENT.CLICK)
|
if (cardBoxInput.text()) {
|
localUserAddView.addCard(cardBoxInput.text())
|
}
|
})
|
|
const cardBoxSaveBtnLbl = dxui.Label.build('cardBoxSaveBtnLbl', cardBoxSaveBtn)
|
cardBoxSaveBtnLbl.dataI18n = 'localUserAddView.cardBoxSaveBtnLbl'
|
cardBoxSaveBtnLbl.textFont(viewUtils.font(24))
|
cardBoxSaveBtnLbl.align(dxui.Utils.ALIGN.CENTER, 0, 0)
|
|
const deleteBtn = viewUtils.bottomBtn(screenMain, screenMain.id + 'deleteBtn', 'localUserAddView.delete', () => {
|
if (!checkRequired()) {
|
return
|
}
|
|
viewUtils.confirmOpen('localUserAddView.confirmDelete', 'localUserAddView.confirmDeleteContent', () => {
|
// 删除用户
|
const res = screen.deleteUser(localUserAddView.nowUser)
|
if (res) {
|
dxui.loadMain(localUserView.screenMain)
|
} else {
|
localUserAddView.statusPanel.fail()
|
}
|
}, () => { })
|
|
}, 0xEAEAEA, 0xEA0000)
|
deleteBtn.align(dxui.Utils.ALIGN.BOTTOM_MID, 0, -200)
|
localUserAddView.deleteBtn = deleteBtn
|
deleteBtn.hide()
|
|
const saveBtn = viewUtils.bottomBtn(screenMain, screenMain.id + 'saveBtn', 'localUserAddView.save', async () => {
|
if (!checkRequired()) {
|
return
|
}
|
let res = false
|
if (localUserAddView.deleteBtn.isHide()) {
|
// 新增用户
|
res = await screen.insertUser(localUserAddView.nowUser)
|
} else {
|
// 修改用户
|
res = screen.updateUser(localUserAddView.nowUser)
|
}
|
|
if (res === true) {
|
localUserAddView.statusPanel.success()
|
std.setTimeout(() => {
|
// 成功返回上一层界面
|
dxui.loadMain(localUserView.screenMain)
|
}, 500)
|
} else {
|
if (typeof res === "string") {
|
localUserAddView.statusPanel.fail(res)
|
} else {
|
localUserAddView.statusPanel.fail()
|
}
|
}
|
})
|
saveBtn.align(dxui.Utils.ALIGN.BOTTOM_MID, 0, -83)
|
localUserAddView.saveBtn = saveBtn
|
|
localUserAddView.statusPanel = viewUtils.statusPanel(screenMain, 'localUserAddView.success', 'localUserAddView.fail')
|
}
|
|
localUserAddView.addID = function (id) {
|
localUserAddView.userInfo[0].input.text(id)
|
localUserAddView.nowUser.id = id
|
}
|
|
localUserAddView.removeID = function () {
|
localUserAddView.userInfo[0].input.text('')
|
}
|
|
localUserAddView.addName = function (name) {
|
localUserAddView.userInfo[1].input.text(name)
|
localUserAddView.nowUser.name = name
|
}
|
|
localUserAddView.removeName = function () {
|
localUserAddView.userInfo[1].input.text('')
|
}
|
|
localUserAddView.addIDCard = function (idCard) {
|
localUserAddView.userInfo[2].input.text(idCard)
|
localUserAddView.nowUser.idCard = idCard
|
}
|
|
localUserAddView.removeIDCard = function () {
|
localUserAddView.userInfo[2].input.text('')
|
}
|
|
localUserAddView.addFace = function (face) {
|
localUserAddView.userInfo[3].btnEdit.show()
|
localUserAddView.userInfo[3].btn.hide()
|
|
const faceImg = localUserAddView.userInfo[3].faceImg
|
faceImg.source(face)
|
faceImg.show()
|
|
// let header = dxui.Utils.GG.NativeDraw.lvImgDecoderGetInfo(face)
|
// let zoom = 60 / header.h * 256
|
// faceImg.obj.lvImgSetZoom(zoom)
|
// faceImg.obj.lvImgSetSizeMode(dxui.Utils.ENUM.LV_IMG_SIZE_MODE_REAL)
|
// faceImg.setSize(Math.ceil(zoom / 256 * header.w), 60)
|
|
localUserAddView.userInfo[3].deleteBtn.show()
|
localUserAddView.nowUser.face = face
|
}
|
|
localUserAddView.removeFace = function () {
|
localUserAddView.userInfo[3].btn.show()
|
localUserAddView.userInfo[3].btnEdit.hide()
|
localUserAddView.userInfo[3].deleteBtn.hide()
|
localUserAddView.userInfo[3].faceImg.hide()
|
if (localUserAddView.nowUser && localUserAddView.nowUser.face) {
|
delete localUserAddView.nowUser.face
|
}
|
}
|
|
localUserAddView.addPwd = function (pwd) {
|
localUserAddView.userInfo[4].btn.hide()
|
localUserAddView.userInfo[4].btnEdit.show()
|
localUserAddView.userInfo[4].deleteBtn.show()
|
localUserAddView.userInfo[4].pwdLbl.show()
|
localUserAddView.userInfo[4].pwdLbl.text(pwd)
|
localUserAddView.nowUser.pwd = pwd
|
}
|
|
localUserAddView.removePwd = function () {
|
localUserAddView.userInfo[4].btn.show()
|
localUserAddView.userInfo[4].btnEdit.hide()
|
localUserAddView.userInfo[4].deleteBtn.hide()
|
localUserAddView.userInfo[4].pwdLbl.hide()
|
if (localUserAddView.nowUser && localUserAddView.nowUser.pwd) {
|
delete localUserAddView.nowUser.pwd
|
}
|
}
|
|
localUserAddView.addCard = function (card) {
|
localUserAddView.userInfo[5].btn.hide()
|
localUserAddView.userInfo[5].btnEdit.show()
|
localUserAddView.userInfo[5].deleteBtn.show()
|
localUserAddView.userInfo[5].cardLbl.show()
|
localUserAddView.userInfo[5].cardLbl.text(card)
|
localUserAddView.nowUser.card = card
|
}
|
|
localUserAddView.removeCard = function () {
|
localUserAddView.userInfo[5].btn.show()
|
localUserAddView.userInfo[5].btnEdit.hide()
|
localUserAddView.userInfo[5].deleteBtn.hide()
|
localUserAddView.userInfo[5].cardLbl.hide()
|
if (localUserAddView.nowUser && localUserAddView.nowUser.card) {
|
delete localUserAddView.nowUser.card
|
}
|
}
|
|
localUserAddView.addType = function (type) {
|
localUserAddView.userInfo[6].dropdown.setSelected(type)
|
}
|
|
localUserAddView.changePwd = function () {
|
const randomPwd = Math.floor(Math.random() * 900000 + 100000).toString()
|
localUserAddView.pwdBoxContentFin = randomPwd
|
localUserAddView.pwdBoxContentItem.forEach((item, index) => {
|
item.text(randomPwd[index])
|
})
|
}
|
|
localUserAddView.isEdit = function (flag) {
|
localUserAddView.removeFace()
|
localUserAddView.removePwd()
|
localUserAddView.removeCard()
|
localUserAddView.removeID()
|
localUserAddView.removeName()
|
localUserAddView.removeIDCard()
|
if (flag) {
|
localUserAddView.saveBtn.align(dxui.Utils.ALIGN.BOTTOM_MID, 0, -53)
|
localUserAddView.deleteBtn.show()
|
localUserAddView.titleBox2.show()
|
} else {
|
localUserAddView.saveBtn.align(dxui.Utils.ALIGN.BOTTOM_MID, 0, -83)
|
localUserAddView.deleteBtn.hide()
|
localUserAddView.titleBox2.hide()
|
localUserAddView.nowUser = {}
|
}
|
}
|
|
// 检查必填项
|
function checkRequired() {
|
if (!localUserAddView.userInfo[0].input.text()) {
|
localUserAddView.statusPanel.fail("localUserAddView.requiredInfo")
|
return false
|
}
|
if (!localUserAddView.userInfo[1].input.text()) {
|
localUserAddView.statusPanel.fail("localUserAddView.requiredInfo")
|
return false
|
}
|
return true
|
}
|
|
function refreshType() {
|
switch (screen.getConfig()['base.language']) {
|
case 'CN':
|
localUserAddView.userInfo[6].dropdown.setOptions(dropdownData)
|
break;
|
case 'EN':
|
localUserAddView.userInfo[6].dropdown.setOptions(dropdownData2)
|
break;
|
default:
|
break;
|
}
|
}
|
|
export default localUserAddView
|