sale-client 3.5.286 → 3.5.287

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  var path = require('path')
2
- const [localUrl, serverRul] = ['http://121.36.106.17:8400/', 'http://121.36.106.17:8400/']
2
+ const [localUrl, serverRul] = ['http://127.0.0.1:8080/', 'http://192.168.50.4:8400/']
3
3
  var merge = require('webpack-merge')
4
4
  var baseConfig = require('./webpack.dev.conf')
5
5
  var devConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.5.286",
3
+ "version": "3.5.287",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -116,7 +116,7 @@
116
116
  <div style="" class="col-sm-4 form-group">
117
117
  <label for="f_is_mgq" class="font_normal_body ">&ensp;付款类型</label>
118
118
  <v-select id="f_is_mgq" :value.sync="baseinfo.base.f_cost_type" v-model="baseinfo.base.f_cost_type"
119
- :options='costtype' placeholder='付款类型' style="width: 65%" close-on-select></v-select>
119
+ :options='costtype' placeholder='付款类型' style="width: 65%" close-on-select></v-select>
120
120
  </div>
121
121
  </div>
122
122
  <div class="row">
@@ -160,6 +160,30 @@
160
160
  placeholder="档案编号">
161
161
  </div>
162
162
  </div>
163
+ <div class="row">
164
+ <div style="" class="col-sm-4 form-group" :class="[$v.agent_name.identityCardValid ? 'has-error' : '']"
165
+ v-if="baseinfo.base.f_user_nature !== '民用'">
166
+ <label for="f_agent_name" class="font_normal_body">*代理姓名</label>
167
+ <input type="text" v-model="baseinfo.base.f_agent_name" class="input_search" style="width:60%"
168
+ v-validate:agent_name='{required: true }' placeholder="代理人姓名">
169
+ </div>
170
+ <div style="" class="col-sm-4 form-group" v-if="baseinfo.base.f_user_nature === '民用'">
171
+ <label for="f_agent_name" class="font_normal_body">代理姓名</label>
172
+ <input type="text" v-model="baseinfo.base.f_agent_name" class="input_search" style="width:60%"
173
+ placeholder="代理人姓名">
174
+ </div>
175
+ <div style="" class="col-sm-4 form-group" :class="[$v.agent_phone.identityCardValid ? 'has-error' : '']"
176
+ v-if="baseinfo.base.f_user_nature !== '民用'">
177
+ <label for="f_agent_phone" class="font_normal_body">*代理电话</label>
178
+ <input type="text" v-model="baseinfo.base.f_agent_phone" class="input_search" style="width:60%"
179
+ v-validate:agent_phone='{required: true }' placeholder="代理人电话">
180
+ </div>
181
+ <div style="" class="col-sm-4 form-group" v-if="baseinfo.base.f_user_nature === '民用'">
182
+ <label for="f_agent_phone" class="font_normal_body">代理电话</label>
183
+ <input type="text" v-model="baseinfo.base.f_agent_phone" class="input_search" style="width:60%"
184
+ placeholder="代理人电话">
185
+ </div>
186
+ </div>
163
187
  <div class="row">
164
188
  <div style="" class="col-sm-12 form-group">
165
189
  <label for="f_paper_account" class="font_normal_body ">&ensp;备&emsp;&emsp;注</label>
