manage-client 3.3.13 → 3.3.15

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "3.3.13",
3
+ "version": "3.3.15",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -282,7 +282,7 @@
282
282
  <nobr>{{row.f_olduserinfo_code}}</nobr>
283
283
  </td>
284
284
  <td style="text-align: center;">
285
- <nobr>{{row.f_sell_id}}</nobr>
285
+ <nobr>{{row.id}}</nobr>
286
286
  </td>
287
287
  <td style="text-align: center;">
288
288
  <nobr>{{row.f_user_name}}</nobr>
@@ -0,0 +1,55 @@
1
+ <template>
2
+ <tab-button v-ref:list :active="-1">
3
+ <tabs header="加装花名册" >
4
+ <qn-aqzz-hmc v-if="show.includes('加装花名册')" @deal-msg="dealMsg" :data="data"></qn-aqzz-hmc>
5
+ </tabs>
6
+ <tabs header="缴费明细" >
7
+ <qn-aqzz-jfmx v-if="show.includes('缴费明细')" @deal-msg="dealMsg" :data="data"></qn-aqzz-jfmx>
8
+ </tabs>
9
+ <tabs header="乡镇汇总" >
10
+ <qn-aqzz-xzhz v-if="show.includes('乡镇汇总')" @deal-msg="dealMsg" :data="data"></qn-aqzz-xzhz>
11
+ </tabs>
12
+ <tabs header="乡镇居委会汇总" >
13
+ <qn-aqzz-xzjwhhz v-if="show.includes('乡镇居委会汇总')" @deal-msg="dealMsg" :data="data"></qn-aqzz-xzjwhhz>
14
+ </tabs>
15
+ </tab-button>
16
+
17
+ </template>
18
+
19
+ <script>
20
+ import TabButton from '../../components/sale/common/TabButton'
21
+ import Tabs from '../../components/sale/common/Tabs'
22
+
23
+ export default {
24
+ title: '安全装置',
25
+ data () {
26
+ return {
27
+ f_start_date: '',
28
+ f_end_date: '',
29
+ listpage: true,
30
+ width: {
31
+ left: '100%',
32
+ right: '0%'
33
+ },
34
+ // searchNumber:'',
35
+ rowData: {},
36
+ show: []
37
+ }
38
+ },
39
+ components: {Tabs, TabButton},
40
+ methods: {
41
+ permission (name) {
42
+ if (this.$login.r.find(value => value == '安全装置')) {
43
+ if (!this.$login.r.find(value => value == name)) {
44
+ return false
45
+ }
46
+ }
47
+ return true
48
+ }
49
+ }
50
+
51
+ }
52
+ </script>
53
+
54
+ <style scoped>
55
+ </style>