提交 f735b91c 编写于 作者: 张磊's avatar 张磊

Merge branch 'feature/zl' into 'release'

delete trash code

See merge request !142
...@@ -29,20 +29,20 @@ ...@@ -29,20 +29,20 @@
<script src="<%= VUE_APP_OSS_URL %>static/js/vconsole-3.3.4.js"></script> <script src="<%= VUE_APP_OSS_URL %>static/js/vconsole-3.3.4.js"></script>
<script src="<%= VUE_APP_OSS_URL %>static/js/lodash-4.17.15.js"></script> <script src="<%= VUE_APP_OSS_URL %>static/js/lodash-4.17.15.js"></script>
<script> <script>
!(function(c,b,d,a){c[a]||(c[a]={});c[a].config= // !(function(c,b,d,a){c[a]||(c[a]={});c[a].config=
{ // {
pid:"bj53rb58f5@29641a9002f6545", // pid:"bj53rb58f5@29641a9002f6545",
appType:"web", // appType:"web",
imgUrl:"https://arms-retcode.aliyuncs.com/r.png?", // imgUrl:"https://arms-retcode.aliyuncs.com/r.png?",
sendResource:true, // sendResource:true,
enableLinkTrace:true, // enableLinkTrace:true,
behavior:true, // behavior:true,
useFmp:true, // useFmp:true,
enableSPA:true, // enableSPA:true,
enableConsole:true // enableConsole:true
}; // };
with(b)with(body)with(insertBefore(createElement("script"),firstChild))setAttribute("crossorigin","",src=d) // with(b)with(body)with(insertBefore(createElement("script"),firstChild))setAttribute("crossorigin","",src=d)
})(window,document,"https://retcode.alicdn.com/retcode/bl.js","__bl"); // })(window,document,"https://retcode.alicdn.com/retcode/bl.js","__bl");
</script> </script>
</body> </body>
</html> </html>
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
import request from 'mn-template/plugins/http'; import request from 'mn-template/plugins/http';
// 根据订单号获取检测名称 // 根据订单号获取检测名称
// /tis/insurance/detectionName?yunOrderNo=11
export const getDetectionName = async (yunOrderNo) => { export const getDetectionName = async (yunOrderNo) => {
return request({ return request({
method: 'get', method: 'get',
......
import request from 'mn-template/plugins/http'; import request from 'mn-template/plugins/http';
// 获取检测详情 接口 // 检测详情节点查询
export const getDetectionDetail = (id) => { export const getDetectionDetailProces = (data) => {
return request({ return request({
method: 'get', method: 'get',
url: `/trade/detection/record/record/info/?detectionRecordId=${id}&userType=0`, url: `/trade/detection/record/process/${data.id}?channel=${data.channel}`,
withCredentials: true, withCredentials: true,
}); });
}; };
// 检测详情节点查询 // 快检 检测详情节点查询
export const getDetectionDetailProces = (data) => { export const getQuickDetectionDetailProces = (data) => {
return request({ return request({
method: 'get', method: 'get',
url: `/trade/detection/record/process/${data.id}?channel=${data.channel}`, url: `/trade/detection/record/process/${data.id}?channel=${data.channel}&detectionKind=1`,
withCredentials: true, withCredentials: true,
}); });
}; };
...@@ -90,10 +90,19 @@ export const sampleCodeValidate = (data) => { ...@@ -90,10 +90,19 @@ export const sampleCodeValidate = (data) => {
}; };
// 获取检测人信息 // 获取检测人信息
export const detectionRecordInfo = (id) => { export const detectionRecordInfo = (data) => {
return request({
method: 'get',
url: `/trade/detection/record/record/infoV2?detectionRecordId=${data.detectionRecordId}&detectionKind=${data.detectionKind}`,
withCredentials: true,
});
};
// 获取检测人信息
export const detectionQuickRecordInfo = (id) => {
return request({ return request({
method: 'get', method: 'get',
url: `/trade/detection/record/record/info?detectionRecordId=${id}`, url: `/trade/detection/record/quick/info?detectionRecordId=${id}`,
withCredentials: true, withCredentials: true,
}); });
}; };
...@@ -101,11 +110,20 @@ export const detectionRecordInfo = (id) => { ...@@ -101,11 +110,20 @@ export const detectionRecordInfo = (id) => {
// 绑定条码 // 绑定条码
export const bindingSampleCode = (data) => { export const bindingSampleCode = (data) => {
return request({ return request({
url: '/trade/detection/applet/record/record/bindingSampleCode', url: '/trade/detection/applet/record/record/bindingSampleCodeV2',
method: 'POST',
data: data,
});
};
export const bindingQuickSampleCode = (data) => {
return request({
url: '/trade/detection/applet/record/record/bindingSampleCodeV2',
method: 'POST', method: 'POST',
data: data, data: data,
}); });
}; };
export const getJumpToWebapp = (params) => { export const getJumpToWebapp = (params) => {
return request({ return request({
url: '/applet/url/link/getUrlLink', url: '/applet/url/link/getUrlLink',
......
...@@ -94,9 +94,10 @@ export default { ...@@ -94,9 +94,10 @@ export default {
this.provinceList = await this.getProvinceList(); this.provinceList = await this.getProvinceList();
this.cityList = await this.getCityList(nv[0]); this.cityList = await this.getCityList(nv[0]);
this.countyList = await this.getCountyList(nv[1]); this.countyList = await this.getCountyList(nv[1]);
if(this.cityList) {
const provinceIndex = this.provinceList.findIndex(ele => ele.id === nv[0]); const provinceIndex = this.provinceList.findIndex(ele => ele.id === nv[0]);
const cityIndex = this.cityList.findIndex(ele => ele.id === nv[1]); const cityIndex = this.cityList && this.cityList.findIndex(ele => ele.id === nv[1]);
const countyIndex = this.countyList.findIndex(ele => ele.id === nv[2]); const countyIndex = this.countyList && this.countyList.findIndex(ele => ele.id === nv[2]);
this.columns = [{ values: this.provinceList, defaultIndex:provinceIndex}, { values: this.cityList, defaultIndex:cityIndex}, { values: this.countyList, defaultIndex:countyIndex }]; this.columns = [{ values: this.provinceList, defaultIndex:provinceIndex}, { values: this.cityList, defaultIndex:cityIndex}, { values: this.countyList, defaultIndex:countyIndex }];
console.log('locationAreaCode', this.provinceList, provinceIndex); console.log('locationAreaCode', this.provinceList, provinceIndex);
const data = [this.provinceList[provinceIndex], this.cityList[cityIndex], this.countyList[countyIndex]]; const data = [this.provinceList[provinceIndex], this.cityList[cityIndex], this.countyList[countyIndex]];
...@@ -104,6 +105,7 @@ export default { ...@@ -104,6 +105,7 @@ export default {
this.$emit('confirm', data); this.$emit('confirm', data);
} }
} }
}
}, },
deep:true, deep:true,
immediate:true immediate:true
......
...@@ -152,10 +152,10 @@ export default { ...@@ -152,10 +152,10 @@ export default {
getHospitalList(data).then(res => { getHospitalList(data).then(res => {
console.log('getHospitalList', res); console.log('getHospitalList', res);
this.list = res.data.data; this.list = res.data.data || [];
this.finished = true; this.finished = true;
this.loading = false; this.loading = false;
const hospitalIdIndex = this.list.findIndex(ele => ele.hospitalId === this.hospitalId); const hospitalIdIndex = (this.list.length > 0) && this.list.findIndex(ele => ele.hospitalId === this.hospitalId);
console.log('hospitalIdIndex', hospitalIdIndex); console.log('hospitalIdIndex', hospitalIdIndex);
if (this.externalData.cityId && this.externalData.countyId && this.externalData.provinceId && hospitalIdIndex == -1) { if (this.externalData.cityId && this.externalData.countyId && this.externalData.provinceId && hospitalIdIndex == -1) {
this.$emit('clean'); this.$emit('clean');
......
...@@ -83,7 +83,8 @@ export default { ...@@ -83,7 +83,8 @@ export default {
am: '上午', am: '上午',
pm: '下午', pm: '下午',
}, },
currentItem:'' currentItem:'',
currentItemChoosed:{}
}; };
}, },
watch: { watch: {
...@@ -106,30 +107,24 @@ export default { ...@@ -106,30 +107,24 @@ export default {
} }
}, },
mounted() { mounted() {
// this.getTimes();d
}, },
methods: { methods: {
// 获取机构列表 // 获取机构列表
getScheduling() { getScheduling() {
const {projectEquityNo, hospitalId} = this; const {projectEquityNo, hospitalId} = this;
getScheduling({ projectEquityNo, hospitalId }).then(res => { getScheduling({ projectEquityNo, hospitalId }).then(res => {
console.log(res);
this.timsArray = res.data; this.timsArray = res.data;
// this.selectTimes = res.data[0].appointmentDate;
// this.currentItem = res.data[0];
}); });
}, },
selectItem() { selectItem() {
if (this.selectTimes === '') { if (this.selectTimes === '') {
// this.$toast('请选择日期');
return; return;
} }
if (this.selectTimeBucket === '') { if (this.selectTimeBucket === '') {
// this.$toast('请选择时间段');
return; return;
} }
this.$emit('change', this.selectTimes + ' ' + this.selectTimeBucket);
this.$emit('change', {value: (this.selectTimes + ' ' + this.selectTimeBucket), currentItemChoosed: this.currentItemChoosed});
}, },
cancel() { cancel() {
this.finished = false; this.finished = false;
...@@ -171,6 +166,8 @@ export default { ...@@ -171,6 +166,8 @@ export default {
return; return;
} }
this.selectTimeBucket = item === 'am' ? this.currentItem['amTimeBegin'] : this.currentItem['pmTimeBegin']; this.selectTimeBucket = item === 'am' ? this.currentItem['amTimeBegin'] : this.currentItem['pmTimeBegin'];
this.currentItemChoosed = {...this.currentItem, timeBucket: item};
console.log('-selectTimeB', this.currentItem, this.currentItemChoosed);
this.selectItem(); this.selectItem();
} }
} }
......
/**
* @name: appHooks
* @author: alan
* @date: 2021-09-13 17:05
* @description:appHooks
* @update: 2021-09-13 17:05
*/
export default { export default {
data() { data() {
return { return {
......
...@@ -6,7 +6,6 @@ import { Dialog, Field, Overlay, Button, Popup, Icon} from 'vant'; ...@@ -6,7 +6,6 @@ import { Dialog, Field, Overlay, Button, Popup, Icon} from 'vant';
import Loading from '@/components/loading/loading'; import Loading from '@/components/loading/loading';
Vue.use(Loading); Vue.use(Loading);
// Vue.use(PicaArea);
Vue.use(picaGuideApp); Vue.use(picaGuideApp);
Vue.use(PageModel); Vue.use(PageModel);
Vue.use(Dialog); Vue.use(Dialog);
......
...@@ -19,6 +19,11 @@ const routerConfig = [ ...@@ -19,6 +19,11 @@ const routerConfig = [
name: 'insuranceDetectionDetail', name: 'insuranceDetectionDetail',
component: insuranceDetectionDetail component: insuranceDetectionDetail
}, },
{
path: '/insuranceQuickDetectionDetail',
name: 'insuranceQuickDetectionDetail',
component: () => import('@/views/insurance-quickDetection-detail/index'),
},
{ {
path: '/insuranceQuestionResult', path: '/insuranceQuestionResult',
name: 'insuranceQuestionResult', name: 'insuranceQuestionResult',
......
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
<van-form <van-form
ref="dectionForm" ref="dectionForm"
validate-first validate-first
@submit="onSubmit"
> >
<van-field <van-field
name="checkboxGroup" name="checkboxGroup"
...@@ -150,18 +149,12 @@ ...@@ -150,18 +149,12 @@
v-else v-else
class="appoint-form-value" class="appoint-form-value"
> >
{{ dectionForm.appointmentTime }} {{ appointmentTimeShadow }}
</div> </div>
</template> </template>
</van-field> </van-field>
</van-form> </van-form>
</div> </div>
<!-- <van-button
@click="submit"
>
提交1
</van-button> -->
<van-button <van-button
round round
block block
...@@ -216,6 +209,7 @@ import SelectTime from '@/components/selectTime/index.vue'; ...@@ -216,6 +209,7 @@ import SelectTime from '@/components/selectTime/index.vue';
import PickArea from '@/components/pickArea/index.vue'; import PickArea from '@/components/pickArea/index.vue';
import { getJumpPageStatus, getButtonStatus} from '@/api/question'; import { getJumpPageStatus, getButtonStatus} from '@/api/question';
import storejs from 'storejs'; import storejs from 'storejs';
import dayjs from 'dayjs';
import AMapLoader from '@amap/amap-jsapi-loader'; import AMapLoader from '@amap/amap-jsapi-loader';
export default { export default {
components: { components: {
...@@ -287,19 +281,11 @@ export default { ...@@ -287,19 +281,11 @@ export default {
stock: false, stock: false,
buttonStatus: false, buttonStatus: false,
buttonText: '', buttonText: '',
appointmentTimeShadow: '',
}; };
}, },
computed: { computed: {
canSubmit() { canSubmit() {
// appointmentTime: this.dectionForm.appointmentTime,
// goodsId: this.dectionForm.goodsId,
// hospitalId: this.hospitalId,
// hospitalName: this.dectionForm.hospitalName,
// patientIdNo: this.dectionForm.beneficiaryIdNum,
// patientMobile: this.dectionForm.beneficiaryPhone,
// patientName: this.dectionForm.beneficiaryName,
// yunOrderNo:this.yunOrderNo,
return ( return (
this.dectionForm.appointmentTime && this.dectionForm.appointmentTime &&
this.dectionForm.goodsId && this.dectionForm.goodsId &&
...@@ -311,10 +297,8 @@ export default { ...@@ -311,10 +297,8 @@ export default {
this.yunOrderNo && this.yunOrderNo &&
this.stock && this.stock &&
this.buttonStatus this.buttonStatus
); );
}, },
}, },
mounted() { mounted() {
this.$loading.show(); this.$loading.show();
...@@ -348,11 +332,6 @@ export default { ...@@ -348,11 +332,6 @@ export default {
console.log('getJumpPageStatus', res); console.log('getJumpPageStatus', res);
}); });
}, },
// submit() {
// this.$rocNative.WXInstance.miniProgram.navigateTo({
// url:'/pagesInsurance/appoint-details/index?yunOrderNo=' + this.yunOrderNo
// });
// },
// 高德地图导航只有在线上环境才能使用 // 高德地图导航只有在线上环境才能使用
initMap() { initMap() {
const that = this; const that = this;
...@@ -448,8 +427,12 @@ export default { ...@@ -448,8 +427,12 @@ export default {
}, },
selectTimes(times) { selectTimes(times) {
console.log(times); console.log(times);
this.dectionForm.appointmentTime = times; const {value, currentItemChoosed} = times;
this.dectionForm.appointmentTime = value;
this.closePopup('showSelectTime'); this.closePopup('showSelectTime');
// appointmentTimeShadow
const m = (Number(dayjs(currentItemChoosed.appointmentDate).month()) + 1) + '月' + (Number(dayjs(currentItemChoosed.appointmentDate).date())) + '日';
this.appointmentTimeShadow = m + ' ' + currentItemChoosed[currentItemChoosed.timeBucket + 'TimeContent'];
}, },
getTimes() { getTimes() {
this.timsArray = []; this.timsArray = [];
...@@ -479,8 +462,6 @@ export default { ...@@ -479,8 +462,6 @@ export default {
closePopup(name) { closePopup(name) {
this[name] = false; this[name] = false;
}, },
cancelSearch() {},
selectAddress() {},
appointment() { appointment() {
this.$refs.dectionForm.validate().then(result => { this.$refs.dectionForm.validate().then(result => {
console.log('this.dectionForm', result); console.log('this.dectionForm', result);
...@@ -526,7 +507,6 @@ export default { ...@@ -526,7 +507,6 @@ export default {
}); });
}, },
getDetailByUnionId() { },
confirm(values) { confirm(values) {
console.log('confirm', values); console.log('confirm', values);
if (values) { if (values) {
......
...@@ -18,15 +18,18 @@ ...@@ -18,15 +18,18 @@
alt="" alt=""
> >
{{ !expireFlag ? statusMap[detailInfo.status]:'已过期' }} {{ !expireFlag ? statusMap(detailInfo.status):'已过期' }}
</div> </div>
<div class="detail-top insurance-detection"> <div class="detail-top insurance-detection">
<div class="detection-title"> <div class="detection-title">
您的{{ isUnderLine ? '领取' : '检测' }}时间 您的{{ isUnderLine ? '领取' : '检测' }}时间
</div> </div>
<div class="detection-time"> <div class="detection-time mb5">
{{ detailInfo.appointmentTimeStr }} {{ detailInfo.appointmentTimeStr }}
</div> </div>
<div class="detection-time">
{{ detailInfo.appointmentTimeStr2 }}
</div>
<div class="detail-top-info"> <div class="detail-top-info">
<div class="detail-top-address"> <div class="detail-top-address">
<div class="detail-top-address-name"> <div class="detail-top-address-name">
...@@ -91,13 +94,15 @@ ...@@ -91,13 +94,15 @@
class="tip-grey" class="tip-grey"
> >
<div class="tip-grey-dot" /> <div class="tip-grey-dot" />
请在预约日期前往预约医院完成采样。无需空腹,采样前三天可适当清淡饮食;
{{insuranceInfo && insuranceInfo.detectionKind == 0 ? '请在预约日期前往预约医院完成采样。无需空腹,采样前三天可适当清淡饮食;' : '请在预约日前往现场领取产品;' }}
</div> </div>
<div class="tip-grey"> <div class="tip-grey">
<div class="tip-grey-dot" /> <div class="tip-grey-dot" />
注意携带好您投保时注册的手机前往,凭手机号扫码确认采样; {{insuranceInfo && insuranceInfo.detectionKind == 0 ? '注意携带好您投保时注册的手机前往,凭手机号扫码确认采样;' : '注意携带好投保时注册的手机前往,凭手机号扫码确认领取成功;' }}
</div> </div>
<div class="tip-grey"> <div v-if="insuranceInfo && insuranceInfo.detectionKind == 0" class="tip-grey">
<div class="tip-grey-dot" /> <div class="tip-grey-dot" />
预计7-10个工作日电子报告将返回至您的手机,届时将提供进一步的报告解读服务,请注意查收。 预计7-10个工作日电子报告将返回至您的手机,届时将提供进一步的报告解读服务,请注意查收。
</div> </div>
...@@ -160,12 +165,6 @@ ...@@ -160,12 +165,6 @@
href="tel:400-006-5252" href="tel:400-006-5252"
>400-006-5252</a> >400-006-5252</a>
</div> </div>
<!-- <div
class="detail-btn"
@click="checkDetail"
>
查看详情
</div> -->
<div <div
v-if="!expireFlag" v-if="!expireFlag"
class="detail-btn-bottom" class="detail-btn-bottom"
...@@ -215,10 +214,11 @@ ...@@ -215,10 +214,11 @@
</template> </template>
<script> <script>
import {getDetailByYunOrderNo} from '@/api/appoint'; import {getDetailByYunOrderNo, getDetectionName} from '@/api/appoint';
import { formatDate } from '@/utils/common'; import { formatDate } from '@/utils/common';
import storejs from 'storejs'; import storejs from 'storejs';
import AMapLoader from '@amap/amap-jsapi-loader'; import AMapLoader from '@amap/amap-jsapi-loader';
import { mapGetters } from 'vuex';
export default { export default {
data() { data() {
return { return {
...@@ -238,31 +238,11 @@ export default { ...@@ -238,31 +238,11 @@ export default {
expireFlag:false, expireFlag:false,
query: {}, query: {},
isUnderLine:false, isUnderLine:false,
// 状态 代码 说明
// 0101 未填写问卷
// 0102 已填写问卷
// 0201 待预约
// 0202 已预约
// 0203 已取消待重新预约
// 0301 待采样
// 0302 已采样
// 0303 待重新采样
// 0304 已出报告
// 0401 已结束
statusMap: {
'0101': '未填写问卷',
'0102': '已填写问卷',
'0201': '待预约',
'0202': '预约成功',
'0203': '已取消待重新预约',
'0301': '待采样',
'0302': '已采样',
'0303': '待重新采样',
'0304': '已出报告',
'0401': '已结束',
},
}; };
}, },
computed: {
...mapGetters('home', ['insuranceInfo']),
},
mounted() { mounted() {
this.$loading.show(); this.$loading.show();
const { yunOrderNo, projectEquityNo} = this.$route.query; const { yunOrderNo, projectEquityNo} = this.$route.query;
...@@ -270,11 +250,11 @@ export default { ...@@ -270,11 +250,11 @@ export default {
this.projectEquityNo = projectEquityNo; this.projectEquityNo = projectEquityNo;
console.log('yunOrderNo', yunOrderNo); console.log('yunOrderNo', yunOrderNo);
this.getDetailByYunOrderNo(yunOrderNo); this.getDetailByYunOrderNo(yunOrderNo);
this.getDetectionName(yunOrderNo);
this.$loading.hide(); this.$loading.hide();
}, },
methods: { methods: {
formatDate(orderTime) { formatDate(orderTime) {
if (!orderTime) { if (!orderTime) {
return '--'; return '--';
} }
...@@ -391,8 +371,9 @@ export default { ...@@ -391,8 +371,9 @@ export default {
const { pprotocolType, detectionServiceRecordId } = this.detailInfo; const { pprotocolType, detectionServiceRecordId } = this.detailInfo;
console.log('window.miniProgram', window._miniprogram); console.log('window.miniProgram', window._miniprogram);
if (window._miniprogram) { if (window._miniprogram) {
const {detectionKind} = this.insuranceInfo;
this.$rocNative.WXInstance.miniProgram.navigateTo({ this.$rocNative.WXInstance.miniProgram.navigateTo({
url:`/pages/health/binding-code/index?yunOrderNo=${this.yunOrderNo}&projectEquityNo=${this.projectEquityNo}&detectionRecordId=${detectionServiceRecordId}&pprotocolType=${pprotocolType}&channelSource=insurance_channel` url:`/pages/health/binding-code/index?yunOrderNo=${this.yunOrderNo}&projectEquityNo=${this.projectEquityNo}&detectionRecordId=${detectionServiceRecordId}&pprotocolType=${pprotocolType}&channelSource=insurance_channel&detectionKind=${detectionKind}`
}); });
} else { } else {
this.$router.push({ this.$router.push({
...@@ -435,7 +416,40 @@ export default { ...@@ -435,7 +416,40 @@ export default {
this.$toast('已复制'); this.$toast('已复制');
console.log('已复制的内容:', copyText); console.log('已复制的内容:', copyText);
}, },
validateShow() { getDetectionName(yunOrderNo) {
getDetectionName(yunOrderNo).then(res => {
if (res.code === '000000' && res.data) {
const dectionData = res.data[0] || {};
this.$store.dispatch('home/setInsuranceInfo', dectionData);
}
});
},
statusMap(type) {
const obj = {
'0101': '未填写问卷',
'0102': '已填写问卷',
'0201': '待预约',
'0202': '预约成功',
'0203': '已取消待重新预约',
'0301': '待采样',
'0302': '已采样',
'0303': '待重新采样',
'0304': '已出报告',
'0401': '已结束',
};
const obj2 = {
'0101': '未填写问卷',
'0102': '已填写问卷',
'0201': '待预约',
'0202': '预约成功',
'0203': '已取消待重新预约',
'0301': '待领取',
'0302': '已领取',
'0303': '待重新领取',
'0304': '已出报告',
'0401': '已结束',
};
return this.insuranceInfo.detectionKind == 1 ? obj2[type] : obj[type];
}, },
}, },
}; };
...@@ -752,6 +766,9 @@ export default { ...@@ -752,6 +766,9 @@ export default {
text-align: center; text-align: center;
margin-bottom: 15px ; margin-bottom: 15px ;
} }
.mb5{
margin-bottom: 5px ;
}
} }
.appoint-detail-tel{ .appoint-detail-tel{
margin-top: 25px; margin-top: 25px;
......
<template>
<div />
</template>
<script>
export default {
};
</script>
<style>
</style>
...@@ -23,7 +23,6 @@ export default { ...@@ -23,7 +23,6 @@ export default {
'0001': '/appoint', '0001': '/appoint',
'0101': null, '0101': null,
'0102': '/insuranceQuestionBack', '0102': '/insuranceQuestionBack',
// '0401': '/insuranceQuestionResult',
'0201': null, '0201': null,
'0202': '/appoint-details', '0202': '/appoint-details',
'0203': '/appoint-details', '0203': '/appoint-details',
...@@ -43,16 +42,20 @@ export default { ...@@ -43,16 +42,20 @@ export default {
}; };
}, },
mounted() { mounted() {
// this.$loading.show(); // orderNo
this.query = this.$route.query; this.query = this.$route.query;
if (this.query.projectEquityNo && this.query.externalOrderNo) { const {externalOrderNo, orderNo, projectEquityNo} = this.$route.query;
const { projectEquityNo, externalOrderNo } = this.$route.query;
const n = externalOrderNo || orderNo;
console.log(this.$route.query, '---', n);
if (projectEquityNo && n) {
this.projectEquityNo = projectEquityNo; this.projectEquityNo = projectEquityNo;
this.externalOrderNo = externalOrderNo; this.externalOrderNo = n;
const data = { const data = {
yunOrderNo:'', yunOrderNo:'',
projectEquityNo, projectEquityNo,
externalOrderNo externalOrderNo: n
}; };
this.initMap(data); this.initMap(data);
...@@ -68,47 +71,29 @@ export default { ...@@ -68,47 +71,29 @@ export default {
}; };
this.initMap(data); this.initMap(data);
} }
// get geolocation
// var that = this;
// var geolocation = new qq.maps.Geolocation();
// geolocation.getLocation(function (result) {
// console.log('result', result);
// storejs.set('geolocation', result);
// that.getJumpPageStatus();
// }, function (result) {
// console.log('err', result);
// that.getJumpPageStatus();
// });
}, },
methods: { methods: {
// 高德地图导航只有在线上环境才能使用 // 高德地图导航只有在线上环境才能使用
initMap(data) { initMap(data) {
// latitude: 70
// longitude: 50.2
// const data = {
// projectEquityNo: that.projectEquityNo,
// latitude: 70,
// longitude: 50.2,
// };
storejs.remove('geolocation'); storejs.remove('geolocation');
this.getJumpPageStatus(data); this.getJumpPageStatus(data);
// var that = this;
}, },
// 目前是配置一个检测信息,可能会拓展,所以返回的是一个list // 目前是配置一个检测信息,可能会拓展,所以返回的是一个list
getDetectionName(yunOrderNo) { getDetectionName(yunOrderNo) {
return new Promise((resolve, reject) => {
getDetectionName(yunOrderNo).then(res => { getDetectionName(yunOrderNo).then(res => {
if (res.code === '000000' && res.data) { if (res.code === '000000' && res.data) {
const dectionData = res.data[0] || {}; const dectionData = res.data[0] || {};
console.log('getDetectionName', dectionData); console.log('getDetectionName', dectionData);
this.dectionData = dectionData; this.dectionData = dectionData;
this.dectionForm.detectName = dectionData.detectionName;
this.dectionForm.goodsId = dectionData.goodsId;
this.$store.dispatch('home/setInsuranceInfo', dectionData); this.$store.dispatch('home/setInsuranceInfo', dectionData);
resolve(dectionData);
} }
this.$loading.hide(); this.$loading.hide();
}).catch(err => {
reject(err);
});
}); });
}, },
// 获取跳转状态 // 获取跳转状态
...@@ -116,18 +101,16 @@ export default { ...@@ -116,18 +101,16 @@ export default {
getJumpPageStatus(data).then(res => { getJumpPageStatus(data).then(res => {
console.log('getJumpPageStatus', res); console.log('getJumpPageStatus', res);
if (res.code == '000000') { if (res.code == '000000') {
if (res.data.yunOrderNo && res.data.yunOrderNo != '') { if (res.data.yunOrderNo && res.data.yunOrderNo != '') {
this.checkStatus(res); this.checkStatus(res);
} else { } else {
// https://dev-sc.yunqueyi.com/tis/insurance/create/order
this.createOrder(data); this.createOrder(data);
} }
this.$loading.hide(); this.$loading.hide();
} }
}); });
}, },
checkStatus(res) { async checkStatus(res) {
this.yunOrderNo = res.data.yunOrderNo; this.yunOrderNo = res.data.yunOrderNo;
this.query.yunOrderNo = res.data.yunOrderNo; this.query.yunOrderNo = res.data.yunOrderNo;
this.projectEquityNo = res.data.projectEquityNo; this.projectEquityNo = res.data.projectEquityNo;
...@@ -136,7 +119,11 @@ export default { ...@@ -136,7 +119,11 @@ export default {
this.query.externalOrderNo = this.externalOrderNo; this.query.externalOrderNo = this.externalOrderNo;
this.status = res.data.statusCode; this.status = res.data.statusCode;
this.hasQuestionnaire = res.data.hasQuestionnaire; this.hasQuestionnaire = res.data.hasQuestionnaire;
this.getDetectionName(this.yunOrderNo); // 快检结果
const t = ['0101', '0102', '0902'];
const result = !t.includes(this.status) && await this.getDetectionName(this.yunOrderNo);
const {detectionKind} = result;
console.log('---result', result);
switch (this.status) { switch (this.status) {
case '0101': case '0101':
window.location.href = res.data.questionnaireUrl; window.location.href = res.data.questionnaireUrl;
...@@ -149,9 +136,10 @@ export default { ...@@ -149,9 +136,10 @@ export default {
case '0902': case '0902':
this.turnToPage(this.routerMap[this.status], this.query); this.turnToPage(this.routerMap[this.status], this.query);
break; break;
case '0302':
case '0901': case '0901':
this.query.detectionRecordId = res.data.detectionRecordId; this.query.detectionRecordId = res.data.detectionRecordId;
this.turnToPage(this.routerMap[this.status], this.query); this.turnToPage(this.pageMap(detectionKind), this.query);
break; break;
case '0201': case '0201':
// hasQuestionnaire 有问卷 跳领用,没问卷直接跳 预约 // hasQuestionnaire 有问卷 跳领用,没问卷直接跳 预约
...@@ -163,10 +151,6 @@ export default { ...@@ -163,10 +151,6 @@ export default {
this.turnToPage('/appoint', this.query); this.turnToPage('/appoint', this.query);
} }
break; break;
case '0302':
this.query.detectionRecordId = res.data.detectionRecordId;
this.turnToPage(this.routerMap[this.status], this.query);
break;
default: default:
this.turnToPage('/insuranceDetectionDetail', this.query); this.turnToPage('/insuranceDetectionDetail', this.query);
break; break;
...@@ -181,11 +165,17 @@ export default { ...@@ -181,11 +165,17 @@ export default {
}); });
}, },
turnToPage(path, query) { turnToPage(path, query) {
this.$router.push({ this.$router.push({
path, query path, query
}); });
} },
pageMap(s) {
const m = {
0:'/insuranceDetectionDetail',
1: '/insuranceQuickDetectionDetail'
};
return m[s];
},
} }
}; };
</script> </script>
......
...@@ -78,7 +78,10 @@ ...@@ -78,7 +78,10 @@
</div> </div>
</div> </div>
<div class="notification"> <div
v-if="insuranceInfo.detectionKind == 0"
class="notification"
>
<div class="sign-detection"> <div class="sign-detection">
<img <img
v-if="isCheck" v-if="isCheck"
...@@ -116,7 +119,10 @@ ...@@ -116,7 +119,10 @@
<div <div
class="l-right" class="l-right"
> >
<a class="fw600" href="tel:400-006-5252">400-006-5252</a> <a
class="fw600"
href="tel:400-006-5252"
>400-006-5252</a>
</div> </div>
</div> </div>
<van-popup <van-popup
...@@ -201,7 +207,7 @@ ...@@ -201,7 +207,7 @@
<script> <script>
import { mapGetters } from 'vuex'; import { mapGetters } from 'vuex';
import { signDetection, getProtocolContent, getProtocolName, sampleCodeValidate, detectionRecordInfo, bindingSampleCode} from '@/api/detection.js'; import { signDetection, getProtocolContent, getProtocolName, sampleCodeValidate, detectionRecordInfo, bindingSampleCode, bindingQuickSampleCode} from '@/api/detection.js';
import {getDetectionName} from '@/api/appoint'; import {getDetectionName} from '@/api/appoint';
export default { export default {
data() { data() {
...@@ -245,16 +251,20 @@ export default { ...@@ -245,16 +251,20 @@ export default {
}, },
created() { created() {
const { pprotocolType, detectionRecordId, yunOrderNo } = this.$route.query; const { pprotocolType, detectionRecordId, yunOrderNo } = this.$route.query;
if(pprotocolType && detectionRecordId && yunOrderNo) { if(detectionRecordId && yunOrderNo) {
this.pprotocolType = pprotocolType; this.pprotocolType = pprotocolType || '';
this.detectionRecordId = detectionRecordId; this.detectionRecordId = detectionRecordId;
this.yunOrderNo = yunOrderNo; this.yunOrderNo = yunOrderNo;
this.getProtocolName();
this.getRecordInfo(detectionRecordId);
this.getDetectionName(yunOrderNo); this.getDetectionName(yunOrderNo);
}else { }else {
this.$toast('传递有误:', pprotocolType, detectionRecordId, yunOrderNo); this.$toast('传递有误:', pprotocolType, detectionRecordId, yunOrderNo);
} }
if(pprotocolType) {
this.getProtocolName();
}else{
this.isCheck = true;
}
}, },
methods: { methods: {
clearCode() { clearCode() {
...@@ -323,7 +333,8 @@ export default { ...@@ -323,7 +333,8 @@ export default {
console.log('res', res); console.log('res', res);
if (res.code === '000000' && res.data) { if (res.code === '000000' && res.data) {
this.insuranceInfo = res.data[0]; this.insuranceInfo = res.data[0];
console.log('----', this.insuranceInfo); this.$store.dispatch('home/setInsuranceInfo', res.data[0]);
this.getRecordInfo();
} }
}); });
...@@ -368,9 +379,14 @@ export default { ...@@ -368,9 +379,14 @@ export default {
this.toggleBindingInfo(); this.toggleBindingInfo();
}); });
}, },
getRecordInfo(id) { getRecordInfo() {
const i = id || 11074; const o = {
detectionRecordInfo(i).then(res => { detectionRecordId: this.detectionRecordId,
detectionKind: this.insuranceInfo.detectionKind
};
console.log('----detectionRecordInfo', o);
detectionRecordInfo(o).then(res => {
console.log('---res--', res);
if (res.code === '000000') { if (res.code === '000000') {
this.recordInfo.name = res.data.patientName; this.recordInfo.name = res.data.patientName;
this.recordInfo.sex = res.data.sex === 1 ? '男' : '女'; this.recordInfo.sex = res.data.sex === 1 ? '男' : '女';
...@@ -379,11 +395,8 @@ export default { ...@@ -379,11 +395,8 @@ export default {
this.recordInfo.projectId = res.data.projectId; this.recordInfo.projectId = res.data.projectId;
this.recordInfo.patientId = res.data.patientId; this.recordInfo.patientId = res.data.patientId;
this.recordInfo.hospitalId = res.data.hospitalId; this.recordInfo.hospitalId = res.data.hospitalId;
// patientId
} }
}); });
}, },
// 绑定条形码 // 绑定条形码
bindingCode() { bindingCode() {
...@@ -394,7 +407,37 @@ export default { ...@@ -394,7 +407,37 @@ export default {
prototypeLogId: this.prototypeLogId, prototypeLogId: this.prototypeLogId,
}; };
console.log('--obj--', obj); console.log('--obj--', obj);
bindingSampleCode(obj).then(res => { if(this.insuranceInfo.detectionKind == 1) {
this.quickBindingCode(obj);
}
if(this.insuranceInfo.detectionKind == 0) {
this.earlyBindingCode(obj);
}
},
// 绑定条形码
quickBindingCode(obj) {
const o = {...obj, userId:this.recordInfo.patientId, detectionKind: 1};
bindingQuickSampleCode(o).then(res => {
if (res.code !== '000000') {
return this.$toast(res.message);
} else {
this.$router.push(
{
path: '/insuranceBindCodeSuccess',
query: {
yunOrderNo: this.yunOrderNo,
detectionRecordId: this.detectionRecordId
},
}
);
this.$toast('提交成功');
}
});
},
earlyBindingCode(obj) {
// quickBindingCode userId
const o = {...obj, detectionKind: 0};
bindingSampleCode(o).then(res => {
if (res.code !== '000000') { if (res.code !== '000000') {
return this.$toast(res.message); return this.$toast(res.message);
} else { } else {
...@@ -411,7 +454,6 @@ export default { ...@@ -411,7 +454,6 @@ export default {
} }
}); });
}, },
callPhone() {}
} }
}; };
......
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
justify-content: flex-start; justify-content: flex-start;
align-items: center; align-items: center;
.l-left { .l-left {
width: 62px; width: 72px;
height: 14px; height: 14px;
font-size: 14px; font-size: 14px;
font-family: PingFangSC-Regular, PingFang SC; font-family: PingFangSC-Regular, PingFang SC;
......
...@@ -11,7 +11,9 @@ ...@@ -11,7 +11,9 @@
src="https://files.yunqueyi.com/image/png/common/20230301101427839.png" src="https://files.yunqueyi.com/image/png/common/20230301101427839.png"
alt="success" alt="success"
> >
<div class="text">提交成功</div> <div class="text">
提交成功
</div>
</div> </div>
<div class="content"> <div class="content">
<div class="info"> <div class="info">
...@@ -50,15 +52,14 @@ ...@@ -50,15 +52,14 @@
{{ dataDetail.checkName || '--' }} {{ dataDetail.checkName || '--' }}
</p> </p>
</div> </div>
<!-- <div class="list">--> <!-- <div class="list">-->
<!-- <p class="l-left">--> <!-- <p class="l-left">-->
<!-- 检测编号:--> <!-- 检测编号:-->
<!-- </p>--> <!-- </p>-->
<!-- <p class="l-right">--> <!-- <p class="l-right">-->
<!-- {{ dataDetail.recordNo || '&#45;&#45;' }}--> <!-- {{ dataDetail.recordNo || '&#45;&#45;' }}-->
<!-- </p>--> <!-- </p>-->
<!-- </div>--> <!-- </div>-->
</div> </div>
</div> </div>
</div> </div>
...@@ -74,13 +75,21 @@ ...@@ -74,13 +75,21 @@
查看我的检测 查看我的检测
</div> </div>
</div> </div>
<div class="wechat-wrap" @click="towechat"> <div
<img src="https://files.yunqueyi.com/image/gif/common/20230301171528895.gif" alt=""> class="wechat-wrap"
@click="towechat"
>
<img
src="https://files.yunqueyi.com/image/gif/common/20230301171528895.gif"
alt=""
>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import { getDetectionDetail } from '@/api/detection'; import { detectionRecordInfo } from '@/api/detection';
import {mapGetters} from 'vuex';
import store from 'storejs';
export default { export default {
filters: { filters: {
sexFilter(val) { sexFilter(val) {
...@@ -104,17 +113,26 @@ export default { ...@@ -104,17 +113,26 @@ export default {
yunOrderNo: '' yunOrderNo: ''
}; };
}, },
computed: {
...mapGetters('home', ['insuranceInfo']),
},
created() { created() {
const {detectionRecordId, yunOrderNo} = this.$route.query; const {detectionRecordId, yunOrderNo} = this.$route.query;
this.detectionRecordId = detectionRecordId; this.detectionRecordId = detectionRecordId;
this.yunOrderNo = yunOrderNo; this.yunOrderNo = yunOrderNo;
this.init(); this.detectionRecordInfo();
}, },
mounted() { mounted() {
}, },
methods: { methods: {
init() {
getDetectionDetail(this.detectionRecordId).then((res) => { detectionRecordInfo() {
const in_info = store.get('insuranceInfo');
const o = {
detectionRecordId: this.detectionRecordId,
detectionKind: in_info.detectionKind
};
detectionRecordInfo(o).then((res) => {
if (res.code === '000000') { if (res.code === '000000') {
this.dataDetail = res.data; this.dataDetail = res.data;
} else { } else {
...@@ -124,8 +142,10 @@ export default { ...@@ -124,8 +142,10 @@ export default {
}, },
// 检测详情 // 检测详情
bottomBtnFun() { bottomBtnFun() {
const in_info = store.get('insuranceInfo');
const url = in_info.detectionKind == 1 ? '/insuranceQuickDetectionDetail' : '/insuranceDetectionDetail';
this.$router.push({ this.$router.push({
path: '/insuranceDetectionDetail', path: url,
query: { query: {
detectionRecordId: this.detectionRecordId, detectionRecordId: this.detectionRecordId,
yunOrderNo: this.yunOrderNo yunOrderNo: this.yunOrderNo
......
...@@ -188,7 +188,7 @@ ...@@ -188,7 +188,7 @@
</div> </div>
</template> </template>
<script> <script>
import { getDetectionDetail, getDetectionDetailProces, getJumpToWebapp } from '@/api/detection'; import { getDetectionDetailProces, getJumpToWebapp, detectionRecordInfo } from '@/api/detection';
// 0待完善信息、1待采样、2已采样、21已送检、22快递已签收、 25实验室已收样、 27已上机、 3已完成、5样本失效、 6待支付 // 0待完善信息、1待采样、2已采样、21已送检、22快递已签收、 25实验室已收样、 27已上机、 3已完成、5样本失效、 6待支付
export default { export default {
filters: { filters: {
...@@ -260,8 +260,13 @@ export default { ...@@ -260,8 +260,13 @@ export default {
targetPath: 'pagesInsurance/all-entrance/index', targetPath: 'pagesInsurance/all-entrance/index',
query: {yunOrderNo: this.yunOrderNo}, query: {yunOrderNo: this.yunOrderNo},
}; };
const o = {
detectionRecordId: this.detectionRecordId,
detectionKind: 0
};
console.log('----detectionRecordInfo', o);
let jump_path = `pagesInsurance/all-entrance/index?yunOrderNo=${this.yunOrderNo}&channelSource=channelSource`; let jump_path = `pagesInsurance/all-entrance/index?yunOrderNo=${this.yunOrderNo}&channelSource=channelSource`;
getDetectionDetail(this.detectionRecordId).then((res) => { detectionRecordInfo(o, 0).then((res) => {
if (res.code === '000000') { if (res.code === '000000') {
this.dataDetail = res.data; this.dataDetail = res.data;
this.getDetailProces(); this.getDetailProces();
......
...@@ -15,27 +15,13 @@ ...@@ -15,27 +15,13 @@
提交成功 提交成功
</div> </div>
<div class="font-normal"> <div class="font-normal">
{{ 您的结果将于次日以短信形式推送,烦请留意!
evaluationInfo.detectionScoreFlag == 1
? '结果计算中...'
: '您的结果将于次日以短信形式推送,烦请留意!'
}}
</div> </div>
<!-- <div class="custom-style">
{{ evaluationInfo.detectionScoreFlag == 1 ? '查看结果' : '完成' }}
</div> -->
<!-- <pica-guide-app
:open-web-app="true"
:open-web-app-config="openWebAppConfig"
:is-need-wx-config="false"
/> -->
</div> </div>
</div> </div>
</template> </template>
<script> <script>
// import {evaluationResults, getDetailByUnionId} from '@/api/home.js';
const { VUE_APP_ENV } = process.env;
export default { export default {
data() { data() {
return { return {
...@@ -47,20 +33,6 @@ export default { ...@@ -47,20 +33,6 @@ export default {
style: 'backgroundColor:#ffffff;zIndex:100;', style: 'backgroundColor:#ffffff;zIndex:100;',
background: '', background: '',
}, },
openWebAppConfig: {
content:
'<script' +
' type=text/wxtag-template><style>.btn {position:absolute; top: 0; left: 0; width:100%; height: 100%;}</style> <div class="btn"></div></' +
'script>', // 标签内容
username: 'gh_e92f58174364', // 小程序唯一username 1.gh_80d54796f2d5 云鹊助手 2. gh_e92f58174364 云鹊健康
path: 'pagesUserCenter/insurance/insurance-risk-result', // 打开页面
envVersion: VUE_APP_ENV != 'testing' ? 'release' : 'trial', // release 生产
extraData: '',
},
extraData_MX: {},
evaluationInfo: {
detectionScoreFlag:0
},
}; };
}, },
created() { created() {
......
...@@ -10,12 +10,12 @@ ...@@ -10,12 +10,12 @@
<template v-if="!needDetect"> <template v-if="!needDetect">
<div class="info-top"> <div class="info-top">
<div class="info-top-title"> <div class="info-top-title">
防癌专家提醒您尽快进行 防癌专家提醒您尽快{{insuranceInfo.detectionKind == 0 ? '进行' : '领取'}}
</div> </div>
<div class="info-top-name"> <div class="info-top-name">
{{ detectionName }} {{ detectionName }}
</div> </div>
<div class="info-top-tips"> <div v-if="insuranceInfo && insuranceInfo.detectionKind == 0" class="info-top-tips">
<div class="tips-item"> <div class="tips-item">
<div class="tips-item-dot" /> <div class="tips-item-dot" />
DNA甲基化检测技术,对比传统肿瘤标志物检查,早期癌变检出率高5-10倍 DNA甲基化检测技术,对比传统肿瘤标志物检查,早期癌变检出率高5-10倍
...@@ -29,15 +29,25 @@ ...@@ -29,15 +29,25 @@
检测报告阳性,最高可报销300元复查费用 检测报告阳性,最高可报销300元复查费用
</div> </div>
</div> </div>
<div v-if="insuranceInfo && insuranceInfo.detectionKind == 1" class="info-top-tips">
<div class="tips-item">
<div class="tips-item-dot" />
居家快速自测、方便卫生、轻松操作;
</div>
<div class="tips-item">
<div class="tips-item-dot" />
检测快速,5-10分钟即可获得结果
</div>
</div>
</div> </div>
<img <img
src="https://files.yunqueyi.com/image/gif/common/20230228173135233.gif" :src=" insuranceInfo && insuranceInfo.detectionKind == 0 ? 'https://files.yunqueyi.com/image/gif/common/20230228173135233.gif' : 'https://files.yunqueyi.com/image/gif/common/20230315102649177.gif'"
class="info-btn" class="info-btn"
@click="toAppoint" @click="toAppoint"
> >
<div class="info-tips"> <div class="info-tips">
点击上方按钮预约,并前往预约的医疗机构采样 {{insuranceInfo && insuranceInfo.detectionKind == 0 ? '点击上方按钮预约,并前往预约的医疗机构采样' : '点击上方按钮预约,并前往预约的医疗机构领取产品'}}
</div> </div>
</template> </template>
<template v-else> <template v-else>
...@@ -63,20 +73,10 @@ ...@@ -63,20 +73,10 @@
</div> </div>
</template> </template>
</div> </div>
<!-- <div
v-if="!needDetect"
class="custom-style"
@click="toAppoint"
>
{{ buttonText || '免费预约检测' }}
</div> -->
<div <div
class="tips-fixed" class="tips-fixed"
> >
注:该问卷评估结果仅供填写人自行参考。 注:请填写人根据问卷评估结果自主选择后续检测
</div> </div>
</div> </div>
</div> </div>
...@@ -85,6 +85,7 @@ ...@@ -85,6 +85,7 @@
<script> <script>
import { getButtonStatus } from '@/api/question'; import { getButtonStatus } from '@/api/question';
import {getDetectionName} from '@/api/appoint'; import {getDetectionName} from '@/api/appoint';
import { mapGetters } from 'vuex';
export default { export default {
data() { data() {
return { return {
...@@ -106,12 +107,13 @@ export default { ...@@ -106,12 +107,13 @@ export default {
status:null, status:null,
query: {}, query: {},
buttonStatus: false, buttonStatus: false,
buttonText:'' buttonText:'',
}; };
}, },
computed: {
...mapGetters('home', ['insuranceInfo']),
},
mounted() { mounted() {
const { query } = this.$route; const { query } = this.$route;
this.$loading.show(); this.$loading.show();
this.query = query; this.query = query;
...@@ -138,7 +140,7 @@ export default { ...@@ -138,7 +140,7 @@ export default {
getDetectionName(yunOrderNo).then(res => { getDetectionName(yunOrderNo).then(res => {
if (res.code === '000000' && res.data) { if (res.code === '000000' && res.data) {
const dectionData = res.data[0] || {}; const dectionData = res.data[0] || {};
console.log('dectionData.detectionName', dectionData.detectionName); console.log('dectionData.detectionName', this.insuranceInfo, dectionData);
this.detectionName = dectionData.detectionName; this.detectionName = dectionData.detectionName;
this.$store.dispatch('home/setInsuranceInfo', dectionData); this.$store.dispatch('home/setInsuranceInfo', dectionData);
this.$loading.hide(); this.$loading.hide();
...@@ -171,8 +173,9 @@ export default { ...@@ -171,8 +173,9 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.insuranceQuestionResult-box{ .insuranceQuestionResult-box{
height: 100vh; min-height: 100vh;
background: #F3FCFF; background: #F3FCFF;
padding-bottom: 50px;
} }
.insuranceQuestionResult { .insuranceQuestionResult {
width: 100%; width: 100%;
...@@ -193,7 +196,8 @@ background: #F3FCFF; ...@@ -193,7 +196,8 @@ background: #F3FCFF;
margin: 168px auto 54px; margin: 168px auto 54px;
.info-top{ .info-top{
width: 308px; width: 308px;
height: 200px; height: auto;
padding-bottom: 50px;
background: #FFFBF9; background: #FFFBF9;
border-radius: 11px; border-radius: 11px;
margin: 10px auto 20px; margin: 10px auto 20px;
...@@ -353,7 +357,6 @@ background: #F3FCFF; ...@@ -353,7 +357,6 @@ background: #F3FCFF;
bottom: 70px; bottom: 70px;
height: 21px; height: 21px;
font-size: 13px; font-size: 13px;
font-family: PingFangSC-Light, PingFang SC;
font-weight: 300; font-weight: 300;
color: #999999; color: #999999;
line-height: 21px; line-height: 21px;
......
.insurance-quickDetection-detail {
background-color: #f5f6f8;
min-height: 100vh;
width: 100%;
position: relative;
.title {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 260px;
background: linear-gradient(180deg, #00bda5 0%, #20c5b0 52%, #f5f6f8 100%);
}
.detail-box {
padding: 0 12px;
height: auto;
padding-bottom: 10px;
position: relative;
z-index: 1;
.status {
padding: 16px 0;
display: flex;
align-items: center;
img {
width: 27px;
}
div {
padding-left: 9px;
width: 120px;
height: 20px;
font-size: 20px;
font-weight: 500;
color: #ffffff;
line-height: 20px;
}
}
.content {
height: auto;
.info {
width: 100%;
height: auto;
background: #ffffff;
border-radius: 10px;
margin-bottom: 10px;
padding-top: 20px;
.list {
padding: 0px 15px 12px 15px;
display: flex;
justify-content: flex-start;
align-items: center;
.l-left {
width: 72px;
height: 14px;
font-size: 14px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #999999;
line-height: 14px;
}
.l-right {
padding-left: 2px;
width: auto;
height: auto;
font-size: 14px;
font-weight: 600;
color: #212121;
flex: 1;
line-height: 20px;
text-align: right;
span {
display: inline-block;
padding-left: 15px;
}
}
}
.list-bottom {
.l-b-code {
.l-b-list {
display: flex;
justify-content: flex-start;
align-items: center;
padding-bottom: 13px;
.l-left {
width: auto;
height: 15px;
font-size: 15px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #212121;
line-height: 15px;
}
.l-right {
padding-left: 6px;
height: 15px;
font-size: 15px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #00bda5;
line-height: 15px;
}
}
}
}
}
.flow {
padding: 20px;
height: auto;
background: #ffffff;
border-radius: 10px;
.express-step {
display: flex;
padding-bottom: 24px;
position: relative;
justify-content: flex-start;
.express-step-icon {
width: 18px;
height: 18px;
margin-right: 7px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 2;
.step-pg {
margin-left: -11px;
display: block;
width: 18px;
height: auto;
}
.oval-pg {
display: block;
width: 6px;
height: 6px;
}
}
.express-step-msg {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
.step-title {
height: 18px;
font-size: 14px;
font-weight: 700;
color: #999999;
line-height: 18px;
}
.step-time {
margin-top: 5px;
font-size: 12px;
font-weight: 400;
color: #999999;
line-height: 12px;
}
}
.noButton {
margin-left: 22px;
}
&::before {
content: '';
position: absolute;
top: 0;
left: -5px;
display: block;
width: 15px;
height: 15px;
border-radius: 50%;
border:1px solid #e7e7e7;
background-color: #ffffff;
z-index: 1;
}
&::after {
content: '';
position: absolute;
top: 11px;
bottom: 0;
height: calc(100% - 5px);
left: 3px;
display: block;
width: 1px;
background: #e7e7e7;
}
&.first {
&::before {
display: none;
}
}
&.last {
padding-bottom: 0;
&::after {
display: none;
}
}
}
.isComplate {
&::after {
background: #00bda5;
}
&::before {
background: #00bda5;
}
.express-step-msg {
.step-title {
color: #212121;
}
}
}
.hideCircle {
&::before {
width: 0;
display: none;
}
.express-step-msg {
.step-title {
color: #212121;
}
}
}
}
.tips{
color: #FF4B33;
font-size: 12px;
font-weight: lighter;
margin-top: 10px;
margin-left: 20px;
}
}
.flex-wrap{
display: flex;
font-size: 16px;
align-items: center;
height: 21px;
}
.fc-blue{
color: #00BDA5;
}
.p30{
padding: 15px;
background-color: #ffffff;
border-radius: 10px;
margin-bottom: 10px;
}
.l-copy {
text-align: center;
border-radius: 10px;
font-size: 12px;
font-weight: 500;
color: #1677FE;
line-height: 22px;
margin-left: 6px;
margin-top: -2px;
display: inline-block;
}
}
.pb60{
padding-bottom: 60px;
}
.submit-container {
box-sizing: border-box;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 99;
padding: 5px 12px;
padding-bottom: calc(5px + env(safe-area-inset-bottom) / 2);
background: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.submit-button {
position: relative;
width: 350px;
height: 40px;
border-radius: 20px;
font-weight: 700;
color: #ffffff;
font-size: 16px;
display: flex;
align-items: center;
background: #00bda5;
justify-content: center;
}
.submit-button-empty{
background: #ffffff;
border: 1px solid #00bda5;
color: #00bda5;
}
}
.multi-sub-wrap{
flex-direction: row;
justify-content: space-evenly;
.submit-button{
width: 45%;
}
}
}
<template>
<div class="insurance-quickDetection-detail">
<page-model
v-if="picaWechat != 'wechat'"
ref="PageModel"
:header-info="headerInfo"
/>
<div class="title" />
<div class="detail-box">
<div class="status">
<img
v-if="dataDetail.status == 5"
src="https://files.yunqueyi.com/image/png/common/20220817141150961.png"
alt="success"
>
<img
v-else
src="https://files.yunqueyi.com/image/png/common/20220816135250298.png"
alt="success"
>
<div>{{ dataDetail.status | statusFilter }}</div>
</div>
<div
class="content"
>
<div class="flow">
<div class="f-list">
<div
v-for="(item, index) in dataList"
:key="index"
class="express-step"
:class="{
hideCircle: item.completed,
last: index == dataList.length - 1,
}"
>
<div
v-if="item.completed"
class="express-step-icon"
>
<img
class="step-pg"
:src="item.status == 5 ? 'https://files.yunqueyi.com/image/png/common/20220817141140460.png' : 'https://files.yunqueyi.com/image/png/common/2022081612011851.png'"
>
</div>
<div
v-else
class="express-step-icon"
/>
<div
class="express-step-msg"
>
<div class="step-title">
<p>
{{ item.nodeName }}
</p>
</div>
<div
class="step-time"
>
{{ item.nodeTime ? item.nodeTime : item.completed ? '暂无数据' : '未开始' }}
</div>
</div>
</div>
</div>
<p
v-if="dataDetail.status == 5"
class="tips"
>
温馨提示:可联系医生重新采样
</p>
</div>
</div>
</div>
<div class="detail-box pb60">
<div class="content">
<div class="info">
<div class="list">
<p class="l-left">
受检人:
</p>
<p class="l-right">
<span>{{ dataDetail.patientName || '--' }}</span><span>{{ dataDetail.sex | sexFilter }}</span><span class="font">{{
dataDetail.ageMonth
? dataDetail.ageMonth + '月'
: dataDetail.patientAge + '岁'
}}</span>
</p>
</div>
<div class="list">
<p class="l-left">
检测项目:
</p>
<p class="l-right">
{{ dataDetail.checkName || '--' }}
</p>
</div>
<div class="list">
<p class="l-left">
检测编号:
</p>
<p class="l-right">
{{ dataDetail.recordNo || '--' }}
</p>
</div>
<div class="list">
<div class="l-left">
条形码:
</div>
<div class="l-right">
{{ dataDetail.sampleCode || '--' }}
<div
class="l-copy"
@click="copyText(dataDetail.sampleCode)"
>
复制
</div>
</div>
</div>
</div>
</div>
</div>
<div
v-if="[3].includes(dataDetail.status)"
class="submit-container multi-sub-wrap"
>
<div
v-if="false"
class="submit-button"
>
<wx-open-launch-weapp
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%"
:username="openWebAppConfig.username"
:path="openWebAppConfig.path"
env-version="trial"
:extra-data="openWebAppConfig.extraData"
>
<script type="text/wxtag-template">
<style>.btn {position:absolute; top: 0; color: #ffffff;text-align: center;line-height: 40px; left: 0; width:100%; height: 100%;}</style> <div class="btn">{{ openWebAppBtnName}}</div>
</script>
</wx-open-launch-weapp>
</div>
<div
v-else
class="submit-button"
@click="getJumpToWebapp"
>
{{ openWebAppBtnName }}
</div>
</div>
</div>
</template>
<script>
import { getQuickDetectionDetailProces, getJumpToWebapp, detectionRecordInfo } from '@/api/detection';
// 0待完善信息、1待采样、2已采样、21已送检、22快递已签收、 25实验室已收样、 27已上机、 3已完成、5样本失效、 6待支付
export default {
filters: {
sexFilter(val) {
const str = val == 2 ? '女' : '男';
return str;
},
statusFilter(type) {
const obj = {
0: '待完善信息',
1: '待采样',
2: '已领取',
21: '已送检',
25: '已接收',
27: '已上机',
22: '已签收',
3: '已完成',
5: '样本异常',
6: '待支付',
};
return obj[type];
},
},
data() {
return {
picaWechat:window._picaWechat,
status: '',
headerInfo: {
title: '检测详情',
isBlack: true,
backMethod: 'web',
style: 'backgroundColor:#ffffff;zIndex:100;',
background: '',
},
detectionRecordId: '',
dataDetail: {},
dataList: [],
openWebAppConfig:{
username:'gh_e92f58174364', // 小程序唯一username 1.gh_80d54796f2d5 云鹊助手 2. gh_e92f58174364 云鹊健康
path:'pagesInsurance/all-entrance/index', // 打开页面
extraData: JSON.stringify({})
},
openWebAppBtnName: '绑定条形码',
yunOrderNo: '',
action_code: ''
};
},
created() {
const {detectionRecordId, yunOrderNo} = this.$route.query;
this.detectionRecordId = detectionRecordId;
this.yunOrderNo = yunOrderNo;
this.init();
},
mounted() {
},
methods: {
init() {
const that = this;
const ed = {
channelSource: 'insurance_channel',
targetPath: 'pagesInsurance/all-entrance/index',
query: {yunOrderNo: this.yunOrderNo},
};
const o = {
detectionRecordId: this.detectionRecordId,
detectionKind: 1
};
console.log('----detectionRecordInfo', o);
detectionRecordInfo(o).then((res) => {
if (res.code === '000000') {
this.dataDetail = res.data;
this.getDetailProces();
that.openWebAppConfig.extraData = JSON.stringify(ed);
that.openWebAppConfig.path = `pagesInsurance/all-entrance/index?yunOrderNo=${this.yunOrderNo}&channelSource=channelSource`;
} else {
that.$toast(res.message);
}
});
},
copyText(val) {
const input = document.createElement('input');
input.value = val;
document.body.appendChild(input);
input.select();
input.setSelectionRange(0, input.value.length);
document.execCommand('Copy');
document.body.removeChild(input);
this.$toast('已复制');
console.log('已复制的内容:', val);
},
// 检测详情
getDetailProces() {
getQuickDetectionDetailProces({id:this.detectionRecordId, channel: 4} ).then((res) => {
if (res.code === '000000') {
this.dataList = res.data || [];
} else {
this.$toast(res.message);
}
});
},
getJumpToWebapp() {
if(this.picaWechat == 'wechat') {
return false;
}
const query = `channelSource=insurance_channel&yunOrderNo=${this.yunOrderNo}&action_code=${this.action_code}`;
const p = {params:{path:'pagesInsurance/all-entrance/index', query:query}, type: 2};
getJumpToWebapp(p).then(res => {
console.log('--res', res);
if(res.data) {
window.location.href = res.data;
}else{
this.$toast(res.message);
}
});
},
mapStatus(inquiryStatus) {
console.log('--mapStatus', inquiryStatus);
const s = String(inquiryStatus);
let m = '报告解读';
if(s == '0') {
m = '报告解读';
}else if(['4', '6'].includes(s)) {
m = '查看专家建议';
}else{
m = '已预约待咨询';
}
console.log('--mapStatus', m);
return m;
}
},
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>
...@@ -35,7 +35,7 @@ module.exports = { ...@@ -35,7 +35,7 @@ module.exports = {
port: 8083, port: 8083,
proxy: { proxy: {
'/proxy': { '/proxy': {
target: 'https://dev-sc.yunqueyi.com/', target: 'https://test1-sc.yunqueyi.com/',
// target: 'https://test1-sc.yunqueyi.com/', // target: 'https://test1-sc.yunqueyi.com/',
// target: 'https://uat-sc.yunqueyi.com/', // target: 'https://uat-sc.yunqueyi.com/',
// http://10.241.65.90:3000/mock/1071/cs/route/removeUser // http://10.241.65.90:3000/mock/1071/cs/route/removeUser
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册