@@ -0,0 +1,263 @@
1
+ <template>
2
+ <div class="form-inline" style="height: auto">
3
+ <div class="form-group" v-for="btn in operBtns">
4
+ <button :id="btn.name" type="button"
5
+ :style="['其他欠费','调价补差'].includes(btn.name) ?'color:#CA2C16':'color:black'"
6
+ :class="[($index === 0) ? 'btn btn-click' : 'btn btn-un-click']" @click="business(btn)"
7
+ :disabled="noButton"><span
8
+ :style="['其他欠费','调价补差'].includes(btn.name) ?'color:#CA2C16':'color:black'">{{ btn.name }}</span>
9
+ </button>
10
+
11
+ </div>
12
+ </div>
13
+ <div v-show="isBusiness" style="height: auto" class="select-overspread">
14
+ <route v-ref:route></route>
15
+ </div>
16
+ </template>
17
+
18
+ <script>
19
+ import {HttpResetClass} from 'vue-client'
20
+
21
+ let getNewmetermsg = async function (self, row) {
22
+ self.cardInfo = undefined
23
+ if (row.f_userfiles_id && row.f_userfiles_id.length > 0) {
24
+ // 获取用户信息
25
+ let getUser = await self.$resetpost('rs/sql/sale_getUser', {
26
+ data: {
27
+ condition: `u.f_userfiles_id='${row.f_userfiles_id}' `,
28
+ orderitem: `u.f_userfiles_id Desc`
29
+ }
30
+ }, {resolveMsg: '读卡新的用户成功', rejectMsg: '读卡新的用户失败'})
31
+ if (getUser.data.length > 0) {
32
+ await self.$showAlert('换表成功', 'success', 200)
33
+ self.data = getUser.data[0]
34
+ }
35
+ }
36
+ }
37
+ let getBtnsGen = async function (self) {
38
+ let http = new HttpResetClass()
39
+ let param = {
40
+ f_userfiles_id: self.data.f_userfiles_id
41
+ }
42
+ if (self.cardInfo) {
43
+ param.cardInfo = self.cardInfo
44
+ }
45
+ let res = await http.load('POST', 'rs/logic/getOperBtns', {
46
+ data: param
47
+ }, {
48
+ resolveMsg: null,
49
+ rejectMsg: '获取业务按钮失败!!'
50
+ })
51
+ let getBtns = res.data
52
+ console.log('获取的业务按钮', getBtns)
53
+ console.log('有没有用户信息', self.data)
54
+ if (self.$login.r.length === 0) {
55
+ self.$showAlert('您没有相关的业务操作权限, 请联系管理员!!', 'warning', 2000)
56
+ } else {
57
+ self.temp = []
58
+ for (let i = 0; i < getBtns.length; i++) {
59
+ // 不需要权限的按钮
60
+ let noInclude = getBtns[i].name === '垃圾费收费'
61
+ if (noInclude || self.$login.r.includes(getBtns[i].name)) {
62
+ // 进行权限验证
63
+ if (getBtns[i].name === '换表&清零') {
64
+ self.temp.push({
65
+ name: '换表',
66
+ value: getBtns[i].value
67
+ })
68
+ self.temp.push({
69
+ name: '清零',
70
+ value: {
71
+ 'weight': getBtns[i].value.weight,
72
+ 'routeName': 'reset-meter'
73
+ }
74
+ })
75
+ } else {
76
+ if(getBtns[i].name == '物联网表收费' || getBtns[i].name == '卡表收费'){
77
+ getBtns[i].name = '燃气充值'
78
+ }
79
+ self.temp.push(getBtns[i])
80
+ }
81
+ console.log(i)
82
+ console.log(getBtns[i])
83
+ }
84
+ }
85
+ // 如果有未写卡记录,添加线下写卡按钮
86
+ if (self.data.unWriteSell) {
87
+ if (self.data.unWriteSell.length > 0) {
88
+ self.temp.push({
89
+ name: '线下写卡',
90
+ value: {
91
+ 'weight': 0,
92
+ 'routeName': 'un-write-card-center'
93
+ }
94
+ })
95
+ }
96
+ }
97
+ if (self.data.f_user_nature === '单位') {
98
+ self.temp.push({
99
+ name: '维管收费',
100
+ value: {
101
+ 'weight': 5,
102
+ 'routeName': 'repair-charge'
103
+ }
104
+ })
105
+ }
106
+ if (self.data.f_meter_type === '物联网表') {
107
+ if (self.data.f_hascard === '是') {
108
+ if (self.data.f_whether_hairpin === '未发') {
109
+ if (self.data.f_share_times !== '' && self.data.f_share_times === '是' && self.data.f_times > 0) {
110
+ self.temp.push({
111
+ name: '补卡',
112
+ value: {
113
+ 'weight': 2,
114
+ 'routeName': 'replace-card-manage'
115
+ }
116
+ })
117
+ } else {
118
+ }
119
+ }
120
+ }
121
+ }
122
+ // 如果卡上有气,添加购气撤销按钮
123
+ if (self.cardInfo && (self.cardInfo.Gas > 0 || self.cardInfo.Money > 0 || (self.cardInfo.TotalMoney > 0 && self.data.f_support_purchase === '是'))) {
124
+ self.temp.push({
125
+ name: '购气撤销',
126
+ value: {
127
+ 'weight': 0,
128
+ 'routeName': 'card-meter-charge-cancel'
129
+ }
130
+ })
131
+ }
132
+ /* // 如果是预备户,删除发卡售气按钮
133
+ if (self.data.f_user_state == '预备') {
134
+ self.temp.splice(self.temp.findIndex(item => item.name === '发卡售气'), 1)
135
+ } */
136
+
137
+ // 根据权重将业务按钮排序
138
+ self.operBtns = self.temp.sort((a, b) => {
139
+ return a.value.weight - b.value.weight
140
+ })
141
+
142
+ // 当有调价补差时,只展示调价补差按钮
143
+ let adjustSenders = self.operBtns.find((row) => {
144
+ return row.name == '调价补差'
145
+ })
146
+ if (adjustSenders) {
147
+ self.operBtns = []
148
+ self.operBtns.push(adjustSenders)
149
+ }
150
+
151
+ if (self.operBtns.length > 0) {
152
+ self.isBusiness = true
153
+ self.$refs.route.init(self.operBtns[0].value.routeName, {row: self.data, cardData: self.cardInfo})
154
+ self.styleChange(self.operBtns[0])
155
+ }
156
+ }
157
+ }
158
+
159
+ export default {
160
+ title: '业务操作',
161
+ data() {
162
+ return {
163
+ operBtns: [],
164
+ isBusiness: false,
165
+ noButton: false // 业务请求时禁止按钮点击
166
+ }
167
+ },
168
+ props: ['data', 'cardInfo'],
169
+ ready() {
170
+ getBtnsGen(this)
171
+ console.log('data,cardInfo', this.data, this.cardInfo)
172
+
173
+ },
174
+ methods: {
175
+ business(btn) {
176
+ // // 处理按钮样式
177
+ // this.styleChange(btn.name)
178
+ // this.isBusiness = true
179
+ // this.$refs.route.init(btn.value.routeName, {row: this.data, cardData: this.cardInfo})
180
+ if (this.$refs.route.cards.length > 0) {
181
+ if (this.$refs.route.cards[0].title == '增值服务管理') {
182
+ this.$showMessage('切换页面后,当前页面数据会丢失,是否切换?', ['confirm', 'cancel']).then(res => {
183
+ if (res == 'cancel') {
184
+ return;
185
+ } else {
186
+ // 处理按钮样式
187
+ this.styleChange(btn.name)
188
+ this.isBusiness = true
189
+ this.$refs.route.init(btn.value.routeName, {row: this.data, cardData: this.cardInfo})
190
+ }
191
+ })
192
+ } else {
193
+ // 处理按钮样式
194
+ this.styleChange(btn.name)
195
+ this.isBusiness = true
196
+ this.$refs.route.init(btn.value.routeName, {row: this.data, cardData: this.cardInfo})
197
+ }
198
+ }
199
+ },
200
+
201
+ styleChange(name) {
202
+ this.operBtns.forEach((res) => {
203
+ if (res.name === name) {
204
+ if (document.getElementById(res.name)) {
205
+ document.getElementById(res.name).style.backgroundColor = '#6aa6e2'
206
+ document.getElementById(res.name).style.color = 'white'
207
+ }
208
+ } else {
209
+ if (document.getElementById(res.name)) {
210
+ document.getElementById(res.name).style.backgroundColor = 'white'
211
+ document.getElementById(res.name).style.color = 'black'
212
+ }
213
+ }
214
+ })
215
+ }
216
+ },
217
+ watch: {
218
+ 'data'() {
219
+ getBtnsGen(this)
220
+ }
221
+ },
222
+ events: {
223
+ 'no-button'() {
224
+ this.noButton = true
225
+ },
226
+ 'has-button'() {
227
+ this.noButton = false
228
+ },
229
+ 'get-new-row'(row) {
230
+ console.log('xxxxxx', row)
231
+ // 发生换表成功
232
+ getNewmetermsg(this, row)
233
+ },
234
+ 'button-specifies'(buttonObj, data) {
235
+ console.log('指定按钮。。', buttonObj)
236
+ // buttonObj 格式: {name:'机表收费', value: 'machine-meter-center'}
237
+ if (buttonObj) {
238
+ this.styleChange(buttonObj.name)
239
+ this.$refs.route.init(buttonObj.value, {row: data})
240
+ }
241
+ }
242
+ }
243
+ }
244
+ </script>
245
+
246
+ <style scoped>
247
+
248
+ .btn-click {
249
+ background-color: #6aa6e2;
250
+ border-radius: 5px;
251
+ color: white;
252
+ /*border-color: black;*/
253
+ border: solid 1px #c7c7c7;
254
+ }
255
+
256
+ .btn-un-click {
257
+ background-color: white;
258
+ border-radius: 5px;
259
+ color: black;
260
+ /*border-color: black;*/
261
+ border: solid 1px #c7c7c7;
262
+ }
263
+ </style>
@@ -123,23 +123,23 @@
123
123
  v-ref:f_state>
