postdischarge-ui/src/views/system/ManageNodeInformation/index.vue

1083 lines
31 KiB
Vue
Raw Normal View History

2024-04-03 14:56:22 +08:00
<template>
2024-06-18 18:19:57 +08:00
<div class="app-container">
2024-06-20 15:02:44 +08:00
<el-descriptions title="编辑触发条件" style="height: 25px; width: 99px" />
2024-06-20 08:54:06 +08:00
2024-06-18 18:19:57 +08:00
<div class="title">
2024-06-20 08:54:06 +08:00
<!-- <div >触发条件</div> -->
2024-06-18 18:19:57 +08:00
<div class="nodes">
2024-06-20 08:54:06 +08:00
<!-- 一级 -->
<div class="node" v-if="updata">
2024-06-21 14:06:29 +08:00
<!-- {{ updata.length }} -->
2024-06-21 10:57:35 +08:00
<el-select
2024-06-24 14:25:37 +08:00
v-model="updata.triggerConditionName"
2024-06-21 10:57:35 +08:00
style="width: 120px"
disabled
@change="changetriggerConditionName($event, index)"
>
<el-option
v-for="item in optionsname"
2024-06-24 14:25:37 +08:00
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
2024-06-21 10:57:35 +08:00
>
2024-06-18 18:19:57 +08:00
</el-option>
2024-06-20 08:54:06 +08:00
</el-select>
2024-06-25 11:30:15 +08:00
<!-- 包含 -->
2024-06-21 10:57:35 +08:00
<el-select
disabled
2024-06-25 11:30:15 +08:00
v-model="updata.triggerConditionOperator"
2024-06-21 10:57:35 +08:00
style="width: 100px"
@change="changetriggerLogic($event, index)"
>
<el-option
v-for="item in optionstriggerConditionOperator"
2024-06-24 14:25:37 +08:00
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
2024-06-21 10:57:35 +08:00
>
2024-06-18 18:19:57 +08:00
</el-option>
</el-select>
2024-06-20 08:54:06 +08:00
2024-06-21 10:57:35 +08:00
<el-input
2024-06-24 16:01:44 +08:00
v-if="updata.dictDataType == 'STRING'"
2024-06-25 11:30:15 +08:00
disabled
2024-06-21 10:57:35 +08:00
v-model="updata.triggerConditionValue"
style="width: 300px"
2024-06-24 16:01:44 +08:00
placeholder="请输入触发条件"
maxlength="100"
2024-06-21 10:57:35 +08:00
></el-input>
2024-06-24 16:01:44 +08:00
<el-select
disabled
v-if="updata.dictDataType == 'SELECT'"
v-model="updata.triggerConditionValue"
style="width: 300px"
>
<el-option
v-for="item in ConditionValue"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
</el-option>
</el-select>
2024-06-21 10:57:35 +08:00
<el-date-picker
disabled
2024-06-24 16:01:44 +08:00
v-if="updata.dictDataType == 'DATE'"
2024-06-21 10:57:35 +08:00
v-model="updata.triggerConditionValue"
style="width: 300px"
type="date"
placeholder="选择日期时间"
value-format="yyyy-MM-dd"
>
2024-06-18 18:19:57 +08:00
</el-date-picker>
2024-06-25 11:30:15 +08:00
2024-06-24 16:01:44 +08:00
<el-input
disabled
v-if="updata.dictDataType == 'DECIMAL'"
style="width: 300px"
v-model="updata.triggerConditionValue"
type="number"
:min="0"
></el-input>
2024-06-20 08:54:06 +08:00
</div>
<!-- 二级 -->
<div v-show="show3 == true">
<div class="node" v-for="(item, index) in updatalist" :key="index">
2024-06-21 10:57:35 +08:00
<div
style="width: 60px; position: absolute; top: 8%"
v-if="updatalist.length == 2"
>
2024-06-20 08:54:06 +08:00
<img src="@/assets/images/images.png" class="login-code-img" />
<div class="selectname">
2024-06-21 10:57:35 +08:00
<el-select
disabled
v-model="item.triggerLogic"
style="width: 60px"
@change="changetriggerLogicsname($event, index)"
>
<el-option
v-for="item in optionslistS"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
2024-06-20 08:54:06 +08:00
</el-option>
</el-select>
</div>
</div>
<div>
2024-06-21 10:57:35 +08:00
<el-select
2024-06-24 14:25:37 +08:00
v-model="item.triggerConditionName"
2024-06-21 10:57:35 +08:00
style="width: 120px"
disabled
@change="changetriggerConditionName($event, index)"
>
<el-option
v-for="item in optionsname"
2024-06-25 11:30:15 +08:00
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
2024-06-21 10:57:35 +08:00
>
2024-06-20 08:54:06 +08:00
</el-option>
</el-select>
2024-06-21 10:57:35 +08:00
<el-select
disabled
2024-06-25 11:30:15 +08:00
v-model="item.triggerConditionOperator"
2024-06-21 10:57:35 +08:00
style="width: 100px"
@change="changetriggerLogic($event, index)"
>
<el-option
v-for="item in optionstriggerConditionOperator"
2024-06-25 11:30:15 +08:00
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
2024-06-21 10:57:35 +08:00
>
2024-06-20 08:54:06 +08:00
</el-option>
</el-select>
2024-06-21 10:57:35 +08:00
<el-input
2024-06-24 16:01:44 +08:00
v-if="item.dictDataType == 'STRING'"
2024-06-25 11:30:15 +08:00
disabled
2024-06-21 10:57:35 +08:00
v-model="item.triggerConditionValue"
style="width: 300px"
2024-06-24 16:01:44 +08:00
placeholder="请输入触发条件"
maxlength="100"
2024-06-21 10:57:35 +08:00
></el-input>
2024-06-24 16:01:44 +08:00
<el-select
2024-06-25 16:58:50 +08:00
disabled
2024-06-24 16:01:44 +08:00
v-if="item.dictDataType == 'SELECT'"
v-model="item.triggerConditionValue"
style="width: 300px"
>
<el-option
v-for="item in ConditionValue"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
</el-option>
</el-select>
2024-06-25 11:30:15 +08:00
2024-06-21 10:57:35 +08:00
<el-date-picker
disabled
2024-06-24 16:01:44 +08:00
v-if="item.dictDataType == 'DATE'"
2024-06-21 10:57:35 +08:00
v-model="item.triggerConditionValue"
style="width: 300px"
type="date"
placeholder="选择日期时间"
value-format="yyyy-MM-dd"
>
2024-06-20 08:54:06 +08:00
</el-date-picker>
2024-06-24 16:01:44 +08:00
<el-input
disabled
v-if="item.dictDataType == 'DECIMAL'"
style="width: 300px"
v-model="item.triggerConditionValue"
type="number"
:min="0"
></el-input>
2024-06-20 08:54:06 +08:00
</div>
</div>
2024-06-18 18:19:57 +08:00
</div>
</div>
2024-06-20 08:54:06 +08:00
2024-06-18 18:19:57 +08:00
<div class="select">
<span> 适用范围 </span>
2024-06-21 11:22:58 +08:00
<el-select v-model="updata.suitRange" placeholder="请选择" disabled>
2024-06-21 10:57:35 +08:00
<el-option
v-for="item in options"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
2024-06-18 18:19:57 +08:00
</el-option>
</el-select>
</div>
2024-06-20 08:54:06 +08:00
<div class="addlistname">
<i @click="edit()" class="el-icon-edit">编辑</i>
2024-06-20 14:09:15 +08:00
<span v-if="updatalist.length > 0">
2024-06-21 10:57:35 +08:00
<i
@click="addlistname()"
class="el-icon-arrow-down"
v-if="show3 == false"
>展开</i
>
2024-06-20 14:09:15 +08:00
<i @click="addlistname()" class="el-icon-arrow-up" v-else>关闭</i>
</span>
2024-06-20 08:54:06 +08:00
</div>
2024-06-18 18:19:57 +08:00
</div>
<div class="list">
<div class="timelist">
<div class="timetitle">
管理路径节点({{ lists.length }})
<i class="el-icon-circle-plus-outline" @click="addlist"></i>
</div>
<el-timeline>
2024-06-21 10:57:35 +08:00
<el-timeline-item
v-for="(item, index) in lists"
:key="index"
:color="listindex == index ? '#409EFF' : ''"
>
2024-06-20 14:09:15 +08:00
<div class="top">
2024-06-18 18:19:57 +08:00
<div class="toptop">
2024-06-24 16:01:44 +08:00
<el-select v-model="item.routeNodeName" style="width: 100px">
2024-06-21 10:57:35 +08:00
<el-option
v-for="item in parentDictCodelist"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
2024-06-20 14:09:15 +08:00
</el-option>
2024-04-03 14:56:22 +08:00
</el-select>
2024-06-21 10:57:35 +08:00
<el-input
v-model="item.routeNodeDay"
style="width: 70px"
type="number"
:min="0"
></el-input>
2024-06-18 18:19:57 +08:00
<span></span>
</div>
<div>
2024-06-21 09:22:21 +08:00
<i class="el-icon-delete" @click="delitemh(item, index)"></i>
2024-06-21 10:57:35 +08:00
<i
class="el-icon-circle-plus-outline"
@click="additem(item)"
></i>
2024-06-18 18:19:57 +08:00
</div>
2024-04-03 14:56:22 +08:00
</div>
2024-06-21 10:57:35 +08:00
<el-card
v-for="(uitem, uindex) in item.list"
:key="uitem.id"
2024-06-18 18:19:57 +08:00
@click.native="bottomclickevent(uitem, index, uindex)"
2024-06-21 10:57:35 +08:00
:class="listindex == index && itemindex == uindex ? 'cards' : ''"
>
2024-06-18 18:19:57 +08:00
<h3 style="height: 20px">{{ uitem.taskTypeName }}</h3>
2024-06-21 10:57:35 +08:00
<el-tag
v-if="uitem.routeCheckStatus == 'AGREE'"
class="routeCheckStatus"
>已审核</el-tag
>
<el-tag
v-else-if="uitem.routeCheckStatus == 'DISAGREE'"
type="danger"
class="routeCheckStatus"
>不同意</el-tag
>
<el-tag v-else type="warning" class="routeCheckStatus"
>未审核</el-tag
>
2024-06-18 18:19:57 +08:00
<p style="height: 16px">{{ uitem.taskSubdivisionName }}</p>
</el-card>
</el-timeline-item>
</el-timeline>
</div>
<div class="texts">
<div class="topform">
<el-form ref="form" :inline="true" :model="form" class="form">
<el-form-item label="任务类型" prop="">
2024-06-21 10:57:35 +08:00
<el-select
v-model="form.taskType"
style="width: 110px"
@change="changeTaskType"
>
<el-option
v-for="item in selectTaskTypeList"
:key="item.taskTypeCode"
:label="item.taskTypeName"
:value="item.taskTypeCode"
>
2024-06-18 18:19:57 +08:00
</el-option>
</el-select>
</el-form-item>
<el-form-item label="任务细分" prop="">
2024-06-21 10:57:35 +08:00
<el-select
v-model="form.taskSubdivision"
style="width: 110px"
@change="changetaskSubdivision"
>
<el-option
v-for="item in taskPartitionList"
:key="item.taskPartitionCode"
:label="item.taskPartitionName"
:value="item.taskPartitionCode"
>
2024-06-18 18:19:57 +08:00
</el-option>
</el-select>
</el-form-item>
<el-form-item label="任务状态" prop="">
<el-select v-model="form.taskStatus" style="width: 100px">
2024-06-21 10:57:35 +08:00
<el-option
v-for="item in taskStatusDictList"
:key="item.id"
:label="item.taskStatusName"
:value="item.taskStatusCode"
>
2024-06-18 18:19:57 +08:00
</el-option>
</el-select>
</el-form-item>
<el-form-item label="二级分类描述" prop="">
2024-06-21 10:57:35 +08:00
<el-input
v-model="form.secondClassifyDescribe"
style="width: 110px"
disabled
></el-input>
2024-06-18 18:19:57 +08:00
</el-form-item>
<el-form-item label="执行时间" prop="">
2024-06-21 10:57:35 +08:00
<el-time-select
v-model="form.executionTime"
style="width: 120px"
placeholder="选择时间"
disabled
>
2024-06-18 18:19:57 +08:00
</el-time-select>
</el-form-item>
2024-06-21 10:57:35 +08:00
<el-form-item
label="问卷库模板选择"
prop=""
v-if="form.taskSubdivisiontemplateType == 'QUESTIONNAIRE'"
>
<question
@on-template="questionontemplate"
:templateId="form.templateId"
:templateName="form.templateName"
></question>
2024-06-18 18:19:57 +08:00
</el-form-item>
2024-06-21 10:57:35 +08:00
<el-form-item
label="宣教库模板选择"
prop=""
v-if="form.taskSubdivisiontemplateType == 'PROPAGANDA'"
>
<propaganda
@on-template="propagandaontemplate"
:templateId="form.templateId"
:templateName="form.templateName"
></propaganda>
2024-06-18 18:19:57 +08:00
</el-form-item>
</el-form>
2024-04-03 14:56:22 +08:00
</div>
2024-06-18 18:19:57 +08:00
<div class="bottomform">
2024-06-21 10:57:35 +08:00
<wangeditor
style="width: 100%"
:nodeContent="form.nodeContent"
@on-nodeContent="onNodeContent"
v-show="
form.taskSubdivisiontemplateType != 'QUESTIONNAIRE' &&
form.taskSubdivisiontemplateType != 'PROPAGANDA' &&
form.taskSubdivisiontemplateType != 'SCRIPT'
"
ref="wangeditor"
/>
<div
class="card"
v-show="form.taskSubdivisiontemplateType != 'SCRIPT'"
>
2024-06-18 18:19:57 +08:00
<div class="flex">
<div class="pushMethod">
推送方式
<span> 短信 </span>
</div>
<div class="pushMethod">
模板
2024-06-21 10:57:35 +08:00
<message
@on-template="messageontemplate"
:templateId="form.messageTemplateId"
:templateName="form.messageTemplateName"
></message>
2024-06-18 18:19:57 +08:00
</div>
<div class="pushMethod">
2024-06-21 10:57:35 +08:00
<el-switch
v-model="form.messagePushSign"
active-color="#13ce66"
active-value="1"
inactive-value="0"
>
2024-06-18 18:19:57 +08:00
</el-switch>
</div>
2024-04-03 14:56:22 +08:00
</div>
2024-06-18 18:19:57 +08:00
</div>
2024-06-21 10:57:35 +08:00
<div
class="card"
v-show="form.taskSubdivisiontemplateType != 'SCRIPT'"
>
2024-06-18 18:19:57 +08:00
<div class="flex">
<div class="pushMethod">
推送方式
<span> 公众号 </span>
</div>
<div class="pushMethod">
模板
<span>
2024-06-21 10:57:35 +08:00
<officialAccount
@on-template="officialAccountontemplate"
:templateId="form.officialTemplateId"
:templateName="form.officialTemplateName"
>
2024-06-20 14:09:15 +08:00
</officialAccount>
2024-06-18 18:19:57 +08:00
</span>
</div>
<div class="pushMethod">
2024-06-21 10:57:35 +08:00
<el-switch
v-model="form.officialPushSign"
active-color="#13ce66"
active-value="1"
inactive-value="0"
>
2024-06-18 18:19:57 +08:00
</el-switch>
</div>
</div>
</div>
2024-06-21 10:57:35 +08:00
<div
class="card"
v-show="form.taskSubdivisiontemplateType != 'SCRIPT'"
>
2024-06-18 18:19:57 +08:00
<div class="flex">
<div class="pushMethod">
推送方式
<span> 小程序 </span>
</div>
<div class="pushMethod">
模板
<span>
2024-06-21 10:57:35 +08:00
<miniProgram
@on-template="miniProgramtemplate"
:templateId="form.appletTemplateId"
:templateName="form.appletTemplateName"
>
2024-06-20 14:09:15 +08:00
</miniProgram>
2024-06-18 18:19:57 +08:00
</span>
</div>
<div class="pushMethod">
2024-06-21 10:57:35 +08:00
<el-switch
v-model="form.appletPushSign"
active-color="#13ce66"
active-value="1"
inactive-value="0"
>
2024-06-18 18:19:57 +08:00
</el-switch>
</div>
</div>
2024-06-20 14:09:15 +08:00
</div>
2024-06-21 10:57:35 +08:00
<div
class="card"
style="height: 250px"
v-show="form.taskSubdivisiontemplateType == 'SCRIPT'"
>
2024-06-20 14:09:15 +08:00
<div class="flex">
<div class="pushMethod">
推送方式
2024-06-25 16:58:50 +08:00
<span>
2024-06-26 09:45:58 +08:00
<el-radio-group v-model="form.phoneDialMethod">
<el-radio label="COMMON">人工电话</el-radio>
<el-radio label="AI">自动外呼</el-radio>
2024-06-25 16:58:50 +08:00
</el-radio-group>
</span>
2024-06-20 14:09:15 +08:00
</div>
<div class="pushMethod">
2024-06-25 16:58:50 +08:00
话术模板
<span class="spanname" v-if="form.templateId">
<scripts
@on-template="messageontemplateword"
:templateId="form.phoneTemplateId"
:templateName="form.phoneTemplateName"
></scripts>
</span>
<span v-else>
<scripts
@on-template="messageontemplateword"
:templateId="form.phoneTemplateId"
:templateName="form.phoneTemplateName"
></scripts>
</span>
</div>
2024-06-26 09:45:58 +08:00
<div class="pushMethod" v-if="form.phoneDialMethod == 'COMMON' || !form.phoneDialMethod">
2024-06-25 16:58:50 +08:00
问卷模板
<span class="spanname" v-if="form.phoneTemplateId">
<question
@on-template="questionontemplate"
:templateId="form.templateId"
:templateName="form.templateName"
></question>
</span>
<span v-else>
<question
@on-template="questionontemplate"
:templateId="form.templateId"
:templateName="form.templateName"
></question>
</span>
2024-06-20 14:09:15 +08:00
</div>
<div class="pushMethod">
2024-06-21 10:57:35 +08:00
<el-switch
v-model="form.phonePushSign"
active-color="#13ce66"
active-value="1"
inactive-value="0"
>
2024-06-20 14:09:15 +08:00
</el-switch>
</div>
</div>
<div class="flex">
<div class="pushMethod">
重播次数
<span>
2024-06-21 10:57:35 +08:00
<el-select
v-model="form.phoneRedialTimes"
2024-06-25 16:58:50 +08:00
style="width: 110px"
2024-06-21 10:57:35 +08:00
>
<el-option
v-for="item in optionslistSname"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
2024-06-20 14:09:15 +08:00
</el-option>
</el-select>
</span>
</div>
<div class="pushMethod">
时间间隔:
<span>
2024-06-21 10:57:35 +08:00
<el-input
v-model.number="form.phoneTimeInterval"
oninput="value=value.replace(/[^\d]/g,'')"
style="width: 100px"
>
2024-06-20 14:09:15 +08:00
</el-input>
</span>
</div>
<div class="pushMethod">
短信提醒
2024-06-21 10:57:35 +08:00
<el-select
v-model="form.phoneMessageRemind"
style="width: 150px"
>
<el-option
v-for="item in optionslist"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
2024-06-20 14:09:15 +08:00
</el-option>
</el-select>
</div>
<div class="pushMethod">
短信模板
2024-06-21 10:57:35 +08:00
<span
class="spanname"
v-if="form.phoneMessageRemind == 'NOT_SEND_MESSAGE'"
>
<message
style="width: 200px"
@on-template="messageontemplateMESSAGE"
:templateId="form.phoneMessageTemplateId"
:templateName="form.phoneMessageTemplateName"
></message>
2024-06-20 14:09:15 +08:00
</span>
<span v-else>
2024-06-21 10:57:35 +08:00
<message
style="width: 200px"
@on-template="messageontemplateMESSAGE"
:templateId="form.phoneMessageTemplateId"
:templateName="form.phoneMessageTemplateName"
></message>
2024-06-20 14:09:15 +08:00
</span>
</div>
2024-06-18 18:19:57 +08:00
</div>
</div>
2024-04-03 14:56:22 +08:00
</div>
2024-06-18 18:19:57 +08:00
</div>
</div>
2024-06-20 14:09:15 +08:00
2024-06-21 10:57:35 +08:00
<!-- 编辑触发条件 -->
<el-dialog
title="添加触发条件"
:visible.sync="open"
width="800px"
append-to-body
>
<el-form
ref="openlist"
:model="openlist"
:rules="rules"
label-width="80px"
>
2024-06-20 08:54:06 +08:00
<el-form-item label="适用范围:">
2024-06-21 10:57:35 +08:00
<el-select
v-model="openlist.suitRange"
@change="changeoptions"
style="width: 200px"
>
<el-option
v-for="item in options"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
2024-06-20 08:54:06 +08:00
</el-option>
</el-select>
</el-form-item>
<el-descriptions title="触发条件"> </el-descriptions>
<div class="nodesname">
2024-06-21 10:57:35 +08:00
<div
class="node"
v-for="(item, index) in openlist.triggerConditionList"
:key="index"
>
2024-06-24 14:25:37 +08:00
<!-- 且或 -->
2024-06-21 10:57:35 +08:00
<div
style="width: 60px; position: absolute; left: 2%; top: 57%"
v-if="openlist.triggerConditionList.length === 3"
>
2024-06-20 08:54:06 +08:00
<img src="@/assets/images/images.png" class="login-code" />
<div class="selectnamelist">
2024-06-21 10:57:35 +08:00
<el-select
v-model="item.triggerLogic"
style="width: 60px"
placeholder=""
@change="changetriggerLogicsname($event, index)"
>
<el-option
v-for="item in optionslistS"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
2024-06-20 08:54:06 +08:00
</el-option>
</el-select>
</div>
</div>
2024-06-24 14:25:37 +08:00
<!-- 诊断 -->
2024-06-21 10:57:35 +08:00
<el-select
v-model="item.triggerConditionCode"
style="width: 120px"
@change="changetriggerConditionName($event, index)"
>
<el-option
v-for="item in optionsname"
2024-06-24 14:25:37 +08:00
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
2024-06-21 10:57:35 +08:00
>
2024-06-20 08:54:06 +08:00
</el-option>
</el-select>
2024-06-24 14:25:37 +08:00
<!-- 包含 -->
2024-06-21 10:57:35 +08:00
<el-select
v-model="item.triggerConditionOperator"
style="width: 100px"
@change="changetriggerLogic($event, index)"
>
<el-option
v-for="item in optionstriggerConditionOperator"
2024-06-24 14:25:37 +08:00
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
2024-06-21 10:57:35 +08:00
>
2024-06-20 08:54:06 +08:00
</el-option>
</el-select>
2024-06-21 10:57:35 +08:00
<el-input
2024-06-24 14:25:37 +08:00
v-if="item.dictDataType == 'STRING'"
2024-06-21 10:57:35 +08:00
v-model="item.triggerConditionValue"
style="width: 300px"
placeholder="请输入触发条件"
2024-06-24 14:25:37 +08:00
maxlength="100"
2024-06-21 10:57:35 +08:00
></el-input>
2024-06-24 15:07:49 +08:00
<el-select
v-if="item.dictDataType == 'SELECT'"
v-model="item.triggerConditionValue"
style="width: 300px"
>
<el-option
v-for="item in ConditionValue"
:key="item.dictValue"
:label="item.dictLabel"
:value="item.dictValue"
>
</el-option>
</el-select>
2024-06-21 10:57:35 +08:00
<el-date-picker
2024-06-24 14:25:37 +08:00
v-if="item.dictDataType == 'DATE'"
2024-06-21 10:57:35 +08:00
v-model="item.triggerConditionValue"
style="width: 300px"
type="date"
placeholder="选择日期时间"
value-format="yyyy-MM-dd"
>
2024-06-20 08:54:06 +08:00
</el-date-picker>
2024-06-24 14:25:37 +08:00
<!-- {{ item }} -->
<el-input
v-if="item.dictDataType == 'DECIMAL'"
style="width: 300px"
v-model="item.triggerConditionValue"
type="number"
:min="0"
></el-input>
2024-06-20 08:54:06 +08:00
<span class="icon">
2024-06-21 10:57:35 +08:00
<el-button
type="danger"
class="el-icon-remove-outline"
plain
@click="delitemlistname(index)"
v-if="index != 0"
></el-button>
2024-06-21 09:34:20 +08:00
2024-06-21 10:57:35 +08:00
<el-button
type="primary"
plain
class="el-icon-circle-plus-outline"
@click="addtriggerCondition(index)"
v-if="index == 0"
>添加属性</el-button
>
2024-06-20 08:54:06 +08:00
</span>
</div>
</div>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="upload"> </el-button>
<el-button @click="openfalse"> </el-button>
</div>
</el-dialog>
<!-- 提交审核 -->
2024-06-21 10:57:35 +08:00
<el-dialog
title="提交审核完成"
:visible.sync="dialogVisible"
width="30%"
:before-close="handleClose"
>
<el-form
ref="routeform"
:model="routeform"
label-width="120px"
:rules="rules"
>
2024-06-20 08:54:06 +08:00
<el-form-item label="节点审核状态" prop="routeCheckStatus">
2024-06-21 10:57:35 +08:00
<el-radio v-model="routeform.routeCheckStatus" label="AGREE"
>同意</el-radio
>
<el-radio v-model="routeform.routeCheckStatus" label="DISAGREE"
>不同意</el-radio
>
2024-06-20 08:54:06 +08:00
</el-form-item>
<el-form-item label="节点审核备注">
2024-06-21 10:57:35 +08:00
<el-input
type="textarea"
:rows="2"
placeholder="请输入节点审核备注"
v-model="routeform.routeCheckRemark"
>
2024-06-20 08:54:06 +08:00
</el-input>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="auditing"> </el-button>
<el-button @click="handleClose"> </el-button>
</div>
</el-dialog>
2024-06-20 14:09:15 +08:00
<div slot="footer" class="dialog-footer">
2024-06-18 18:19:57 +08:00
<el-button @click="TemporaryStorage"> </el-button>
2024-06-21 10:57:35 +08:00
<el-button
type="primary"
@click="dialogVisible = true"
v-if="form.specialDiseaseNodeId"
>审核完成 {{ agreeNumber ? agreeNumber : "0" }} /
{{ totalNumber ? totalNumber : "0" }}</el-button
>
2024-06-20 14:09:15 +08:00
</div>
2024-06-18 18:19:57 +08:00
</div>
2024-04-03 14:56:22 +08:00
</template>
<script>
2024-06-25 17:46:25 +08:00
import indexjs from "./indexjs.js";
2024-06-25 16:58:50 +08:00
export default indexjs;
2024-04-03 14:56:22 +08:00
</script>
<style scoped lang="scss">
2024-06-20 15:02:44 +08:00
::v-deep .el-input.is-disabled .el-input__inner {
background-color: #fff !important;
color: #606266 !important;
}
2024-06-20 08:54:06 +08:00
.el-icon-arrow-down {
margin-left: 50px;
2024-06-25 16:58:50 +08:00
font-size: 14px;
2024-06-20 08:54:06 +08:00
}
2024-06-21 09:34:20 +08:00
2024-06-20 08:54:06 +08:00
.el-icon-arrow-up {
margin-left: 50px;
}
2024-06-21 09:34:20 +08:00
2024-06-20 08:54:06 +08:00
.addlistname {
color: #409eff;
2024-06-25 16:58:50 +08:00
font-size: 14px;
2024-06-20 08:54:06 +08:00
margin-left: 20px;
margin-top: 10px;
}
2024-06-21 09:34:20 +08:00
2024-06-20 08:54:06 +08:00
.login-code {
width: 62px;
height: 81px;
position: relative;
z-index: 0;
top: -30px;
right: 56px;
}
2024-06-21 09:34:20 +08:00
2024-06-18 18:19:57 +08:00
.login-code-img {
width: 62px;
2024-06-20 08:54:06 +08:00
height: 81px;
position: absolute;
z-index: -1;
top: 32px;
right: 61px;
}
2024-06-21 09:34:20 +08:00
2024-06-20 08:54:06 +08:00
.selectnamelist {
2024-06-18 18:19:57 +08:00
position: absolute;
2024-06-20 08:54:06 +08:00
right: 54px;
top: -8px;
}
2024-06-21 09:34:20 +08:00
2024-06-20 08:54:06 +08:00
.selectname {
position: absolute;
right: 70px;
top: 55px;
2024-06-18 18:19:57 +08:00
}
2024-06-21 09:34:20 +08:00
2024-04-03 14:56:22 +08:00
.dialog-footer {
2024-06-20 08:54:06 +08:00
padding: 0px 30px;
2024-06-18 18:19:57 +08:00
text-align: right;
2024-04-03 14:56:22 +08:00
}
2024-06-21 09:34:20 +08:00
2024-06-20 08:54:06 +08:00
.nodesname {
margin-left: 6%;
width: 660px;
display: flex;
flex-wrap: wrap;
position: relative;
padding-left: 20px;
2024-04-03 14:56:22 +08:00
2024-06-20 08:54:06 +08:00
.node {
margin-bottom: 10px;
}
}
2024-06-21 09:34:20 +08:00
2024-04-03 15:58:44 +08:00
.nodes {
2024-06-18 18:19:57 +08:00
width: 660px;
display: flex;
flex-wrap: wrap;
position: relative;
2024-06-20 08:54:06 +08:00
padding-left: 20px;
2024-06-18 18:19:57 +08:00
.node {
margin-bottom: 10px;
}
2024-04-03 15:58:44 +08:00
}
2024-04-03 14:56:22 +08:00
.bottomform {
2024-06-18 18:19:57 +08:00
background-color: #f2f4f5;
margin-top: 10px;
.card {
background-color: #fff;
width: 100%;
2024-06-25 16:58:50 +08:00
height: 130px;
2024-06-18 18:19:57 +08:00
margin: 20px 0 0;
padding: 20px 50px 0px 20px;
.flextwo {
2024-06-20 14:09:15 +08:00
// display: flex;
// align-items: center;
2024-06-18 18:19:57 +08:00
margin-top: 20px;
.text {
2024-06-25 16:58:50 +08:00
font-size: 14px;
2024-06-18 18:19:57 +08:00
color: #64666a;
}
.textarea {
width: 90%;
padding: 0 10px;
height: 50px;
line-height: 50px;
2024-06-20 14:09:15 +08:00
// border: 1px solid #dcdfe6;
2024-06-18 18:19:57 +08:00
border-radius: 5px;
display: flex;
align-items: center;
::v-deep .el-input {
padding: 0 10px;
width: 50%;
color: black;
2024-06-25 16:58:50 +08:00
font-size: 14px;
2024-06-18 18:19:57 +08:00
height: 40px;
line-height: 40px;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
::v-deep .el-input__inner {
color: black;
2024-06-25 16:58:50 +08:00
font-size: 14px;
2024-06-20 15:02:44 +08:00
cursor: default !important;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
}
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
.flex {
display: flex;
2024-06-20 14:09:15 +08:00
width: 100%;
2024-06-18 18:19:57 +08:00
align-items: center;
2024-06-20 14:09:15 +08:00
// background: red;
2024-06-18 18:19:57 +08:00
justify-content: space-between;
.pushMethod {
height: 30px;
2024-06-20 14:09:15 +08:00
margin-top: 30px;
2024-06-25 16:58:50 +08:00
line-height: 37px;
font-size: 14px;
2024-06-18 18:19:57 +08:00
color: #64666a;
2024-06-21 09:34:20 +08:00
2024-06-20 14:09:15 +08:00
.spanname {
pointer-events: none;
}
2024-06-21 09:34:20 +08:00
2024-04-03 14:56:22 +08:00
::v-deep .el-input__inner {
2024-06-18 18:19:57 +08:00
color: black;
2024-06-25 16:58:50 +08:00
font-size: 14px;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
span {
color: black;
2024-06-25 16:58:50 +08:00
font-size: 14px;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
}
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
}
2024-04-03 14:56:22 +08:00
}
2024-06-21 09:34:20 +08:00
2024-06-20 14:09:15 +08:00
.routeCheckStatus {
position: absolute;
right: 10px;
2024-06-21 10:57:35 +08:00
top: 30px;
2024-06-20 14:09:15 +08:00
}
2024-04-03 14:56:22 +08:00
2024-06-18 18:19:57 +08:00
.topform {
padding: 15px 0 0 15px;
2024-06-20 14:30:30 +08:00
height: 200px;
2024-06-21 09:34:20 +08:00
2024-06-18 18:19:57 +08:00
.form {
::v-deep .el-input__inner {
height: 30px !important;
line-height: 30px !important;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
::v-deep .el-form-item__label {
2024-06-25 16:58:50 +08:00
font-size: 13px !important;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
}
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
.title {
display: flex;
2024-06-20 15:02:44 +08:00
margin-left: 100px;
2024-04-03 14:56:22 +08:00
2024-06-18 18:19:57 +08:00
.select {
font-weight: 550;
2024-06-20 08:54:06 +08:00
// margin-left: 10%;
position: relative;
right: 20px;
// width: 300px;
2024-06-25 16:58:50 +08:00
font-size: 13px;
2024-06-18 18:19:57 +08:00
.el-input {
width: 200px;
height: 30px !important;
line-height: 30px !important;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
}
}
2024-06-21 09:34:20 +08:00
2024-06-25 16:58:50 +08:00
// .container {
// padding: 20px;
// }
2024-06-18 18:19:57 +08:00
.list {
2024-06-20 14:09:15 +08:00
margin: 12px auto;
2024-06-18 18:19:57 +08:00
width: 100%;
2024-06-20 08:54:06 +08:00
// height: calc(100% - 80px);
2024-06-18 18:19:57 +08:00
background-color: #f2f4f5;
display: flex;
padding-top: 15px;
justify-content: space-evenly;
.timelist {
2024-06-20 14:09:15 +08:00
width: 25%;
2024-06-18 18:19:57 +08:00
background-color: #fff;
padding: 0 20px 20px;
2024-06-20 14:09:15 +08:00
height: calc(100vh - 350px);
2024-06-20 08:54:06 +08:00
2024-06-18 18:19:57 +08:00
overflow: scroll;
.timetitle {
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
2024-04-03 14:56:22 +08:00
}
2024-06-18 18:19:57 +08:00
::v-deep .el-timeline {
width: 100%;
padding: 15px 0 0 !important;
}
}
.texts {
2024-06-25 16:58:50 +08:00
width: 73%;
2024-06-20 14:09:15 +08:00
height: calc(100vh - 350px);
2024-06-20 08:54:06 +08:00
2024-06-18 18:19:57 +08:00
overflow: scroll;
background-color: #fff;
}
2024-04-03 14:56:22 +08:00
}
.cards {
2024-06-18 18:19:57 +08:00
border: 1px solid #409eff;
border-left: 5px solid #409eff;
2024-04-03 14:56:22 +08:00
}
.top {
2024-06-18 18:19:57 +08:00
display: flex;
justify-content: space-between;
align-items: center;
.toptop {
2024-04-03 14:56:22 +08:00
display: flex;
align-items: center;
2024-06-18 18:19:57 +08:00
}
2024-04-03 14:56:22 +08:00
2024-06-18 18:19:57 +08:00
span {
padding: 0 4px;
}
2024-04-03 14:56:22 +08:00
2024-06-18 18:19:57 +08:00
i {
font-size: 17px;
}
2024-04-03 14:56:22 +08:00
2024-06-18 18:19:57 +08:00
i:nth-child(2) {
padding-left: 12px;
}
2024-04-03 14:56:22 +08:00
}
::v-deep .el-timeline-item__timestamp {
2024-06-18 18:19:57 +08:00
margin: 0 !important;
padding: 0 !important;
2024-04-03 14:56:22 +08:00
}
::v-deep .el-timeline-item__wrapper {
2024-06-18 18:19:57 +08:00
padding-left: 14px !important;
2024-04-03 14:56:22 +08:00
}
::v-deep .el-timeline-item__content {
2024-06-18 18:19:57 +08:00
transform: translateY(-2%);
2024-04-03 14:56:22 +08:00
}
::v-deep .el-card {
2024-06-21 09:34:20 +08:00
position: relative !important;
2024-06-18 18:19:57 +08:00
margin-top: 20px !important;
2024-04-03 14:56:22 +08:00
}
</style>