Commit 4b6e943e authored by 孙海亮's avatar 孙海亮

Merge branch 'fix-wth-1105' into 'master'

核销管理下新增不能编辑的问题处理

See merge request !12
parents c9f7db0a 4ea354de
......@@ -125,7 +125,10 @@ export default {
//新建回款
addNewEvt(){
this.$router.push({
path: '/verification/collectionDetail'
path: '/verification/collectionDetail',
query: {
isEdit: true
}
})
},
//编辑回款
......
......@@ -165,7 +165,10 @@ export default {
//新建EOB
addNewEvt(){
this.$router.push({
path: '/verification/detail'
path: '/verification/detail',
query: {
isEdit: true
}
})
},
//修改
......
......@@ -134,7 +134,10 @@ import BurtPagination from "@/components/CUSTOMER/pagation";
import moment from "moment";
import {ClaimsStatusOptions,EOBStatusOptions} from '@/utils/utilsdictOptions.js'
import mixins from "@/mixins";
const columns = [
export default {
data() {
const columns = [
{ title: "账单编号", dataIndex: "receiptNo", ellipsis: true, width: 100 },
{ title: "客户姓名", dataIndex: "patientName", ellipsis: true, width: 85 },
{ title: "保险公司", dataIndex: "payorName", ellipsis: true, width: 80 },
......@@ -148,9 +151,7 @@ const columns = [
{ title: "保险公司欠费", dataIndex: "payorNoPaidAmount", ellipsis: true, width: 110, },
{ title: "个人欠费", dataIndex: "perNoPaidAmount", ellipsis: true, width: 85 },
{ title: "备注", dataIndex: "sendRemark", ellipsis: true, width: 120 },
];
export default {
data() {
];
return {
dialogShow: false,
isEdit: false,
......
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