|
@@ -139,6 +139,22 @@
|
139
|
139
|
<template slot-scope="scope">{{scope.row.cvlserv_pay.toFixed(2)}}</template>
|
140
|
140
|
</el-table-column>
|
141
|
141
|
|
|
142
|
+ <el-table-column align="center" prop="wechat_pay" label="发票号码">
|
|
143
|
+ <template slot-scope="scope" style="width: 100px">
|
|
144
|
+ <el-input v-model="scope.row.fa_piao_number" oninput="value=value.replace(/[^0-9.]/g,'')"></el-input>
|
|
145
|
+ <el-button size="small" @click="change(scope.row.id,scope.row.fa_piao_number,'fa_piao_number')">修改</el-button>
|
|
146
|
+ </template>
|
|
147
|
+ </el-table-column>
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+ <el-table-column align="center" prop="wechat_pay" label="发票编号">
|
|
151
|
+ <template slot-scope="scope" style="width: 100px">
|
|
152
|
+ <el-input v-model="scope.row.fa_piao_code" oninput="value=value.replace(/[^0-9.]/g,'')"></el-input>
|
|
153
|
+ <el-button size="small" @click="change(scope.row.id,scope.row.fa_piao_code,'fa_piao_code')">修改</el-button>
|
|
154
|
+ </template>
|
|
155
|
+ </el-table-column>
|
|
156
|
+
|
|
157
|
+
|
142
|
158
|
<el-table-column align="center" prop="wechat_pay" label="微信支付">
|
143
|
159
|
<template slot-scope="scope" style="width: 100px">
|
144
|
160
|
<el-input v-model="scope.row.wechat_pay" oninput="value=value.replace(/[^0-9.]/g,'')"></el-input>
|
|
@@ -284,6 +300,17 @@
|
284
|
300
|
<template slot-scope="scope">{{scope.row.cvlserv_pay.toFixed(2)}}</template>
|
285
|
301
|
</el-table-column>
|
286
|
302
|
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+ <el-table-column align="center" prop="wechat_pay" label="发票号码">
|
|
306
|
+ <template slot-scope="scope">{{scope.row.fa_piao_number}}</template>
|
|
307
|
+ </el-table-column>
|
|
308
|
+
|
|
309
|
+ <el-table-column align="center" prop="wechat_pay" label="发票编号">
|
|
310
|
+ <template slot-scope="scope">{{scope.row.fa_piao_code}}</template>
|
|
311
|
+ </el-table-column>
|
|
312
|
+
|
|
313
|
+
|
287
|
314
|
<el-table-column align="center" prop="wechat_pay" label="微信支付">
|
288
|
315
|
<template slot-scope="scope">{{scope.row.wechat_pay}}</template>
|
289
|
316
|
|