From cb864a7f08b486b72c829165fd1414d722837b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=AF=85?= <1335909236@qq.com> Date: Thu, 4 Dec 2025 16:59:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E5=88=86=E8=B4=A6=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E5=92=8C=E5=90=88=E5=90=8C=E6=9F=A5=E8=AF=A2=E5=8A=9F?= =?UTF-8?q?=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/contract.js | 1 + .../customerService/applyLedgerMer/index.css | 268 +++++++++++++++ .../customerService/applyLedgerMer/index.vue | 308 ++++++++++++++++++ packages/customerService/sign/index.css | 13 + packages/customerService/sign/index.vue | 13 +- packages/storeManagement/index/index.vue | 5 + pages.json | 7 + 7 files changed, 610 insertions(+), 5 deletions(-) create mode 100644 packages/customerService/applyLedgerMer/index.css create mode 100644 packages/customerService/applyLedgerMer/index.vue diff --git a/api/contract.js b/api/contract.js index 3c954af7..fbe98699 100644 --- a/api/contract.js +++ b/api/contract.js @@ -5,4 +5,5 @@ export const apiArr = { applyLedgerReceiver: "/api/v2/wechat/lkl-split-business/apply-ledger-receiver", //分账接收方创建申请 applyBind: "/api/v2/wechat/lkl-split-business/apply-bind", //分账关系绑定申请 addMer: "/api/v2/wechat/lkl-split-business/add-mer", //商户进件 + applyLedgerMer: "/api/v2/wechat/lkl-split-business/apply-ledger-mer", //商户分账业务开通申请 }; diff --git a/packages/customerService/applyLedgerMer/index.css b/packages/customerService/applyLedgerMer/index.css new file mode 100644 index 00000000..ac834248 --- /dev/null +++ b/packages/customerService/applyLedgerMer/index.css @@ -0,0 +1,268 @@ +/* addMer/index.css */ +page { + padding-bottom: 0rpx; +} + +.establish-acceptor-container { + padding: 0 30rpx; + min-height: 100vh; +} + +.acceptor-form { + background-color: #fff; + border-radius: 12rpx; + padding: 30rpx; +} + +.form-section { + margin-bottom: 40rpx; +} + +.section-title { + font-size: 32rpx; + font-weight: 500; + color: #333; + margin-bottom: 24rpx; + padding-bottom: 12rpx; + border-bottom: 1px solid #eee; +} + +.form-item { + margin-bottom: 32rpx; + position: relative; +} + +.form-label { + display: block; + font-size: 28rpx; + color: #666; + margin-bottom: 12rpx; +} + +.form-label.required::after { + content: '*'; + color: #e64340; + margin-left: 4rpx; +} + +.form-input { + width: 100%; + height: 88rpx; + padding: 0 24rpx; + font-size: 28rpx; + border: 1px solid #ddd; + border-radius: 8rpx; + box-sizing: border-box; + background-color: #fff; +} + +.form-input:focus { + border-color: #007aff; + outline: none; +} + +.form-input::placeholder { + color: #999; +} + +/* 弹窗样式 */ +.popup { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + display: flex; + justify-content: center; + align-items: center; + z-index: 999; +} + +.popup-content { + width: 80%; + max-height: 70vh; + background-color: #fff; + border-radius: 10rpx; + overflow: hidden; + display: flex; + flex-direction: column; +} + +.popup-title { + padding: 30rpx; + text-align: center; + font-size: 36rpx; + font-weight: bold; + border-bottom: 1rpx solid #eee; +} + +.popup-list { + flex: 1; + overflow-y: auto; + max-height: 50vh; +} + +.popup-item { + padding: 30rpx; + text-align: center; + border-bottom: 1rpx solid #eee; + font-size: 32rpx; +} + +.popup-item:active { + background-color: #f5f5f5; +} + +.popup-footer { + padding: 20rpx; + border-top: 1rpx solid #eee; +} + +.popup-cancel-btn { + width: 100%; + padding: 0 20rpx; + background-color: #fff; + border: 1rpx solid #ddd; + border-radius: 8rpx; + font-size: 32rpx; + background-color: #007aff; + color: #ffffff; +} + +/* 弹窗选择器样式 */ +.popup-select { + display: flex; + align-items: center; + justify-content: space-between; + padding: 0 24rpx; + border: 1px solid #ddd; + border-radius: 8rpx; + background-color: #fff; + height: 88rpx; + font-size: 28rpx; +} + +/* 附件上传样式 */ +.attachment-section { + margin-top: 20rpx; +} + +.attachment-item { + background-color: #f9f9f9; + border: 1px solid #eee; + border-radius: 8rpx; + padding: 24rpx; + margin-bottom: 24rpx; +} + +.upload-btn { + width: 100%; + height: 80rpx; + background-color: #007aff; + color: #fff; + font-size: 28rpx; + border: none; + border-radius: 8rpx; + margin-top: 16rpx; + cursor: pointer; +} + +.upload-btn:active { + background-color: #0051d5; +} + +.file-info { + margin-top: 16rpx; + padding: 16rpx; + background-color: #e8f4ff; + border-radius: 8rpx; + font-size: 26rpx; + color: #007aff; + display: flex; + justify-content: space-between; + align-items: center; +} + +.delete-btn { + padding: 0rpx 20rpx; + background-color: #e64340; + color: #fff; + border: none; + border-radius: 10rpx; + font-size: 24rpx; + cursor: pointer; + margin-right: 0rpx; +} + +.delete-btn:active { + background-color: #c21f1c; +} + +.add-attachment-btn { + width: 100%; + height: 80rpx; + background-color: #f0f0f0; + color: #666; + font-size: 28rpx; + border-radius: 8rpx; + margin-top: 16rpx; + cursor: pointer; +} + +.add-attachment-btn:active { + background-color: #e0e0e0; +} + +/* 提交按钮样式 */ +.submit-section { + margin-top: 40rpx; + margin-bottom: 20rpx; +} + +.submit-btn { + width: 100%; + height: 80rpx; + background-color: #007aff; + color: #fff; + font-size: 28rpx; + border-radius: 8rpx; + margin-top: 16rpx; + cursor: pointer; + box-shadow: 0 4rpx 12rpx rgba(0, 122, 255, 0.3); +} + +.submit-btn:active { + background-color: #0051d5; + transform: scale(0.98); +} + +.submit-btn:disabled { + background-color: #b8d5ff; + cursor: not-allowed; +} + +/* 输入框错误状态 */ +.form-input.error { + border-color: #e64340; +} + +/* 滚动条样式 */ +::-webkit-scrollbar { + width: 8rpx; + height: 8rpx; +} + +::-webkit-scrollbar-track { + background: #f1f1f1; + border-radius: 4rpx; +} + +::-webkit-scrollbar-thumb { + background: #c1c1c1; + border-radius: 4rpx; +} + +::-webkit-scrollbar-thumb:hover { + background: #a8a8a8; +} \ No newline at end of file diff --git a/packages/customerService/applyLedgerMer/index.vue b/packages/customerService/applyLedgerMer/index.vue new file mode 100644 index 00000000..f6103c95 --- /dev/null +++ b/packages/customerService/applyLedgerMer/index.vue @@ -0,0 +1,308 @@ + + + + + diff --git a/packages/customerService/sign/index.css b/packages/customerService/sign/index.css index f7352437..a0a0ca6a 100644 --- a/packages/customerService/sign/index.css +++ b/packages/customerService/sign/index.css @@ -84,8 +84,14 @@ page { background-size: 24rpx 24rpx; } +.bottom-btn{ + display: flex; + justify-content: space-between; +} + /* 按钮样式 */ .sign-btn, +.submit-btn1, .submit-btn { width: 100%; height: 90rpx; @@ -110,6 +116,13 @@ page { .submit-btn { background-color: #409eff; color: #fff; + margin-left: 5rpx; +} + +.submit-btn1 { + background-color: #ff4016; + color: #fff; + margin-right: 5rpx; } .submit-btn:active { diff --git a/packages/customerService/sign/index.vue b/packages/customerService/sign/index.vue index 21dd4d99..d622cfd7 100644 --- a/packages/customerService/sign/index.vue +++ b/packages/customerService/sign/index.vue @@ -2,7 +2,6 @@

合同申请

-
@@ -103,7 +102,10 @@ - + + + +
@@ -158,7 +160,8 @@ export default { methods: { // 合同查询 ecQuery() { - if (!uni.getStorageSync('ec_apply_id')) { + const storeValue = uni.getStorageSync('storeValue'); + if (!storeValue || !storeValue.ec_apply_id) { uni.showToast({ title: '请先提交申请', icon: 'none' @@ -166,7 +169,7 @@ export default { return; } const params = { - ec_apply_id: uni.getStorageSync('ec_apply_id') + ec_apply_id: storeValue.ec_apply_id } request(apiArr.ecQuery, "POST", params).then(res => { console.log("🚀 ~ res:", res) @@ -253,7 +256,7 @@ export default { icon: 'success' }); // 保存合同申请ID - uni.setStorageSync('ec_apply_id', res.resp_data.ec_apply_id); + uni.setStorageSync('storeValue', { ec_apply_id: res.resp_data.ec_apply_id }); }) }, diff --git a/packages/storeManagement/index/index.vue b/packages/storeManagement/index/index.vue index 61fd0180..753d3dc4 100644 --- a/packages/storeManagement/index/index.vue +++ b/packages/storeManagement/index/index.vue @@ -146,6 +146,11 @@ export default { image: "https://static.hshuishang.com/contract.png", name: "商户进件", url: "/packages/customerService/addMer/index", + }, + { + image: "https://static.hshuishang.com/contract.png", + name: "分账申请", + url: "/packages/customerService/applyLedgerMer/index", } ], walletInfo: {}, diff --git a/pages.json b/pages.json index d7bbbb1e..bdfcfa4e 100644 --- a/pages.json +++ b/pages.json @@ -193,6 +193,13 @@ "navigationBarTitleText": "商户进件", "navigationBarBackgroundColor": "#fff" } + }, + { + "path": "applyLedgerMer/index", + "style": { + "navigationBarTitleText": "商户分账业务开通申请", + "navigationBarBackgroundColor": "#fff" + } } ] },