Commit 99347a6a by liang ce

测试

parent f1816078
<template> <template>
<a-spin :spinning="spinning">
<div class="AccountManagement"> <div class="AccountManagement">
<div class="searchBox"> <div class="searchBox">
<a-input placeholder="选择成员" @click="choosePeople" style="width: 120px"/> <a-input placeholder="选择成员" @click="choosePeople" style="width: 120px"/>
...@@ -98,6 +99,7 @@ ...@@ -98,6 +99,7 @@
</a-form> </a-form>
</a-modal> </a-modal>
</div> </div>
</a-spin>
</template> </template>
<script> <script>
...@@ -110,6 +112,7 @@ export default { ...@@ -110,6 +112,7 @@ export default {
components: {}, components: {},
data () { data () {
return { return {
spinning: true,
visible: false, visible: false,
visible2: false, visible2: false,
formLayout: 'horizontal', formLayout: 'horizontal',
...@@ -321,6 +324,7 @@ export default { ...@@ -321,6 +324,7 @@ export default {
// 内部充值接口 // 内部充值接口
internalRecharge () { internalRecharge () {
let _that = this let _that = this
this.spinning = !this.spinning
this.rechargeData.orderPrice = this.form.getFieldsValue().orderPrice this.rechargeData.orderPrice = this.form.getFieldsValue().orderPrice
this.rechargeData.remark = this.form.getFieldsValue().remark this.rechargeData.remark = this.form.getFieldsValue().remark
this.rechargeData.orgId = localStorage.getItem('orgId') this.rechargeData.orgId = localStorage.getItem('orgId')
...@@ -330,6 +334,7 @@ export default { ...@@ -330,6 +334,7 @@ export default {
this.visible = false this.visible = false
this.form.resetFields() this.form.resetFields()
this.$message.success('充值已提交,审批中请耐心等待') this.$message.success('充值已提交,审批中请耐心等待')
this.spinning = !this.spinning
} else { } else {
this.$message.success(res.data.message) 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