124
124
  </v-select>
125
125
  </div>
126
- <div class="col-sm-6 form-group" :class="[$v.f_money.required ? 'has-error' : '']">
127
- <label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;保费金额</label>
128
- <input type="number" v-model="model.f_money" class="input_search" style="width:60%"
129
- v-validate:f_money='{required: true, dctest: [0, ">=" ] }' placeholder="保费金额">
130
- </div>
131
- <div class="col-sm-6 form-group" :class="[$v.payment.required ? 'has-error select-error' : '']">
132
- <label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;收款方式</label>
133
- <input type="text" v-show="false" v-model="$refs.payment.selectedItems" v-validate:payment='{required: true }'>
134
- <v-select v-model="model.f_payment"
135
- style="width:60%"
136
- placeholder='请选择'
137
- :value.sync="model.f_payment"
138
- :options='paytype'
139
- v-ref:payment value-single
140
- close-on-select clear-button>
141
- </v-select>
142
- </div>
126
+ <!--<div class="col-sm-6 form-group" :class="[$v.f_money.required ? 'has-error' : '']">-->
127
+ <!--<label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;保费金额</label>-->
128
+ <!--<input type="number" v-model="model.f_money" class="input_search" style="width:60%"-->
129
+ <!--v-validate:f_money='{required: true, dctest: [0, ">=" ] }' placeholder="保费金额">-->
130
+ <!--</div>-->
131
+ <!--<div class="col-sm-6 form-group" :class="[$v.payment.required ? 'has-error select-error' : '']">-->
132
+ <!--<label class="font_normal_body">&emsp;&emsp;&emsp;&emsp;收款方式</label>-->
133
+ <!--<input type="text" v-show="false" v-model="$refs.payment.selectedItems" v-validate:payment='{required: true }'>-->
134
+ <!--<v-select v-model="model.f_payment"-->
135
+ <!--style="width:60%"-->
136
+ <!--placeholder='请选择'-->
137
+ <!--:value.sync="model.f_payment"-->
138
+ <!--:options='paytype'-->
139
+ <!--v-ref:payment value-single-->
140
+ <!--close-on-select clear-button>-->
141
+ <!--</v-select>-->
142
+ <!--</div>-->
143
143
  <div class="col-sm-6 form-group">
