提交
@@ -17,6 +17,12 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="name_px">
|
||||
<text><span style=" color:red;">*</span>参加培训姓名</text>
|
||||
<view class="name_input">
|
||||
<u--input type="text" v-model="name" placeholder="请输入姓名" clearable></u--input>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="order_top common_radius_box color_shandow goods_box pay_box">
|
||||
@@ -223,7 +229,8 @@ export default {
|
||||
color: "#fff",
|
||||
}, ],
|
||||
initData: {}, //积分
|
||||
user: {}
|
||||
user: {},
|
||||
name: '', //姓名
|
||||
};
|
||||
},
|
||||
onLoad(options) {
|
||||
@@ -377,8 +384,6 @@ export default {
|
||||
this.payType = 4;
|
||||
}
|
||||
});
|
||||
|
||||
console.log('支付是0----',this.selectPayIndex)
|
||||
this.$forceUpdate();
|
||||
} else {
|
||||
this.isDefaultCurrency = false;
|
||||
@@ -387,6 +392,13 @@ export default {
|
||||
},
|
||||
//下单
|
||||
async goBuyJie() {
|
||||
if(!this.name){
|
||||
uni.showToast({
|
||||
title: "培训姓名不能为空",
|
||||
icon: 'none'
|
||||
});
|
||||
return
|
||||
}
|
||||
debounce(async () => {
|
||||
var that = this;
|
||||
let data = {
|
||||
@@ -397,7 +409,8 @@ export default {
|
||||
come: '2',
|
||||
remark: that.options.title,
|
||||
trainingClassId: that.options.id,
|
||||
trainingClassIdentity: that.options.identity +':'+that.options.price
|
||||
trainingClassIdentity: that.options.identity +':'+that.options.price,
|
||||
userName: that.name
|
||||
}
|
||||
|
||||
await $http.request({
|
||||
@@ -1016,4 +1029,26 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
.name_px{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
text{
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.name_input{
|
||||
width: 250rpx;
|
||||
}
|
||||
}
|
||||
/deep/.u-input{
|
||||
height: 65rpx;
|
||||
line-height: 65rpx;
|
||||
}
|
||||
/deep/.uni-input-placeholder{
|
||||
font-size: 28rpx;
|
||||
}
|
||||
/deep/.uni-input-input{
|
||||
font-size: 28rpx;
|
||||
}
|
||||
</style>
|
||||
@@ -15,8 +15,9 @@
|
||||
<view class="list_item" v-for="(item,index) in list" :key="index">
|
||||
<view class="list_item_right">
|
||||
<text class="list_item_title">{{item.title}}</text>
|
||||
<text class="list_item_text">活动类型:<span v-if="item.type==1">线上</span><span v-else>线下</span></text>
|
||||
<text class="list_item_text">活动年份:{{item.year}}</text>
|
||||
<text class="list_item_text">培训日期:{{item.trainingDate}}</text>
|
||||
<text class="list_item_text">培训日期:{{item.trainingDate}}至{{item.endDate}}</text>
|
||||
<text class="list_item_text">培训价格:<span style="color: red;">{{item.finalFee}}元</span></text>
|
||||
<view style=" display: flex; align-items: center;">
|
||||
<uni-button class="list_item_btn" @click="goToDetail(item)">了解详情</uni-button>
|
||||
|
||||
0
unpackage/dist/build/.automator/app-plus/.automator.json
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappchooselocation.js
vendored
Normal file
BIN
unpackage/dist/build/app-plus/__uniapperror.png
vendored
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
1
unpackage/dist/build/app-plus/__uniappes6.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappopenlocation.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniapppicker.js
vendored
Normal file
8
unpackage/dist/build/app-plus/__uniappquill.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappquillimageresize.js
vendored
Normal file
1
unpackage/dist/build/app-plus/__uniappscan.js
vendored
Normal file
BIN
unpackage/dist/build/app-plus/__uniappsuccess.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
25
unpackage/dist/build/app-plus/__uniappview.html
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script>
|
||||
var __UniViewStartTime__ = Date.now();
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||
CSS.supports('top: constant(a)'))
|
||||
document.write(
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<title>View</title>
|
||||
<link rel="stylesheet" href="view.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="__uniappes6.js"></script>
|
||||
<script src="view.umd.min.js"></script>
|
||||
<script src="app-view.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
38
unpackage/dist/build/app-plus/androidPrivacy.json
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"version" : "1",
|
||||
"prompt" : "template",
|
||||
"title" : "服务协议和隐私政策",
|
||||
"message" : " 请你务必审慎阅读、充分理解“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/> 你可阅读<a href=\"https://wumen.taihumed.com/agreement.html\">《用户协议》</a>和<a href=\"https://wumen.taihumed.com/privacy.html\">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
|
||||
"buttonAccept" : "同意并接受",
|
||||
"buttonRefuse" : "暂不同意",
|
||||
"hrefLoader" : "system",
|
||||
"backToExit" : "false",
|
||||
"second" : {
|
||||
"title" : "确认提示",
|
||||
"message" : " 进入应用前,你需先同意<a href=\"https://wumen.taihumed.com/agreement.html\">《用户协议》</a>和<a href=\"https://wumen.taihumed.com/privacy.html\">《隐私政策》</a>,否则将退出应用。",
|
||||
"buttonAccept" : "同意并继续",
|
||||
"buttonRefuse" : "退出应用"
|
||||
},
|
||||
"disagreeMode" : {
|
||||
"support" : false,
|
||||
"loadNativePlugins" : false,
|
||||
"visitorEntry" : false,
|
||||
"showAlways" : false
|
||||
},
|
||||
"styles" : {
|
||||
"backgroundColor" : "#FFF",
|
||||
"borderRadius" : "5px",
|
||||
"title" : {
|
||||
"color" : "#333"
|
||||
},
|
||||
"buttonAccept" : {
|
||||
"color" : "#333"
|
||||
},
|
||||
"buttonRefuse" : {
|
||||
"color" : "#333"
|
||||
},
|
||||
"buttonVisitor" : {
|
||||
"color" : "#55aaff"
|
||||
}
|
||||
}
|
||||
}
|
||||
8
unpackage/dist/build/app-plus/app-config-service.js
vendored
Normal file
1
unpackage/dist/build/app-plus/app-config.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]);
|
||||
38
unpackage/dist/build/app-plus/app-service.js
vendored
Normal file
27
unpackage/dist/build/app-plus/app-view.js
vendored
Normal file
BIN
unpackage/dist/build/app-plus/assets/app_update_close.901cf6af.png
vendored
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
unpackage/dist/build/app-plus/assets/bg_top.125b3525.png
vendored
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
unpackage/dist/build/app-plus/assets/uniicons.2579c7da.ttf
vendored
Normal file
1
unpackage/dist/build/app-plus/manifest.json
vendored
Normal file
BIN
unpackage/dist/build/app-plus/static/40x40.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
5932
unpackage/dist/build/app-plus/static/aliplayercomponents-1.0.9.min.js
vendored
Normal file
BIN
unpackage/dist/build/app-plus/static/arrow.png
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
unpackage/dist/build/app-plus/static/bg1.jpg
vendored
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
unpackage/dist/build/app-plus/static/bg2.jpg
vendored
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
unpackage/dist/build/app-plus/static/biaoqing.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/1.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/10.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/11.gif
vendored
Normal file
|
After Width: | Height: | Size: 779 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/12.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/13.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/14.gif
vendored
Normal file
|
After Width: | Height: | Size: 830 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/15.gif
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/16.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/17.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/18.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/19.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/2.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/20.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/21.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/22.gif
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/23.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/24.gif
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/25.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/26.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/27.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/28.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/29.gif
vendored
Normal file
|
After Width: | Height: | Size: 822 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/3.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/30.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/31.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/32.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/33.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/34.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/35.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/36.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/37.gif
vendored
Normal file
|
After Width: | Height: | Size: 843 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/38.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/39.gif
vendored
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/4.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/40.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/41.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/42.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/43.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/44.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/45.gif
vendored
Normal file
|
After Width: | Height: | Size: 817 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/46.gif
vendored
Normal file
|
After Width: | Height: | Size: 844 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/47.gif
vendored
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/48.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/49.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/5.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/50.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/51.gif
vendored
Normal file
|
After Width: | Height: | Size: 822 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/52.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/53.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/54.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/55.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/56.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/57.gif
vendored
Normal file
|
After Width: | Height: | Size: 650 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/58.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/59.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/6.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/60.gif
vendored
Normal file
|
After Width: | Height: | Size: 815 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/61.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/62.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/63.gif
vendored
Normal file
|
After Width: | Height: | Size: 719 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/64.gif
vendored
Normal file
|
After Width: | Height: | Size: 727 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/65.gif
vendored
Normal file
|
After Width: | Height: | Size: 758 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/66.gif
vendored
Normal file
|
After Width: | Height: | Size: 753 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/67.gif
vendored
Normal file
|
After Width: | Height: | Size: 753 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/68.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/69.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/7.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/70.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/71.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/72.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/73.gif
vendored
Normal file
|
After Width: | Height: | Size: 658 B |
BIN
unpackage/dist/build/app-plus/static/bkhumor-emoji/74.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.1 KiB |