lxf
2025-04-19 c3ae5e79cebd5dd1348373e96c247576fced30c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<template>
  <div class="wrapper">
    <div class="header">
      <mt-header title="合作协议">
        <router-link to="/user" slot="left">
          <mt-button icon="back">返回</mt-button>
        </router-link>
        <!-- <mt-button icon="more" slot="right"></mt-button> -->
      </mt-header>
    </div>
    <div style="margin:12px 20px;">
      <h1>委托投资合作协议</h1>
      <p></p>
      <p>本合作协议(下称“本协议”)由以下各方签署:</p>
      <p>甲方</p>
      <p>第一条 总则</p>
      <p>
        1,甲方是中金所、期货公司、期货风险子公司等规定的股指及商品期权合格机构投资者,并有参与交易的资格和权限,乙方是对金融市场投资风险有独立认知和投资经验的自然人,在金融市场有投资能力和抗风险能力,认可并了解中金所、期货公司、期货风险子公司的交易规则,委托甲方参与股指及商品期权投资。</p>
    </div>
    <div class="agree-footer text-center">
      <div class="agree">
        <p @click="isAgree">
          <i :class="agree?'glyphicon glyphicon glyphicon-ok-sign red':'glyphicon glyphicon-ok-circle'"></i>
          我同意
          <a href="#">《委托合作协议》</a>
        </p>
      </div>
      <div class="btn-box">
        <mt-button :class="agree?'btn btn-red':'btn btn-default'" size="small" @click="toBuy()">确定</mt-button>
        <mt-button class="btn btn-cancel" size="small" @click="toBuy">取消</mt-button>
      </div>
    </div>
  </div>
 
</template>
<script>
export default {
  data () {
    return {
      agree: false
    }
  },
  methods: {
    isAgree () {
      let i = false
      let j = true
      this.agree = this.agree ? i : j
    },
    toBuy () {
      this.$router.push('/buy')
    }
  }
}
</script>
<style lang="less" scoped>
  h1 {
    font-size: 0.25rem;
    text-align: center;
  }
 
  h4 {
    font-size: 13px;
    line-height: 25px;
    margin: 25px 0;
  }
 
  p {
    font-size: 12px;
    line-height: 25px;
    text-indent: 2em;
  }
 
  .agree-footer {
    .agree {
      padding: 0.2rem 0;
    }
 
    a {
      color: #177be1;
    }
 
  }
</style>