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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lshcom",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "files": [
5
5
  "src/assets/*",
6
6
  "src/common/*",
@@ -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 4 {
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}
@@ -1562,6 +1562,11 @@ export const liApi = {
1562
1562
  sc(r)
1563
1563
  })
1564
1564
  },
1565
+ getOriginalCardInfo(params, sc) {
1566
+ return axios.post(liUrl.cardSales.getOriginalCardInfo, params).then((r) => {
1567
+ sc(r)
1568
+ })
1569
+ },
1565
1570
 
1566
1571
  },
1567
1572
  giftReason: {
@@ -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">
@@ -164,6 +164,9 @@ import BatchProductRef from './BatchProductRef.vue'
164
164
  }
165
165
  },
166
166
  methods: {
167
+ setList(data){
168
+ this.$refs.EleTable.list = data
169
+ },
167
170
  reset(){
168
171
  this.queryParams = JSON.parse(JSON.stringify(this.queryParamsBase))
169
172
  },
@@ -2731,6 +2731,7 @@ export default {
2731
2731
  this.saveCustomerPhoneNo("");
2732
2732
  this.portrayalVo = {};
2733
2733
  this.vehicleListObj = {};
2734
+ this.name = "";
2734
2735
  this.mobileNo = "";
2735
2736
  this.valueNum = "";
2736
2737
  this.tags = [];
@@ -10,7 +10,7 @@
10
10
  <router-link v-if="isNative == 'livecs'" :to="url" class="nav-link pl7">
11
11
  {{ name }}
12
12
  </router-link>
13
- <a v-else class="nav-link" @click="navLink(url)">
13
+ <a v-else class="nav-link pl7" @click="navLink(url)">
14
14
  {{ name }}
15
15
  </a>
16
16
  </div>