first
This commit is contained in:
66
pageDevice/printer/index.vue
Normal file
66
pageDevice/printer/index.vue
Normal file
@@ -0,0 +1,66 @@
|
||||
<template>
|
||||
|
||||
<CommonPageByDevice
|
||||
ref="commonPageByDeviceRef"
|
||||
navTitle="打印机管理"
|
||||
searchTitle="搜索设备名称、编号"
|
||||
searchType="device"
|
||||
:searchParams="{deviceType: 2}"
|
||||
:bottomBtnTitle="ak.ent.has('ENT_DEVICE_PRINTER_ADD') ? '绑定设备' : null "
|
||||
@bottomBtnClickFunc="bottomBtnClickFunc"
|
||||
:reqTableDataFunc="reqTableDataFunc"
|
||||
>
|
||||
</CommonPageByDevice>
|
||||
<JSinglePopup ref="jsinglePopupRef" :list="codeBindList" />
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { reactive, ref } from 'vue'
|
||||
import { onReachBottom, onUnload } from '@dcloudio/uni-app'
|
||||
import emit from '@/commons/utils/emit.js'
|
||||
import CommonPageByDevice from '../commons/CommonPageByDevice.vue'
|
||||
import { reqLoad, API_URL_SYS_DEVICE_LIST } from '@/http/apiManager.js'
|
||||
import go from '@/commons/utils/go.js'
|
||||
import DeviceCommonsRender from '@/pages/list/render/DeviceCommonsRender.vue'
|
||||
import ak from '@/commons/utils/ak.js'
|
||||
|
||||
const jsinglePopupRef = ref(null)
|
||||
const commonPageByDeviceRef = ref()
|
||||
|
||||
// 监听 更新事件
|
||||
onUnload( () => uni.$off(emit.ENAME_REF_PRINTER_LIST) )
|
||||
uni.$on(emit.ENAME_REF_PRINTER_LIST, function(data){
|
||||
commonPageByDeviceRef.value.refTable(true)
|
||||
})
|
||||
|
||||
|
||||
const reqTableDataFunc = (params) => {
|
||||
params.deviceType = 2 // 1-云喇叭, 2-云打印, 3-扫码pos, 4-智能pos, 5-收银插件
|
||||
return reqLoad.list(API_URL_SYS_DEVICE_LIST, params)
|
||||
}
|
||||
|
||||
function bottomBtnClickFunc(){
|
||||
jsinglePopupRef.value.open()
|
||||
}
|
||||
|
||||
|
||||
const codeBindList = [
|
||||
{ label: '扫码绑定', value: 'scanCode', fun: () => {
|
||||
uni.scanCode().then(({ result }) => {
|
||||
go.to('PAGES_APP_PRINT_BIND', { deviceNo: result })
|
||||
})
|
||||
}
|
||||
},
|
||||
{ label: '手动绑定', value: 'handBind', fun: () => {
|
||||
go.to('PAGES_APP_PRINT_BIND')
|
||||
}
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
onReachBottom(() => {})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user