feat:分析
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
// 在此不用配置接口前缀
|
||||
const isDev = process.env.NODE_ENV === 'development'
|
||||
const BaseUrl = isDev ? 'http://192.168.26.116:888/admin-api' : 'http://172.33.199.28:8088/api'
|
||||
const BaseUrl = isDev ? 'http://192.168.26.190:48080/admin-api' : 'http://172.33.199.28:8088/api'
|
||||
|
||||
// const BaseUrl = isDev ? 'http://localhost:9999' : ''
|
||||
const upgradeBaseUrl = 'http://172.33.199.28:8088'
|
||||
@@ -31,5 +31,5 @@ export function getUpgradeBaseUrl() {
|
||||
}
|
||||
export function getWebSocketUrl() {
|
||||
// return uni.getStorageSync('base_url').replace('/api', '') + '/ws'
|
||||
return 'ws://192.168.26.178:8330'
|
||||
return 'ws://192.168.26.190:8330'
|
||||
}
|
||||
|
||||
@@ -30,6 +30,14 @@ const getSampleAnalysisByTaskId = businessAssayTaskId => {
|
||||
params: { businessAssayTaskId }
|
||||
})
|
||||
}
|
||||
// 质控样
|
||||
const batchSampleAndQcAnalysisByTaskId = businessAssayTaskId => {
|
||||
return request({
|
||||
url: '/qms/bus/sample/analysis/batchSampleAndQcAnalysisByTaskId',
|
||||
method: 'GET',
|
||||
params: { businessAssayTaskId }
|
||||
})
|
||||
}
|
||||
// 获取指派单动态配置项
|
||||
const getDynamicBaseFormSchema = params => {
|
||||
return request({
|
||||
@@ -161,6 +169,17 @@ const saveDetailValue = data => {
|
||||
}
|
||||
})
|
||||
}
|
||||
// 批量保存任务
|
||||
const saveBatchSmpleAndQcAnalysis = data => {
|
||||
return request({
|
||||
url: '/qms/bus/sample/analysis/saveBatchSmpleAndQcAnalysis',
|
||||
method: 'POST',
|
||||
data,
|
||||
custom: {
|
||||
showSuccess: true
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
// 提交任务明细-停用
|
||||
const submitTaskDetail = params => {
|
||||
@@ -256,6 +275,8 @@ export default {
|
||||
getAssayTaskList,
|
||||
getAssayTaskDataList,
|
||||
getSampleAnalysisByTaskId,
|
||||
batchSampleAndQcAnalysisByTaskId,
|
||||
saveBatchSmpleAndQcAnalysis,
|
||||
getDynamicBaseFormSchema,
|
||||
getAssayTaskDetailListByTaskNo,
|
||||
getAssayTaskDetailById,
|
||||
|
||||
@@ -4,8 +4,9 @@ math.config({
|
||||
number: 'BigNumber',
|
||||
precision: 64
|
||||
})
|
||||
export { math }
|
||||
/*
|
||||
* 计算分析值*/
|
||||
* 计算当前样品分析值*/
|
||||
export function calcAnalysisValue(group) {
|
||||
try {
|
||||
for (const g of group) {
|
||||
@@ -57,6 +58,43 @@ export function calcAnalysisValue(group) {
|
||||
}
|
||||
}
|
||||
|
||||
// 根据样品和配置列计算分析值
|
||||
export function calcRowAnalysisValue(row, columnObj, dynamicsColumns) {
|
||||
if (!columnObj.paramNo) return
|
||||
for (let i = 0; i < dynamicsColumns.length; i++) {
|
||||
let curItem = dynamicsColumns[i]
|
||||
if (curItem.fieldIndex === columnObj.fieldIndex) continue
|
||||
|
||||
let param = columnObj.fieldIndex.charAt(0) === 'p' ? 'p' + columnObj.paramNo : 'e' + columnObj.paramNo
|
||||
if (curItem.formula && curItem.formula.includes(param)) {
|
||||
let formula = curItem.formula
|
||||
let formulas = formula.split('|')
|
||||
let formulaVal = ''
|
||||
formulas.forEach(f => {
|
||||
if (f.charAt(0) === 'p') {
|
||||
let o = dynamicsColumns.find(i => 'p' + i.paramNo === f)
|
||||
formulaVal += row[o.fieldIndex]?.value ? row[o.fieldIndex].value : 0
|
||||
} else if (f.charAt(0) === 'e') {
|
||||
let o = dynamicsColumns.find(i => 'e' + i.paramNo === f)
|
||||
formulaVal += row[o.fieldIndex]?.value ? row[o.fieldIndex].value : 0
|
||||
} else {
|
||||
formulaVal += f
|
||||
}
|
||||
})
|
||||
let v
|
||||
if (formulaVal.startsWith('Get')) {
|
||||
formulaVal = formulaVal.replace(')', ",'" + row.conBaseSampleId + "')")
|
||||
v = eval(formulaVal)
|
||||
} else {
|
||||
v = math.evaluate(formulaVal).toString()
|
||||
v = isFinite(v) ? v : 0
|
||||
}
|
||||
|
||||
row[curItem.fieldIndex].value = handleRoundFiveNumber(Number(v), row[curItem.fieldIndex].decimalPosition)
|
||||
calcRowAnalysisValue(row, curItem, dynamicsColumns)
|
||||
}
|
||||
}
|
||||
}
|
||||
const findFieldInGroup = function (paramNo, group, p) {
|
||||
for (const g of group) {
|
||||
for (const f of g.fields) {
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import $router from '@/nx/router'
|
||||
import $helper from '@/nx/helper'
|
||||
import $test from '@/nx/helper/test'
|
||||
import $store from '@/nx/store'
|
||||
import $measure from '@/nx/helper/measure'
|
||||
import $print from '@/nx/helper/print'
|
||||
@@ -21,7 +22,8 @@ const nx = {
|
||||
$measure,
|
||||
$print,
|
||||
$dayjs: dayjs,
|
||||
$api
|
||||
$api,
|
||||
$test
|
||||
}
|
||||
|
||||
// 加载Nx底层依赖
|
||||
|
||||
@@ -48,6 +48,7 @@ onMounted(() => {
|
||||
}
|
||||
}
|
||||
nx.$measure.setRegData(JSON.stringify(regData))
|
||||
|
||||
nx.$measure.open()
|
||||
|
||||
// 监听 WebSocket 数据
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<view class="u-tab-item" :class="{ 'u-tab-item-active': active }" @tap.stop="handleClick">
|
||||
<u-row class="full-width">
|
||||
<u-col span="2" class="text-center" style="position: relative">
|
||||
<u-icon :color="taskStyle(task)" name="tags-fill" size="34"></u-icon>
|
||||
<u-icon :color="taskStyle(task)" name="tags-fill" size="40"></u-icon>
|
||||
<text class="seq">{{ seq }}</text>
|
||||
</u-col>
|
||||
<u-col span="10">
|
||||
@@ -72,7 +72,7 @@ const taskStyle = task => {
|
||||
}
|
||||
.seq {
|
||||
position: absolute;
|
||||
top: 9px;
|
||||
top: 12px;
|
||||
left: 12px;
|
||||
color: #fff;
|
||||
font-size: 11px;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -21,7 +21,7 @@
|
||||
v-model="field.value"
|
||||
clearable
|
||||
:placeholder="field.placeholder"
|
||||
:disabled="field.disabled || field.fillingWay == 3"
|
||||
:disabled="field.disabled || field.fillingWay == 'calculate'"
|
||||
/>
|
||||
<!--数字,限制小数位数-->
|
||||
<u-input
|
||||
@@ -31,7 +31,7 @@
|
||||
@blur="event => checkDecimal(event, field)"
|
||||
v-model="field.value"
|
||||
:placeholder="field.placeholder"
|
||||
:disabled="field.disabled || field.fillingWay == 3"
|
||||
:disabled="field.disabled || field.fillingWay == 'calculate'"
|
||||
/>
|
||||
<!--select-->
|
||||
<view v-if="field.type == 'select'" class="x-bc select-my" @click="handleFieldClick(field)">
|
||||
@@ -150,12 +150,6 @@ function loadTaskDetail() {
|
||||
|
||||
// 点击字段(打开选择器)
|
||||
function handleFieldClick(field) {
|
||||
if (field.type == 'date') {
|
||||
field.showPicker = true
|
||||
if (field.fillingWay == '1') {
|
||||
}
|
||||
return
|
||||
}
|
||||
field.showPicker = true
|
||||
}
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
<block v-for="(sample, index) in sampleList" :key="index">
|
||||
<view v-if="currentTask.reviewCount === sample.reviewCount" class="p5 fs16">
|
||||
<u-row>
|
||||
<u-col span="3" class="text-center">
|
||||
<u-col span="2" class="text-center">
|
||||
<u-row>
|
||||
<u-col span="6" class="text-center">
|
||||
<!-- v-if="
|
||||
@@ -49,28 +49,30 @@
|
||||
</u-col>
|
||||
</u-row>
|
||||
</u-col>
|
||||
<u-col span="9">
|
||||
<view class="sample_desc">
|
||||
<view>
|
||||
<view
|
||||
><text class="pl10">{{ sample.sampleCode }}</text></view
|
||||
>
|
||||
<u-col span="10" class="flex">
|
||||
<u-row>
|
||||
<u-col span="6">
|
||||
<view class="sample_desc">
|
||||
<view>
|
||||
<view
|
||||
><text class="pl10">{{ sample.sampleCode }}</text></view
|
||||
>
|
||||
<view>
|
||||
<text class="pl10">
|
||||
{{ getDataSourceTypeShow(sample.dataSourceType) }}{{ sample.sampleName }}
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</u-col>
|
||||
<u-col span="6">
|
||||
<view>
|
||||
<text class="pl10">
|
||||
{{ getDataSourceTypeShow(sample.dataSourceType) }}{{ sample.sampleName }}
|
||||
{{ sample.assayProject }}
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- <view class="sample_desc_warn" v-if="sample.sampleProcessNo !== currentNode">
|
||||
当前节点:{{ getProcessNameShow(sample.sampleProcessNo) }}
|
||||
</view>
|
||||
<view class="sample_desc_warn" v-if="sample.rollbackStatus === 'revoke'"> 样品退回被驳回 </view>
|
||||
<view class="sample_desc_warn" v-if="sample.rollbackStatus === 'running'"> 样品退回审批中 </view>
|
||||
<view class="sample_desc_warn" v-if="sample.rollbackStatus === 'finished'">
|
||||
样品已退回,请联系管理员处理
|
||||
</view> -->
|
||||
</view>
|
||||
</u-col>
|
||||
</u-row>
|
||||
</u-col>
|
||||
</u-row>
|
||||
<u-line class="p5" color="#bbb" />
|
||||
@@ -136,7 +138,7 @@ const customBack = () => {
|
||||
uni.reLaunch({ url: '/pages/analysis/index/index' })
|
||||
}
|
||||
const showRollbackModal = () => {
|
||||
if (checkedSampleCodes.length === 0) {
|
||||
if (checkedSampleCodes.value.length === 0) {
|
||||
uni.showToast({ title: '请选择要退回的样品!', icon: 'none' })
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user