|
@@ -7,7 +7,8 @@
|
|
|
>
|
|
|
<view class="header-top" :style="{ paddingTop: top + 'px', lineHeight: CustomBar + 20 + 'px' }"></view>
|
|
|
<view class="header-sit">
|
|
|
- <text class="iconfont icon-fanhui" @click.stop="this.$api.navigateBack(1)"></text>
|
|
|
+ <text class="iconfont icon-shouye1" v-if="isShareType" @click.stop="this.$api.navigateLinkJump()"></text>
|
|
|
+ <text class="iconfont icon-fanhui" v-else @click.stop="this.$api.navigateBack(1)"></text>
|
|
|
<text class="header-sit-text">关联订单</text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -24,9 +25,9 @@
|
|
|
<view class="tui-header-top">
|
|
|
<view class="title"> 收款信息 </view>
|
|
|
<view class="tui-header-button">
|
|
|
- <view class="button btn-confirm" @click="toNoSms('/pages/collection/list')">
|
|
|
+ <!-- <view class="button btn-confirm" @click="toNoSms('/pages/collection/list')">
|
|
|
<text class="iconfont icon-wodedingdan"></text> 收款列表
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="tui-header-item">
|
|
@@ -39,10 +40,10 @@
|
|
|
}}</view>
|
|
|
</view>
|
|
|
<view class="list-title-b">
|
|
|
- <view class="list-title-b-item ">
|
|
|
+ <view class="list-title-b-item ">
|
|
|
收款金额:<text class="text">¥{{ receiptInfo.receiptAmount | NumFormat }}</text>
|
|
|
</view>
|
|
|
- <view class="list-title-b-item ">
|
|
|
+ <view class="list-title-b-item ">
|
|
|
收款类型:<text class="text">{{ receiptInfo.payTypeText }}</text>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -97,24 +98,26 @@
|
|
|
<empty v-if="isEmpty" :typeIndex="currents" :navbarHeight="navbarHeight"></empty>
|
|
|
<!-- 列表 -->
|
|
|
<view v-else class="tui-order-content">
|
|
|
- <view
|
|
|
- class="tui-order-item"
|
|
|
- v-for="(order, index) in orderList"
|
|
|
- :key="index"
|
|
|
- >
|
|
|
+ <view class="tui-order-item" v-for="(order, index) in orderList" :key="index">
|
|
|
<view class="list-title" @click.stop="orderDetail(order.mainOrder.orderId)">
|
|
|
<view class="list-title-t">
|
|
|
<view class="list-title-tip">
|
|
|
- <text class="badges">{{ order.mainOrder.orderType | formatOrderType }}</text>
|
|
|
+ <text class="badges">{{
|
|
|
+ order.mainOrder.orderType | formatOrderType
|
|
|
+ }}</text>
|
|
|
</view>
|
|
|
<view class="list-title-tag" v-if="order.mainOrder.organizeId == 3">
|
|
|
<text class="badges">维沙</text>
|
|
|
</view>
|
|
|
- <view class="list-title-num">{{ order.mainOrder.status | stateExpFormat }}</view>
|
|
|
+ <view class="list-title-num">{{
|
|
|
+ order.mainOrder.status | stateExpFormat
|
|
|
+ }}</view>
|
|
|
</view>
|
|
|
<view class="list-title-a">
|
|
|
<view class="list-title-a-text">
|
|
|
- 子订单编号:<text class="text">{{ order.shopOrderNo }} ( {{ order.shopOrderId }} )</text>
|
|
|
+ 子订单编号:<text class="text"
|
|
|
+ >{{ order.shopOrderNo }} ( {{ order.shopOrderId }} )</text
|
|
|
+ >
|
|
|
</view>
|
|
|
<view class="list-title-a-text">
|
|
|
供应商名称:<text class="text">{{ order.shopName }}</text>
|
|
@@ -124,24 +127,32 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="list-title-b">
|
|
|
- 客户名称:<text class="text">{{ order.mainOrder.userName ? order.mainOrder.userName : '无' }}</text>
|
|
|
+ 客户名称:<text class="text">{{
|
|
|
+ order.mainOrder.userName ? order.mainOrder.userName : '无'
|
|
|
+ }}</text>
|
|
|
</view>
|
|
|
<view class="list-title-b">
|
|
|
- 订单编号:<text class="text">{{ order.mainOrder.orderNo }} ( {{ order.mainOrder.orderId }} )</text>
|
|
|
+ 订单编号:<text class="text"
|
|
|
+ >{{ order.mainOrder.orderNo }} ( {{ order.mainOrder.orderId }} )</text
|
|
|
+ >
|
|
|
</view>
|
|
|
<view class="list-title-b">
|
|
|
下单日期:<text class="text">{{ order.mainOrder.orderTime }}</text>
|
|
|
</view>
|
|
|
<view class="list-title-b">
|
|
|
<view class="list-title-b-item ">
|
|
|
- 订单金额:<text class="text">¥{{ order.mainOrder.payTotalFee | NumFormat }}</text>
|
|
|
+ 订单金额:<text class="text"
|
|
|
+ >¥{{ order.mainOrder.payTotalFee | NumFormat }}</text
|
|
|
+ >
|
|
|
</view>
|
|
|
<view class="list-title-b-item ">
|
|
|
- 已收金额:<text class="text">¥{{ order.mainOrder.paidAmount | NumFormat }}</text>
|
|
|
+ 已收金额:<text class="text"
|
|
|
+ >¥{{ order.mainOrder.paidAmount | NumFormat }}</text
|
|
|
+ >
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="list-checked" @click="checkedOrder(order,index)">
|
|
|
+ <view class="list-checked" @click="checkedOrder(order, index)">
|
|
|
<text
|
|
|
class="iconfont"
|
|
|
:class="order.isChecked ? 'icon-yixuanze' : 'icon-weixuanze'"
|
|
@@ -162,40 +173,21 @@
|
|
|
<view class="distinguish-button" :style="{ paddingBottom: isIphoneX ? '68rpx' : '24rpx' }">
|
|
|
<view class="button" @click="confirmDistinguish">确认</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <!-- 弹窗 -->
|
|
|
- <tui-modal :show="modal1" :padding="'40rpx 30rpx'" @cancel="hideMobel(1)" :custom="true" fadeIn >
|
|
|
+ </view>
|
|
|
+ <!-- 确认关联弹窗 -->
|
|
|
+ <tui-modal :show="modal" @click="handleClick" @cancel="hideMobel(0)" :content="contentModalText" color="#333"
|
|
|
+ :size="32" shape="circle" :maskClosable="false"></tui-modal>
|
|
|
+ <!-- 金额不一致弹窗 -->
|
|
|
+ <tui-modal :show="modal1" :padding="'40rpx 30rpx'" @cancel="hideMobel(1)" :custom="true" fadeIn>
|
|
|
<view class="tui-modal-custom">
|
|
|
<view class="tui-prompt-text">
|
|
|
- 返佣金额为<text class="text">¥{{ confirmParams.verbalAmount }}</text>,
|
|
|
- 订单根据成本计算得出的佣金为<text class="text">¥{{ returnBrokerage }}</text>,
|
|
|
- 金额不一致不能关联,请在后台修改成本使得子订单佣金等与返佣金额后在关联
|
|
|
- </view>
|
|
|
- <view class="tui-prompt-flex">
|
|
|
- <view class="btn btn-confirm" @click="handleClick1">知道了</view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- </tui-modal>
|
|
|
- <!--设非订单款项弹窗 -->
|
|
|
- <tui-modal :show="modal" :padding="'40rpx 30rpx'" @cancel="hideMobel(0)" :custom="true" fadeIn >
|
|
|
- <view class="tui-modal-custom">
|
|
|
- <view class="tui-prompt-title">口头约定佣金</view>
|
|
|
- <view class="tui-prompt-input">
|
|
|
- <text class="text">¥</text>
|
|
|
- <input
|
|
|
- class="input"
|
|
|
- type="number"
|
|
|
- placeholder="请输入口头约定佣金(必填)"
|
|
|
- @blur="changeNumber($event)"
|
|
|
- v-model="confirmParams.verbalAmount"
|
|
|
- />
|
|
|
- </view>
|
|
|
- <view class="tui-prompt-flex">
|
|
|
- <view class="btn btn-cancel" @click="hideMobel(0)">取消</view>
|
|
|
- <view class="btn btn-confirm" @click="handleClick">确定</view>
|
|
|
+ 返佣金额为<text class="text">¥{{ receiptInfo.receiptAmount }}</text
|
|
|
+ >, 订单根据成本计算得出的佣金为<text class="text">¥{{ returnBrokerage }}</text
|
|
|
+ >, 金额不一致不能关联,请在后台修改成本使得子订单佣金等与返佣金额后在关联
|
|
|
</view>
|
|
|
+ <view class="tui-prompt-flex"> <view class="btn btn-confirm" @click="hideMobel(1)">知道了</view> </view>
|
|
|
</view>
|
|
|
- </tui-modal>
|
|
|
+ </tui-modal>
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|
|
@@ -208,7 +200,7 @@ const defaultListQuery = {
|
|
|
pageNum: 1, //页数
|
|
|
pageSize: 10, //条数
|
|
|
id: 0,
|
|
|
- shopName: '',
|
|
|
+ shopName: ''
|
|
|
}
|
|
|
export default {
|
|
|
components: {
|
|
@@ -229,7 +221,7 @@ export default {
|
|
|
pullFlag: true,
|
|
|
navbarHeight: '',
|
|
|
nomoreText: '上拉显示更多',
|
|
|
- contentModalText: '', //操作文字提示语句
|
|
|
+ contentModalText: '确认关联?', //操作文字提示语句
|
|
|
modal: false,
|
|
|
modal1: false,
|
|
|
isCmcustomClass: 'left',
|
|
@@ -239,23 +231,15 @@ export default {
|
|
|
scrollH: 0, //滚动总高度
|
|
|
opcity: 1,
|
|
|
checkedOrderList: [],
|
|
|
- checkedIndex:'',
|
|
|
- returnBrokerage:0,
|
|
|
- confirmParams:{
|
|
|
- shopOrderId:0,
|
|
|
- verbalAmount:'',
|
|
|
- rebateRemarks:''
|
|
|
+ checkedIndex: '',
|
|
|
+ returnBrokerage: 0,
|
|
|
+ confirmParams: {
|
|
|
+ id: 0,
|
|
|
+ shopOrderId: 0,
|
|
|
+ rebateRemarks: ''
|
|
|
},
|
|
|
skeletonShow: true,
|
|
|
- modelTpye:1,// 收款弹窗类型
|
|
|
- totalOrder: {
|
|
|
- orderNums:1,
|
|
|
- payTotalFee: 0, // 订单金额
|
|
|
- balancePayFee: 0, // 余额抵扣
|
|
|
- payableAmount: 0, // 应收金额
|
|
|
- paidAmount: 0 ,// 已收金额
|
|
|
- surplusAmount:0 // 剩余应收
|
|
|
- } // 统计都选相同的订单数据
|
|
|
+ isShareType:false
|
|
|
}
|
|
|
},
|
|
|
onLoad(option) {
|
|
@@ -268,11 +252,12 @@ export default {
|
|
|
this.scrollH = res.windowWidth * 0.6
|
|
|
}
|
|
|
})
|
|
|
+ if(option.type == 'share'){ this.isShareType = true }
|
|
|
this.confirmParams.id = option.id
|
|
|
this.getOrderReceiptDetail(this.confirmParams.id)
|
|
|
},
|
|
|
computed: {
|
|
|
- ...mapState(['hasLogin']),
|
|
|
+ ...mapState(['hasLogin'])
|
|
|
},
|
|
|
methods: {
|
|
|
getOrderReceiptDetail(id) {
|
|
@@ -286,13 +271,9 @@ export default {
|
|
|
this.$util.msg(err.msg, 2000)
|
|
|
})
|
|
|
},
|
|
|
- subMitSearch() {
|
|
|
- // 确认搜索
|
|
|
- this.listQuery.pageNum = 1
|
|
|
- this.getOrderReceiptRebateOrders()
|
|
|
- },
|
|
|
getOrderReceiptRebateOrders() {
|
|
|
// 收款详情-订单列表
|
|
|
+ this.initListQuery()
|
|
|
this.OrderService.orderReceiptRebateOrders(this.listQuery)
|
|
|
.then(response => {
|
|
|
let data = response.data
|
|
@@ -359,22 +340,11 @@ export default {
|
|
|
this.$util.msg(error.msg, 2000)
|
|
|
})
|
|
|
},
|
|
|
- confirmDistinguish() {
|
|
|
- // 点击确认
|
|
|
- const list = []
|
|
|
- this.checkedOrderList.forEach(el => {
|
|
|
- if (list.indexOf(el.userId) == -1) {
|
|
|
- list.push(el.userId)
|
|
|
- }
|
|
|
- })
|
|
|
- if (this.confirmParams.shopOrderId == 0) {
|
|
|
- this.$util.msg('请选择订单!', 2000)
|
|
|
- return
|
|
|
- }
|
|
|
- this.confirmParams.verbalAmount = ''
|
|
|
- this.modal = true
|
|
|
+ subMitSearch() {
|
|
|
+ // 确认搜索
|
|
|
+ this.getOrderReceiptRebateOrders()
|
|
|
},
|
|
|
- checkedOrder(order,index) {
|
|
|
+ checkedOrder(order, index) {
|
|
|
// 勾选关联订单
|
|
|
this.checkedIndex = index
|
|
|
this.orderList.forEach((el, index) => {
|
|
@@ -386,43 +356,50 @@ export default {
|
|
|
el.isChecked = false
|
|
|
}
|
|
|
})
|
|
|
- console.log('shopOrderId',this.confirmParams.shopOrderId)
|
|
|
- console.log('returnBrokerage',this.returnBrokerage)
|
|
|
+ console.log('shopOrderId', this.confirmParams.shopOrderId)
|
|
|
+ console.log('returnBrokerage', this.returnBrokerage)
|
|
|
},
|
|
|
- handleClick() {
|
|
|
- //用户操作订单
|
|
|
- if(this.confirmParams.verbalAmount == 0){
|
|
|
- this.$util.msg('请输入口头返佣金!', 2000)
|
|
|
+ confirmDistinguish() {
|
|
|
+ // 点击确认
|
|
|
+ const list = []
|
|
|
+ this.checkedOrderList.forEach(el => {
|
|
|
+ if (list.indexOf(el.userId) == -1) {
|
|
|
+ list.push(el.userId)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ if (this.confirmParams.shopOrderId == 0) {
|
|
|
+ this.$util.msg('请选择订单!', 2000)
|
|
|
return
|
|
|
}
|
|
|
- if(this.confirmParams.verbalAmount != this.returnBrokerage){
|
|
|
- this.modal = false
|
|
|
+ if (this.receiptInfo.receiptAmount != this.returnBrokerage) {
|
|
|
this.modal1 = true
|
|
|
return
|
|
|
- }else{
|
|
|
- this.modal = false
|
|
|
- this.orderReceiptConfirm(this.confirmParams)
|
|
|
+ } else {
|
|
|
+ this.modal = true
|
|
|
}
|
|
|
},
|
|
|
- handleClick1() {
|
|
|
- //隐藏弹窗
|
|
|
- this.modal1 = false
|
|
|
+ handleClick(e){// 确认关联返佣订单
|
|
|
+ // 通过审核
|
|
|
+ if (e.index == 1) {
|
|
|
+ this.orderReceiptConfirm(this.confirmParams)
|
|
|
+ }
|
|
|
+ this.modal = false
|
|
|
},
|
|
|
- orderReceiptConfirm(params){
|
|
|
+ orderReceiptConfirm(params) {
|
|
|
//确认关联返佣
|
|
|
- this.OrderService.orderReceiptConfirmRebateVerbal(params)
|
|
|
+ this.OrderService.orderReceiptConfirmRebate(params)
|
|
|
.then(response => {
|
|
|
this.$util.msg('关联成功~', 2000, true, 'success')
|
|
|
- setTimeout(()=>{
|
|
|
- this.$api.navigateTo(`/pages/relation/return/detail?id=${response.data}`)
|
|
|
- },2000)
|
|
|
+ setTimeout(() => {
|
|
|
+ this.$api.navigateTo(`/pages/relation/return/detail?id=${params.id}`)
|
|
|
+ }, 2000)
|
|
|
})
|
|
|
.catch(error => {
|
|
|
this.$util.msg(error.msg, 2000)
|
|
|
})
|
|
|
},
|
|
|
hideMobel(type) {
|
|
|
- switch(type){
|
|
|
+ switch (type) {
|
|
|
case 0:
|
|
|
this.modal = false
|
|
|
break
|
|
@@ -453,7 +430,8 @@ export default {
|
|
|
this.confirmParams.receiptAmount = this.toFixedFn(e.detail.value)
|
|
|
console.log('receiptAmount', this.confirmParams.receiptAmount)
|
|
|
},
|
|
|
- toFixedFn(val){//处理小数点后两位数
|
|
|
+ toFixedFn(val) {
|
|
|
+ //处理小数点后两位数
|
|
|
return Number(Math.round(val * 100) / 100).toFixed(2)
|
|
|
},
|
|
|
orderDetail(id) {
|
|
@@ -462,6 +440,30 @@ export default {
|
|
|
},
|
|
|
toNoSms(url) {
|
|
|
this.$api.navigateTo(url)
|
|
|
+ },
|
|
|
+ initListQuery() {
|
|
|
+ // 初始化
|
|
|
+ this.orderList = []
|
|
|
+ this.loadding = true
|
|
|
+ this.pullUpOn = true
|
|
|
+ this.listQuery.pageNum = 1
|
|
|
+ },
|
|
|
+ formatReceiptType(value) {
|
|
|
+ //订单状态文字和颜色
|
|
|
+ var HtmlStateText = '',
|
|
|
+ stateTextObject = {
|
|
|
+ 1: '订单',
|
|
|
+ 2: '非订单',
|
|
|
+ 3: '返佣',
|
|
|
+ 4: '订单款或者非订单款',
|
|
|
+ 5: '供应商退款'
|
|
|
+ }
|
|
|
+ Object.keys(stateTextObject).forEach(function(key) {
|
|
|
+ if (key == value) {
|
|
|
+ HtmlStateText = stateTextObject[key]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ return HtmlStateText
|
|
|
}
|
|
|
},
|
|
|
onPageScroll(e) {
|
|
@@ -486,27 +488,24 @@ export default {
|
|
|
},
|
|
|
onPullDownRefresh() {
|
|
|
setTimeout(() => {
|
|
|
- this.listQuery.pageNum = 1
|
|
|
this.getOrderReceiptRebateOrders()
|
|
|
uni.stopPullDownRefresh()
|
|
|
}, 200)
|
|
|
},
|
|
|
onShareAppMessage(res) {
|
|
|
//分享购买优惠券
|
|
|
- const payment = res.target.dataset.payment
|
|
|
- console.log('payment', payment)
|
|
|
+ const receipt = this.receiptInfo
|
|
|
+ const receiptTypeText = this.formatReceiptType(receipt.receiptType)
|
|
|
if (res.from === 'button') {
|
|
|
// console.log('来自页面内转发按钮')
|
|
|
- return {
|
|
|
- title: `【待确认】收款金额${payment.receiptAmount.toFixed(2)}元,收款时间:${payment.receiptDate}`,
|
|
|
- path: `pages/seller/cart/coupon-share?payment=${payment.id}`,
|
|
|
- imageUrl: 'https://static.caimei365.com/app/img/icon/icon-shareCoupon@2x.png'
|
|
|
- }
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ title: `【${receipt.receiptStatusText}(${receiptTypeText}款)】收款金额${receipt.receiptAmount.toFixed(2)}元,收款时间:${receipt.receiptDate}`,
|
|
|
+ path: `/pages/login/login-share?id=${receipt.id}`,
|
|
|
+ imageUrl: 'https://static.caimei365.com/app/img/icon/icon-shareCoupon@2x.png'
|
|
|
}
|
|
|
},
|
|
|
- onShow() {
|
|
|
-
|
|
|
- }
|
|
|
+ onShow() {}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
@@ -558,7 +557,7 @@ page {
|
|
|
font-weight: 600;
|
|
|
font-family: '正楷';
|
|
|
}
|
|
|
- .icon-fanhui {
|
|
|
+ .iconfont {
|
|
|
display: block;
|
|
|
width: 80rpx;
|
|
|
height: 80rpx;
|
|
@@ -661,7 +660,7 @@ page {
|
|
|
line-height: 40rpx;
|
|
|
color: #666666;
|
|
|
text-align: left;
|
|
|
- .text{
|
|
|
+ .text {
|
|
|
color: #999999;
|
|
|
}
|
|
|
.list-title-b-item {
|
|
@@ -684,7 +683,7 @@ page {
|
|
|
top: 0;
|
|
|
color: #dd524d;
|
|
|
z-index: 99;
|
|
|
- .list-icon-image{
|
|
|
+ .list-icon-image {
|
|
|
width: 120rpx;
|
|
|
height: 120rpx;
|
|
|
display: block;
|
|
@@ -889,7 +888,7 @@ page {
|
|
|
border-radius: 4rpx;
|
|
|
background-color: rgba(247, 247, 247, 1);
|
|
|
margin-bottom: 10rpx;
|
|
|
- .text{
|
|
|
+ .text {
|
|
|
color: #999999;
|
|
|
}
|
|
|
.list-title-a-text {
|
|
@@ -910,7 +909,7 @@ page {
|
|
|
line-height: 44rpx;
|
|
|
color: #666666;
|
|
|
text-align: left;
|
|
|
- .text{
|
|
|
+ .text {
|
|
|
color: #999999;
|
|
|
}
|
|
|
.list-title-b-item {
|
|
@@ -923,21 +922,21 @@ page {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-.tui-prompt-title{
|
|
|
+.tui-prompt-title {
|
|
|
line-height: 44rpx;
|
|
|
text-align: center;
|
|
|
}
|
|
|
-.tui-prompt-input{
|
|
|
+.tui-prompt-input {
|
|
|
width: 100%;
|
|
|
height: 80rpx;
|
|
|
box-sizing: border-box;
|
|
|
background: #f7f7f7;
|
|
|
border-radius: 8rpx;
|
|
|
- padding:15rpx 20rpx;
|
|
|
+ padding: 15rpx 20rpx;
|
|
|
padding-left: 50rpx;
|
|
|
margin: 20rpx 0;
|
|
|
position: relative;
|
|
|
- .text{
|
|
|
+ .text {
|
|
|
display: block;
|
|
|
width: 50rpx;
|
|
|
height: 80rpx;
|
|
@@ -954,36 +953,38 @@ page {
|
|
|
line-height: 80rpx;
|
|
|
font-size: $font-size-26;
|
|
|
color: $color-system;
|
|
|
+ &.none {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
-.tui-prompt-flex{
|
|
|
+.tui-prompt-flex {
|
|
|
width: 100%;
|
|
|
height: 70rpx;
|
|
|
display: flex;
|
|
|
margin-top: 20rpx;
|
|
|
- .btn{
|
|
|
+ .btn {
|
|
|
flex: 1;
|
|
|
line-height: 70rpx;
|
|
|
font-size: $font-size-26;
|
|
|
text-align: center;
|
|
|
- color: #FFFFFF;
|
|
|
+ color: #ffffff;
|
|
|
border-radius: 33rpx;
|
|
|
margin: 0 24rpx;
|
|
|
- &.btn-cancel{
|
|
|
- background: #F7F7F7;
|
|
|
+ &.btn-cancel {
|
|
|
+ background: #f7f7f7;
|
|
|
color: #999999;
|
|
|
}
|
|
|
- &.btn-confirm{
|
|
|
+ &.btn-confirm {
|
|
|
background: $color-system;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
-.tui-prompt-text{
|
|
|
+.tui-prompt-text {
|
|
|
line-height: 44rpx;
|
|
|
font-size: $font-size-26;
|
|
|
color: #333333;
|
|
|
- .text{
|
|
|
+ .text {
|
|
|
color: $color-system;
|
|
|
}
|
|
|
}
|