Commit 556d0dca authored by 吴婷慧's avatar 吴婷慧

测试问题修改

parent a2a55858
This diff is collapsed.
......@@ -24,7 +24,7 @@ export default {
justify-content: center;
align-items: center;
min-height: 100vh;
background: url("../../assets/image/login_bg.png") center center no-repeat;
background: url("../../assets/image/login_bg.jpg") center center no-repeat;
background-size: 100% 100%;
.title {
.fs(90);
......
......@@ -327,7 +327,8 @@ export default {
},
// 重置
handlerReset() {
this.form = {};
const { patientNo, patientName } = this.form;
this.form = {patientNo, patientName};
},
editEvt(record) {
this.editFormObj = {
......
......@@ -106,9 +106,16 @@
</a-col>
<a-col :lg="6" :sm="12">
<a-form-model-item label="密码">
<a-input type="password" v-model="detailObj.loginPwd" placeholder="密码" />
<a-input-password type="password" v-model="detailObj.loginPwd" placeholder="密码" />
</a-form-model-item>
</a-col>
<a-col :lg="6" :sm="12">
<a-form-model-item label="备注">
<a-textarea type="password" v-model="detailObj.remark" max-length="500" :auto-size="{minRows: 3}" />
</a-form-model-item>
</a-col>
</a-row>
<a-row :gutter="30">
<a-col :lg="6" :sm="12">
<a-form-model-item label="理赔申请书模板">
<a-upload name="file" :multiple="false" accept="application/pdf" :showUploadList="true"
......
......@@ -57,6 +57,13 @@
</a-select>
</a-form-model-item>
</a-col>
<a-col :lg="12" :sm="24">
<a-form-model-item label="状态" prop="jobStatus">
<a-select v-model="editFormObj.jobStatus" placeholder="请选择" showSearch allowClear>
<a-select-option :value="item.code" v-for="item in jobStatusCode" :key="item.code">{{ item.name }}</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
</a-modal>
......
......@@ -69,17 +69,17 @@
</a-col>
<a-col :lg="8" :sm="12">
<a-form-model-item label="Bank Name 银行名称">
<a-input v-model="detailObj.bankAddrEng" type="number" placeholder="Bank Name 银行名称" />
<a-input v-model="detailObj.bankAddrEng" placeholder="Bank Name 银行名称" />
</a-form-model-item>
</a-col>
<a-col :sm="12">
<a-form-model-item label="Bank Address 银行地址">
<a-input v-model="detailObj.bankAddr" type="number" placeholder="Bank Address 银行地址"/>
<a-input v-model="detailObj.bankAddr" placeholder="Bank Address 银行地址"/>
</a-form-model-item>
</a-col>
<a-col :sm="12">
<a-form-model-item label="Swift Code 国际电汇代码">
<a-input v-model="detailObj.telegraphicTransferCode" type="number" placeholder="Swift Code 国际电汇代码" />
<a-input v-model="detailObj.telegraphicTransferCode" placeholder="Swift Code 国际电汇代码" />
</a-form-model-item>
</a-col>
<a-col :sm="24" class="none-label">
......
......@@ -164,12 +164,12 @@ export default {
return val && moment(val).format('YYYY-MM-DD')
} */
const columns = [
{ title: "责任项目明细", dataIndex: "benefitDesc" },
{ title: "责任项目明细", dataIndex: "benefitDesc", width: 300 },
// { title: "预授权申请", dataIndex: "index" },
// { title: "开始日期", dataIndex: "startDate", customRender: dateFormat },
// { title: "结束日期", dataIndex: "endDate", customRender: dateFormat },
{ title: "更新日期", dataIndex: "modifierDate", width: 180 },
{ title: "备注", dataIndex: "remarks", width: 180 },
{ title: "备注", dataIndex: "remarks" },
{
title: "操作",
key: "operation",
......
......@@ -24,13 +24,14 @@ export default {
{ title: "条件类型", dataIndex: "frequencyDesc" },
{ title: "条件内容", dataIndex: "limitDesc" },
// { title: "最小值", dataIndex: "minValue" },
{ title: "福利限制", dataIndex: "maxValue", customRender: (val, row) => {
if (row.limitCode.indexOf('07') === 0) {
return val + '%'
}
return val
}},
{ title: "剩余金额", dataIndex: "leftValue" }
// { title: "福利限制", dataIndex: "maxValue", customRender: (val, row) => {
// if (row.limitCode.indexOf('07') === 0) {
// return val + '%'
// }
// return val
// }},
{ title: "剩余金额", dataIndex: "leftValue" },
{ title: "备注", dataIndex: "remark" }
];
return {
columns,
......
......@@ -120,6 +120,7 @@ export default {
sex: undefined,
idNo: undefined,
payorId: undefined,
cardNo: undefined
},
detailForm: {},
coverageForm: {},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment