123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- <template>
- <!-- 审核 -->
- <div class="Nopyment">
- <div class="message">
- <div>
- <img :src="data.coverUrl" alt="" />
- </div>
- <div class="text">
- <p class="p1">
- {{ data.name }}
- </p>
- <p class="p2">
- <span>xx课程</span>
- </p>
- <p class="p3">{{ data.teacher }}</p>
- </div>
- <div class="price">
- <p>${{ data.price }}</p>
- </div>
- </div>
- <div class="total">
- <p class="p1">
- <span> 一件商品,总金额: </span>
- <span class="co-value">¥{{ data.price }}</span>
- </p>
- <p class="p2">
- <span> 优惠折扣: </span>
- <span class="co-value">-${{ discount_money }}</span>
- </p>
- <p class="p4">
- <span></span>
- <span class="co-value useCode">使没使用优惠码</span>
- </p>
- <p class="p3">
- <span> 应付: </span>
- <span class="co-value">¥{{ receivables_money }}</span>
- </p>
- </div>
- <div class="submitBtn">
- <div>
- <img src="../../assets/teacherTrain/auditimg.png" alt="" />
- 参加本课程学习需提交申请,审核通过后完成付款即可参加学习。
- </div>
- <button @click="buy(data)">提交申请</button>
- </div>
- </div>
- </template>
- <script>
- //这里可以导入其它文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
- //例如:import 《组件名称》from ‘《组件路径》';
- import { LearnWebSI } from "@/api/api";
- export default {
- //import引入的组件需要注入到对象中才能使用
- components: {},
- props: ["data", "orderNumber", "closePyment"],
- data() {
- //这里存放数据
- return {
- discount_code: "", //优惠码
- discount_money: 0.0, // 优惠金额
- receivables_money: this.data.price, // 应收款
- };
- },
- //计算属性 类似于data概念
- computed: {},
- //监控data中数据变化
- watch: {},
- //方法集合
- methods: {
- // 提交申请
- buy(item) {},
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {},
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {},
- //生命周期-创建之前
- beforeCreated() {},
- //生命周期-挂载之前
- beforeMount() {},
- //生命周期-更新之前
- beforUpdate() {},
- //生命周期-更新之后
- updated() {},
- //生命周期-销毁之前
- beforeDestory() {},
- //生命周期-销毁完成
- destoryed() {},
- //如果页面有keep-alive缓存功能,这个函数会触发
- activated() {},
- };
- </script>
- <style lang="scss" scoped>
- /* @import url(); 引入css类 */
- .Nopyment {
- .message {
- width: 656px;
- height: 152px;
- background: rgba(70, 70, 70, 0.03);
- border-radius: 8px;
- display: flex;
- img {
- width: 120px;
- height: 120px;
- margin-left: 16px;
- margin-top: 16px;
- }
- .text {
- margin-left: 24px;
- .p1 {
- width: 360px;
- // height: 45px;
- max-height: 48px;
- font-size: 16px;
- line-height: 20px;
- color: #2c2c2c;
- margin-top: 22px;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .p2 {
- margin-top: 10px;
- span {
- width: 64px;
- height: 24px;
- background: #ffefd8;
- border-radius: 4px;
- font-weight: bold;
- font-size: 12px;
- text-align: center;
- color: #ff9900;
- line-height: 24px;
- padding: 2px 8px;
- }
- }
- .p3 {
- margin-top: 10px;
- }
- }
- .price {
- p {
- margin-left: 67px;
- margin-top: 22px;
- font-weight: bold;
- font-size: 16px;
- text-align: right;
- color: #ff4c00;
- }
- }
- }
- .promotionCode {
- display: flex;
- justify-content: flex-start;
- align-self: center;
- width: 100%;
- margin-top: 24px;
- height: 58px;
- line-height: 56px;
- border-top: 1px solid rgba(44, 44, 44, 0.15);
- border-bottom: 1px solid rgba(44, 44, 44, 0.15);
- .sp1 {
- font-size: 16px;
- color: #000000;
- }
- input {
- padding: 0 24px;
- flex: 1;
- height: 56px;
- outline: none;
- border: none;
- box-sizing: border-box;
- }
- .sp2 {
- cursor: pointer;
- font-size: 16px;
- color: #ff9900;
- }
- }
- .total {
- width: 656px;
- text-align: right;
- color: #000000;
- font-size: 16px;
- padding-top: 24px;
- .useCode {
- font-size: 12px;
- color: rgba(0, 0, 0, 0.5);
- }
- > p {
- > span {
- display: inline-block;
- }
- .co-value {
- width: 160px;
- }
- }
- .p1 {
- > span {
- display: inline-block;
- line-height: 24px;
- }
- }
- .p2 {
- margin: 16px 0 10px;
- }
- .p3 {
- > span {
- line-height: 36px;
- }
- .co-value {
- font-size: 24px;
- color: #ff4c00;
- }
- }
- }
- .submitBtn {
- text-align: right;
- margin-top: 16px;
- button {
- width: 120px;
- height: 40px;
- background: #ff9900;
- border-radius: 4px;
- color: white;
- line-height: 40px;
- text-align: center;
- border: none;
- outline: none;
- cursor: pointer;
- }
- }
- }
- </style>
|