修改
This commit is contained in:
parent
df72da60b9
commit
38d231e79e
@ -82,6 +82,26 @@
|
||||
:limit.sync="queryParams.pageSize" @pagination="getList" /> -->
|
||||
<myPagination v-show="total > 0" :total="total" :pageSize="queryParams.pageSize"
|
||||
:indexFromWrap="queryParams.pageNum" @updateCPage="updateCPage"></myPagination>
|
||||
<el-dialog title="立即外呼" :visible.sync="open" width="500px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form-item label="姓名" prop="patientName">
|
||||
<el-input v-model="form.patientName" placeholder="请输入姓名" />
|
||||
</el-form-item>
|
||||
<el-form-item label="身份证" prop="cardNo">
|
||||
<el-input v-model="form.cardNo" placeholder="请输入身份证" />
|
||||
</el-form-item>
|
||||
<el-form-item label="电话" prop="patientPhone">
|
||||
<el-input v-model="form.patientPhone" placeholder="请输入电话" />
|
||||
</el-form-item>
|
||||
<el-form-item label="功能限制" prop="functionLimitation">
|
||||
<el-input v-model="form.functionLimitation" placeholder="终止所有服务" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -130,7 +150,11 @@ export default {
|
||||
// 表单参数
|
||||
form: {},
|
||||
// 表单校验
|
||||
rules: {}
|
||||
rules: {
|
||||
patientName: [
|
||||
{ required: true, message: '请输入患者姓名', trigger: 'change' }
|
||||
],
|
||||
}
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@ -169,7 +193,7 @@ export default {
|
||||
},
|
||||
// 立即外呼
|
||||
ljhandOutbound() {
|
||||
|
||||
this.open = true;
|
||||
},
|
||||
/** 删除按钮操作 */
|
||||
handleDelete(row) {
|
||||
@ -267,9 +291,9 @@ export default {
|
||||
}
|
||||
getAgencyList(query).then(res => {
|
||||
// if (type) {
|
||||
if (nodeType == 'HOSPITAL') {
|
||||
this.campusAgencylist = res.data.campusList;
|
||||
}
|
||||
if (nodeType == 'HOSPITAL') {
|
||||
this.campusAgencylist = res.data.campusList;
|
||||
}
|
||||
// }
|
||||
})
|
||||
},
|
||||
|
||||
Loading…
Reference in New Issue
Block a user