tijiao
This commit is contained in:
202
components/buyPupFudu.vue
Normal file
202
components/buyPupFudu.vue
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
<template>
|
||||||
|
<view>
|
||||||
|
<u-popup key="1" :show="pricespop" :round="10" @close="closePup">
|
||||||
|
<view class="proListPrice" v-if="proPriceList.length > 0">
|
||||||
|
<view class="title">
|
||||||
|
请选择
|
||||||
|
</view>
|
||||||
|
<view class="list">
|
||||||
|
<view :class="['item',curProId == index ? 'active' : '']"
|
||||||
|
v-for="(item,index) in proPriceList" :key="index" @click="choosePrice(item,index)">
|
||||||
|
{{item.productName}} - ¥{{item.price}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="tbn flexbox" style="padding-bottom: 20px;">
|
||||||
|
<view class="saveBtnss buybtn flexbox" @click="oprate('buy')">
|
||||||
|
<u-icon name="bag" color="#fff" size="28"></u-icon>
|
||||||
|
<text>立即购买</text>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="saveBtnss gouwuche flexbox" @click="oprate('gouwuche')">
|
||||||
|
<uni-icons type="cart" size="28" style="color: #666;"></uni-icons>
|
||||||
|
<text>加入购物车</text>
|
||||||
|
</view> -->
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</u-popup>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name:"buyPup",
|
||||||
|
props:['proPriceList'],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
pricespop:true,
|
||||||
|
curProId:null,
|
||||||
|
curPro:{}
|
||||||
|
};
|
||||||
|
},methods:{
|
||||||
|
closePup() {
|
||||||
|
this.pricespop = false
|
||||||
|
this.$emit('closePup')
|
||||||
|
|
||||||
|
},
|
||||||
|
choosePrice(item,index) {
|
||||||
|
console.log(index, 'choosePrice')
|
||||||
|
this.curProId = index
|
||||||
|
this.curPro = item
|
||||||
|
},
|
||||||
|
oprate(val){
|
||||||
|
if(this.curProId==null){
|
||||||
|
uni.showToast({
|
||||||
|
title:'请选择您的课程',
|
||||||
|
icon:'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if(val=='buy'){
|
||||||
|
console.log('直接购买');
|
||||||
|
this.$emit('oprate',{name:val,item:this.curPro,index:this.curProId})
|
||||||
|
}else if(val == 'gouwuche'){
|
||||||
|
console.log('加入购物车');
|
||||||
|
this.$emit('oprate',{name:val,item:this.curPro,index:this.curProId})
|
||||||
|
}
|
||||||
|
this.closePup()
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@import '@/style/mixin.scss';
|
||||||
|
.flexbox {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.saveBtn {
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 80rpx;
|
||||||
|
background-color: #00d8df;
|
||||||
|
// width: 46%;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
|
||||||
|
text {
|
||||||
|
padding-left: 10rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.vipBtn {
|
||||||
|
@include theme("vipbtnbg");
|
||||||
|
border-radius: 100rpx;
|
||||||
|
justify-content: center;
|
||||||
|
width: 150px;
|
||||||
|
color: #fff;
|
||||||
|
margin: 10rpx auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buyBox {
|
||||||
|
// position: fixed;
|
||||||
|
// z-index: 2;
|
||||||
|
// bottom: 100rpx;
|
||||||
|
// left: 0;
|
||||||
|
@include pleft_right(4px);
|
||||||
|
// @include mshadow(10px, 1);
|
||||||
|
padding: 20rpx 10rpx;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 28rpx;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
background-image: linear-gradient(60deg, #e0e9f6 0%,#ece6fa 30%,#d7e8f0 60%, #fff 100%);
|
||||||
|
// background: rgba(255, 255, 255, 0.9);
|
||||||
|
|
||||||
|
.item {
|
||||||
|
width: 100%;
|
||||||
|
text-align: center; line-height: 70rpx !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.tbn {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buybtn {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.proListPrice {
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 28rpx;
|
||||||
|
margin: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.list {
|
||||||
|
padding: 0 10px;
|
||||||
|
padding-bottom: 20rpx;
|
||||||
|
|
||||||
|
.item {
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: #333;
|
||||||
|
margin-bottom: 10rpx;
|
||||||
|
padding-top:20rpx ;
|
||||||
|
padding-bottom:20rpx ;
|
||||||
|
line-height:40rpx;
|
||||||
|
border-radius: 50rpx;
|
||||||
|
border: 1px solid #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item.active {
|
||||||
|
color: $themeColor;
|
||||||
|
border: 1px solid $themeColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
.item:last-child {
|
||||||
|
// border-bottom: none
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tbn {
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.buybtn { padding: 0 20rpx;
|
||||||
|
background-color: #00d8df;
|
||||||
|
margin: 0;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
|
||||||
|
text {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.saveBtnss {
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 80rpx;
|
||||||
|
|
||||||
|
// width: 46%;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: 50rpx;
|
||||||
|
|
||||||
|
text {
|
||||||
|
padding-left: 10rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.gouwuche {
|
||||||
|
border: 1px solid #666;
|
||||||
|
padding-right: 20rpx;
|
||||||
|
|
||||||
|
text {
|
||||||
|
// color: #fff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
539
manifest.json
539
manifest.json
@@ -1,273 +1,270 @@
|
|||||||
{
|
{
|
||||||
"name" : "吴门医述",
|
"name": "吴门医述",
|
||||||
"appid" : "__UNI__C7475A8",
|
"appid": "__UNI__C7475A8",
|
||||||
"description" : "吴门医述",
|
"description": "吴门医述",
|
||||||
"networkTimeout" : {
|
"networkTimeout": {
|
||||||
"request" : 15000
|
"request": 15000
|
||||||
},
|
},
|
||||||
"transformPx" : false,
|
"transformPx": false,
|
||||||
"icons" : [
|
"icons": [{
|
||||||
{
|
"sizes": "分辨率,192x192",
|
||||||
"sizes" : "分辨率,192x192",
|
"src": "图片路径"
|
||||||
"src" : "图片路径"
|
}],
|
||||||
}
|
"versionName": "2.0.05",
|
||||||
],
|
"versionCode": 2005,
|
||||||
"versionName" : "2.0.04",
|
"app-plus": {
|
||||||
"versionCode" : 2004,
|
"nvueCompiler": "uni-app",
|
||||||
"app-plus" : {
|
"compatible": {
|
||||||
"nvueCompiler" : "uni-app",
|
"ignoreVersion": true
|
||||||
"compatible" : {
|
},
|
||||||
"ignoreVersion" : true
|
"screenOrientation": [
|
||||||
},
|
"portrait-primary",
|
||||||
"screenOrientation" : [
|
"portrait-secondary",
|
||||||
"portrait-primary",
|
"landscape-primary",
|
||||||
"portrait-secondary",
|
"landscape-secondary"
|
||||||
"landscape-primary",
|
],
|
||||||
"landscape-secondary"
|
"privacy": {
|
||||||
],
|
"prompt": "template",
|
||||||
"privacy" : {
|
"template": {
|
||||||
"prompt" : "template",
|
"title": "用户协议和隐私政策",
|
||||||
"template" : {
|
"message": "请你务必审慎阅读、充分理解“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/> 你可阅读<a href='https://wumen.taihumed.com/agreement.html'>《用户协议》</a>和<a href='https://wumen.taihumed.com/privacy.html'>《隐私协议》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
|
||||||
"title" : "用户协议和隐私政策",
|
"buttonAccept": "同意",
|
||||||
"message" : "请你务必审慎阅读、充分理解“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/> 你可阅读<a href='https://wumen.taihumed.com/agreement.html'>《用户协议》</a>和<a href='https://wumen.taihumed.com/privacy.html'>《隐私协议》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
|
"buttonRefuse": "暂不同意"
|
||||||
"buttonAccept" : "同意",
|
}
|
||||||
"buttonRefuse" : "暂不同意"
|
},
|
||||||
}
|
"modules": {
|
||||||
},
|
"Payment": {},
|
||||||
"modules" : {
|
"Share": {},
|
||||||
"Payment" : {},
|
"Camera": {},
|
||||||
"Share" : {},
|
"OAuth": {},
|
||||||
"Camera" : {},
|
"VideoPlayer": {}
|
||||||
"OAuth" : {},
|
},
|
||||||
"VideoPlayer" : {}
|
"distribute": {
|
||||||
},
|
"apple": {
|
||||||
"distribute" : {
|
"devices": "universal"
|
||||||
"apple" : {
|
},
|
||||||
"devices" : "universal"
|
// "UIBackgroundModes" : [ "audio" ]
|
||||||
},
|
"android": {
|
||||||
// "UIBackgroundModes" : [ "audio" ]
|
"permissionPhoneState": {
|
||||||
"android" : {
|
"request": "none",
|
||||||
"permissionPhoneState" : {
|
"prompt": "为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。"
|
||||||
"request" : "none",
|
},
|
||||||
"prompt" : "为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。"
|
"permissionExternalStorage": {
|
||||||
},
|
"request": "none",
|
||||||
"permissionExternalStorage" : {
|
"prompt": "应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。"
|
||||||
"request" : "none",
|
},
|
||||||
"prompt" : "应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。"
|
"permissions": [
|
||||||
},
|
"<uses-feature android:name=\"android.hardware.camera\"/>",
|
||||||
"permissions" : [
|
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
|
||||||
"<uses-feature android:name=\"android.hardware.camera\"/>",
|
"<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>",
|
||||||
"<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
|
"<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.ACCESS_COARSE_LOCATION\"/>",
|
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.ACCESS_FINE_LOCATION\"/>",
|
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
|
"<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
|
"<uses-permission android:name=\"android.permission.CAMERA\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.CALL_PHONE\"/>",
|
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.CAMERA\"/>",
|
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
|
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
|
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
|
"<uses-permission android:name=\"android.permission.INSTALL_PACKAGES\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
|
"<uses-permission android:name=\"android.permission.INTERNET\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.INSTALL_PACKAGES\"/>",
|
"<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.INTERNET\"/>",
|
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
|
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
|
"<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
|
"<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>",
|
"<uses-permission android:name=\"android.permission.REQUEST_INSTALL_PACKAGES\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.RECORD_AUDIO\"/>",
|
"<uses-permission android:name=\"android.permission.SYSTEM_ALERT_WINDOW\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.REQUEST_INSTALL_PACKAGES\"/>",
|
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.SYSTEM_ALERT_WINDOW\"/>",
|
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.VIBRATE\"/>",
|
"<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>",
|
||||||
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
|
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
|
||||||
"<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>",
|
],
|
||||||
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
|
"abiFilters": ["armeabi-v7a", "arm64-v8a", "x86"],
|
||||||
],
|
"minSdkVersion": 21,
|
||||||
"abiFilters" : [ "armeabi-v7a", "arm64-v8a", "x86" ],
|
"targetSdkVersion": 30,
|
||||||
"minSdkVersion" : 21,
|
"schemes": "medicine"
|
||||||
"targetSdkVersion" : 30,
|
},
|
||||||
"schemes" : "medicine"
|
"sdkConfigs": {
|
||||||
},
|
"ad": {},
|
||||||
"sdkConfigs" : {
|
"maps": {},
|
||||||
"ad" : {},
|
"share": {
|
||||||
"maps" : {},
|
"weixin": {
|
||||||
"share" : {
|
"appid": "wx6b17b40171dea988",
|
||||||
"weixin" : {
|
"UniversalLinks": "https://verification.nuttyreading.com/uni-universallinks/__UNI__C7475A8/"
|
||||||
"appid" : "wx6b17b40171dea988",
|
}
|
||||||
"UniversalLinks" : "https://verification.nuttyreading.com/uni-universallinks/__UNI__C7475A8/"
|
},
|
||||||
}
|
"payment": {
|
||||||
},
|
"alipay": {
|
||||||
"payment" : {
|
"__platform__": ["ios", "android"]
|
||||||
"alipay" : {
|
},
|
||||||
"__platform__" : [ "ios", "android" ]
|
"appleiap": {},
|
||||||
},
|
"weixin": {
|
||||||
"appleiap" : {},
|
"__platform__": ["ios", "android"],
|
||||||
"weixin" : {
|
"appid": "wx6b17b40171dea988",
|
||||||
"__platform__" : [ "ios", "android" ],
|
"UniversalLinks": "https://verification.nuttyreading.com/uni-universallinks/__UNI__C7475A8/"
|
||||||
"appid" : "wx6b17b40171dea988",
|
}
|
||||||
"UniversalLinks" : "https://verification.nuttyreading.com/uni-universallinks/__UNI__C7475A8/"
|
},
|
||||||
}
|
"oauth": {},
|
||||||
},
|
"push": {}
|
||||||
"oauth" : {},
|
},
|
||||||
"push" : {}
|
"splashscreen": {
|
||||||
},
|
"iosStyle": "common",
|
||||||
"splashscreen" : {
|
"androidStyle": "default",
|
||||||
"iosStyle" : "common",
|
"useOriginalMsgbox": true
|
||||||
"androidStyle" : "default",
|
},
|
||||||
"useOriginalMsgbox" : true
|
"ios": {
|
||||||
},
|
"dSYMs": false,
|
||||||
"ios" : {
|
// "UIBackgroundModes" : [ "audio" ], // 背景播放音乐
|
||||||
"dSYMs" : false,
|
"capabilities": {
|
||||||
// "UIBackgroundModes" : [ "audio" ], // 背景播放音乐
|
"entitlements": {
|
||||||
"capabilities" : {
|
"com.apple.developer.associated-domains": ["applinks:verification.nuttyreading.com"]
|
||||||
"entitlements" : {
|
}
|
||||||
"com.apple.developer.associated-domains" : [ "applinks:verification.nuttyreading.com" ]
|
},
|
||||||
}
|
"idfa": false,
|
||||||
},
|
"urltypes": "medicine",
|
||||||
"idfa" : false,
|
"urlschemewhitelist": "nuttyreading,zmzm",
|
||||||
"urltypes" : "medicine",
|
"privacyDescription": {
|
||||||
"urlschemewhitelist" : "nuttyreading,zmzm",
|
"NSPhotoLibraryUsageDescription": "保障您在此app中的修改头像、申诉反馈上传图片、留言上传图片功能的正常使用",
|
||||||
"privacyDescription" : {
|
"NSCameraUsageDescription": "保障您在此app中的修改头像、申诉反馈上传图片、留言上传图片功能的正常使用",
|
||||||
"NSPhotoLibraryUsageDescription" : "保障您在此app中的修改头像、申诉反馈上传图片、留言上传图片功能的正常使用",
|
"NSPhotoLibraryAddUsageDescription": "保障您在此app中的修改头像、申诉反馈上传图片、留言上传图片功能的正常使用"
|
||||||
"NSCameraUsageDescription" : "保障您在此app中的修改头像、申诉反馈上传图片、留言上传图片功能的正常使用",
|
}
|
||||||
"NSPhotoLibraryAddUsageDescription" : "保障您在此app中的修改头像、申诉反馈上传图片、留言上传图片功能的正常使用"
|
},
|
||||||
}
|
"icons": {
|
||||||
},
|
"android": {
|
||||||
"icons" : {
|
"hdpi": "unpackage/res/icons/72x72.png",
|
||||||
"android" : {
|
"xhdpi": "unpackage/res/icons/96x96.png",
|
||||||
"hdpi" : "unpackage/res/icons/72x72.png",
|
"xxhdpi": "unpackage/res/icons/144x144.png",
|
||||||
"xhdpi" : "unpackage/res/icons/96x96.png",
|
"xxxhdpi": "unpackage/res/icons/192x192.png"
|
||||||
"xxhdpi" : "unpackage/res/icons/144x144.png",
|
},
|
||||||
"xxxhdpi" : "unpackage/res/icons/192x192.png"
|
"ios": {
|
||||||
},
|
"appstore": "unpackage/res/icons/1024x1024.png",
|
||||||
"ios" : {
|
"ipad": {
|
||||||
"appstore" : "unpackage/res/icons/1024x1024.png",
|
"app": "unpackage/res/icons/76x76.png",
|
||||||
"ipad" : {
|
"app@2x": "unpackage/res/icons/152x152.png",
|
||||||
"app" : "unpackage/res/icons/76x76.png",
|
"notification": "unpackage/res/icons/20x20.png",
|
||||||
"app@2x" : "unpackage/res/icons/152x152.png",
|
"notification@2x": "unpackage/res/icons/40x40.png",
|
||||||
"notification" : "unpackage/res/icons/20x20.png",
|
"proapp@2x": "unpackage/res/icons/167x167.png",
|
||||||
"notification@2x" : "unpackage/res/icons/40x40.png",
|
"settings": "unpackage/res/icons/29x29.png",
|
||||||
"proapp@2x" : "unpackage/res/icons/167x167.png",
|
"settings@2x": "unpackage/res/icons/58x58.png",
|
||||||
"settings" : "unpackage/res/icons/29x29.png",
|
"spotlight": "unpackage/res/icons/40x40.png",
|
||||||
"settings@2x" : "unpackage/res/icons/58x58.png",
|
"spotlight@2x": "unpackage/res/icons/80x80.png"
|
||||||
"spotlight" : "unpackage/res/icons/40x40.png",
|
},
|
||||||
"spotlight@2x" : "unpackage/res/icons/80x80.png"
|
"iphone": {
|
||||||
},
|
"app@2x": "unpackage/res/icons/120x120.png",
|
||||||
"iphone" : {
|
"app@3x": "unpackage/res/icons/180x180.png",
|
||||||
"app@2x" : "unpackage/res/icons/120x120.png",
|
"notification@2x": "unpackage/res/icons/40x40.png",
|
||||||
"app@3x" : "unpackage/res/icons/180x180.png",
|
"notification@3x": "unpackage/res/icons/60x60.png",
|
||||||
"notification@2x" : "unpackage/res/icons/40x40.png",
|
"settings@2x": "unpackage/res/icons/58x58.png",
|
||||||
"notification@3x" : "unpackage/res/icons/60x60.png",
|
"settings@3x": "unpackage/res/icons/87x87.png",
|
||||||
"settings@2x" : "unpackage/res/icons/58x58.png",
|
"spotlight@2x": "unpackage/res/icons/80x80.png",
|
||||||
"settings@3x" : "unpackage/res/icons/87x87.png",
|
"spotlight@3x": "unpackage/res/icons/120x120.png"
|
||||||
"spotlight@2x" : "unpackage/res/icons/80x80.png",
|
}
|
||||||
"spotlight@3x" : "unpackage/res/icons/120x120.png"
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
}
|
"compilerVersion": 3,
|
||||||
},
|
"nvueLaunchMode": "fast",
|
||||||
"compilerVersion" : 3,
|
"splashscreen": {
|
||||||
"nvueLaunchMode" : "fast",
|
"alwaysShowBeforeRender": false
|
||||||
"splashscreen" : {
|
},
|
||||||
"alwaysShowBeforeRender" : false
|
"nativePlugins": {},
|
||||||
},
|
"uniStatistics": {
|
||||||
"nativePlugins" : {},
|
"enable": true
|
||||||
"uniStatistics" : {
|
},
|
||||||
"enable" : true
|
"safearea": {
|
||||||
},
|
//安全区域配置,仅iOS平台生效
|
||||||
"safearea" : {
|
"bottom": {
|
||||||
//安全区域配置,仅iOS平台生效
|
// 底部安全区域配置
|
||||||
"bottom" : {
|
"offset": "none" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none"
|
||||||
// 底部安全区域配置
|
}
|
||||||
"offset" : "none" // 底部安全区域偏移,"none"表示不空出安全区域,"auto"自动计算空出安全区域,默认值为"none"
|
}
|
||||||
}
|
},
|
||||||
}
|
// 5+App特有相关
|
||||||
},
|
"quickapp": {},
|
||||||
// 5+App特有相关
|
// 快应用特有相关
|
||||||
"quickapp" : {},
|
"mp-weixin": {
|
||||||
// 快应用特有相关
|
"setting": {
|
||||||
"mp-weixin" : {
|
"urlCheck": false,
|
||||||
"setting" : {
|
"es6": true,
|
||||||
"urlCheck" : false,
|
"postcss": true,
|
||||||
"es6" : true,
|
"minified": true
|
||||||
"postcss" : true,
|
},
|
||||||
"minified" : true
|
"usingComponents": true,
|
||||||
},
|
"appid": "wxd3ba52b7661b36be",
|
||||||
"usingComponents" : true,
|
"permission": {
|
||||||
"appid" : "wxd3ba52b7661b36be",
|
"scope.userLocation": {
|
||||||
"permission" : {
|
"desc": "你的位置信息将用于小程序位置接口的效果展示"
|
||||||
"scope.userLocation" : {
|
}
|
||||||
"desc" : "你的位置信息将用于小程序位置接口的效果展示"
|
},
|
||||||
}
|
"uniStatistics": {
|
||||||
},
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"h5": {
|
||||||
},
|
"template": "template.h5.html",
|
||||||
"h5" : {
|
"router": {
|
||||||
"template" : "template.h5.html",
|
"mode": "hash",
|
||||||
"router" : {
|
"base": "/uniappDemo/"
|
||||||
"mode" : "hash",
|
},
|
||||||
"base" : "/uniappDemo/"
|
"optimization": {
|
||||||
},
|
"treeShaking": {
|
||||||
"optimization" : {
|
"enable": true
|
||||||
"treeShaking" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"uniStatistics": {
|
||||||
},
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"_spaceID": "mp-3614b80b-2d75-4462-a481-4998f8187274",
|
||||||
},
|
"uniStatistics": {
|
||||||
"_spaceID" : "mp-3614b80b-2d75-4462-a481-4998f8187274",
|
"version": "2",
|
||||||
"uniStatistics" : {
|
"enable": true
|
||||||
"version" : "2",
|
},
|
||||||
"enable" : true
|
"mp-alipay": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"mp-alipay" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"mp-baidu": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"mp-baidu" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"mp-jd": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"mp-jd" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"mp-kuaishou": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"mp-kuaishou" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"mp-lark": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"mp-lark" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"mp-qq": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"mp-qq" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"mp-toutiao": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"mp-toutiao" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"quickapp-webview-huawei": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"quickapp-webview-huawei" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
},
|
||||||
}
|
"quickapp-webview-union": {
|
||||||
},
|
"uniStatistics": {
|
||||||
"quickapp-webview-union" : {
|
"enable": true
|
||||||
"uniStatistics" : {
|
}
|
||||||
"enable" : true
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// 小程序特有相关
|
// 小程序特有相关
|
||||||
|
|
||||||
@@ -237,6 +237,35 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="order_item" style="">
|
<view class="order_item" style="">
|
||||||
|
<view
|
||||||
|
class="orderReal"
|
||||||
|
v-if="orderContet.orderStatus != 0"
|
||||||
|
style="margin-bottom: 20rpx"
|
||||||
|
>
|
||||||
|
<span style="color: #666; margin-right: 10rpx; float: left"
|
||||||
|
>实付款 :
|
||||||
|
</span>
|
||||||
|
<b v-if="orderContet.orderType == 'point'" style="color: #dd3c0c"
|
||||||
|
>¥ {{ orderContet.bookBuyConfigEntity.realMoney }}</b
|
||||||
|
>
|
||||||
|
<b style="color: #dd3c0c" v-else>
|
||||||
|
<template v-if="orderContet.realMoney > 0">
|
||||||
|
¥{{ orderContet.realMoney }}
|
||||||
|
</template>
|
||||||
|
<text
|
||||||
|
style="margin: 0 4rpx"
|
||||||
|
v-if="
|
||||||
|
orderContet.realMoney > 0 && orderContet.jfDeduction > 0
|
||||||
|
"
|
||||||
|
>
|
||||||
|
+
|
||||||
|
</text>
|
||||||
|
|
||||||
|
<text v-if="orderContet.jfDeduction > 0"
|
||||||
|
>{{ orderContet.jfDeduction }} 积分</text
|
||||||
|
></b
|
||||||
|
>
|
||||||
|
</view>
|
||||||
<view class="orderallpri">
|
<view class="orderallpri">
|
||||||
<span style="color: #666; margin-right: 10rpx; float: left"
|
<span style="color: #666; margin-right: 10rpx; float: left"
|
||||||
>商品总价 :
|
>商品总价 :
|
||||||
@@ -302,18 +331,6 @@
|
|||||||
>¥ {{ orderContet.jfDeduction }}</span
|
>¥ {{ orderContet.jfDeduction }}</span
|
||||||
>
|
>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="orderReal" v-if="orderContet.orderStatus != 0">
|
|
||||||
<span style="color: #666; margin-right: 10rpx; float: left"
|
|
||||||
>实付款 :
|
|
||||||
</span>
|
|
||||||
<b v-if="orderContet.orderType == 'point'" style="color: #dd3c0c"
|
|
||||||
>¥ {{ orderContet.bookBuyConfigEntity.realMoney }}</b
|
|
||||||
>
|
|
||||||
<b style="color: #dd3c0c"
|
|
||||||
><span>¥</span>{{ orderContet.realMoney }}</b
|
|
||||||
>
|
|
||||||
</view>
|
|
||||||
</view>
|
</view>
|
||||||
<view class="order_item">
|
<view class="order_item">
|
||||||
<view class="orderYunf">
|
<view class="orderYunf">
|
||||||
@@ -343,7 +360,9 @@
|
|||||||
<view
|
<view
|
||||||
class="orderReal"
|
class="orderReal"
|
||||||
v-if="
|
v-if="
|
||||||
orderContet.orderStatus >= 1 && orderContet.orderStatus != 5&& orderContet.paymentDate
|
orderContet.orderStatus >= 1 &&
|
||||||
|
orderContet.orderStatus != 5 &&
|
||||||
|
orderContet.paymentDate
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<span style="color: #666; margin-right: 10rpx; float: left"
|
<span style="color: #666; margin-right: 10rpx; float: left"
|
||||||
@@ -353,12 +372,7 @@
|
|||||||
orderContet.paymentDate
|
orderContet.paymentDate
|
||||||
}}</text>
|
}}</text>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view class="orderReal" v-if="orderContet.paymentMethod">
|
||||||
class="orderReal"
|
|
||||||
v-if="
|
|
||||||
orderContet.paymentMethod
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<span style="color: #666; margin-right: 10rpx; float: left"
|
<span style="color: #666; margin-right: 10rpx; float: left"
|
||||||
>付款方式 :
|
>付款方式 :
|
||||||
</span>
|
</span>
|
||||||
@@ -372,20 +386,27 @@
|
|||||||
<span style="color: #666" v-if="orderContet.paymentMethod == 3"
|
<span style="color: #666" v-if="orderContet.paymentMethod == 3"
|
||||||
>苹果支付</span
|
>苹果支付</span
|
||||||
>
|
>
|
||||||
<span style="color: #666" v-if="orderContet.paymentMethod == 4"
|
<span style="color: #666" v-if="orderContet.paymentMethod == 4">
|
||||||
|
<template
|
||||||
|
v-if="
|
||||||
|
orderContet.orderType == 'point' &&
|
||||||
|
orderContet.bookBuyConfigEntity.realMoney > 0
|
||||||
|
"
|
||||||
>
|
>
|
||||||
|
天医币支付<text v-if="orderContet.jfDeduction > 0"
|
||||||
<template v-if="orderContet.orderType == 'point'&&orderContet.bookBuyConfigEntity.realMoney>0">
|
> + 积分抵扣</text
|
||||||
天医币支付<text v-if="orderContet.jfDeduction>0"> + 积分抵扣</text>
|
>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="orderContet.realMoney">
|
<template v-else-if="orderContet.realMoney">
|
||||||
天医币支付 <text v-if="orderContet.jfDeduction>0"> + 积分抵扣</text>
|
天医币支付
|
||||||
|
<text v-if="orderContet.jfDeduction > 0"
|
||||||
|
> + 积分抵扣</text
|
||||||
|
>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="orderContet.jfDeduction>0">
|
<template v-else-if="orderContet.jfDeduction > 0">
|
||||||
积分抵扣
|
积分抵扣
|
||||||
</template>
|
</template>
|
||||||
</span
|
</span></text
|
||||||
></text
|
|
||||||
>
|
>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -207,7 +207,7 @@
|
|||||||
<!-- 实际购买课程到期时间 -->
|
<!-- 实际购买课程到期时间 -->
|
||||||
<text style="line-height: 50rpx;">课程有效期截止到:{{librayList[curIndex].endTime}} </text>
|
<text style="line-height: 50rpx;">课程有效期截止到:{{librayList[curIndex].endTime}} </text>
|
||||||
<!-- 自己买的可以续费 -->
|
<!-- 自己买的可以续费 -->
|
||||||
<text class="xufeiBtn" @click="handleClickGetGoodsList(librayList[curIndex])">续费</text>
|
<text class="xufeiBtn" @click="goNewPay(librayList[curIndex])">续费</text>
|
||||||
</template>
|
</template>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@@ -135,7 +135,7 @@
|
|||||||
<!-- 评论弹出 -->
|
<!-- 评论弹出 -->
|
||||||
<public-module></public-module>
|
<public-module></public-module>
|
||||||
<tree-list ref="treeList" v-if="treeListVisible" @clickCourseInfo="clickCourseInfo"></tree-list>
|
<tree-list ref="treeList" v-if="treeListVisible" @clickCourseInfo="clickCourseInfo"></tree-list>
|
||||||
<buy-pup v-if="pricespop" :proPriceList="proPriceList" @closePup="closePup" @oprate="oprate"></buy-pup>
|
<buy-pup-fudu v-if="pricespop" :proPriceList="proPriceList" @closePup="closePup" @oprate="oprate"></buy-pup-fudu>
|
||||||
<z-navigation></z-navigation>
|
<z-navigation></z-navigation>
|
||||||
<!-- <music-play :playData="playData"></music-play> -->
|
<!-- <music-play :playData="playData"></music-play> -->
|
||||||
</view>
|
</view>
|
||||||
@@ -144,7 +144,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import musicPlay from '@/components/music.vue'
|
// import musicPlay from '@/components/music.vue'
|
||||||
import buyPup from '@/components/buyPup.vue'
|
import buyPupFudu from '@/components/buyPupFudu.vue'
|
||||||
import treeList from '@/components/tagTree.vue'
|
import treeList from '@/components/tagTree.vue'
|
||||||
import commentsList from '@/components/commentsList.vue'
|
import commentsList from '@/components/commentsList.vue'
|
||||||
import emojiList1 from '../../bkhumor-emojiplus/emoji/biaoqin.js'
|
import emojiList1 from '../../bkhumor-emojiplus/emoji/biaoqin.js'
|
||||||
@@ -276,7 +276,7 @@
|
|||||||
// musicPlay
|
// musicPlay
|
||||||
emotion,
|
emotion,
|
||||||
treeList,
|
treeList,
|
||||||
buyPup
|
buyPupFudu
|
||||||
// commentsList
|
// commentsList
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -285,7 +285,7 @@
|
|||||||
oprate(data){
|
oprate(data){
|
||||||
console.log(data,'得到的内容')
|
console.log(data,'得到的内容')
|
||||||
if(data.name == 'buy'){
|
if(data.name == 'buy'){
|
||||||
this.buy(data.item)
|
this.buy(data.item,data.index)
|
||||||
}else if(data.name == 'gouwuche'){
|
}else if(data.name == 'gouwuche'){
|
||||||
this.addCart(data.item)
|
this.addCart(data.item)
|
||||||
}
|
}
|
||||||
@@ -412,7 +412,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 直接购买
|
// 直接购买
|
||||||
buy(val){
|
buy(val,index){
|
||||||
var mynavData = JSON.stringify({
|
var mynavData = JSON.stringify({
|
||||||
goods: [
|
goods: [
|
||||||
{
|
{
|
||||||
@@ -423,7 +423,8 @@
|
|||||||
goodsType: val.goodsType,
|
goodsType: val.goodsType,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
isFudu: true,
|
||||||
|
fuduId: val.catalogueId,
|
||||||
navTitle: val.productName,
|
navTitle: val.productName,
|
||||||
title: val.productName,
|
title: val.productName,
|
||||||
typeId: 0,
|
typeId: 0,
|
||||||
@@ -730,10 +731,10 @@
|
|||||||
xufei(val){
|
xufei(val){
|
||||||
// console.log('去续费,获取商品列表')
|
// console.log('去续费,获取商品列表')
|
||||||
$http.request({
|
$http.request({
|
||||||
url: "sociology/product/getProductListForCourse",
|
url: "common/courseRelearn/relearnShopProductList",
|
||||||
method: "POST", // POST、GET、PUT、DELETE,具体说明查看官方文档
|
method: "POST", // POST、GET、PUT、DELETE,具体说明查看官方文档
|
||||||
data: {
|
data: {
|
||||||
"id": val.catalogueId
|
"catalogueId": val.catalogueId
|
||||||
},
|
},
|
||||||
header: { //默认 无 说明:请求头
|
header: { //默认 无 说明:请求头
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
@@ -742,7 +743,7 @@
|
|||||||
.then(res => {
|
.then(res => {
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
if (res.productList.length > 0) {
|
if (res.productList.length > 0) {
|
||||||
this.proPriceList = res.productList
|
this.proPriceList = res.productList.map((e)=>{return {...e,catalogueId:val.catalogueId}})
|
||||||
// this.curProId = this.proPriceList[0].productId
|
// this.curProId = this.proPriceList[0].productId
|
||||||
this.pricespop = true
|
this.pricespop = true
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -74,7 +74,7 @@
|
|||||||
</image>
|
</image>
|
||||||
<image
|
<image
|
||||||
v-else
|
v-else
|
||||||
src="/static/nobg1.jpg"
|
src="/static/nobg1.jpg" class="goods_item_img"
|
||||||
mode="widthFix"
|
mode="widthFix"
|
||||||
@click="goDetail(item.productId)"
|
@click="goDetail(item.productId)"
|
||||||
></image>
|
></image>
|
||||||
@@ -468,12 +468,21 @@
|
|||||||
<!-- leftSlot -->
|
<!-- leftSlot -->
|
||||||
<template slot="leftSlot" slot-scope="slotProps">
|
<template slot="leftSlot" slot-scope="slotProps">
|
||||||
<view class="price_box order_bottom_box"
|
<view class="price_box order_bottom_box"
|
||||||
><text class="number">共{{ number }}件</text>
|
>
|
||||||
<text class="price"
|
<text class="price"
|
||||||
>合计:
|
>合计:
|
||||||
|
|
||||||
<text class="total"
|
<text class="total"
|
||||||
>¥{{ Number(actualPayment).toFixed(2) }}</text
|
>
|
||||||
|
<template v-if="actualPayment>0">
|
||||||
|
¥{{ Number(actualPayment).toFixed(2) }}
|
||||||
|
</template>
|
||||||
|
<text style="margin: 0 4rpx;" v-if="actualPayment>0&&jfNumber>0">
|
||||||
|
+
|
||||||
|
</text>
|
||||||
|
|
||||||
|
<text v-if="jfNumber>0">{{ jfNumber }} 积分</text>
|
||||||
|
</text
|
||||||
>
|
>
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -716,7 +725,7 @@ export default {
|
|||||||
},
|
},
|
||||||
customButton: [
|
customButton: [
|
||||||
{
|
{
|
||||||
width: "340rpx",
|
width: "200rpx",
|
||||||
text: "立即支付",
|
text: "立即支付",
|
||||||
backgroundColor: "linear-gradient(90deg, #3C77BE 0%,#258feb 100%)",
|
backgroundColor: "linear-gradient(90deg, #3C77BE 0%,#258feb 100%)",
|
||||||
color: "#fff",
|
color: "#fff",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -203,11 +203,11 @@
|
|||||||
url: "/pages/certificate/certificate",
|
url: "/pages/certificate/certificate",
|
||||||
type: "pageJump",
|
type: "pageJump",
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// name: "我的湖分",
|
name: "我的湖分",
|
||||||
// url: "/pages/hufen/hufen",
|
url: "/pages/hufen/hufen",
|
||||||
// type: "pageJump",
|
type: "pageJump",
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
name: "个人资料",
|
name: "个人资料",
|
||||||
url: "/pages/mine/userInfo/persData",
|
url: "/pages/mine/userInfo/persData",
|
||||||
|
|||||||
@@ -190,11 +190,18 @@
|
|||||||
<view class="price_box order_bottom_box">
|
<view class="price_box order_bottom_box">
|
||||||
<text class="price"
|
<text class="price"
|
||||||
>合计:
|
>合计:
|
||||||
<text class="total"
|
<text class="total">
|
||||||
>¥{{ dataInfo.lastFee - jfNumber }}
|
<template v-if="dataInfo.lastFee - jfNumber > 0">
|
||||||
<text v-if="jfNumber > 0" style="margin-left: 10rpx"
|
¥{{ dataInfo.lastFee - jfNumber }}
|
||||||
>+ {{ jfNumber }}积分</text
|
</template>
|
||||||
|
<text
|
||||||
|
style="margin: 0 4rpx"
|
||||||
|
v-if="dataInfo.lastFee - jfNumber > 0 && jfNumber > 0"
|
||||||
>
|
>
|
||||||
|
+
|
||||||
|
</text>
|
||||||
|
|
||||||
|
<text v-if="jfNumber > 0">{{ jfNumber }} 积分</text>
|
||||||
</text>
|
</text>
|
||||||
</text>
|
</text>
|
||||||
</view>
|
</view>
|
||||||
@@ -723,7 +730,7 @@ export default {
|
|||||||
this.dataInfo.lastFee = item.rebateFee;
|
this.dataInfo.lastFee = item.rebateFee;
|
||||||
this.dataInfo.id = item.id;
|
this.dataInfo.id = item.id;
|
||||||
if (this.initData.user && this.initData.user.jf) {
|
if (this.initData.user && this.initData.user.jf) {
|
||||||
this.jfNumber=0
|
this.jfNumber = 0;
|
||||||
var totalMoney = this.dataInfo.lastFee;
|
var totalMoney = this.dataInfo.lastFee;
|
||||||
if (this.initData.user.jf >= totalMoney) {
|
if (this.initData.user.jf >= totalMoney) {
|
||||||
const integerPart = Math.floor(totalMoney);
|
const integerPart = Math.floor(totalMoney);
|
||||||
@@ -732,7 +739,6 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.jfNumberMax = this.initData.user.jf; // 设置 jfNumberMax
|
this.jfNumberMax = this.initData.user.jf; // 设置 jfNumberMax
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
this.$forceUpdate();
|
this.$forceUpdate();
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -33,9 +33,9 @@
|
|||||||
label="orderType"
|
label="orderType"
|
||||||
>
|
>
|
||||||
<template slot="labelSlot" slot-scope="slotProps">
|
<template slot="labelSlot" slot-scope="slotProps">
|
||||||
<view class="label_content AC_List">
|
<view class="label_content AC_List" @click="slotProps.row.relationId?goClick(slotProps.row.relationId):''">
|
||||||
<view class="left">
|
<view class="left">
|
||||||
<view class="title">{{ slotProps.row.orderType }}</view>
|
<view class="title"><view class="AC_time">{{ slotProps.row.createTime }} </view></view>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view
|
||||||
:class="`right ${
|
:class="`right ${
|
||||||
@@ -43,13 +43,14 @@
|
|||||||
}`"
|
}`"
|
||||||
>
|
>
|
||||||
<text v-if="slotProps.row.changeAmount > 0">+</text>
|
<text v-if="slotProps.row.changeAmount > 0">+</text>
|
||||||
<text>{{ slotProps.row.changeAmount }}</text> </view
|
<text>{{ slotProps.row.changeAmount }}</text>
|
||||||
|
</view
|
||||||
><view class="AC_mark" v-if="slotProps.row.remark">{{
|
><view class="AC_mark" v-if="slotProps.row.remark">{{
|
||||||
slotProps.row.remark
|
slotProps.row.remark
|
||||||
}}</view
|
}}</view
|
||||||
><view class="AC_time">{{ slotProps.row.createTime }} </view>
|
>
|
||||||
</view>
|
</view>
|
||||||
<text class="order" style="font-size: 12px;" v-if="slotProps.row.relationId" @click="goClick(slotProps.row.relationId)">订单详情</text>
|
<!-- <text class="order" style="font-size: 12px;" v-if="slotProps.row.relationId" @click="goClick(slotProps.row.relationId)">订单详情</text> -->
|
||||||
</template>
|
</template>
|
||||||
</common-list>
|
</common-list>
|
||||||
</view>
|
</view>
|
||||||
@@ -409,7 +410,7 @@ export default {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
.left {
|
.left {
|
||||||
width: calc(100% - 120rpx) !important;
|
width: calc(100% - 200rpx) !important;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
float: left;
|
float: left;
|
||||||
color: #333;
|
color: #333;
|
||||||
@@ -441,15 +442,18 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.AC_mark {
|
.AC_mark {
|
||||||
|
width: 100%;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
margin-top: 10rpx;
|
margin-top: 10rpx;
|
||||||
margin-bottom: 15rpx;
|
margin-bottom: 15rpx;
|
||||||
// white-space: nowrap;
|
// white-space: nowrap;
|
||||||
color: #343434;
|
color: #343434;
|
||||||
float: left;
|
float: left;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.AC_time {
|
.AC_time {
|
||||||
|
// width: 100%;
|
||||||
color: #909090;
|
color: #909090;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
}
|
}
|
||||||
|
|||||||
12
unpackage/dist/build/app-plus/app-service.js
vendored
12
unpackage/dist/build/app-plus/app-service.js
vendored
File diff suppressed because one or more lines are too long
8
unpackage/dist/build/app-plus/app-view.js
vendored
8
unpackage/dist/build/app-plus/app-view.js
vendored
File diff suppressed because one or more lines are too long
2
unpackage/dist/build/app-plus/manifest.json
vendored
2
unpackage/dist/build/app-plus/manifest.json
vendored
File diff suppressed because one or more lines are too long
BIN
unpackage/release/wumen20250414200401.wgt
Normal file
BIN
unpackage/release/wumen20250414200401.wgt
Normal file
Binary file not shown.
BIN
unpackage/release/wumen20250415200501.wgt
Normal file
BIN
unpackage/release/wumen20250415200501.wgt
Normal file
Binary file not shown.
Reference in New Issue
Block a user