|
@@ -116,32 +116,39 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="">
|
|
<view class="">
|
|
- <uni-popup ref="popup1" type="center" :mask-click="false" class="w-100">
|
|
|
|
- <view class="bg-white p-3 w-100" style="border-radius: 16rpx;">
|
|
|
|
- <view class="text-center mb-3 fs-14 font-bold py-2">
|
|
|
|
- 查询
|
|
|
|
- </view>
|
|
|
|
- <view class=" centerY mb-3 w-100 border-box" style="overflow: hidden; ">
|
|
|
|
- <input type="text" v-model="valueId" class="px-2 m-0 fs-12 w-70"
|
|
|
|
- style="line-height: 62rpx;height: 62rpx;border: 2px solid #007aff;border-top-left-radius: 2rpx;border-bottom-left-radius: 2rpx;"
|
|
|
|
- placeholder="请输入身份证号码" placeholder-class="fs-12" />
|
|
|
|
- <uni-button type="primary" class="my-button fs-12 ml-auto border-box w-30"
|
|
|
|
- style="line-height: 70rpx;height: 70rpx;padding: 0 ;border-top-right-radius: 12rpx;border-bottom-right-radius: 12rpx;"
|
|
|
|
- @click="search">搜索
|
|
|
|
- </uni-button>
|
|
|
|
|
|
+ <uni-popup ref="popup1" type="top" :mask-click="false">
|
|
|
|
+ <view class=" w-80 mx-auto" style="margin-top: 30vh;">
|
|
|
|
+ <view class="bg-white p-3 w-100 border-box" style="border-radius: 16rpx;">
|
|
|
|
+ <view class="text-center mb-3 fs-14 font-bold py-2">
|
|
|
|
+ 查询
|
|
|
|
+ </view>
|
|
|
|
+ <view class=" centerY mb-3 w-100 border-box" style="overflow: hidden; ">
|
|
|
|
+ <input type="text" v-model="valueId" class="px-2 m-0 fs-12 w-75 border-box"
|
|
|
|
+ style="height: 70rpx;border: 2px solid #007aff;border-top-left-radius: 4rpx;border-bottom-left-radius: 4rpx;"
|
|
|
|
+ placeholder="请输入身份证号码" placeholder-class="fs-12" />
|
|
|
|
+ <uni-button type="primary" class="my-button fs-12 ml-auto border-box w-25"
|
|
|
|
+ style="height: 70rpx;line-height: 70rpx; padding: 0 ;border-top-right-radius: 12rpx;border-bottom-right-radius: 12rpx;"
|
|
|
|
+ @click="search">搜索
|
|
|
|
+ </uni-button>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</uni-popup>
|
|
</uni-popup>
|
|
|
|
|
|
- <uni-popup ref="popup2" type="center" :mask-click="false" class="w-100">
|
|
|
|
- <view class="bg-white p-3 w-80 text-center" style="border-radius: 16rpx;min-width: 400rpx;">
|
|
|
|
- <view class="text-center mb-3 fs-14 font-bold py-2">
|
|
|
|
- 患者列表
|
|
|
|
- </view>
|
|
|
|
- <view class="text-left centerY mb-3" style="border-radius: 14rpx;border: 2px solid #007aff;">
|
|
|
|
- <uni-data-select v-model="userIndex" :localdata="userArr" @change="bindPickerChange"
|
|
|
|
- placeholder="请选择身份">
|
|
|
|
- </uni-data-select>
|
|
|
|
|
|
+ <uni-popup ref="popup2" type="top" :mask-click="false">
|
|
|
|
+ <view class=" w-80 mx-auto" style="margin-top: 30vh;">
|
|
|
|
+ <view class="bg-white p-3 w-100 text-center border-box" style="border-radius: 16rpx;">
|
|
|
|
+ <view class="text-center mb-3 fs-14 font-bold py-2">
|
|
|
|
+ 患者列表
|
|
|
|
+ </view>
|
|
|
|
+ <view class="text-left centerY mb-3" style="border-radius: 14rpx;border: 2px solid #007aff;">
|
|
|
|
+ <uni-data-select v-model="userIndex" :localdata="userArr" @change="bindPickerChange"
|
|
|
|
+ placeholder="请选择身份">
|
|
|
|
+ </uni-data-select>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="" v-if="userArr.length==0">
|
|
|
|
+ <empty title="还未绑定患者" />
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</uni-popup>
|
|
</uni-popup>
|
|
@@ -164,11 +171,15 @@
|
|
},
|
|
},
|
|
{
|
|
{
|
|
name: '兰溪',
|
|
name: '兰溪',
|
|
- ip: 'http://10.50.13.200:10066'
|
|
|
|
|
|
+ ip: 'https://lxh5api.xklr.net'
|
|
}
|
|
}
|
|
]
|
|
]
|
|
- let globalData = getApp().globalData
|
|
|
|
|
|
+ let globalData = getApp().globalData;
|
|
|
|
+ import Empty from '@/component/empty/empty.vue'
|
|
export default {
|
|
export default {
|
|
|
|
+ components: {
|
|
|
|
+ Empty
|
|
|
|
+ },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
userData: {},
|
|
userData: {},
|
|
@@ -184,121 +195,134 @@
|
|
this.decrypt()
|
|
this.decrypt()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- //切换
|
|
|
|
- operation() {
|
|
|
|
- uni.clearStorage('idCard')
|
|
|
|
- uni.clearStorage('userData')
|
|
|
|
- this.valueId = '';
|
|
|
|
- this.userData = {};
|
|
|
|
- this.physical = {};
|
|
|
|
- this.$refs.popup2.open()
|
|
|
|
- },
|
|
|
|
- bindPickerChange(e) {
|
|
|
|
- if (this.userArr[e] && this.userArr[e].text) {
|
|
|
|
- this.getuserinfo(this.userArr[e].text)
|
|
|
|
|
|
+ //正式
|
|
|
|
+ async zhengshi() {
|
|
|
|
+ let t = this
|
|
|
|
+ if (!uni.getStorageSync('idCard')) {
|
|
|
|
+ t.$refs.popup1.open()
|
|
|
|
+ uni.hideLoading()
|
|
|
|
+ } else {
|
|
|
|
+ t.getuserinfo(uni.getStorageSync('idCard'))
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- decrypt() {
|
|
|
|
- uni.showLoading({
|
|
|
|
- title: '加载中'
|
|
|
|
- })
|
|
|
|
|
|
+ //兰溪
|
|
|
|
+ lanxi() {
|
|
let t = this;
|
|
let t = this;
|
|
uni.getStorage({
|
|
uni.getStorage({
|
|
key: 'token',
|
|
key: 'token',
|
|
- success(res) {
|
|
|
|
- console.log(res)
|
|
|
|
- if (res.data !== '') {
|
|
|
|
- ipArr.map((item) => {
|
|
|
|
- console.log(globalData.configData.prodIp)
|
|
|
|
- let timer = setInterval(async () => {
|
|
|
|
- if (globalData.configData.prodIp) {
|
|
|
|
- t.prodIp = globalData.configData.prodIp
|
|
|
|
- clearInterval(timer)
|
|
|
|
- }
|
|
|
|
- if (item.ip == globalData.configData.prodIp) {
|
|
|
|
- //兰溪
|
|
|
|
- if (item.name == '兰溪') {
|
|
|
|
- if (!res.data.length > 10) return
|
|
|
|
- console.log(res)
|
|
|
|
- let res2 = await t.$api.decrypt({
|
|
|
|
- toKen: res.data
|
|
|
|
- });
|
|
|
|
- if (res2.code !== -1) {
|
|
|
|
- if (res2.data.users && res2.data.users.length >
|
|
|
|
- 0) {
|
|
|
|
- t.$refs.popup2.open()
|
|
|
|
- t.userArr = []
|
|
|
|
- res2.data.users.map((item, index) => {
|
|
|
|
- t.userArr.push({
|
|
|
|
- value: index,
|
|
|
|
- text: item.idcard
|
|
|
|
- })
|
|
|
|
-
|
|
|
|
- })
|
|
|
|
- console.log(t.userArr)
|
|
|
|
- uni.hideLoading()
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- console.log(1)
|
|
|
|
- if (!uni.getStorageSync('idCard')) {
|
|
|
|
- t.$refs.popup1.open()
|
|
|
|
- uni.hideLoading()
|
|
|
|
- } else {
|
|
|
|
- t.getuserinfo(uni.getStorageSync('idCard'))
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- } else {
|
|
|
|
- if (!uni.getStorageSync('idCard')) {
|
|
|
|
- t.$refs.popup1.open()
|
|
|
|
- uni.hideLoading()
|
|
|
|
- } else {
|
|
|
|
- t.getuserinfo(uni.getStorageSync('idCard'))
|
|
|
|
|
|
+ async success(res) {
|
|
|
|
+ if (!res.data) return
|
|
|
|
+ let res2 = await t.$api.decrypt({
|
|
|
|
+ toKen: res.data
|
|
|
|
+ });
|
|
|
|
+ if (res2.code !== -1) {
|
|
|
|
+ if (!res2.data.uuid) {
|
|
|
|
+ uni.showModal({
|
|
|
|
+ title: '提示',
|
|
|
|
+ content: '您还未登录请先去登录!',
|
|
|
|
+ showCancel: false,
|
|
|
|
+ success: function(res3) {
|
|
|
|
+ if (res3.confirm) {
|
|
|
|
+ console.log('用户点击确定');
|
|
|
|
+ uni.navigateBack({
|
|
|
|
+ delta: 1, //返回层数,2则上上页
|
|
|
|
+ })
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- }, 300)
|
|
|
|
|
|
+ });
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if (res2.data.users && res2
|
|
|
|
+ .data.users.length >
|
|
|
|
+ 0) {
|
|
|
|
+ t.$refs.popup2.open()
|
|
|
|
+ t.userArr = []
|
|
|
|
+ res2.data.users.map((item, index) => {
|
|
|
|
+ t.userArr.push({
|
|
|
|
+ value: index,
|
|
|
|
+ text: item.idcard
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ uni.hideLoading()
|
|
|
|
+ } else {
|
|
|
|
+ t.$refs.popup2.open()
|
|
|
|
+ t.userArr = []
|
|
|
|
+ res2.data.users.map((item, index) => {
|
|
|
|
+ t.userArr.push({
|
|
|
|
+ value: index,
|
|
|
|
+ text: item.idcard
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ uni.hideLoading()
|
|
|
|
+ }
|
|
|
|
|
|
- })
|
|
|
|
} else {
|
|
} else {
|
|
- let timer = setInterval(async () => {
|
|
|
|
- if (globalData.configData.prodIp) {
|
|
|
|
- t.prodIp = globalData.configData.prodIp
|
|
|
|
- clearInterval(timer)
|
|
|
|
- }
|
|
|
|
- let i = ipArr.find((item) => item.ip == globalData.configData.prodIp)
|
|
|
|
- .name == '兰溪'
|
|
|
|
- if (!i) {
|
|
|
|
- if (!uni.getStorageSync('idCard')) {
|
|
|
|
- t.$refs.popup1.open()
|
|
|
|
- uni.hideLoading()
|
|
|
|
- } else {
|
|
|
|
- t.getuserinfo(uni.getStorageSync('idCard'))
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }, 300)
|
|
|
|
|
|
+ //返回数据出错
|
|
|
|
+ errordata()
|
|
}
|
|
}
|
|
-
|
|
|
|
},
|
|
},
|
|
- fail(res) {
|
|
|
|
- console.log(res)
|
|
|
|
- let timer = setInterval(async () => {
|
|
|
|
- if (globalData.configData.prodIp) {
|
|
|
|
- t.prodIp = globalData.configData.prodIp
|
|
|
|
- clearInterval(timer)
|
|
|
|
- }
|
|
|
|
- let i = ipArr.find((item) => item.ip == globalData.configData.prodIp)
|
|
|
|
- .name == '兰溪'
|
|
|
|
- if (!i) {
|
|
|
|
- if (!uni.getStorageSync('idCard')) {
|
|
|
|
- t.$refs.popup1.open()
|
|
|
|
- uni.hideLoading()
|
|
|
|
- } else {
|
|
|
|
- t.getuserinfo(uni.getStorageSync('idCard'))
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }, 300)
|
|
|
|
|
|
+ fail(error) { //未获取到token或者出错
|
|
|
|
+ errordata()
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+
|
|
|
|
+ function errordata() {
|
|
|
|
+ if (!uni.getStorageSync('idCard')) {
|
|
|
|
+ t.$refs.popup1.open()
|
|
|
|
+ uni.hideLoading()
|
|
|
|
+ } else {
|
|
|
|
+ t.getuserinfo(uni.getStorageSync('idCard'))
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ decrypt() { //token解码
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: '加载中'
|
|
|
|
+ })
|
|
|
|
+ let t = this;
|
|
|
|
+ let timer = setInterval(() => { //等待获取ip
|
|
|
|
+ if (globalData.configData.prodIp) {
|
|
|
|
+ t.prodIp = globalData.configData.prodIp
|
|
|
|
+ clearInterval(timer)
|
|
|
|
+ }
|
|
|
|
+ ipArr.map(async item => {
|
|
|
|
+ if (item.ip == globalData.configData.prodIp && item.name ==
|
|
|
|
+ '兰溪') {
|
|
|
|
+ t.lanxi()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if (item.ip == globalData.configData.prodIp && item.name ==
|
|
|
|
+ '正式') {
|
|
|
|
+ t.zhengshi()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if (item.ip == globalData.configData.prodIp && item.name ==
|
|
|
|
+ '测试') {
|
|
|
|
+ t.zhengshi()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if (item.ip == globalData.configData.prodIp && item.name ==
|
|
|
|
+ '开发') {
|
|
|
|
+ t.zhengshi()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }, 300)
|
|
|
|
+ },
|
|
|
|
+ //切换
|
|
|
|
+ operation() {
|
|
|
|
+ uni.clearStorage('idCard')
|
|
|
|
+ uni.clearStorage('userData')
|
|
|
|
+ this.valueId = '';
|
|
|
|
+ this.userData = {};
|
|
|
|
+ this.physical = {};
|
|
|
|
+ this.$refs.popup2.open()
|
|
|
|
+ },
|
|
|
|
+ bindPickerChange(e) {
|
|
|
|
+ if (this.userArr[e] && this.userArr[e].text) {
|
|
|
|
+ this.getuserinfo(this.userArr[e].text)
|
|
|
|
+ }
|
|
},
|
|
},
|
|
closet() {
|
|
closet() {
|
|
uni.clearStorage('idCard')
|
|
uni.clearStorage('idCard')
|
|
@@ -309,10 +333,18 @@
|
|
this.$refs.popup1.open()
|
|
this.$refs.popup1.open()
|
|
},
|
|
},
|
|
search() {
|
|
search() {
|
|
- this.getuserinfo(this.valueId)
|
|
|
|
- this.valueId = '';
|
|
|
|
|
|
+ if (!this.$mf.isCardID(this.valueId)) {
|
|
|
|
+ uni.showToast({
|
|
|
|
+ title: '请输入正确的身份证号',
|
|
|
|
+ icon: 'error',
|
|
|
|
+ duration: 2000,
|
|
|
|
+ mask: true
|
|
|
|
+ });
|
|
|
|
+ return
|
|
|
|
+ }
|
|
this.userData = {};
|
|
this.userData = {};
|
|
this.physical = {};
|
|
this.physical = {};
|
|
|
|
+ this.getuserinfo(this.valueId)
|
|
},
|
|
},
|
|
async find_physical() {
|
|
async find_physical() {
|
|
uni.showLoading({
|
|
uni.showLoading({
|
|
@@ -334,6 +366,7 @@
|
|
uni.stopPullDownRefresh()
|
|
uni.stopPullDownRefresh()
|
|
},
|
|
},
|
|
async getuserinfo(idCard) { //330222194512283184
|
|
async getuserinfo(idCard) { //330222194512283184
|
|
|
|
+ idCard = idCard || uni.getStorageSync('idCard')
|
|
uni.showLoading({
|
|
uni.showLoading({
|
|
title: '加载中'
|
|
title: '加载中'
|
|
});
|
|
});
|
|
@@ -344,12 +377,13 @@
|
|
idCard
|
|
idCard
|
|
})
|
|
})
|
|
if (code == 0) {
|
|
if (code == 0) {
|
|
|
|
+ this.valueId = '';
|
|
uni.setStorageSync('userData', data || {});
|
|
uni.setStorageSync('userData', data || {});
|
|
uni.setStorageSync('idCard', data && data.idCard || '')
|
|
uni.setStorageSync('idCard', data && data.idCard || '')
|
|
this.userData = data || {}
|
|
this.userData = data || {}
|
|
if (data && data.id) {
|
|
if (data && data.id) {
|
|
- this.$refs.popup1.close();
|
|
|
|
this.find_physical()
|
|
this.find_physical()
|
|
|
|
+ this.$refs.popup1.close();
|
|
this.$refs.popup2.close();
|
|
this.$refs.popup2.close();
|
|
} else {
|
|
} else {
|
|
uni.showToast({
|
|
uni.showToast({
|
|
@@ -358,14 +392,26 @@
|
|
})
|
|
})
|
|
}
|
|
}
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
|
|
+ uni.stopPullDownRefresh()
|
|
} else {
|
|
} else {
|
|
|
|
+ this.valueId = '';
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
uni.stopPullDownRefresh()
|
|
uni.stopPullDownRefresh()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onPullDownRefresh() {
|
|
onPullDownRefresh() {
|
|
- this.getuserinfo()
|
|
|
|
|
|
+ if (this.userData &&
|
|
|
|
+ this.physical) {
|
|
|
|
+ if (uni.getStorageSync('idCard')) {
|
|
|
|
+ this.find_physical()
|
|
|
|
+ } else {
|
|
|
|
+ uni.stopPullDownRefresh()
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ uni.stopPullDownRefresh()
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|