sale-client 4.2.143 → 4.2.144
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/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/.project +6 -0
- package/build/dev-server.js +27 -19
- package/hs_err_pid255736.log +796 -0
- package/package.json +1 -1
- package/src/components/FilesManage/addressts/FileUserFilests.vue +671 -0
- package/src/components/FilesManage/ncUserinfoList.vue +315 -0
- package/src/components/SellGasCharge/MeterCharge/CardDataRewrite.vue +107 -0
- package/src/components/SendCard/SendCardData.vue +208 -0
- package/src/components/accounts/accountAdd.vue +276 -0
- package/src/components/accounts/accountsList.vue +183 -0
- package/src/components/accounts/accountsManage.vue +87 -0
- package/src/components/common/chargeinfo/chargeinfo.vue +55 -0
- package/src/components/common/userinfo_detail/config/exportConfig.js +85 -0
- package/src/components/ncarchives/ncArchivesAdd.vue +468 -0
- package/src/components/ncarchives/ncArchivesList.vue +159 -0
- package/src/components/ncarchives/ncUserfilesList.vue +373 -0
- package/src/components/ncarchives/ncarchivesmanage.vue +80 -0
- package/src/components/revenue/IOTArrears/arrears.vue +323 -0
- package/src/components/revenue/IOTArrears/iotRechargeAudit.vue +369 -0
- package/src/components/revenue/base/CardServer/ReadCard.vue +98 -98
- package/src/components/revenue/base/rightview/carddetail/cardiotfeeChangeDetail.vue +59 -0
- package/src/components/revenue/base/rightview/carddetail/reduceChangeDetail.vue +59 -0
- package/src/components/revenue/comprehen/ComprehenOperation/BatchChange/BatchCancellationts.vue +73 -0
- package/src/components/revenue/comprehen/ComprehenOperation/BatchChange/BatchEnablets.vue +73 -0
- package/src/components/revenue/comprehen/ComprehenOperation/IcFeeDeduction/ReduceAddGas.vue +199 -0
- package/src/components/revenue/comprehen/ComprehenOperation/IcFeeDeduction/icdeductionManage.vue +24 -0
- package/src/components/revenue/comprehen/ComprehenOperation/IcFeeDeduction/icdeductionYSManage.vue +24 -0
- package/src/components/revenue/comprehen/ComprehenOperation/IcFeeDeduction/icfeeDeduction.vue +185 -0
- package/src/components/revenue/comprehen/ComprehenOperation/IcFeeDeduction/icfeeYSDeduction.vue +185 -0
- package/src/components/revenue/comprehen/ComprehenOperation/newchangemeter/ChangeFlowMeter.vue +356 -0
- package/src/components/revenue/comprehen/ComprehenOperation/newchangemeter/CorrectionMeter.vue +148 -0
- package/src/components/revenue/comprehen/SpecialUser/BlackList/BlackUserList.vue +136 -0
- package/src/components/revenue/recordMainten/sellinggas/AddWarehousemain.vue +65 -0
- package/src/components/revenue/recordMainten/sellinggas/MeterOperateAdd.vue +483 -0
- package/src/components/revenue/recordMainten/sellinggas/MeterOperatemain.vue +279 -0
- package/src/components/revenue/recordMainten/sellinggas/MeterOperatemainImport.vue +265 -0
- package/src/components/thirdapply/thirdAdd.vue +289 -0
- package/src/components/thirdapply/thirdList.vue +162 -0
- package/src/components/thirdapply/thirdManage.vue +74 -0
- package/src/components/webMeter/InstructQuery.vue +414 -0
- package/src/components/webMeter/ParamSet/ParamSet.vue +556 -0
- package/src/components/webMeter/ParamSet/ParamSetForm.vue +296 -0
- package/src/components/webMeter/WebUserHand.vue +483 -0
- package/src/components/webMeter/instructionView/NewQueryInstruct.vue +509 -0
- package/src/components/webMeter/instructionView/NewQueryInstructMain.vue +48 -0
- package/src/components/webMeter/webManage/NewMeterList.vue +461 -0
- package/src/filiale/yuncheng/ChangeMeter.vue +1149 -1149
- package/src/filiale/yuncheng/FileManageService.js +469 -469
- package/src/filiale/yuncheng/ParamSetForm.vue +55 -13
- package/src/main.js +1 -1
- package/src/plugins/FileManageServicets.js +214 -0
- package/src/plugins/GetImg.js +53 -0
package/src/components/revenue/comprehen/ComprehenOperation/newchangemeter/CorrectionMeter.vue
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<template xmlns="http://www.w3.org/1999/html">
|
|
2
|
+
<div class="auto" style="overflow:auto;">
|
|
3
|
+
<validator name='v'>
|
|
4
|
+
<form novalidate class="form-horizontal" style="height:500px;">
|
|
5
|
+
<div class="row auto" >
|
|
6
|
+
<div class="col-sm-4 form-group">
|
|
7
|
+
<label for="f_change_operator" class=" font_normal_body">更 正 人</label>
|
|
8
|
+
<input class="input_search" style="width:60%" type="text" v-model="metermessage.f_change_operator" placeholder="更正人">
|
|
9
|
+
</div>
|
|
10
|
+
<div class="col-sm-4 form-group">
|
|
11
|
+
<label for="f_meter_type" class="font_normal_body">新表类型</label>
|
|
12
|
+
<input type="text" class="input_search" style="width: 60%" v-show="false" v-model="metermessage.f_meter_type" v-validate:metertype='{required: true }'>
|
|
13
|
+
<v-select :value.sync="metermessage.f_meter_type"
|
|
14
|
+
v-model="metermessage.f_meter_type"
|
|
15
|
+
:options='meterType' placeholder='新表类型'
|
|
16
|
+
close-on-select v-ref:metertype style="width: 60%"></v-select>
|
|
17
|
+
</div>
|
|
18
|
+
|
|
19
|
+
<div class="col-sm-4 form-group" :class="[$v.brand.required ? 'has-error' : '']">
|
|
20
|
+
<label for="gasbrand" class="font_normal_body">新表品牌</label>
|
|
21
|
+
<input type="text" class="input_search" style="width:60%" v-show="false" v-model="metermessage.gasbrand" v-validate:brand='{required: true }'>
|
|
22
|
+
<v-select :value.sync="metermessage.gasbrand" :options='getMeterBrands(metermessage.f_meter_type)' placeholder='新表品牌' close-on-select
|
|
23
|
+
search v-model='metermessage.gasbrand' v-ref:brand></v-select>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="col-sm-4 form-group" :class="[$v.model.required ? 'has-error' : '']">
|
|
26
|
+
<label for="gasmodel" class="font_normal_body">新表型号</label>
|
|
27
|
+
<input type="text" class="input_search" style="width:60%" v-show="false" v-model="metermessage.gasmodel" v-validate:model='{required: true }'>
|
|
28
|
+
<v-select :value.sync="metermessage.gasmodel" :options='metermessage.gasbrand[0] ? metermessage.gasbrand[0].gasmodel : [] ' placeholder='新表型号' close-on-select
|
|
29
|
+
v-model='metermessage.gasmodel' :disabled= 'metermessage.gasbrand.length === 0 ' v-ref:model></v-select>
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
</div>
|
|
33
|
+
<div class="row auto" >
|
|
34
|
+
<div class="row auto" >
|
|
35
|
+
<div class="col-sm-12">
|
|
36
|
+
<label class="font_normal_body ">备 注</label>
|
|
37
|
+
<textarea class="input_textarea" rows="3" style="width:87%;" v-model="metermessage.f_comments"></textarea>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
<div style="text-align:right;height:auto;">
|
|
41
|
+
<button class="button_search" type="button" @click="confirm()" :disabled="!$v.valid">确认</button>
|
|
42
|
+
<button class="button_clear" type="button" @click="clean()" >取消</button>
|
|
43
|
+
</div>
|
|
44
|
+
</div>
|
|
45
|
+
<div class="row auto">
|
|
46
|
+
<div class="alert alert-warning" role="alert" style="color:darkred">
|
|
47
|
+
<dl>
|
|
48
|
+
<dt style="font-size:18px;line-height: 30px;"><span class="glyphicon glyphicon-alert"></span> 更正注意::</dt>
|
|
49
|
+
<dd style="line-height:30px;"> 1. 本次更正只影响当前表具的表品牌和表类型!</dd>
|
|
50
|
+
<dd style="line-height:30px;"> 2. 请在确认表具是否需要更新,本次更新不涉及补气等操作!</dd>
|
|
51
|
+
</dl>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</form>
|
|
55
|
+
</validator>
|
|
56
|
+
|
|
57
|
+
</div>
|
|
58
|
+
<upload :blodid="blodid" v-if="config.showupload" isremark="true" fusetype="更正表品牌"></upload>
|
|
59
|
+
</template>
|
|
60
|
+
<script>
|
|
61
|
+
|
|
62
|
+
import { HttpResetClass } from 'vue-client'
|
|
63
|
+
let getbrand = function(self){
|
|
64
|
+
self.meterbrands = self.$GetSaleParam.getGasbrand();
|
|
65
|
+
}
|
|
66
|
+
export default {
|
|
67
|
+
title: '更正表品牌',
|
|
68
|
+
data () {
|
|
69
|
+
return {
|
|
70
|
+
metermessage: {
|
|
71
|
+
f_meter_type: '气量卡表',
|
|
72
|
+
gasbrand: [],
|
|
73
|
+
gasmodel: [],
|
|
74
|
+
f_comments:'',
|
|
75
|
+
f_change_operator: this.$login.f.name
|
|
76
|
+
},
|
|
77
|
+
meterType: [{label:'气量卡表',value:'气量卡表'}],
|
|
78
|
+
meterinfo: false,
|
|
79
|
+
// 控制气量和金额的转换显示
|
|
80
|
+
changeType: '',
|
|
81
|
+
config: {
|
|
82
|
+
showupload:false, //
|
|
83
|
+
dispatch: false //是否派工
|
|
84
|
+
},
|
|
85
|
+
blodid: '',
|
|
86
|
+
errortype:[{label: '请选择', value: ''}, ...this.$appdata.getParam('错误类型')],
|
|
87
|
+
meterbrands:[],
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
props: ['row'],
|
|
91
|
+
ready () {
|
|
92
|
+
this.blodid = this.row.f_userinfo_id;
|
|
93
|
+
getbrand(this);
|
|
94
|
+
},
|
|
95
|
+
methods: {
|
|
96
|
+
getMeterBrands (meterType) {
|
|
97
|
+
let res = []
|
|
98
|
+
if (meterType.length > 0) {
|
|
99
|
+
this.meterbrands.forEach((item) => {
|
|
100
|
+
if (item.value.f_meter_type === meterType[0]) {
|
|
101
|
+
res.push(item)
|
|
102
|
+
}
|
|
103
|
+
})
|
|
104
|
+
}
|
|
105
|
+
return res
|
|
106
|
+
},
|
|
107
|
+
//返回
|
|
108
|
+
clean() {
|
|
109
|
+
this.$dispatch('success', '换流量计', this.row)
|
|
110
|
+
},
|
|
111
|
+
async confirm() {
|
|
112
|
+
this.$showMessage("是否对当前用户进行更新表品牌操作",['confirm','cancel']).then(res=>{
|
|
113
|
+
if(res == 'confirm'){
|
|
114
|
+
this.saveobj();
|
|
115
|
+
}
|
|
116
|
+
})
|
|
117
|
+
|
|
118
|
+
},
|
|
119
|
+
async saveobj() {
|
|
120
|
+
try {
|
|
121
|
+
this.metermessage.f_operator=this.$login.f.name
|
|
122
|
+
this.metermessage.f_operatorid=this.$login.f.id
|
|
123
|
+
this.metermessage.f_orgid=this.$login.f.orgid
|
|
124
|
+
this.metermessage.f_orgname=this.$login.f.orgs
|
|
125
|
+
this.metermessage.f_depid=this.$login.f.depids
|
|
126
|
+
this.metermessage.f_depname=this.$login.f.deps
|
|
127
|
+
this.metermessage.f_zoneid = this.$login.f.zoneid
|
|
128
|
+
this.metermessage.f_zones = this.$login.f.zones
|
|
129
|
+
let data={
|
|
130
|
+
model:this.metermessage,
|
|
131
|
+
old:this.row,
|
|
132
|
+
}
|
|
133
|
+
let meterinfo = await this.$resetpost('rs/logic/correctionmeter', data, {
|
|
134
|
+
resolveMsg: null,
|
|
135
|
+
rejectMsg: '更正气表品牌失败!!!'
|
|
136
|
+
});
|
|
137
|
+
this.$showAlert('更正气表品牌成功','success',2000);
|
|
138
|
+
this.row.f_userfiles_id=meterinfo.data.new_userfiles_id
|
|
139
|
+
this.$dispatch('success')
|
|
140
|
+
} catch (error) {
|
|
141
|
+
console.log('抛出的错误。。', error)
|
|
142
|
+
this.$showAlert(error, 'danger', 2000)
|
|
143
|
+
this.$dispatch('refresh')
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
</script>
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div @keyup.enter="search" class="flex-auto" style="flex:1;">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
4
|
+
<criteria @condition-changed='$parent.selfSearch' partial='criteria' v-ref:cri>
|
|
5
|
+
<div class="form-horizontal select-overspread container-fluid auto" novalidate partial>
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div :class="$parent.$parent.style" >
|
|
8
|
+
<label class="font_normal_body">公  司</label>
|
|
9
|
+
<res-select
|
|
10
|
+
:initresid='$parent.$parent.curorgid'
|
|
11
|
+
@res-select="$parent.$parent.getorg"
|
|
12
|
+
is-mul="false"
|
|
13
|
+
restype='organization'
|
|
14
|
+
>
|
|
15
|
+
</res-select>
|
|
16
|
+
</div>
|
|
17
|
+
<div :class="$parent.$parent.style">
|
|
18
|
+
<label class="font_normal_body">用户编号</label>
|
|
19
|
+
<input class="input_search" condition="f_userinfo_code like '{}%'" placeholder="用户编号" style="width:60%"
|
|
20
|
+
style="width: 90px"
|
|
21
|
+
type="text" v-model="model.ename"
|
|
22
|
+
/>
|
|
23
|
+
</div>
|
|
24
|
+
<div :class="$parent.$parent.style">
|
|
25
|
+
<label class="font_normal_body">用户姓名</label>
|
|
26
|
+
<input class="input_search" condition="f_user_name like '%{}%'" placeholder="用户姓名" style="width:60%" style="width: 90px"
|
|
27
|
+
type="text" v-model="model.name"
|
|
28
|
+
/>
|
|
29
|
+
</div>
|
|
30
|
+
<div :class="$parent.$parent.style" v-if="!$parent.$parent.downshow&&!$parent.$parent.$parent.isdetail">
|
|
31
|
+
<label class="font_normal_body">电  话</label>
|
|
32
|
+
<input :size="model.f_user_phone ? model.f_user_phone.length : 2" class="input_search" condition="f_user_phone = '{}'" placeholder='电话' style="width:60%"
|
|
33
|
+
type="text"
|
|
34
|
+
v-model="model.f_user_phone">
|
|
35
|
+
</div>
|
|
36
|
+
<div :class="$parent.$parent.style" v-if="!$parent.$parent.downshow&&!$parent.$parent.$parent.isdetail">
|
|
37
|
+
<label class="font_normal_body">地  址</label>
|
|
38
|
+
<input :size="model.f_address ? model.f_address.length * 2 : 4" class="input_search" condition="f_address like '%{}%'" placeholder='用户地址' style="width:60%"
|
|
39
|
+
type="text"
|
|
40
|
+
v-model="model.f_address">
|
|
41
|
+
</div>
|
|
42
|
+
<div class="form-group col-sm-3 button-range" style="float: left">
|
|
43
|
+
<button @click="$parent.$parent.search()" class="button_search button_spacing" style="width:80px;margin-left:30px;" v-el:cx>查询</button>
|
|
44
|
+
|
|
45
|
+
<div :class="{'button_shrink_top':$parent.$parent.downshow,'button_shrink_bottom':!$parent.$parent.downshow}" @click="$parent.$parent.downshow=!$parent.$parent.downshow" class="button_spacing"
|
|
46
|
+
style="float: right" v-if="$parent.$parent.$parent.isdetail"></div>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
<div class="row" v-if="$parent.$parent.downshow">
|
|
50
|
+
<div :class="$parent.$parent.style">
|
|
51
|
+
<label class="font_normal_body">电  话</label>
|
|
52
|
+
<input :size="model.f_user_phone ? model.f_user_phone.length : 2" class="input_search" condition="f_user_phone = '{}'" placeholder='电话' style="width:60%"
|
|
53
|
+
type="text"
|
|
54
|
+
v-model="model.f_user_phone">
|
|
55
|
+
</div>
|
|
56
|
+
<div :class="$parent.$parent.style">
|
|
57
|
+
<label class="font_normal_body">地  址</label>
|
|
58
|
+
<input :size="model.f_address ? model.f_address.length * 2 : 4" class="input_search" condition="f_address like '%{}%'" placeholder='用户地址' style="width:60%"
|
|
59
|
+
type="text"
|
|
60
|
+
v-model="model.f_address">
|
|
61
|
+
</div>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
</div>
|
|
65
|
+
</criteria>
|
|
66
|
+
<data-grid :model="model" class="list_area table_sy" partial='list' v-ref:grid>
|
|
67
|
+
<template partial='head'>
|
|
68
|
+
<tr>
|
|
69
|
+
<th style="text-align: center; ">序号</th>
|
|
70
|
+
<th style="text-align: center;">用户编号</th>
|
|
71
|
+
<th style="text-align: center;">姓名</th>
|
|
72
|
+
<th style="text-align: center;">电话</th>
|
|
73
|
+
<th style="text-align: center;">公司</th>
|
|
74
|
+
<th style="text-align: center;">地址</th>
|
|
75
|
+
</tr>
|
|
76
|
+
</template>
|
|
77
|
+
<template partial='body'>
|
|
78
|
+
|
|
79
|
+
<td style="text-align: center;">{{$index+1}}</td>
|
|
80
|
+
<td style="text-align: center;">{{row.f_userinfo_code}}</td>
|
|
81
|
+
<td style="text-align: center;">{{row.f_user_name}}</td>
|
|
82
|
+
<td style="text-align: center;">{{row.f_user_phone}}</td>
|
|
83
|
+
<td style="text-align:center"><nobr>{{row.f_orgname}}</nobr></td>
|
|
84
|
+
<td style="text-align: center;">{{row.f_address}}</td>
|
|
85
|
+
</template>
|
|
86
|
+
<template partial='foot'></template>
|
|
87
|
+
</data-grid>
|
|
88
|
+
</criteria-paged>
|
|
89
|
+
</div>
|
|
90
|
+
</template>
|
|
91
|
+
|
|
92
|
+
<script>
|
|
93
|
+
|
|
94
|
+
import {PagedList} from 'vue-client'
|
|
95
|
+
import Vue from 'vue'
|
|
96
|
+
export default {
|
|
97
|
+
data () {
|
|
98
|
+
return {
|
|
99
|
+
model: new PagedList('rs/sql/sale_getBlackUserList', 20),
|
|
100
|
+
// 公司下拉
|
|
101
|
+
curorgid: [this.$login.f.orgid],
|
|
102
|
+
f_filialeid:this.$login.f.orgid
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
ready () {
|
|
106
|
+
},
|
|
107
|
+
methods: {
|
|
108
|
+
search () {
|
|
109
|
+
this.$refs.paged.$refs.cri.search()
|
|
110
|
+
this.$dispatch('search')
|
|
111
|
+
},
|
|
112
|
+
getorg (val) {
|
|
113
|
+
this.f_orgid = this.$login.convertToIn(val)
|
|
114
|
+
this.f_filialeid = this.$login.convertToIn(val)
|
|
115
|
+
},
|
|
116
|
+
selfSearch (args) {
|
|
117
|
+
|
|
118
|
+
if (!this.f_orgid) {
|
|
119
|
+
this.getorg([this.$login.f.orgid])
|
|
120
|
+
}
|
|
121
|
+
if(!this.f_orgid){
|
|
122
|
+
this.f_orgid = `('${this.$login.f.orgid}')`
|
|
123
|
+
}
|
|
124
|
+
console.log('查询。。。', this.f_orgid)
|
|
125
|
+
if (this.f_orgid) {
|
|
126
|
+
// args.condition = `${args.condition} and s.f_filialeid in ${this.f_orgid}`
|
|
127
|
+
args.condition = `${args.condition} and i.f_orgid in ${this.f_orgid}`
|
|
128
|
+
}
|
|
129
|
+
this.model.search(args.condition, args.model)
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
},
|
|
133
|
+
watch: {
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
</script>
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="auto">
|
|
3
|
+
<validator name='v'>
|
|
4
|
+
<form novalidate class="form-horizontal">
|
|
5
|
+
<p class="bg-info text-center" style="padding: 8px;font-size: 20px">操作记录</p>
|
|
6
|
+
<!-- <data-grid :model="inData" v-ref:grid partial='list'>
|
|
7
|
+
<template partial='head'>-->
|
|
8
|
+
<table style="width: 100%" class="table table-bordered">
|
|
9
|
+
<thead>
|
|
10
|
+
<tr>
|
|
11
|
+
<th style="text-align: center">序号</th>
|
|
12
|
+
<th style="text-align: center">修改内容</th>
|
|
13
|
+
<th style="text-align: center">变更前</th>
|
|
14
|
+
<th style="text-align: center">变更后</th>
|
|
15
|
+
<th style="text-align: center">状态</th>
|
|
16
|
+
<th style="text-align: center">修改时间</th>
|
|
17
|
+
<th style="text-align: center">操作人</th>
|
|
18
|
+
</tr>
|
|
19
|
+
</thead>
|
|
20
|
+
<tbody>
|
|
21
|
+
<tr v-for="row in recordlist">
|
|
22
|
+
<td style="text-align: center;">{{$index + 1}}</td>
|
|
23
|
+
<td style="text-align: center;">{{row.chinesename}}</td>
|
|
24
|
+
<td style="text-align: center;">{{row.oldvalue}}</td>
|
|
25
|
+
<td style="text-align: center;">{{row.newvalue}}</td>
|
|
26
|
+
<td style="text-align: center;">{{row.state}}</td>
|
|
27
|
+
<td style="text-align: center;">{{row.modifitime}}</td>
|
|
28
|
+
<td style="text-align: center;">{{row.operator}}</td>
|
|
29
|
+
</tr>
|
|
30
|
+
</tbody>
|
|
31
|
+
</table>
|
|
32
|
+
</form>
|
|
33
|
+
</validator>
|
|
34
|
+
</div>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<script>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
export default {
|
|
41
|
+
name: 'addwarehouse',
|
|
42
|
+
|
|
43
|
+
data () {
|
|
44
|
+
return {
|
|
45
|
+
inData: [],
|
|
46
|
+
obj: {},
|
|
47
|
+
userid: this.$login.f.id
|
|
48
|
+
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
props: {
|
|
52
|
+
recordlist: Array
|
|
53
|
+
},
|
|
54
|
+
created () {
|
|
55
|
+
},
|
|
56
|
+
ready () {
|
|
57
|
+
},
|
|
58
|
+
methods: {
|
|
59
|
+
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
</script>
|
|
63
|
+
|
|
64
|
+
<style lang="less">
|
|
65
|
+
</style>
|