mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-05 02:20:12 +08:00
update
This commit is contained in:
@@ -207,7 +207,20 @@
|
||||
<el-dialog title="会员充值/扣款" @close="closeUpdateBalance" :visible.sync="openUpdateBalance" width="500px"
|
||||
append-to-body>
|
||||
<p>线下充值本金,客户直接在线下付款给商家</p>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
||||
<el-form-item label="选择运营商">
|
||||
<el-select
|
||||
v-model="queryParams.merchantId"
|
||||
clearable placeholder="请选择运营商"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in merchantList"
|
||||
:key="item.merchantName"
|
||||
:label="item.merchantName"
|
||||
:value="item.merchantId">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="操作类型">
|
||||
<el-radio v-model="type" label="1" border>充值</el-radio>
|
||||
<el-radio v-model="type" label="2" border>扣款</el-radio>
|
||||
@@ -320,10 +333,10 @@ export default {
|
||||
},
|
||||
// 获取运营商列表
|
||||
getMerchantList() {
|
||||
// getMerchantList().then((response) =>{
|
||||
// console.log("response", response)
|
||||
// this.merchantList = response.obj
|
||||
// })
|
||||
getMerchantList().then((response) =>{
|
||||
console.log("response", response)
|
||||
this.merchantList = response.obj
|
||||
})
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
|
||||
Reference in New Issue
Block a user