|
@@ -154,7 +154,7 @@
|
|
|
</view>
|
|
|
|
|
|
<!-- 项目明细 -->
|
|
|
- <view class="detailedBox itemBox" v-if=" orderData.listItems.length!=0">
|
|
|
+ <view class="detailedBox itemBox" v-if=" orderData.listItems.length!=0" style="padding-bottom: 0;">
|
|
|
<view class="detailedTitle">项目</view>
|
|
|
<view class="detailedLineBox">
|
|
|
<view class="detailedLine" v-for="(item,index) in orderData.listItems">
|
|
@@ -166,9 +166,16 @@
|
|
|
{{item.AmountMoney?item.AmountMoney:0}}
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
+ <view class="itemWorkHoursBox" v-if="itemWorkHours&&itemWorkHours" :class="{nopb:ItemComment&&item.Comment}">
|
|
|
+ <view class="itemWorkHours" v-if="itemWorkHours">
|
|
|
+ 工时:{{item.SaleQty}}
|
|
|
+ </view>
|
|
|
+ <view class="itemPrice" v-if="itemWorkHours">
|
|
|
+ 单价:{{item.SalePrice}}
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
<view class="secondBox" v-if="ItemComment" :class="{noLine:index == orderData.listItems.length-1}">
|
|
|
- <view class="comment" >{{item.Comment}}</view>
|
|
|
+ <view class="comment" v-if="item.Comment">{{item.Comment}}</view>
|
|
|
<view class="secondRight">
|
|
|
<!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
|
|
|
|
|
@@ -189,14 +196,19 @@
|
|
|
|
|
|
<view class="goodTop">
|
|
|
<view class="detailedName"><span v-if="item.CardDetailID"
|
|
|
- class="kaColor">卡</span>{{item.Brand}} {{item.GoodsName}}</view>
|
|
|
- <view class="qty">x{{item.SaleQty}}</view>
|
|
|
+ class="kaColor">卡</span>
|
|
|
+ <span v-if="brandSetting">{{item.Brand}}</span>
|
|
|
+ {{item.GoodsName}}
|
|
|
+ <span v-if="specSetting">{{item.Spec}}</span>
|
|
|
+ <span v-if="factoryNumber">{{item.FactoryCode}}</span>
|
|
|
+ </view>
|
|
|
+ <view class="qty" v-if="goodsNumber">x{{item.SaleQty}}</view>
|
|
|
</view>
|
|
|
- <view class="secondBox" :class="{noLine:index == orderData.listParts.length-1}">
|
|
|
+ <view class="secondBox" v-if="GoodsComment" :class="{noLine:index == orderData.listParts.length-1}">
|
|
|
<view class="comment" v-if="GoodsComment">{{item.Comment}}</view>
|
|
|
<view class="secondRight">
|
|
|
<!-- <view class="grayPrice">¥{{item.CheckOutTaxRate}}</view> -->
|
|
|
- <view class="price" v-if="ItemMoney">
|
|
|
+ <view class="price" v-if="goodsPrice">
|
|
|
<span>¥</span>
|
|
|
{{item.AmountMoney?item.AmountMoney:0}}
|
|
|
</view>
|
|
@@ -218,15 +230,15 @@
|
|
|
</view>
|
|
|
<view class="goodscostLine" v-if="TotalDiscountMoney">
|
|
|
<view class="goodscostTxt">优惠总计</view>
|
|
|
- <view class="goodsCostNum">¥{{orderData.billsheet.TotalDiscountMoney?orderData.billsheet.TotalDiscountMoney:0}}</view>
|
|
|
+ <view class="goodsCostNum3">¥{{orderData.billsheet.TotalDiscountMoney?orderData.billsheet.TotalDiscountMoney:0}}</view>
|
|
|
</view>
|
|
|
<view class="goodscostLine" v-if="CardMoneyT">
|
|
|
<view class="goodscostTxt">计次卡冲销</view>
|
|
|
- <view class="goodsCostNum">¥{{orderData.billsheet.CardMoneyT?orderData.billsheet.CardMoneyT:0}}</view>
|
|
|
+ <view class="goodsCostNum3">¥{{orderData.billsheet.CardMoneyT?orderData.billsheet.CardMoneyT:0}}</view>
|
|
|
</view>
|
|
|
<view class="goodscostLine" v-if="CardMoneyC">
|
|
|
<view class="goodscostTxt">储值卡冲销</view>
|
|
|
- <view class="goodsCostNum">¥{{orderData.billsheet.CardMoneyCWriteOff?orderData.billsheet.CardMoneyCWriteOff:0}}</view>
|
|
|
+ <view class="goodsCostNum3">¥{{orderData.billsheet.CardMoneyCWriteOff?orderData.billsheet.CardMoneyCWriteOff:0}}</view>
|
|
|
</view>
|
|
|
<view class="goodscostLine" v-if="ReceiptsMoney">
|
|
|
<view class="goodscostTxt">支付金额</view>
|
|
@@ -297,7 +309,15 @@
|
|
|
CardMoneyT: false, //计次卡冲销
|
|
|
CardMoneyC: false, //储值卡冲销
|
|
|
ReceiptsMoney: false, //支付金额
|
|
|
+ brandSetting:false,
|
|
|
+ specSetting:false,
|
|
|
+ factoryNumber:false,
|
|
|
+ goodsNumber:false,
|
|
|
+ goodsPrice:false,
|
|
|
+ itemWorkHours:false,
|
|
|
+ itemPrice:false,
|
|
|
iStatusBarHeight:'',
|
|
|
+ ShowSetting:'',
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
@@ -308,20 +328,23 @@
|
|
|
this.ext = this.$common.getExtStoreId();
|
|
|
if (this.userInfo) {
|
|
|
this.getData()
|
|
|
+ this.myPower();
|
|
|
+ this.showPower();
|
|
|
} else {
|
|
|
this.$common.automaticlogin().then(val => {
|
|
|
this.userInfo = this.$store.state.userInfo;
|
|
|
this.wxOpenData = this.$store.state.wxOpenData;
|
|
|
this.themeColor = uni.getStorageSync("themeColor");
|
|
|
this.getData()
|
|
|
+ this.myPower();
|
|
|
+ this.showPower();
|
|
|
if(!this.userInfo){
|
|
|
this.authorizShow=true
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- this.myPower();
|
|
|
- this.showPower();
|
|
|
+
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
@@ -346,7 +369,7 @@
|
|
|
// CardMoneyC:false,//储值卡冲销
|
|
|
// ReceiptsMoney:false,//支付金额
|
|
|
|
|
|
-
|
|
|
+ this.ShowSetting=res.data
|
|
|
var list = res.data
|
|
|
list.forEach((item, index) => {
|
|
|
if (item.fieldValue == 'FaultDescription') {
|
|
@@ -382,7 +405,29 @@
|
|
|
if (item.fieldValue == 'TotalDiscountMoney') {
|
|
|
this.TotalDiscountMoney = item.isChecked
|
|
|
}
|
|
|
-
|
|
|
+ if (item.fieldValue == 'brand') {
|
|
|
+ this.brandSetting = item.isChecked
|
|
|
+ }
|
|
|
+ if (item.fieldValue == 'spec') {
|
|
|
+ this.specSetting = item.isChecked
|
|
|
+ }
|
|
|
+ if (item.fieldValue == 'factoryNumber') {
|
|
|
+ this.factoryNumber = item.isChecked
|
|
|
+ }
|
|
|
+ if (item.fieldValue == 'goodsNumber') {
|
|
|
+ this.goodsNumber = item.isChecked
|
|
|
+ }
|
|
|
+ if (item.fieldValue == 'goodsPrice') {
|
|
|
+ this.goodsPrice = item.isChecked
|
|
|
+ }
|
|
|
+ if (item.fieldValue == 'itemWorkHours') {
|
|
|
+ this.itemWorkHours = item.isChecked
|
|
|
+ }
|
|
|
+ if (item.fieldValue == 'itemPrice') {
|
|
|
+ this.itemPrice = item.isChecked
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
})
|
|
@@ -555,6 +600,8 @@
|
|
|
onPullDownRefresh() {
|
|
|
|
|
|
this.getData()
|
|
|
+ this.myPower();
|
|
|
+ this.showPower();
|
|
|
setTimeout(function() {
|
|
|
uni.stopPullDownRefresh();
|
|
|
}, 1000);
|
|
@@ -564,6 +611,23 @@
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+ .itemWorkHoursBox{
|
|
|
+ display: flex;
|
|
|
+ font-size: 24rpx;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #999999;
|
|
|
+ padding-top: 20rpx;padding-bottom: 20rpx;
|
|
|
+ }
|
|
|
+ .nopb{
|
|
|
+ padding-bottom: 0px;
|
|
|
+ }
|
|
|
+ .itemWorkHours{
|
|
|
+
|
|
|
+ padding-right: 50rpx;
|
|
|
+ }
|
|
|
+ .itemPrice{
|
|
|
+
|
|
|
+ }
|
|
|
.newboxTop{
|
|
|
display: flex;
|
|
|
padding-left: 20rpx;
|
|
@@ -843,7 +907,7 @@
|
|
|
|
|
|
.secondBox {
|
|
|
display: flex;
|
|
|
- padding: 20rpx 0rpx;
|
|
|
+ /* padding: 20rpx 0rpx; */
|
|
|
justify-content: space-between;
|
|
|
align-items: baseline;
|
|
|
border-bottom: 1rpx solid #EEEEEE;
|
|
@@ -851,6 +915,7 @@
|
|
|
|
|
|
.noLine {
|
|
|
border-bottom: 0 solid #FFFFFF;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.comment {
|
|
@@ -859,6 +924,7 @@
|
|
|
font-weight: 400;
|
|
|
color: #999999;
|
|
|
flex-grow: 1;
|
|
|
+ padding: 20rpx 0rpx;
|
|
|
}
|
|
|
|
|
|
.secondRight {
|
|
@@ -878,7 +944,7 @@
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
font-weight: 500;
|
|
|
- color: #FF0000;
|
|
|
+ /* color: #FF0000; */
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
@@ -918,6 +984,9 @@
|
|
|
.goodsCostNumJsfs{
|
|
|
color: #333333;
|
|
|
}
|
|
|
+ .goodsCostNum3{
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
.information {
|
|
|
width: 702rpx;
|
|
|
background: #FFFFFF;
|