Browse Source

提交代码

陈少旭 1 year ago
parent
commit
04d35797b0
1 changed files with 27 additions and 0 deletions
  1. 27 0
      src/xt_pages/outpatientTool/components/settle.vue

+ 27 - 0
src/xt_pages/outpatientTool/components/settle.vue View File

139
           <template slot-scope="scope">{{scope.row.cvlserv_pay.toFixed(2)}}</template>
139
           <template slot-scope="scope">{{scope.row.cvlserv_pay.toFixed(2)}}</template>
140
         </el-table-column>
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
         <el-table-column align="center" prop="wechat_pay" label="微信支付">
158
         <el-table-column align="center" prop="wechat_pay" label="微信支付">
143
           <template slot-scope="scope" style="width: 100px">
159
           <template slot-scope="scope" style="width: 100px">
144
             <el-input v-model="scope.row.wechat_pay" oninput="value=value.replace(/[^0-9.]/g,'')"></el-input>
160
             <el-input v-model="scope.row.wechat_pay" oninput="value=value.replace(/[^0-9.]/g,'')"></el-input>
284
         <template slot-scope="scope">{{scope.row.cvlserv_pay.toFixed(2)}}</template>
300
         <template slot-scope="scope">{{scope.row.cvlserv_pay.toFixed(2)}}</template>
285
       </el-table-column>
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
       <el-table-column align="center" prop="wechat_pay" label="微信支付">
314
       <el-table-column align="center" prop="wechat_pay" label="微信支付">
288
         <template slot-scope="scope">{{scope.row.wechat_pay}}</template>
315
         <template slot-scope="scope">{{scope.row.wechat_pay}}</template>
289
 
316