c207fe69 by renchao@pashanhoo.com

style:身份证读卡器

1 parent 32261265
import Vue from 'vue'
import axios from 'axios'
import request from '@/utils/request';
import { Message } from "element-ui";
export function removeTreeListItem (treeList, dictId, idName = 'bsmDict') {
if (!treeList || !treeList.length) {
......@@ -135,15 +136,15 @@ export function getUrlParam (paraName) {
}
}
/**
* @description: 身份证读卡器组件
* @description: 身份证读卡器
* @author: renchao
*/
export function getIdCardInfo (level) {
const resultMap = {
A: '10 颗星',
default: '',
default: axios.post(Vue.prototype.BASE_API.IDCARDURL),
}
return resultMap[level] || axios.post(Vue.prototype.BASE_API.IDCARDURL)
return resultMap[level] || resultMap.default
}
/**
* @description: 高拍仪组件
......