From a77752e5fb19d735429e2166e83b3c15224377b2 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期二, 04 三月 2025 21:14:51 +0800
Subject: [PATCH] 测试完成
---
src/views/followvisit/record/detailpage/index.vue | 94 ++++++++++++++++++++++++++++++----------------
1 files changed, 61 insertions(+), 33 deletions(-)
diff --git a/src/views/followvisit/record/detailpage/index.vue b/src/views/followvisit/record/detailpage/index.vue
index c4eaf3b..fc397df 100644
--- a/src/views/followvisit/record/detailpage/index.vue
+++ b/src/views/followvisit/record/detailpage/index.vue
@@ -33,13 +33,22 @@
</div>
<div>
<el-table :data="logsheetlist" style="width: 100%">
- <el-table-column prop="sendname" align="center" label="濮撳悕">
+ <el-table-column prop="sendname" align="center" label="濮撳悕"
+ width="100">
+ </el-table-column>
+ <el-table-column
+ prop="taskName"
+ align="center"
+ width="200"
+ show-overflow-tooltip
+ label="浠诲姟鍚嶇О"
+ >
</el-table-column>
<el-table-column
prop="sendstate"
align="center"
width="200"
- label="鏈嶅姟鐘舵��"
+ label="浠诲姟鐘舵��"
>
<template slot-scope="scope">
<div v-if="scope.row.sendstate == 1">
@@ -49,7 +58,7 @@
</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">
@@ -134,14 +143,6 @@
/>
</template>
</el-table-column>
- <el-table-column
- prop="taskName"
- align="center"
- width="200"
- show-overflow-tooltip
- label="浠诲姟鍚嶇О"
- >
- </el-table-column>
<el-table-column
prop="templatename"
@@ -173,7 +174,7 @@
@click="Seedetails(scope.row)"
v-hasPermi="['system:user:edit']"
><span class="button-zx"
- ><i class="el-icon-s-order"></i>鏌ョ湅鏈嶅姟缁撴灉</span
+ ><i class="el-icon-s-order"></i>鏌ョ湅</span
></el-button
>
</template>
@@ -183,13 +184,32 @@
</div>
<div :class="form.serviceType == 2 ? 'Followuserinfo' : 'Followuserinfos'">
<div>
- <div class="headline">
- <div>浜哄伐澶勭悊</div>
- <div style="margin-left: 30px">
- <el-button type="warning">涓�閿懠鍙�</el-button>
+ <el-form ref="form" :model="form" label-width="120px">
+ <div class="headline">
+ <div>浜哄伐澶勭悊</div>
+ <el-row :gutter="20">
+ <el-col :span="12"
+ ><el-form-item label="鑱旂郴鐢佃瘽">
+ <el-input
+ disabled
+ placeholder="鑱旂郴鐢佃瘽缂哄け"
+ v-model="userform.telcode"
+ ></el-input> </el-form-item
+ ></el-col>
+ <el-col :span="12"
+ ><el-form-item label="鑱旂郴浜虹數璇�">
+ <el-input
+ disabled
+ placeholder="鑱旂郴浜虹數璇濈己澶�"
+ v-model="userform.relativetelcode"
+ ></el-input> </el-form-item
+ ></el-col>
+ </el-row>
+ <div style="margin-left: 30px">
+ <el-button type="primary" plain @click="Editsingletasksonyic">淇濆瓨鏈嶅姟</el-button>
</div>
- </div>
- <el-form ref="form" :model="form" label-width="80px">
+ </div>
+
<el-form-item label="闅忚璁板綍">
<el-input type="textarea" v-model="form.remark"></el-input>
</el-form-item>
@@ -259,7 +279,7 @@
/> </el-form-item
></el-col>
</el-row>
- <el-row :gutter="20">
+ <!-- <el-row :gutter="20">
<el-col :span="24">
<el-form-item label="鏍囩" prop="desc">
<div class="xinz-inf">
@@ -274,7 +294,7 @@
</div>
</el-form-item>
</el-col>
- </el-row>
+ </el-row> -->
</el-form>
</div>
</el-collapse-item>
@@ -649,14 +669,16 @@
// 鑾峰彇鍩虹淇℃伅
getuserinfo() {
const queryParams = {
- pid: Number(this.id),
+ pid: Number(this.patid),
allhosp: "0",
pageNum: 1,
};
// 鎮h�呭熀纭�淇℃伅
messagelistpatient(queryParams).then((response) => {
- this.userform = response.rows[0];
- this.dynamicTags = response.rows[0].tagList.map(this.processElement);
+ if (response.rows[0]) {
+ this.userform = response.rows[0];
+ this.dynamicTags = response.rows[0].tagList.map(this.processElement);
+ }
});
},
// 鑾峰彇璇煶鏁版嵁
@@ -801,15 +823,15 @@
getTaskservelist({
patid: this.patid,
subId: id,
+ deptOrDistrict:2,
}).then((res) => {
if (res.code == 200) {
this.form = res.rows[0].serviceSubtaskList[0];
- console.log(this.form, "form3");
+ console.log(this.form,'this.form');
this.logsheetlist = res.rows[0].serviceSubtaskList;
this.templateid = this.logsheetlist[0].templateid;
- console.log(this.form.serviceType, "serviceType");
}
-
+this.getuserinfo();
if (this.Voicetype) {
this.getPersonVoices();
} else {
@@ -822,6 +844,7 @@
getTaskservelist({
patid: this.patid,
subId: this.id,
+ deptOrDistrict:2,
}).then((res) => {
if (res.code == 200) {
objson = res.rows[0].serviceSubtaskList[0];
@@ -840,10 +863,12 @@
getTaskservelist({
patid: this.patid,
subId: this.id,
+ deptOrDistrict:2,
}).then((res) => {
if (res.code == 200) {
objson = res.rows[0].serviceSubtaskList[0];
objson.excep = excep;
+ objson.remark = this.form.remark;
Editsingletaskson(objson).then((res) => {
if (res.code) {
this.$modal.msgSuccess("鏈嶅姟淇敼鎴愬姛");
@@ -857,13 +882,17 @@
sendAgain() {
this.dialogFormVisible = true;
},
- // 鏇存敼寮傚父鐘舵��
+ // 鏌ョ湅璇︽儏
Seedetails(row) {
this.$modal
- .confirm('鏄惁鏌ョ湅浠诲姟涓�"' + optionids + '"鐨勬湇鍔¢」锛�')
- .then(function () {})
+ .confirm('鏄惁鏌ョ湅浠诲姟涓�"' + row.taskName + '"鐨勬湇鍔¤鎯呮暟鎹紵')
.then(() => {
- this.getList();
+ this.taskid = row.taskid;
+ this.id = row.id;
+ this.patid = row.patid;
+ this.Voicetype = row.type;
+ this.serviceType = row.serviceType;
+ this.getTaskservelist(this.id);
})
.catch(() => {});
},
@@ -905,7 +934,6 @@
},
// 鍒涘缓鍐嶆闅忚鏈嶅姟
setupsubtask() {
- console.log(this.form);
let form = structuredClone(this.form);
form.longSendTime = this.formatTime(form.date1);
if (form.resource) {
@@ -920,10 +948,10 @@
addserviceSubtask(form).then((res) => {
if (res.code == 200) {
this.$modal.msgSuccess("鍒涘缓鎴愬姛");
- }else{
+ } else {
this.$modal.msgError("鍒涘缓澶辫触");
}
- this.dialogFormVisible=false;
+ this.dialogFormVisible = false;
});
},
updateScore(a, b, c) {
--
Gitblit v1.9.3