소스 검색

commit 充值和提现

yu jie 4 년 전
부모
커밋
f53be29de7

+ 1 - 1
src/services/go/ermcp/qhj/index.ts

@@ -125,7 +125,7 @@ export function queryParentAreaList(): Promise<QhjParentAreaList[]> {
 
 /**
  * -- 铂金宝 - 查询所属机构列表
- * 查询客户资料 /Qhj/QueryParentAreaList
+ * 查询客户资料 /Qhj/QueryPickGoods
  * @param req
  */
 export function queryPickGoods(status?: 1 | 2 | 3): Promise<QhjPickGoods[]> {

+ 2 - 2
src/views/platinum/platinum_pick_query/list/tab/compoments/complete_stocking/index.vue

@@ -38,6 +38,7 @@ import {goodsPickupConfirm, goodsPickupOperate, t2bExchConfirmBusiness} from "@/
 import {QhjTradeGoodsPickup} from "@/services/go/ermcp/qhj/interface";
 import {getLongTypeLoginID} from "@/services/bus/login";
 import {getUUID} from "ant-design-vue/es/vc-select/utils/commonUtil";
+import Long from "long";
 
 export default defineComponent({
     name: 'platinum_pick_query_complete_stocking',
@@ -53,12 +54,11 @@ export default defineComponent({
         const loading = ref<boolean>(false);
         function submit() {
             let reqParams: GoodsPickupConfirmReq = {
-                TakeOrderID: props.selectedRow.takeorderid, // uint64 提货单号
+                TakeOrderID: Long.fromString(props.selectedRow.takeorderid.toString()), // uint64 提货单号
                 Auditer: getUserId(), // uint64 审核人
                 CheckRemark: "", // string 审核备注
                 ClientTicket: getUserId().toString(), // string 客户端流水号
             }
-            debugger
             requestResultLoadingAndInfo(goodsPickupConfirm, reqParams, loading, ['完成备货成功', '完成备货失败:']).then(() => {
                 cancel();
                 context.emit('refresh');

+ 4 - 0
src/views/platinum/platinum_recharge_withdrawal_review/list/recharge/compoments/payment/index.vue

@@ -12,6 +12,10 @@
                 type="primary"
                 :loading="loading"
                 @click="submit">确认</a-button>
+        <a-button key="cancel"
+                  type="primary"
+                  :loading="loading"
+                  @click="cancel">关闭</a-button>
     </template>
     <CommomDetail :selectedRow="selectedRow" />
   </a-modal>