修改知识库
This commit is contained in:
parent
d22cdb94e7
commit
744c5862a2
@ -1449,14 +1449,9 @@ export default {
|
||||
} else {
|
||||
if(this.diseaseTypeName = '请选择病种'){
|
||||
this.form.diseaseTypeName=null
|
||||
|
||||
}else{
|
||||
this.form.diseaseTypeName = this.diseaseTypeName
|
||||
|
||||
}
|
||||
|
||||
console.log(this.form)
|
||||
|
||||
addPropaganda(this.form).then(response => {
|
||||
this.$modal.msgSuccess("新增成功");
|
||||
this.open = false;
|
||||
|
||||
@ -209,9 +209,6 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
@ -219,10 +216,24 @@
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<!-- 添加或修改话术信息对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="700px" append-to-body v-if="open">
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="110px" :inline="true">
|
||||
<el-dialog
|
||||
:title="title"
|
||||
:visible.sync="open"
|
||||
width="700px"
|
||||
append-to-body
|
||||
v-if="open"
|
||||
>
|
||||
<el-form
|
||||
ref="form"
|
||||
:model="form"
|
||||
:rules="rules"
|
||||
label-width="110px"
|
||||
:inline="true"
|
||||
>
|
||||
<el-form-item label="通用话术名称" prop="commonScriptName">
|
||||
<el-input
|
||||
maxlength="100"
|
||||
@ -238,8 +249,13 @@
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="话术排序" prop="scriptSort">
|
||||
<el-input-number v-model="form.scriptSort" controls-position="right" :min="0" placeholder="请输入话术排序" style="width:206px"/>
|
||||
|
||||
<el-input-number
|
||||
v-model="form.scriptSort"
|
||||
controls-position="right"
|
||||
:min="0"
|
||||
placeholder="请输入话术排序"
|
||||
style="width: 206px"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="话术ID" prop="scriptId">
|
||||
<el-input
|
||||
@ -271,7 +287,6 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
|
||||
<el-form-item label="科室名称" prop="departmentId">
|
||||
<el-button
|
||||
type=""
|
||||
|
||||
@ -251,9 +251,6 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
@ -261,6 +258,8 @@
|
||||
:limit.sync="queryParams.pageSize"
|
||||
@pagination="getList"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<!-- 添加或修改服务包基础信息对话框 -->
|
||||
<el-dialog
|
||||
|
||||
@ -132,9 +132,6 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
:total="total"
|
||||
@ -143,6 +140,11 @@
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
|
||||
|
||||
<!-- 添加或修改手术信息对话框 -->
|
||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
|
||||
@ -303,30 +303,36 @@
|
||||
prop="patientId"
|
||||
v-if="form.taskType == 'TEXT_REMIND'"
|
||||
>
|
||||
<!-- 短信 -->
|
||||
<el-input
|
||||
type="textarea"
|
||||
disabled
|
||||
v-model="form.textRemindContent"
|
||||
style="width: 635px"
|
||||
/>
|
||||
<!-- 短信 -->
|
||||
<!-- <el-input
|
||||
v-if="form.messagePushSign == 1"
|
||||
type="textarea"
|
||||
disabled
|
||||
v-model="form.messagePreview"
|
||||
style="width: 635px"
|
||||
/>
|
||||
/> -->
|
||||
<!-- 公众号 -->
|
||||
<el-input
|
||||
<!-- <el-input
|
||||
v-if="form.officialPushSign == 1"
|
||||
type="textarea"
|
||||
disabled
|
||||
v-model="form.officialRemindContent"
|
||||
style="width: 635px"
|
||||
/>
|
||||
/> -->
|
||||
<!-- 小程序 -->
|
||||
<el-input
|
||||
<!-- <el-input
|
||||
v-if="form.appletPushSign == 1"
|
||||
type="textarea"
|
||||
disabled
|
||||
v-model="form.appletRemindContent"
|
||||
style="width: 635px"
|
||||
/>
|
||||
/> -->
|
||||
</el-form-item>
|
||||
</div>
|
||||
<!-- 人工随访 -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user