|
@@ -9,7 +9,7 @@
|
|
|
class="searchForm"
|
|
|
@submit="search"
|
|
|
@reset="reset"
|
|
|
- size="small"
|
|
|
+
|
|
|
:model="searchForm">
|
|
|
<el-form-item prop="memberId">
|
|
|
<el-input v-model.trim="searchForm.memberId" clearable
|
|
@@ -37,7 +37,7 @@
|
|
|
<el-button native-type="reset" type="primary">重置</el-button>
|
|
|
</el-form-item>
|
|
|
</save-form>
|
|
|
- <el-button size="small" style="margin-bottom: 20px;" type="primary" v-permission="'adapay/createMember'" @click="onOperationAccount('create')" icon="el-icon-plus">创建账号</el-button>
|
|
|
+ <el-button style="margin-bottom: 20px;" type="primary" v-permission="'adapay/createMember'" @click="onOperationAccount('create')" icon="el-icon-plus">创建账号</el-button>
|
|
|
<div class="tableWrap">
|
|
|
<el-table :data="tableList"
|
|
|
:header-cell-style="{background:'#EDEEF0',color:'#444'}">
|
|
@@ -80,15 +80,15 @@
|
|
|
<el-button v-if="scope.row.status === 'failed'"
|
|
|
v-permission="'adapay/updateMember'"
|
|
|
@click="onOperationAccount('update', scope.row)"
|
|
|
- type="text" size="small">修改</el-button>
|
|
|
+ type="text" >修改</el-button>
|
|
|
<el-button v-if="scope.row.status === 'succeeded'"
|
|
|
v-permission="'adapay/createSettleAccount'"
|
|
|
@click="onUpdateAccount(scope.row)"
|
|
|
- type="text" size="small">修改结算账户</el-button>
|
|
|
+ type="text" >修改结算账户</el-button>
|
|
|
<el-button v-if="scope.row.status === 'succeeded'"
|
|
|
v-permission="'adapay/updateMonthMaxReceipt'"
|
|
|
@click="onMoneyAccount(scope.row)"
|
|
|
- type="text" size="small">设置金额</el-button>
|
|
|
+ type="text" >设置金额</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -108,7 +108,7 @@
|
|
|
:rules="maskRules"
|
|
|
label-width="100px"
|
|
|
label-position="right"
|
|
|
- size="small"
|
|
|
+
|
|
|
ref="maskForm">
|
|
|
<el-form-item label="银行卡号"
|
|
|
prop="cardNo">
|
|
@@ -129,8 +129,8 @@
|
|
|
</el-form>
|
|
|
<span slot="footer"
|
|
|
class="dialog-footer">
|
|
|
- <el-button size="small" @click="zeroVisible = false">取 消</el-button>
|
|
|
- <el-button size="small" type="primary"
|
|
|
+ <el-button @click="zeroVisible = false">取 消</el-button>
|
|
|
+ <el-button type="primary"
|
|
|
@click="addZero('maskForm')">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
@@ -143,7 +143,7 @@
|
|
|
:rules="moneyRules"
|
|
|
label-width="160px"
|
|
|
label-position="right"
|
|
|
- size="small"
|
|
|
+
|
|
|
ref="moneyForm">
|
|
|
<el-form-item label="每日最大收款金额"
|
|
|
prop="monthMaxReceipt">
|
|
@@ -185,8 +185,8 @@
|
|
|
</el-form>
|
|
|
<span slot="footer"
|
|
|
class="dialog-footer">
|
|
|
- <el-button size="small" @click="moneyVisible = false">取 消</el-button>
|
|
|
- <el-button size="small" type="primary"
|
|
|
+ <el-button @click="moneyVisible = false">取 消</el-button>
|
|
|
+ <el-button type="primary"
|
|
|
@click="addMaxMoney('moneyForm')">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|