Browse Source

专家转账接口

liangpeile 1 năm trước cách đây
mục cha
commit
b7c51cb631

+ 59 - 1
medical_history-vue/src/views/admin/AdminSpecialistUserList.vue

@@ -102,6 +102,8 @@
 
         <span slot="action" slot-scope="text, record">
           <a @click="handleEdit(record)">编辑</a>
+          <a-divider type="vertical" />
+          <a @click="giveMoney(record)">转账</a>
 
           <a-divider type="vertical" />
           <a-dropdown>
@@ -148,6 +150,29 @@
       </a-row>
     </j-modal>
 
+    <j-modal
+      title="转账"
+      :width="width"
+      :visible="visiblezzMoney"
+      switchFullscreen
+      @ok="handleOkMoney"
+      :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
+      @cancel="handleCancelzz"
+      cancelText="关闭">
+      <a-row>
+        <a-col :span="24" >
+          <a-form-model-item label="金额" :labelCol="labelCol" :wrapperCol="wrapperCol"  prop="money" >
+            <a-input type="number" v-model="money" placeholder="请输入金额"></a-input>
+          </a-form-model-item>
+        </a-col>
+        <a-col :span="24">
+          <a-form-model-item label="备注" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="notes">
+            <a-input type="input" v-model="notes" placeholder="请输入备注"></a-input>
+          </a-form-model-item>
+        </a-col>
+      </a-row>
+    </j-modal>
+
 
     <admin-specialist-user-modal ref="modalForm" @ok="modalFormOk"></admin-specialist-user-modal>
   </a-card>
@@ -172,9 +197,12 @@
         description: '专家用户管理管理页面',
         password: '',
         confirmpassword: '',
+        money: '',
+        notes: '',
         userId: '',
         userPhone: '',
         visiblezz: false,
+        visiblezzMoney: false,
         labelCol: {
           xs: { span: 24 },
           sm: { span: 5 },
@@ -259,7 +287,9 @@
           deleteBatch: "/adminSpecialistUser/adminUser/deleteBatch",
           exportXlsUrl: "/adminSpecialistUser/adminUser/exportXls",
           importExcelUrl: "/adminSpecialistUser/adminUser/importExcel",
-          updatePassWord: '/adminSpecialistUser/adminUser/updatePassWord'
+          updatePassWord: '/adminSpecialistUser/adminUser/updatePassWord',
+          giveMoney: '/adminDoctorUser/adminUser/giveMoney'
+
 
         },
         dictOptions:{},
@@ -285,10 +315,18 @@
         this.userPhone = phone
         this.visiblezz = true
       },
+      giveMoney(record) {
+        this.userId =record.id
+        this.money = record.money
+        this.notes = record.notes
+        this.visiblezzMoney = true
+      },
 
       closezz() {
         this.$emit('close')
         this.visiblezz = false
+        this.visiblezzMoney = false
+
       },
       handleOkzz() {
         var that =this;
@@ -303,6 +341,26 @@
         }).finally(() => {
         })
         this.visiblezz = false
+        this.visiblezzMoney = false
+      },
+      handleOkMoney(record) {
+        var that = this
+        httpAction(that.url.giveMoney, {
+          id: that.userId,
+          money: that.money,
+          notes: that.notes,
+        }, 'post').then((res) => {
+          if (res.success) {
+            that.$message.success(res.message)
+            that.$emit('ok')
+            // that.loadData()
+          } else {
+            that.$message.warning(res.message)
+          }
+        }).finally(() => {
+        })
+        this.visiblezz = false
+        this.visiblezzMoney = false
       },
       initDictConfig(){
       },

+ 12 - 12
medical_history/jeecg-boot-module-system/src/main/java/org/jeecg/modules/adminuser/controller/AdminDoctorUserController.java

@@ -296,18 +296,18 @@ public class AdminDoctorUserController extends JeecgController<AdminUser, IAdmin
         return adminTransferAccountsService.notifyUrl(requestId,data,mess,timestamp,sign,sign_type);
     }
 
-    @ApiOperation(value = "云账户批量支付接口信息存储", notes = "云账户批量支付接口信息存储")
-    @PostMapping(value = "yzhAddBatch")
-    public String  yzhAddBatch(@RequestHeader("dealer-id") String dealerId,
-                             @RequestHeader("request-id") String requestId,
-                             @RequestParam(name = "data", required = true) String data,
-                             @RequestParam(name = "mess", required = true) String mess,
-                             @RequestParam(name = "timestamp", required = true) String timestamp,
-                             @RequestParam(name = "sign", required = true) String sign,
-                             @RequestParam(name = "sign_type", required = true) String sign_type,
-                             HttpServletRequest request) {
-        return adminTransferAccountsService.yzhAddBatch(requestId,data,mess,timestamp,sign,sign_type);
-    }
+//    @ApiOperation(value = "云账户批量支付接口信息存储", notes = "云账户批量支付接口信息存储")
+//    @PostMapping(value = "yzhAddBatch")
+//    public String  yzhAddBatch(@RequestHeader("dealer-id") String dealerId,
+//                             @RequestHeader("request-id") String requestId,
+//                             @RequestParam(name = "data", required = true) String data,
+//                             @RequestParam(name = "mess", required = true) String mess,
+//                             @RequestParam(name = "timestamp", required = true) String timestamp,
+//                             @RequestParam(name = "sign", required = true) String sign,
+//                             @RequestParam(name = "sign_type", required = true) String sign_type,
+//                             HttpServletRequest request) {
+//        return adminTransferAccountsService.yzhAddBatch(requestId,data,mess,timestamp,sign,sign_type);
+//    }
 
 
 

+ 2 - 2
medical_history/jeecg-boot-module-system/src/main/java/org/jeecg/modules/adminuser/service/impl/AdminUserServiceImpl.java

@@ -71,7 +71,7 @@ public class AdminUserServiceImpl extends ServiceImpl<AdminUserMapper, AdminUser
     private String broker_id;
 
     @Value("${ip.ip}")
-    private String ip;
+    private String host;
 
     private static YzhConfig config = Config.getYzhConfig();
     private static ApiUserSignServiceClient client = new ApiUserSignServiceClient(config);
@@ -149,7 +149,7 @@ public class AdminUserServiceImpl extends ServiceImpl<AdminUserMapper, AdminUser
         request.setPay(String.valueOf(adminUser1.getMoney()));
         request.setPayRemark(adminUser1.getNotes());
 
-        request.setNotifyUrl(ip+"/adminDoctorUser/adminUser/notifyUrl");
+        request.setNotifyUrl(host+"/adminDoctorUser/adminUser/notifyUrl");
         YzhResponse<CreateBankpayOrderResponse> response = null;
         try {
             String requestId = BaseUtil.getRandomStr("requestId");

+ 1 - 1
medical_history/jeecg-boot-module-system/src/main/resources/application-dev.yml

@@ -382,7 +382,7 @@ yzh:
   rsa_public_key: MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDTj9YQ1H51L0IWV6mHa5TasGV7PF1VJu8RniVcGYkcvsyP+d5WzD5UT0BOC8kEJARaPvGTkCnfM36HKtnMHGhb4PIHUc12qb9LN030XQwZBRXGDbODq2m4gXii4dFWgBSg24eBCMAV0ZOuJayNB9M33GjLhXs1FQI2v4sZ0pqLwQIDAQAB
 ip:
 #  测试地址
-  ip: http://59.110.230.108:10001
+  host: http://59.110.230.108:10001
 #  正式地址
 #  ip: http://47.96.249.184:10001