144
144
  <label class="font_normal_body">&emsp;&emsp;&emsp;确认书编号</label>
145
145
  <input type="text" v-model="model.f_ok_number" style="width: 60%"
@@ -0,0 +1,256 @@
1
+ <<template>
2
+ <div :class="{'basic-main':!showItem,'binary-left':showItem}" style="height:98%;" >
3
+ <div style="flex: 1.5" class="flex">
4
+ <div class="flex">
5
+ <criteria-paged :model="model" v-ref:paged>
6
+ <criteria partial='criteria' v-ref:criteria @condition-changed="$parent.selfSearch">
7
+ <div novalidate class="form-inline auto" novalidate partial>
8
+ <div class="row">
9
+ <div class="col-sm-2 form-group">
10
+ <label class="font_normal_body" for="f_userinfo_code">客户编号</label>
11
+ <input id="f_userinfo_code" type="text" class="input_search" style="width: 60%" v-model="model.f_userinfo_code"
12
+ condition="f_userinfo_code = '{}'" placeholder='请输入要查询的客户编号'>
13
+ </div>
14
+ <div class="col-sm-2 form-group">
15
+ <label class="font_normal_body" for="f_user_name">客户姓名</label>
16
+ <input id="f_user_name" type="text" class="input_search" style="width: 60%" v-model="model.f_user_name"
17
+ condition="f_user_name like '{}'" placeholder='请输入要查询的客户姓名'>
18
+ </div>
19
+ <div class="col-sm-2 form-group">
20
+ <label class="font_normal_body" for="f_insurance_type">险&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;种</label>
21
+ <v-select id="f_insurance_type"
22
+ v-model="model.f_insurance_type"
23
+ placeholder='请选择'
24
+ condition="f_insurance_type ='{}'"
25
+ :value.sync="model.f_insurance_type"
26
+ :options='$parent.$parent.insuranceType'
27
+ close-on-select clear-button>
28
+ </v-select>
29
+ </div>
30
+ <div class="col-sm-2 form-group">
31
+ <label class="font_normal_body" for="f_days">到期天数内</label>
32
+ <input id="f_days" type="text" class="input_search" style="width: 60%" v-model="model.f_days"
33
+ condition="f_days < {}" placeholder='请输入天数到期天数之内'>
34
+ </div>
35
+ <div style="float: right">
36
+ <button class="button_search" @click="search()">查 询</button>
37
+ <div class="button_spacing" style="float:right;"
38
+ :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
39
+ @click="$parent.$parent.hidden()"></div>
40
+ </div>
41
+ </div>
42
+ <div class="row" v-show="$parent.$parent.criteriaShow" >
43
+ <res-select-group :initres="$parent.$parent.initres" :show-component="['company','department']" @re-res="$parent.$parent.getRes" v-ref:sel></res-select-group>
44
+ <div class="col-sm-2 form-group">
45
+ <label class="font_normal_body">购买年限</label>
46
+ <input type="text" class="input_search" style="width: 60%" v-model="model.f_salecount"
47
+ condition="f_salecount = '{}'" placeholder='购买年限'>
48
+ </div>
49
+ <div class="col-sm-2 form-group">
50
+ <label class="font_normal_body" for="f_state">状&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;态</label>
51
+ <v-select id="f_state"
52
+ v-model="model.f_state"
53
+ placeholder='请选择'
54
+ condition="f_state ='{}'"
55
+ :value.sync="model.f_state"
56
+ :options='$parent.$parent.state'
57
+ close-on-select clear-button>
58
+ </v-select>
59
+ </div>
60
+ </div>
61
+ </div>
62
+
63
+ </criteria>
64
+ <data-grid :model="model" v-ref:grid class="list_area table_sy" partial='list'>
65
+ <template partial='head'>
66
+ <tr>
67
+ <th>
68
+ <nobr>序号</nobr>
69
+ </th>
70
+ <th>
71
+ <nobr>客户编号</nobr>
72
+ </th>
73
+ <th>
74
+ <nobr>客户姓名</nobr>
75
+ </th>
76
+ <th>
77
+ <nobr>客户地址</nobr>
78
+ </th>
79
+ <th>
80
+ <nobr>身份证号</nobr>
81
+ </th>
82
+ <th>
83
+ <nobr>电话</nobr>
84
+ </th>
85
+ <th>
86
+ <nobr>费用类型</nobr>
87
+ </th>
88
+ <th>
89
+ <nobr>购买日期</nobr>
90
+ </th>
91
+ <th>
92
+ <nobr>到期日期</nobr>
93
+ </th>
94
+ <th>
95
+ <nobr>保费开始日期</nobr>
96
+ </th>
97
+ <th>
98
+ <nobr>上期保费截至日期</nobr>
99
+ </th>
100
+ <th>
101
+ <nobr>到期剩余天数</nobr>
102
+ </th>
103
+ <!--<th>-->
104
+ <!--<nobr>金额</nobr>-->
105
+ <!--</th>-->
106
+ <!--<th>-->
107
+ <!--<nobr>收款方式</nobr>-->
108
+ <!--</th>-->
109
+ <th>
110
+ <nobr>状态</nobr>
111
+ </th>
112
+ <th>
113
+ <nobr>缴费时间</nobr>
114
+ </th>
115
+ <th>
116
+ <nobr>确认书编号</nobr>
117
+ </th>
118
+ <th>
119
+ <nobr>险种</nobr>
120
+ </th>
121
+ <th>
122
+ <nobr>购买年限</nobr>
123
+ </th>
124
+ <th>
125
+ <nobr>备注信息</nobr>
126
+ </th>
127
+ </template>
128
+ <template partial='body'>
129
+ <td style="text-align: center;">
130
+ <nobr>{{$index + 1}}</nobr>
131
+ </td>
132
+ <td style="text-align: center;">
133
+ <nobr>
134
+ {{row.f_userinfo_code}}
135
+ </nobr>
136
+ </td>
137
+ <td style="text-align: center;">
138
+ <nobr>{{row.f_user_name}}</nobr>
139
+ </td>
140
+ <td style="text-align: center;">
141
+ <nobr>{{row.f_address}}</nobr>
142
+ </td>
143
+ <td style="text-align: center;">
144
+ <nobr>{{row.f_idnumber}}</nobr>
145
+ </td>
146
+ <td style="text-align: center;">
147
+ <nobr>{{row.f_user_phone}}</nobr>
148
+ </td>
149
+ <td style="text-align: center;">
150
+ <nobr>{{row.f_fee_type}}</nobr>
151
+ </td>
152
+ <td style="text-align: center;">
153
+ <nobr>{{row.f_buy_date}}</nobr>
154
+ </td>
155
+ <td style="text-align: center;">
156
+ <nobr>{{row.f_expiration_date}}</nobr>
157
+ </td>
158
+ <td style="text-align: center;">
159
+ <nobr>{{row.f_shengxiao_date}}</nobr>
160
+ </td>
161
+ <td style="text-align: center;">
162
+ <nobr>{{row.f_last_insexpiration_date}}</nobr>
163
+ </td>
164
+ <td style="text-align: center;">
165
+ <nobr>{{row.f_days > 0 ? row.f_days : '已到期'}}</nobr>
166
+ </td>
167
+ <!--<td style="text-align: center;">-->
168
+ <!--<nobr>{{row.f_money}}</nobr>-->
169
+ <!--</td>-->
170
+ <!--<td style="text-align: center;">-->
171
+ <!--<nobr>{{row.f_payment}}</nobr>-->
172
+ <!--</td>-->
173
+ <td style="text-align: center;">
174
+ <nobr>{{row.f_state}}</nobr>
175
+ </td>
176
+ <td style="text-align: center;">
177
+ <nobr>{{row.f_operate_date}}</nobr>
178
+ </td>
179
+ <td style="text-align: center;">
180
+ <nobr>{{row.f_ok_number}}</nobr>
181
+ </td>
182
+ <td style="text-align: center;">
183
+ <nobr>{{row.f_insurance_type}}</nobr>
184
+ </td>
185
+ <td style="text-align: center;">
186
+ <nobr>{{row.f_salecount}}</nobr>
187
+ </td>
188
+ <td style="text-align: center;">
189
+ <nobr>{{row.f_comments}}</nobr>
190
+ </td>
191
+ </template>
192
+ </data-grid>
193
+ </criteria-paged>
194
+ </div>
195
+ </div>
196
+ </div>
197
+ </template>
198
+
199
+ <script>
200
+ import {PagedList} from 'vue-client'
201
+
202
+ export default {
203
+ name: 'InsuranceChargesDetails',
204
+ title: '保险收费明细',
205
+ data () {
206
+ return {
207
+ initres: {
208
+ org: [this.$login.f.orgid],
209
+ dep: [],
210
+ user: []
211
+ },
212
+ f_state: '',
213
+ state: this.$appdata.getParam('保险状态') ? this.$appdata.getParam('保险状态') : [],
214
+ f_insurance_type: '',
215
+ insuranceType: this.$appdata.getParam('险种') ? this.$appdata.getParam('险种') : [],
216
+ orgCondtionStr: '',
217
+ base: {},
218
+ model: new PagedList('rs/sql/getInsuranceChargesList', 20),
219
+ // 控制查询条件显示
220
+ criteriaShow: false,
221
+ // 公司下拉
222
+ curorgid: [this.$login.f.orgid],
223
+ f_filialeid: this.$login.f.orgid,
224
+ percent: 0
225
+ }
226
+ },
227
+ ready () {
228
+ this.$refs.paged.$refs.criteria.search()
229
+ },
230
+ methods: {
231
+ hidden () {
232
+ this.criteriaShow = !this.criteriaShow
233
+ },
234
+ getRes (obj) {
235
+ this.orgCondtionStr = obj
236
+ },
237
+ search () {
238
+ this.$refs.paged.$refs.criteria.search()
239
+ },
240
+ getorg (val) {
241
+ this.f_filialeid = val[0]
242
+ },
243
+ selfSearch (args) {
244
+ if (!this.orgCondtionStr) {
245
+ args.condition = `${args.condition}` + ' and f_orgid = ' + this.$login.f.orgid
246
+ } else {
247
+ args.condition = `${args.condition}` + this.orgCondtionStr
248
+ }
249
+ this.model.search(args.condition, args.model)
250
+ }
251
+ },
252
+ computed: {}
253
+ }
254
+ </script>
255
+ <style>
256
+ </style>
@@ -83,9 +83,9 @@
83
83
  <th>
84
84
  <nobr>截止日期</nobr>
85
85
  </th>
86
- <th>
87
- <nobr>累计保费充值金额</nobr>
88
- </th>
86
+ <!--<th>-->
87
+ <!--<nobr>累计保费充值金额</nobr>-->
88
+ <!--</th>-->
89
89
  </template>
90
90
  <template partial='body'>
91
91
  <td style="text-align: center;">
@@ -108,9 +108,9 @@
108
108
  <td style="text-align: center;">
109
109
  <nobr>{{row.f_ins_stop_date}}</nobr>
110
110
  </td>
111
- <td style="text-align: center;">
112
- <nobr>{{row.f_total_ins_charge}}</nobr>
113
- </td>
111
+ <!--<td style="text-align: center;">-->
112
+ <!--<nobr>{{row.f_total_ins_charge}}</nobr>-->
113
+ <!--</td>-->
114
114
  </template>
115
115
  </data-grid>
116
116
  </criteria-paged>