lshcom 1.0.26 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/assets/css/global.scss +3 -2
- package/src/common/lixinghang-api.js +5 -0
- package/src/common/lixinghang-url.js +2 -0
- package/src/components/account-type-select/account-type-select.vue +1 -1
- package/src/components/iris-card-modal/ApplicableProduct.vue +3 -0
- package/src/components/portrayal/portrayal.vue +1 -0
- package/src/components/sidebar/SidebarNavLink.vue +1 -1
package/package.json
CHANGED
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
.f-fs#{$i*2} { font-size: #{$i*2}px }
|
|
92
92
|
}
|
|
93
93
|
// 边距 填充
|
|
94
|
-
@for $i from 1 through
|
|
94
|
+
@for $i from 1 through 6 {
|
|
95
95
|
.f-m#{$i*5} { margin: #{$i*5}px }
|
|
96
96
|
.f-mt#{$i*5} { margin-top: #{$i*5}px }
|
|
97
97
|
.f-mr#{$i*5} { margin-right: #{$i*5}px }
|
|
@@ -107,4 +107,5 @@
|
|
|
107
107
|
.u-ti{display:flex;align-items:center;justify-content:space-between}
|
|
108
108
|
.u-center{display:flex;align-items:center;justify-content:center}
|
|
109
109
|
.u-par{position:absolute;top:12px;right:-15px;z-index:1;}
|
|
110
|
-
.u-vh1{height:calc(100vh - 200px)}
|
|
110
|
+
.u-vh1{height:calc(100vh - 200px)}
|
|
111
|
+
.f-borerb-c{border-bottom: 1px solid #ccc}
|
|
@@ -515,6 +515,8 @@ export default {
|
|
|
515
515
|
getBatchCardInfoByCode: `${common.isdev()}/v2/cardcoupons/card/getBatchCardInfoByCode`, // 根据卡券号查询卡券信息
|
|
516
516
|
batchCardUploadAttachments: `${common.isdev()}/systemFoundation_service/v1/fileSys/file/batchCardUploadAttachments`, // 批量上传绑定文件关系
|
|
517
517
|
checkOaBatchCardInfo: `${common.isdev()}/v1/card/oa/checkOaBatchCardInfo.htm`, // 校验OA批量发放卡券
|
|
518
|
+
//查询作废的卡券详情
|
|
519
|
+
getOriginalCardInfo: `${common.isdev()}/v1/replacement/card/getOriginalCardInfo`,
|
|
518
520
|
},
|
|
519
521
|
giftReason: {
|
|
520
522
|
getCardGiftReaAccNoMappingInfo: `${common.isdev()}/v1/cardRule/cardGiftReaAccNoMappingInfo/get.htm`,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="row">
|
|
3
|
-
<!-- 自费 -->
|
|
3
|
+
<!-- 自费3333 -->
|
|
4
4
|
<div class="col-md-6">
|
|
5
5
|
<b-form-select v-model="params.accountTypeCode" :options="_accountTypeList" :disabled="disabled"
|
|
6
6
|
v-if="params.accountTypeCode != 'CountingCard' && params.accountTypeCode != 'DepositUse'" @input="accountTypeChange">
|