From 4f3692ac4f45eccd19d59d465550d99b3b2548ba Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期五, 21 二月 2025 10:50:12 +0800
Subject: [PATCH] 测试完成
---
src/views/followvisit/record/detailpage/index.vue | 28 +++++++++++++++++-----------
1 files changed, 17 insertions(+), 11 deletions(-)
diff --git a/src/views/followvisit/record/detailpage/index.vue b/src/views/followvisit/record/detailpage/index.vue
index ffb92a7..7d2254e 100644
--- a/src/views/followvisit/record/detailpage/index.vue
+++ b/src/views/followvisit/record/detailpage/index.vue
@@ -35,17 +35,17 @@
<template slot-scope="scope">
<div v-if="scope.row.sendstate == 1">
<el-tag type="primary" :disable-transitions="false"
- >琚鍙�</el-tag
+ >琛ㄥ崟宸查鍙�</el-tag
>
</div>
<div v-if="scope.row.sendstate == 2">
<el-tag type="primary" :disable-transitions="false"
- >寰呭彂閫�</el-tag
+ >寰呮墽琛�</el-tag
>
</div>
<div v-if="scope.row.sendstate == 3">
<el-tag type="success" :disable-transitions="false"
- >宸插彂閫佹湭棰嗗彇</el-tag
+ >琛ㄥ崟宸插彂閫�</el-tag
>
</div>
<div v-if="scope.row.sendstate == 4">
@@ -55,7 +55,9 @@
<el-tag type="danger" :disable-transitions="false"
>鍙戦�佸け璐�</el-tag
>
- </div>
+ </div><div v-if="scope.row.sendstate == 6">
+ <el-tag type="success" :disable-transitions="false">宸插畬鎴�</el-tag>
+ </div>
</template>
</el-table-column>
<el-table-column
@@ -478,10 +480,12 @@
if (res.code === 200) {
this.tableDatatop = res.data.scriptResult.script;
this.tableDatatop.forEach((item) => {
- if (item.scriptResult && item.scriptType != 2) {
+ console.log(item.scriptResultId,'scriptResultId');
+
+ if (item.scriptResultId && item.scriptType != 2) {
item.isoption = 3;
- item.scriptResult = JSON.parse(item.scriptResult);
- } else if (item.scriptResult && item.scriptType == 2) {
+ item.scriptResult = item.scriptResult;
+ } else if (item.scriptResultId && item.scriptType == 2) {
item.scriptResult = item.scriptResult.split("&");
item.isoption = 3;
}
@@ -554,9 +558,10 @@
var objs = item.svyLibTemplateTargetoptions.find(
(items) => items.optioncontent == item.scriptResult
);
-
- if (objs.isabnormal) {
- excep = 1;
+ if (obj) {
+ if (objs.isabnormal) {
+ excep = 1;
+ }
}
let obj = {
@@ -570,8 +575,9 @@
if (item.scriptType == 2 && item.scriptResult[0]) {
obj.asrtext = item.scriptResult.join("&");
} else if (item.scriptType != 2 && item.scriptResult) {
- obj.asrtext = JSON.stringify(item.scriptResult);
+ obj.asrtext = item.scriptResult;
}
+console.log(item,'item90');
if (item.isoption == 3) {
serviceSubtaskDetailedit(obj).then((res) => {
--
Gitblit v1.9.3