Commit 99347a6a by liang ce

测试

parent f1816078
<template>
<a-spin :spinning="spinning">
<div class="AccountManagement">
<div class="searchBox">
<a-input placeholder="选择成员" @click="choosePeople" style="width: 120px"/>
......@@ -98,6 +99,7 @@
</a-form>
</a-modal>
</div>
</a-spin>
</template>
<script>
......@@ -110,6 +112,7 @@ export default {
components: {},
data () {
return {
spinning: true,
visible: false,
visible2: false,
formLayout: 'horizontal',
......@@ -321,6 +324,7 @@ export default {
// 内部充值接口
internalRecharge () {
let _that = this
this.spinning = !this.spinning
this.rechargeData.orderPrice = this.form.getFieldsValue().orderPrice
this.rechargeData.remark = this.form.getFieldsValue().remark
this.rechargeData.orgId = localStorage.getItem('orgId')
......@@ -330,6 +334,7 @@ export default {
this.visible = false
this.form.resetFields()
this.$message.success('充值已提交,审批中请耐心等待')
this.spinning = !this.spinning
} else {
this.$message.success(res.data.message)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment