|
@@ -12,17 +12,17 @@
|
|
|
<view class="scan-hd-header-til">
|
|
|
验证蝴蝶券 {{ticket.length}}/{{resdata.hd_count}}
|
|
|
</view>
|
|
|
- <button class="scan-hd-header-btn" @click="scanCode" type="default"><i class="iconfont iconsaomiao"></i>扫码</button>
|
|
|
+ <!-- <button class="scan-hd-header-btn" @click="scanCode" type="default"><i class="iconfont iconsaomiao"></i>扫码</button> -->
|
|
|
+ </view>
|
|
|
+ <view class="addhd">
|
|
|
+ <input class="addhd-input" v-model="enterHDnumber" placeholder="请输入蝴蝶券号码" type="text" value="" />
|
|
|
+ <button class="addhd-button" @click="enterHD" type="primary">添加</button>
|
|
|
</view>
|
|
|
<view class="scan-hd-list" v-for="(item,index) in ticket" :key="index">
|
|
|
<view class="scan-hd-list-item">
|
|
|
<view class="item-til">蝴蝶券{{index +1}}</view>
|
|
|
<view class="item-con"><input type="text" :value="item" disabled /></view>
|
|
|
</view>
|
|
|
- <!-- <view class="scan-hd-list-item">
|
|
|
- <view class="item-til">蝴蝶券2</view>
|
|
|
- <view class="item-con"><input type="text" value="00220082715372386115" disabled /></view>
|
|
|
- </view> -->
|
|
|
</view>
|
|
|
<view class="scan-hd-tip">还差{{ resdata.hd_count - ticket.length }}张蝴蝶券</view>
|
|
|
</view>
|
|
@@ -105,6 +105,7 @@
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
|
+ // import $wxApi from "../../../wxapi.js";
|
|
|
export default{
|
|
|
components:{
|
|
|
|
|
@@ -123,7 +124,8 @@
|
|
|
roomwindow:'',
|
|
|
orderId:'',//orderId 订单ID,与订单消费码必填其一 如果是电子券则等于 this.id
|
|
|
eticketno:'',//订单消费码,与订单ID必填其一
|
|
|
- ticket:['12340082715372386115','12340082715372386114'],//蝴蝶券编号数组,实体券支付时必填
|
|
|
+ ticket:[],//蝴蝶券编号数组,实体券支付时必填
|
|
|
+ enterHDnumber:'',
|
|
|
writeoff_remark:'',//核销备注
|
|
|
resdata:{},
|
|
|
params:{
|
|
@@ -175,32 +177,119 @@
|
|
|
let day2 = Date.parse(new Date(res.data.departdate.replace(/-/g, '/'))) / 1000;
|
|
|
this.havenight = Math.abs((day1 - day2) / (3600 * 24));
|
|
|
|
|
|
- console.log(JSON.parse(JSON.stringify(res.data)));
|
|
|
+ // console.log(JSON.parse(JSON.stringify(res.data)));
|
|
|
|
|
|
}).catch(err => {
|
|
|
|
|
|
});
|
|
|
},
|
|
|
+ //添加蝴蝶券
|
|
|
+ pushHD(hd){
|
|
|
+
|
|
|
+ let self = this;
|
|
|
+ Array.prototype.pushNoRepeat = function(){
|
|
|
+ for(var i=0; i<arguments.length; i++){
|
|
|
+ var ele = arguments[i];
|
|
|
+ if(this.indexOf(ele) == -1){
|
|
|
+ let codeparames ={
|
|
|
+ token :self.params.token,
|
|
|
+ code:ele
|
|
|
+ };
|
|
|
+ //验证蝴蝶券
|
|
|
+ self.$api.http.post(self.config.apiBaseurl+'hotel/writeoff/verify',codeparames,{
|
|
|
+ header: {
|
|
|
+ Accept:'application/json',
|
|
|
+ Authorization: 'Bearer '+ self.params.token, //注意Bearer后面有一空格
|
|
|
+ }
|
|
|
+ }).then(res =>{
|
|
|
+ if(res.data.state == 'ok'){
|
|
|
+ this.push(ele);
|
|
|
+ }else{
|
|
|
+ uni.showToast({
|
|
|
+ icon:'none',
|
|
|
+ title:res.data.message,
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ console.log(res)
|
|
|
+ }).catch(err =>{
|
|
|
+ console.log(err)
|
|
|
+ });
|
|
|
+ }else{
|
|
|
+ uni.showToast({
|
|
|
+ icon:'none',
|
|
|
+ title:'该券已经添加',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
+ this.ticket.pushNoRepeat(hd);
|
|
|
+
|
|
|
+ },
|
|
|
+ //手动输入蝴蝶券
|
|
|
+ enterHD(){
|
|
|
+ this.pushHD(this.enterHDnumber)
|
|
|
+ },
|
|
|
//扫码蝴蝶券
|
|
|
- scanCode:function(){
|
|
|
- uni.scanCode({
|
|
|
- onlyFromCamera: true,// 只允许通过相机扫码
|
|
|
- success: function (res) {
|
|
|
- console.log('条码类型:' + res.scanType);
|
|
|
- console.log('条码内容:' + res.result);
|
|
|
- }
|
|
|
- });
|
|
|
+ scanCode:function(){
|
|
|
+
|
|
|
+ $wxApi.JSAPI().then(res =>{
|
|
|
+ alert('555'+res)
|
|
|
+ });
|
|
|
+ // alert('1111'+hdcode);
|
|
|
+ // document.write('1111'+hdcode);
|
|
|
+ console.log('$wxApi',$wxApi);
|
|
|
+
|
|
|
+
|
|
|
+ this.pushHD(res.resultStr);
|
|
|
+
|
|
|
+ uni.showToast({
|
|
|
+ icon:'none',
|
|
|
+ title:'暂时无法使用3',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+
|
|
|
+ return;
|
|
|
+
|
|
|
+ // wx.scanQRCode({
|
|
|
+ // needResult: 0, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
|
|
|
+ // scanType: ["qrCode","barCode"], // 可以指定扫二维码还是一维码,默认二者都有
|
|
|
+ // success: function (res) {
|
|
|
+ // var result = res.resultStr; // 当needResult 为 1 时,扫码返回的结果
|
|
|
+ // console.log('scanQRCode',result);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ // uni.scanCode({
|
|
|
+ // onlyFromCamera: true,// 只允许通过相机扫码
|
|
|
+ // success: function (res) {
|
|
|
+ // console.log('条码类型:' + res.scanType);
|
|
|
+ // console.log('条码内容:' + res.result);
|
|
|
+ // }
|
|
|
+ // });
|
|
|
},
|
|
|
|
|
|
|
|
|
//提交
|
|
|
writeoff:function(){
|
|
|
- if(this.hd_type == 1){
|
|
|
+ console.log(this.hd_type);
|
|
|
+ if(this.hd_type == 2){
|
|
|
this.orderId = this.id;
|
|
|
+ if(this.writeoffparams.ticket.length<this.resdata.hd_count){
|
|
|
+ uni.showToast({
|
|
|
+ icon:'none',
|
|
|
+ title:'蝴蝶券不足',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ };
|
|
|
};
|
|
|
this.writeoffparams.token = this.params.token;
|
|
|
this.writeoffparams = Object.assign(this.writeoffparams,{orderId:this.orderId,eticketno:this.eticketno,ticket:this.ticket});
|
|
|
- console.log('this.writeoffparams',this.writeoffparams);
|
|
|
+ // console.log('this.writeoffparams',this.writeoffparams);
|
|
|
this.$api.http.post(this.config.apiBaseurl+'hotel/writeoff/inspection', this.writeoffparams,{
|
|
|
header: {
|
|
|
Accept:'application/json',
|
|
@@ -230,4 +319,9 @@
|
|
|
<style lang="scss" scoped>
|
|
|
page{background-color: $uni-bg-color-grey;}
|
|
|
@import url("/common/css/order.scss");
|
|
|
+.addhd{margin: 40rpx 0;display: flex;justify-content: space-between;}
|
|
|
+.addhd-input,
|
|
|
+.addhd-button{height: 50rpx;line-height: 50rpx;font-size: 28rpx;}
|
|
|
+.addhd-button{margin: 0;}
|
|
|
+.addhd-input{border: 1px solid #4235B6;border-radius: 12rpx;flex: 1;margin-right: 15rpx;padding: 0 12rpx;}
|
|
|
</style>
|