Commit b91eaf30 by nlp97

init

parent ddf98c81
...@@ -160,5 +160,6 @@ $Boxwidth:1024; ...@@ -160,5 +160,6 @@ $Boxwidth:1024;
@return 0; @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 @@ ...@@ -2,7 +2,7 @@
* @Author: wsq * @Author: wsq
* @Date: 2022-04-22 14:21:50 * @Date: 2022-04-22 14:21:50
* @LastEditors: ninglupeng * @LastEditors: ninglupeng
* @LastEditTime: 2022-06-07 09:10:32 * @LastEditTime: 2022-06-07 09:46:11
* @Description: * @Description:
--> -->
<template> <template>
...@@ -115,13 +115,12 @@ ...@@ -115,13 +115,12 @@
<script lang="ts"> <script lang="ts">
import http from '../utils/http'; import http from '../utils/http';
import { reactive, toRefs, onMounted, nextTick, computed } from '@vue/composition-api'; 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 $ from 'jquery';
// import { ElLoading } from 'element-plus';
import { setItem, getItem } from '../utils/auth'; import { setItem, getItem } from '../utils/auth';
// import medicalRecordHomepage from 'comps/medicalRecordHomepage/index.vue';
export default { export default {
components: { components: {
// medicalRecordHomepage,
}, },
name: 'outseeQualityControl', name: 'outseeQualityControl',
setup() { setup() {
...@@ -147,13 +146,13 @@ export default { ...@@ -147,13 +146,13 @@ export default {
keys: [], //获取所有的问卷key keys: [], //获取所有的问卷key
values: [], // values: [], //
}); });
var route = useRoute(); // var route = useRoute();
//同步数据 //同步数据
const getSynchronous = (id) => { const getSynchronous = (id) => {
// var loadingInstance1 = ElLoading.service(loadingOption1); // var loadingInstance1 = ElLoading.service(loadingOption1);
http http
.post(`/medical/get/Synchronization?id=${route.query.id}`) .post(`/medical/get/Synchronization?id=${'7d1e97e6-c4ab-11ec-9bd0-00155d016553'}`)
.then((data) => { .then((data) => {
// loadingInstance1.close(); // loadingInstance1.close();
// ElMessage.success(data.message); // ElMessage.success(data.message);
...@@ -190,13 +189,6 @@ export default { ...@@ -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 { ...@@ -234,10 +226,10 @@ export default {
}; };
onMounted(() => { onMounted(() => {
if (route.query.id) { if ('7d1e97e6-c4ab-11ec-9bd0-00155d016553') {
getHomePage(route.query.id); getHomePage('7d1e97e6-c4ab-11ec-9bd0-00155d016553');
getScoringDetails(route.query.id); getScoringDetails('7d1e97e6-c4ab-11ec-9bd0-00155d016553');
setItem('outpid', route.query.id) setItem('outpid', '7d1e97e6-c4ab-11ec-9bd0-00155d016553')
} }
}); });
...@@ -253,8 +245,8 @@ export default { ...@@ -253,8 +245,8 @@ export default {
</script> </script>
<style lang="scss"> <style lang="scss">
@import 'styles/mixin.scss'; @import '../styles/mixin.scss';
// @import 'styles/media/components/outseeQualityControl.scss'; @import '../styles/media/components/outpatientDetails.scss';
.outseeQualityControl { .outseeQualityControl {
// height: calc(100% - 50px); // height: calc(100% - 50px);
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: ninglupeng * @Author: ninglupeng
* @Date: 2022-06-07 00:31:25 * @Date: 2022-06-07 00:31:25
* @LastEditors: ninglupeng * @LastEditors: ninglupeng
* @LastEditTime: 2022-06-07 00:40:32 * @LastEditTime: 2022-06-07 09:36:58
* @Description: * @Description:
*/ */
const path = require('path'); const path = require('path');
...@@ -17,7 +17,7 @@ module.exports = { ...@@ -17,7 +17,7 @@ module.exports = {
port: 8066, //测试端口 port: 8066, //测试端口
proxy: { proxy: {
'/api': { '/api': {
target: 'https://testjx.suvalue.com/', target: 'http://192.168.18.166:8099/',
changeOrigin: true, changeOrigin: true,
pathRewrite: { 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