diff --git a/src/api/backApply/index.ts b/src/api/backApply/index.ts
new file mode 100644
index 0000000..cef891b
--- /dev/null
+++ b/src/api/backApply/index.ts
@@ -0,0 +1,34 @@
+import request from '@/utils/request';
+
+// 查询数据列表
+export function applyQueryList(query?: Object) {
+ return request({
+ url: '/cancelCheck/queryList',
+ method: 'get',
+ params: query,
+ });
+}
+// 获取明细数据
+export function queryXmDetail(query?: Object) {
+ return request({
+ url: '/cancelCheck/queryDetail',
+ method: 'get',
+ params: query,
+ });
+}
+// 退检
+export function confirmRefund(query?: Object) {
+ return request({
+ url: '/cancelCheck/confirm',
+ method: 'get',
+ params: query,
+ });
+}
+// 拒绝退费
+export function refuseRefund(query?: Object) {
+ return request({
+ url: '/cancelCheck/refuse',
+ method: 'get',
+ params: query,
+ });
+}
\ No newline at end of file
diff --git a/src/components/DictTag/index.vue b/src/components/DictTag/index.vue
index bcbd948..0502ffc 100644
--- a/src/components/DictTag/index.vue
+++ b/src/components/DictTag/index.vue
@@ -6,7 +6,7 @@
v-if="(item.elTagType == 'default' || item.elTagType == '') && (item.elTagClass == '' || item.elTagClass == null)"
:key="item.value" :index="index" :class="item.elTagClass">{{ item.label + " " }}
{{ item.label + " "
+ :type="item.elTagType === 'default' ? 'primary' : item.elTagType" :class="item.elTagClass">{{ item.label + " "
}}
diff --git a/src/views/liswork/backApply/index.vue b/src/views/liswork/backApply/index.vue
new file mode 100644
index 0000000..edca62a
--- /dev/null
+++ b/src/views/liswork/backApply/index.vue
@@ -0,0 +1,354 @@
+/**
+* @file index.vue 费用退检
+* @author: w
+* @since: 2026-04-23
+*/
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+ 查询
+ 导出
+
+
+
+
+
+
+
+
+ {{ formatDict(row.brly, 'PT') }}
+
+
+
+
+
+
+ {{lis_req_type.find((item: any) => item.value == row.zt.trim())?.label || row.zt}}
+
+
+
+ 急
+ 无
+
+
+ 退检
+
+
+
+
+
+
{ tjInfo = null; tjData = null; }">
+
+
+
+
+
+
+
+
+
+
+ {{lis_req_type.find((item: any) => item.value == row.zt.trim())?.label || row.zt}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/liswork/dict/index.vue b/src/views/liswork/dict/index.vue
index a7b5ed7..6f54501 100644
--- a/src/views/liswork/dict/index.vue
+++ b/src/views/liswork/dict/index.vue
@@ -146,13 +146,14 @@ function handleAdd() {
}
reset();
open.value = true;
+ form.value.zdlb = queryParams.value.zdlb;
title.value = '新增字典';
}
//修改
function handleUpdate(row) {
reset()
- form.value = row.zdlb ? row : info.value
+ form.value = row.zdlb ? JSON.parse(JSON.stringify(row)) : info.value
open.value = true;
}
@@ -215,7 +216,7 @@ function handleQueryDetail() {
function submitForm() {
proxy.$refs["dictRef"].validate(valid => {
if (valid) {
- if (form.value.zdlb != undefined && form.value.zdlb != '') {
+ if (title.value === '修改字典') {
updateComDictService(form.value).then(response => {
if (response.code == 0) {
proxy.$modal.msgSuccess("修改成功");
diff --git a/src/views/liswork/specimenMonitoring/index.vue b/src/views/liswork/specimenMonitoring/index.vue
index 588c97d..3763a05 100644
--- a/src/views/liswork/specimenMonitoring/index.vue
+++ b/src/views/liswork/specimenMonitoring/index.vue
@@ -46,7 +46,7 @@
-
+
@@ -337,6 +337,10 @@ onMounted(() => {
\ No newline at end of file