Commit 6c4aac46 authored by 黄奎's avatar 黄奎

11

parent 72f18976
<style lang="scss" scoped> <style lang="scss" scoped>
@import url("@/asset/css/flex.css"); @import url("@/asset/css/flex.css");
.orcodeBox{
.orcodeBox {
background: #fff; background: #fff;
border-radius: 8rpx; border-radius: 8rpx;
position: relative; position: relative;
z-index: 2; z-index: 2;
} }
.Title{
} .Title {}
.orcodeImg image{
.orcodeImg image {
width: 500rpx; width: 500rpx;
height: 500rpx; height: 500rpx;
} }
.SureBox{
.SureBox {
font-size: 28rpx; font-size: 28rpx;
border-top: 1px solid #F2F2F2; border-top: 1px solid #F2F2F2;
} }
.SureBox view:last-child{
.SureBox view:last-child {
color: #295EEB; color: #295EEB;
} }
.SureBox view:first-child{
.SureBox view:first-child {
border-right: 1px solid #ddd; border-right: 1px solid #ddd;
color: #8C8C8C; color: #8C8C8C;
} }
.swiper { .swiper {
height: 500rpx; height: 500rpx;
} }
.swiper-item { .swiper-item {
display: block; display: block;
height: 500rpx; height: 500rpx;
} }
.swiper-list { .swiper-list {
margin-top: 40rpx; margin-top: 40rpx;
margin-bottom: 0; margin-bottom: 0;
} }
.sty-box { .sty-box {
width: 500rpx; width: 500rpx;
height: 500rpx; height: 500rpx;
...@@ -42,27 +50,21 @@ ...@@ -42,27 +50,21 @@
</style> </style>
<template> <template>
<view> <view>
<u-popup mode="center" border-radius="20" <u-popup mode="center" border-radius="20" :popup="false" v-model="currencyVisible" :maskCloseAble="true"
:popup="false" length="80%" :safeAreaInsetBottom="true" @close="close" :z-index="9999">
v-model="currencyVisible" :maskCloseAble="true"
length="80%" :safeAreaInsetBottom="true"
@close="close" :z-index="9999">
<view class="orcodeBox"> <view class="orcodeBox">
<view class="Title PY30 color000 column justify-center items-center"> <view class="Title PY30 color000 column justify-center items-center">
<text class="fz28">领队小程序码({{current+1}}/{{list.length}}</text> <text class="fz28">领队小程序码({{current+1}}/{{list.length}}</text>
<text class="fz24">{{ list[current].TCNUMS }}</text> <text class="fz24">{{ list[current].TCNUMS }}</text>
</view> </view>
<view class="orcodeImg row items-center justify-center PX40"> <view class="orcodeImg row items-center justify-center PX40">
<swiper :indicator-dots="false" circular style="height:500rpx;width:500rpx" <swiper :indicator-dots="false" circular style="height:500rpx;width:500rpx" :current="current"
:current="current" @change="changeHandler"> @change="changeHandler">
<swiper-item v-for="(item, index) in list" :key="index"> <swiper-item v-for="(item, index) in list" :key="index">
<canvas :canvas-id="`firstCanvas_${index}`" class="sty-box" <canvas :canvas-id="`firstCanvas_${index}`" class="sty-box"
@error="(e)=>canvasIdErrorCallback(e,index)"></canvas> @error="(e)=>canvasIdErrorCallback(e,index)"></canvas>
<!-- <image mode="aspectFit" :src="item.Url" /> -->
</swiper-item> </swiper-item>
</swiper> </swiper>
<!-- <img :src="list[0].Url"/> -->
<!-- <image :src="list[0].Url" style="width: 500rpx;height: 500rpx;"/> -->
</view> </view>
<view class="SureBox row MT40"> <view class="SureBox row MT40">
<view class="flex1 PY20 text-center" @click="close">取消</view> <view class="flex1 PY20 text-center" @click="close">取消</view>
...@@ -74,8 +76,8 @@ ...@@ -74,8 +76,8 @@
</view> </view>
</template> </template>
<script> <script>
export default { export default {
props:['TCIDs'], props: ['TCIDs'],
data() { data() {
return { return {
currencyVisible: false, currencyVisible: false,
...@@ -90,13 +92,13 @@ export default { ...@@ -90,13 +92,13 @@ export default {
} }
}, },
watch: { watch: {
TCIDs:{ TCIDs: {
handler(newVal,oldVal){ handler(newVal, oldVal) {
this.list = [] this.list = []
this.getTem(newVal) this.getTem(newVal)
}, },
deep: false, deep: false,
immediate:true, immediate: true,
} }
}, },
mounted() { mounted() {
...@@ -106,45 +108,44 @@ export default { ...@@ -106,45 +108,44 @@ export default {
changeHandler(i) { changeHandler(i) {
this.current = i.detail.current; this.current = i.detail.current;
}, },
getTem(TCIDs){ getTem(TCIDs) {
uni.showLoading({ uni.showLoading({
title: "正在生成", title: "正在生成",
}); });
this.apipost("dmcstatistics_post_GetExtendLeaderAllStatics",{ this.apipost("dmcstatistics_post_GetExtendLeaderAllStatics", {
TCIDs: TCIDs, TCIDs: TCIDs,
NewCombinationNum: '' NewCombinationNum: ''
}, (res) => { }, (res) => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
this.BaseInfo = res.data.BaseInfo this.BaseInfo = res.data.BaseInfo
this.TCIDsList = this.TCIDs.split(',') this.TCIDsList = this.TCIDs.split(',')
this.TCIDsList.forEach((x,index) => { this.TCIDsList.forEach((x, index) => {
this.init(x) this.init(x)
}); });
} }
}) })
}, },
async init(x){ async init(x) {
await this.apipostQrCode("", { await this.apipostQrCode("", {
TCID: x TCID: x
}, (res) => { }, (res) => {
if (res.resultCode == 1) { if (res.resultCode == 1) {
let findIndex = this.BaseInfo.findIndex(item => item.TCIDS == x) let findIndex = this.BaseInfo.findIndex(item => item.TCIDS == x)
this.list.push({ this.list.push({
Url:'data:image/png;base64,' + res.data, Url: 'data:image/png;base64,' + res.data,
TCID:x, TCID: x,
TCNUMS:this.BaseInfo[findIndex].TCNUMS TCNUMS: this.BaseInfo[findIndex].TCNUMS
}) })
if(this.list.length==this.TCIDsList.length) { if (this.list.length == this.TCIDsList.length) {
this.currencyVisible = true this.currencyVisible = true
this.list.forEach((x,i)=>{ this.list.forEach((x, i) => {
this.drawCtx(i) this.drawCtx(i)
}) })
} }
// uni.hideLoading()
} }
}) })
}, },
close(){ close() {
this.currencyVisible = false this.currencyVisible = false
this.$emit('close') this.$emit('close')
}, },
...@@ -180,7 +181,7 @@ export default { ...@@ -180,7 +181,7 @@ export default {
}); });
}, 200) }, 200)
}, },
preservation(){ preservation() {
let that = this; let that = this;
uni.canvasToTempFilePath({ uni.canvasToTempFilePath({
canvasId: `firstCanvas_${that.current}`, canvasId: `firstCanvas_${that.current}`,
...@@ -210,9 +211,18 @@ export default { ...@@ -210,9 +211,18 @@ export default {
success: (res) => { success: (res) => {
if (res.confirm) { if (res.confirm) {
uni.openSetting({ uni.openSetting({
success: (res) => { success: (
console.log(res); res
if (res.authSetting['scope.writePhotosAlbum']) { ) => {
console
.log(
res
);
if (res
.authSetting[
'scope.writePhotosAlbum'
]
) {
that.preservation() that.preservation()
} }
} }
...@@ -250,9 +260,9 @@ export default { ...@@ -250,9 +260,9 @@ export default {
); );
}, },
canvasIdErrorCallback: function(e,index) { canvasIdErrorCallback: function(e, index) {
console.error(e.detail.errMsg,'---index',index); console.error(e.detail.errMsg, '---index', index);
}
} }
} }
}
</script> </script>
\ No newline at end of file
...@@ -143,12 +143,6 @@ ...@@ -143,12 +143,6 @@
<u-icon class="backIcon" name="arrow-left" size="32" color="#FFF"></u-icon> <u-icon class="backIcon" name="arrow-left" size="32" color="#FFF"></u-icon>
</view> </view>
</view> </view>
<!-- <view @click="goback" :style="[titleStyle, { opacity: '100% !important' }]"
style="position: fixed; top: 0; right: 200rpx; padding-right: 6rpx">
<view class="backBox text-center">
<img src="https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Upload/Goods/638762515984923148.png" />
</view>
</view> -->
<view class="detailsType fz24">{{ dataList.teamType==0?'跟团游':dataList.teamType==1?'小包团':'一日游' }}</view> <view class="detailsType fz24">{{ dataList.teamType==0?'跟团游':dataList.teamType==1?'小包团':'一日游' }}</view>
</view> </view>
<view class="itiner-title" :style="[titleStyle]"> <view class="itiner-title" :style="[titleStyle]">
...@@ -655,6 +649,7 @@ ...@@ -655,6 +649,7 @@
this.priceList = res.data.priceList this.priceList = res.data.priceList
this.formatDay() this.formatDay()
} }
uni.hideLoading();
}, (failed) => { }, (failed) => {
uni.hideLoading() uni.hideLoading()
uni.showToast({ uni.showToast({
......
...@@ -341,30 +341,38 @@ ...@@ -341,30 +341,38 @@
VerificationBusList() { VerificationBusList() {
let msg = '' let msg = ''
for (let i = 0; i < this.params.BusList.length; i++) { for (let i = 0; i < this.params.BusList.length; i++) {
let obj = this.params.BusList[i] let obj = this.params.BusList[i];
console.log("bus_obj", obj);
for (let j = 0; j < obj.ReimburseList.ReimburseDetailsList.length; j++) { for (let j = 0; j < obj.ReimburseList.ReimburseDetailsList.length; j++) {
let child = obj.ReimburseList.ReimburseDetailsList[j] let child = obj.ReimburseList.ReimburseDetailsList[j];
if (!this.$utils.checkIsNum(child.UserNum)) {
child.UserNum = 0;
}
if (!this.$utils.checkIsNum(child.UnitPrice)) {
child.UnitPrice = 0;
}
if (msg == '' && if (msg == '' &&
(obj.ReimburseList.CurrencyId == 0 || obj.ReimburseList.CurrencyId == null) && (obj.ReimburseList.CurrencyId == 0 || obj.ReimburseList.CurrencyId == null) &&
(obj.ReimburseList.SettlementType > 0 || obj.ReimburseList.Remarks != '' || (obj.ReimburseList.SettlementType > 0 || obj.ReimburseList.Remarks != '' ||
obj.ReimburseList.VoucherPicList.length > 0 || child.StartPlace != '' || obj.ReimburseList.VoucherPicList.length > 0 || child.StartPlace != '' ||
child.EndPlace != '' || child.UserNum > 0 || child.UnitPrice > 0 || child.UserType) child.EndPlace != '' || child.UserNum > 0 || child.UnitPrice > 0 || child.UserType)
) { ) {
msg = `请选择车辆币种` msg = `请选择[` + obj.UseTime + `]车辆币种`;
} }
if (msg == '' && child.StartPlace == '' && if (msg == '' && child.StartPlace == '' &&
(obj.ReimburseList.SettlementType > 0 || obj.ReimburseList.Remarks != '' || (obj.ReimburseList.SettlementType > 0 || obj.ReimburseList.Remarks != '' ||
obj.ReimburseList.VoucherPicList.length > 0 || obj.ReimburseList.CurrencyId || obj.ReimburseList.VoucherPicList.length > 0 || obj.ReimburseList.CurrencyId ||
child.EndPlace != '' || child.UserNum > 0 || child.UnitPrice > 0 || child.UserType) child.EndPlace != '' || child.UserNum > 0 || child.UnitPrice > 0 || child.UserType)
) { ) {
msg = `请输入车辆出发地` msg = `请输入[` + obj.UseTime + `]车辆出发地`
} }
if (msg == '' && child.EndPlace == '' && if (msg == '' && child.EndPlace == '' &&
(obj.ReimburseList.SettlementType > 0 || obj.ReimburseList.Remarks != '' || (obj.ReimburseList.SettlementType > 0 || obj.ReimburseList.Remarks != '' ||
obj.ReimburseList.VoucherPicList.length > 0 || child.StartPlace != '' || obj.ReimburseList.VoucherPicList.length > 0 || child.StartPlace != '' ||
obj.ReimburseList.CurrencyId || child.UserNum > 0 || child.UnitPrice > 0 || child.UserType) obj.ReimburseList.CurrencyId || child.UserNum > 0 || child.UnitPrice > 0 || child.UserType)
) { ) {
msg = `请输入车辆目的地` msg = `请输入[` + obj.UseTime + `]车辆目的地`
} }
} }
} }
......
...@@ -274,6 +274,17 @@ function checkInteger(value, isMinus) { ...@@ -274,6 +274,17 @@ function checkInteger(value, isMinus) {
return newValue; return newValue;
} }
//判断是否为整数,小数,支持负数
function checkIsNum(str) {
var flag = false;
if (!str) {
str = '';
}
flag = /^-?(\d*.)?\d+$/.test(str);
console.log("checkIsNum", str + '_' + flag);
return flag;
}
export default { export default {
calcContentHeight, calcContentHeight,
SystemInfo, SystemInfo,
...@@ -289,4 +300,5 @@ export default { ...@@ -289,4 +300,5 @@ export default {
goZanYangUrl, goZanYangUrl,
checkInteger, checkInteger,
checkPrice, checkPrice,
checkIsNum,
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment