Commit b91eaf30 by nlp97

init

parent ddf98c81
......@@ -160,5 +160,6 @@ $Boxwidth:1024;
@return 0;
}
@return math.div($px, $Boxwidth) * 100vw;
// @return math.div($px, $Boxwidth) * 100vw;
@return $px/ $Boxwidth * 100vw;
}
\ No newline at end of file
......@@ -2,7 +2,7 @@
* @Author: wsq
* @Date: 2022-04-22 14:21:50
* @LastEditors: ninglupeng
* @LastEditTime: 2022-06-07 09:10:32
* @LastEditTime: 2022-06-07 09:46:11
* @Description:
-->
<template>
......@@ -115,13 +115,12 @@
<script lang="ts">
import http from '../utils/http';
import { reactive, toRefs, onMounted, nextTick, computed } from '@vue/composition-api';
// import { ElMessage, ElMessageBox } from 'element-plus';
// import { useRoute, useRouter } from 'vue-router';
import $ from 'jquery';
// import { ElLoading } from 'element-plus';
import { setItem, getItem } from '../utils/auth';
// import medicalRecordHomepage from 'comps/medicalRecordHomepage/index.vue';
export default {
components: {
// medicalRecordHomepage,
},
name: 'outseeQualityControl',
setup() {
......@@ -147,13 +146,13 @@ export default {
keys: [], //获取所有的问卷key
values: [], //
});
var route = useRoute();
// var route = useRoute();
//同步数据
const getSynchronous = (id) => {
// var loadingInstance1 = ElLoading.service(loadingOption1);
http
.post(`/medical/get/Synchronization?id=${route.query.id}`)
.post(`/medical/get/Synchronization?id=${'7d1e97e6-c4ab-11ec-9bd0-00155d016553'}`)
.then((data) => {
// loadingInstance1.close();
// ElMessage.success(data.message);
......@@ -190,13 +189,6 @@ export default {
);
}
}
const loadingOption1 = {
// 加载loading
fullscreen: true,
text: '正在加载...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.5)',
};
// 获取病案首页数据
......@@ -234,10 +226,10 @@ export default {
};
onMounted(() => {
if (route.query.id) {
getHomePage(route.query.id);
getScoringDetails(route.query.id);
setItem('outpid', route.query.id)
if ('7d1e97e6-c4ab-11ec-9bd0-00155d016553') {
getHomePage('7d1e97e6-c4ab-11ec-9bd0-00155d016553');
getScoringDetails('7d1e97e6-c4ab-11ec-9bd0-00155d016553');
setItem('outpid', '7d1e97e6-c4ab-11ec-9bd0-00155d016553')
}
});
......@@ -253,8 +245,8 @@ export default {
</script>
<style lang="scss">
@import 'styles/mixin.scss';
// @import 'styles/media/components/outseeQualityControl.scss';
@import '../styles/mixin.scss';
@import '../styles/media/components/outpatientDetails.scss';
.outseeQualityControl {
// height: calc(100% - 50px);
......
......@@ -2,7 +2,7 @@
* @Author: ninglupeng
* @Date: 2022-06-07 00:31:25
* @LastEditors: ninglupeng
* @LastEditTime: 2022-06-07 00:40:32
* @LastEditTime: 2022-06-07 09:36:58
* @Description:
*/
const path = require('path');
......@@ -17,7 +17,7 @@ module.exports = {
port: 8066, //测试端口
proxy: {
'/api': {
target: 'https://testjx.suvalue.com/',
target: 'http://192.168.18.166:8099/',
changeOrigin: true,
pathRewrite: {
'^/': '/'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment