|
@@ -5,7 +5,7 @@
|
|
|
:exportList="exportList"
|
|
|
:columnParsing="columnParsing"
|
|
|
:optionsEvensGroup="optionsEvensGroup"
|
|
|
- :morePlan="morePlan"
|
|
|
+ :moreParameters="moreParameters"
|
|
|
>
|
|
|
<!-- :operationColumnWidth="200"
|
|
|
:operation="operation()" -->
|
|
@@ -23,7 +23,6 @@ export default {
|
|
|
mixins: [import_mixin, operation_mixin],
|
|
|
data() {
|
|
|
return {
|
|
|
- morePlan: [],
|
|
|
// 事件组合
|
|
|
optionsEvensGroup: [
|
|
|
[
|
|
@@ -70,9 +69,50 @@ export default {
|
|
|
showType: null
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ // 更多参数
|
|
|
+ moreParameters() {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ name: '保单状态',
|
|
|
+ key: 'policyOrderStatus',
|
|
|
+ value: '',
|
|
|
+ conditions: [
|
|
|
+ {
|
|
|
+ label: '全部',
|
|
|
+ value: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '待生效',
|
|
|
+ value: 'DSX'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '保障中',
|
|
|
+ value: 'BZZ'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '已失效',
|
|
|
+ value: 'YSX'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
// 列表请求函数
|
|
|
- getList: policyOrderListDs,
|
|
|
+ getList(p, cb) {
|
|
|
+ var pam = JSON.parse(JSON.stringify(p))
|
|
|
+ try {
|
|
|
+ if (pam.policyOrderStatus) {
|
|
|
+ pam.params.push({ param: 'policy_order_status', compare: '=', value: pam.policyOrderStatus })
|
|
|
+ }
|
|
|
+ cb && cb(pam)
|
|
|
+ return policyOrderListDs(pam)
|
|
|
+ } catch (err) {
|
|
|
+ console.log(err)
|
|
|
+ }
|
|
|
+ },
|
|
|
// 导出
|
|
|
exportList: policyOrderListDsExport,
|
|
|
// 表格列解析渲染数据更改
|