提交 d18c680b 编写于 作者: changdi.hao's avatar changdi.hao

增加跟进状态

上级 af668759
......@@ -179,3 +179,23 @@ export const OPERATE_LIST = [
value: 2
},
]
// 跟进状态
export const FOLLW_LIST = [
{
label: '待跟进',
value: 1
},
{
label: '跟进中(协调资源)',
value: 2
},
{
label: '已完成(跟进结束',
value: 3
},
{
label: '长期跟进',
value: 4
},
]
\ No newline at end of file
......@@ -240,24 +240,24 @@
</el-radio-group>
</el-form-item>
<el-form-item label="药品跟进状态" >
<el-select v-model="formData.userDepartment" placeholder="请跟进状态" disabled class="set-width" >
<el-option v-for="item of sexList" :key="item.value" :label="item.label" :value="item.value"></el-option>
<el-select v-model="formData.drugFollowStatus" placeholder="请跟进状态" class="set-width" >
<el-option v-for="item of followList" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="药品跟进" >
<el-input type="textarea" v-model="formData.drugFollow" placeholder="请输入可跟进的事项" maxlength="1000" :disabled="editorType== 2"></el-input>
</el-form-item>
<el-form-item label="检查跟进状态" >
<el-select v-model="formData.userDepartment" placeholder="请跟进状态" disabled class="set-width">
<el-option v-for="item of sexList" :key="item.value" :label="item.label" :value="item.value"></el-option>
<el-select v-model="formData.checkFollowStatus" placeholder="请跟进状态" class="set-width">
<el-option v-for="item of followList" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="检查跟进" >
<el-input type="textarea" v-model="formData.checkFollow" placeholder="请输入可跟进的事项" maxlength="1000" :disabled="editorType== 2"></el-input>
</el-form-item>
<el-form-item label="其他跟进状态" >
<el-select v-model="formData.userDepartment" placeholder="请跟进状态" disabled class="set-width">
<el-option v-for="item of sexList" :key="item.value" :label="item.label" :value="item.value"></el-option>
<el-select v-model="formData.otherFollowStatus" placeholder="请跟进状态" class="set-width">
<el-option v-for="item of followList" :key="item.value" :label="item.label" :value="item.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="其他跟进" >
......@@ -278,7 +278,7 @@
<script>
import uploadImg from '@/components/editor/upload-img'
import uploadMusic from '@/components/editor/upload-music'
import { TYPE_LIST, PAY_LIST, SOURCE_LIST, STATUS_LIST, CAR_LIST, SEX_LIST, RELATION_LIST, D_S_LIST } from '@/utils/constants'
import { TYPE_LIST, PAY_LIST, SOURCE_LIST, STATUS_LIST, CAR_LIST, SEX_LIST, RELATION_LIST, D_S_LIST, FOLLW_LIST } from '@/utils/constants'
import { getBirth } from '@/utils/index'
let getcarMatch = function(rule, value, callback, message) {
if(!/ [0-9A-Za-z]{6,24}$/.test(value)) {
......@@ -348,7 +348,10 @@ export default {
illnessAudioUrls: [],
followFlag: 1,
drugFollow: '',
drugFollowStatus: '',
checkFollow: '',
checkFollowStatus: '',
otherFollowStatus: '',
otherFollow: '',
remark: ''
},
......@@ -360,6 +363,7 @@ export default {
sexList: SEX_LIST,
relationList: RELATION_LIST,
doctorSourceList: D_S_LIST,
followList: FOLLW_LIST,
rules: {
appointBeginTime: [
{ required: true, message: '请输入预约时间', trigger: 'change' }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册