tijiao
This commit is contained in:
@@ -23,7 +23,7 @@ module.exports = {
|
||||
},
|
||||
|
||||
// Various Dev Server settings
|
||||
host: '192.168.110.160', // can be overwritten by process.env.HOST
|
||||
host: '192.168.110.159', // can be overwritten by process.env.HOST
|
||||
port: 8001, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
||||
autoOpenBrowser: true,
|
||||
errorOverlay: true,
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
<script src="./static/plugins/ueditor-1.4.3.3/ueditor.config.js"></script>
|
||||
<script src="./static/plugins/ueditor-1.4.3.3/ueditor.all.min.js"></script>
|
||||
<script src="./static/plugins/ueditor-1.4.3.3/lang/zh-cn/zh-cn.js"></script>
|
||||
<script src="https://unpkg.com/mammoth/mammoth.browser.min.js"></script>
|
||||
<% } %>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"gulp-replace": "1.0.0",
|
||||
"gulp-shell": "0.8.0",
|
||||
"lodash": "4.17.5",
|
||||
"mammoth": "^1.9.1",
|
||||
"node-sass": "^4.0.0",
|
||||
"npm": "^6.9.0",
|
||||
"quill-image-resize-module": "^3.0.0",
|
||||
|
||||
BIN
src/assets/img/word-iocn.png
Normal file
BIN
src/assets/img/word-iocn.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 469 B |
@@ -12,6 +12,7 @@ import '@/element-ui-theme'
|
||||
import '@/assets/scss/index.scss'
|
||||
import '@/assets/css/time-line.less' // 引入时间线样式
|
||||
import Bus from '@/assets/js/eventBus.js'
|
||||
import commonJS from '@/views/common/js/commonJS'
|
||||
import httpRequest from '@/utils/httpRequest' // api: https://github.com/axios/axios
|
||||
import { isAuth } from '@/utils'
|
||||
import cloneDeep from 'lodash/cloneDeep'
|
||||
@@ -38,10 +39,11 @@ if (process.env.NODE_ENV !== 'production') {
|
||||
}
|
||||
|
||||
// 挂载全局
|
||||
|
||||
Vue.prototype.$http = httpRequest // ajax请求方法
|
||||
Vue.prototype.isAuth = isAuth // 权限方法
|
||||
Vue.prototype.$bus = Bus
|
||||
|
||||
Vue.prototype.$commonJS = commonJS //
|
||||
// 保存整站vuex本地储存初始状态
|
||||
window.SITE_CONFIG['storeState'] = cloneDeep(store.state)
|
||||
|
||||
|
||||
88
src/views/common/js/commonJS.js
Normal file
88
src/views/common/js/commonJS.js
Normal file
@@ -0,0 +1,88 @@
|
||||
import Vue from 'vue';
|
||||
|
||||
import mammoth from "mammoth";
|
||||
export default {
|
||||
handleUpload(event, callback) {
|
||||
const file = event.target.files[0]
|
||||
if (!file) return
|
||||
|
||||
const reader = new FileReader()
|
||||
reader.onload = (e) => {
|
||||
const arrayBuffer = e.target.result
|
||||
mammoth.extractRawText({ arrayBuffer })
|
||||
.then((result) => {
|
||||
const rawText = result.value.trim();
|
||||
|
||||
// 1. 按“[医案]”分割,生成数组
|
||||
const caseList = rawText
|
||||
.split(/[医案]/)
|
||||
.filter(Boolean);
|
||||
|
||||
// 2. 每个医案内判断是否有“相关课程”,有则去掉后面部分
|
||||
const cleanedCases = caseList.map(item => {
|
||||
let content = item.trim();
|
||||
|
||||
if (content.includes('相关课程')) {
|
||||
content = content.split('相关课程')[0].trim();
|
||||
}
|
||||
|
||||
return content; // 补回前缀
|
||||
});
|
||||
|
||||
|
||||
// 如果你只是要显示全部文字,也可以合并
|
||||
// this.content = fullCases.join('\n\n');
|
||||
callback(cleanedCases)
|
||||
})
|
||||
.catch((err) => {
|
||||
console.error('提取失败:', err);
|
||||
});
|
||||
// mammoth.extractRawText({ arrayBuffer })
|
||||
// .then((result) => {
|
||||
// this.content = result.value // 设置到 textarea 中
|
||||
// console.log('提取内容:', result.value)
|
||||
// })
|
||||
// .catch((err) => {
|
||||
// console.error('提取失败:', err)
|
||||
// })
|
||||
}
|
||||
|
||||
reader.readAsArrayBuffer(file)
|
||||
|
||||
}
|
||||
// handleUpload(event, callback) {
|
||||
// const file = event.target.files[0]
|
||||
// if (!file) return
|
||||
|
||||
// const reader = new FileReader()
|
||||
// reader.onload = (e) => {
|
||||
// const arrayBuffer = e.target.result
|
||||
// mammoth.convertToHtml({
|
||||
// arrayBuffer: arrayBuffer
|
||||
// }, {
|
||||
// convertImage: mammoth.images.inline(function (element) {
|
||||
// return element.read("base64").then(function (imageBuffer) {
|
||||
// return {
|
||||
// src: "data:" + element.contentType + ";base64," + imageBuffer
|
||||
// };
|
||||
// });
|
||||
// })
|
||||
// }).then(function (result) {
|
||||
// callback(result.value);
|
||||
|
||||
// })
|
||||
// // mammoth.extractRawText({ arrayBuffer })
|
||||
// // .then((result) => {
|
||||
// // this.content = result.value // 设置到 textarea 中
|
||||
// // console.log('提取内容:', result.value)
|
||||
// // })
|
||||
// // .catch((err) => {
|
||||
// // console.error('提取失败:', err)
|
||||
// // })
|
||||
// }
|
||||
|
||||
// reader.readAsArrayBuffer(file)
|
||||
|
||||
// }
|
||||
|
||||
}
|
||||
@@ -55,21 +55,21 @@
|
||||
<!-- -->
|
||||
|
||||
<el-table-column
|
||||
v-if="!disableOperate"
|
||||
v-if="!isDisableOperate"
|
||||
header-align="center"
|
||||
align="center"
|
||||
label="操作"
|
||||
width="120"
|
||||
:width="operationWidth?operationWidth:120"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<slot name="operation" :row="scope.row"></slot>
|
||||
<el-button
|
||||
type="text"
|
||||
v-if="urlList.editCourse"
|
||||
v-if="urlList.editCourse&&!isShowNewOperation"
|
||||
@click="editCourse(scope.row)"
|
||||
>编辑</el-button
|
||||
>
|
||||
<el-button
|
||||
<el-button v-if="!isShowNewOperation"
|
||||
type="text"
|
||||
style="color: red;"
|
||||
@click="shopDelete(scope.row)"
|
||||
@@ -155,11 +155,14 @@ export default {
|
||||
"isShowPagination",
|
||||
"axiosType",
|
||||
"otherInfo",
|
||||
"isShowNewOperation",
|
||||
"operationWidth",
|
||||
"CustomEdit",
|
||||
"pageSizes"
|
||||
],
|
||||
data() {
|
||||
return {
|
||||
isDisableOperate: this.disableOperate,
|
||||
multipleSelectionAll: [], // 所有选中的数据包含跨页数据
|
||||
goodsTypeList: [], // goodsTypeList
|
||||
multipleSelection: [], // 当前页选中的数据
|
||||
@@ -458,7 +461,7 @@ export default {
|
||||
// 获取关联数据列表
|
||||
async getAssociatedGoodsList() {
|
||||
this.$emit("changeStatisticsQuery");
|
||||
this.disableOperate = false;
|
||||
this.isDisableOperate = false;
|
||||
console.log("🚀 ~ getAssociatedGoodsList ~ form:11111", form);
|
||||
|
||||
var form = { ...this.defaultForm, ...this.dataForm };
|
||||
@@ -564,7 +567,7 @@ export default {
|
||||
}
|
||||
},
|
||||
async statisticsQuery() {
|
||||
this.disableOperate = true;
|
||||
this.isDisableOperate = true;
|
||||
var form = { ...this.defaultForm, ...this.dataForm };
|
||||
|
||||
this.dataListLoading = true;
|
||||
|
||||
1281
src/views/modules/medicalrecords/11.vue
Normal file
1281
src/views/modules/medicalrecords/11.vue
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -243,7 +243,7 @@
|
||||
prop="title"
|
||||
header-align="center"
|
||||
align="center"
|
||||
width="120"
|
||||
width="110"
|
||||
label="是否加入数据库"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
@@ -431,7 +431,7 @@
|
||||
prop="title"
|
||||
header-align="center"
|
||||
align="center"
|
||||
width="120"
|
||||
width="110"
|
||||
label="是否加入数据库"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
|
||||
Reference in New Issue
Block a user