from.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <el-dialog
  3. @close="closea"
  4. v-model="show"
  5. :show-close="false"
  6. width="25%"
  7. :lock-scroll="false"
  8. >
  9. <div class="width">
  10. <div class="toptitle">申请免费试用</div>
  11. <div class="topfont">请填写表单信息,我们团队将尽快与您联系</div>
  12. </div>
  13. <div class="formbox">
  14. <el-form :model="formLabelAlign">
  15. <el-form-item label="您的姓名">
  16. <el-input
  17. v-model="formLabelAlign.name"
  18. placeholder="请填写您的真实姓名(必填)"
  19. />
  20. </el-form-item>
  21. <el-form-item label="公司名称">
  22. <el-input
  23. v-model="formLabelAlign.corporation"
  24. placeholder="请填写公司真实名称"
  25. />
  26. </el-form-item>
  27. <el-form-item label="邮箱">
  28. <el-input
  29. v-model="formLabelAlign.email"
  30. placeholder="请填写您的邮箱地址"
  31. />
  32. </el-form-item>
  33. <!-- <el-form-item label="手机号">
  34. <el-input
  35. v-model="formLabelAlign.phone"
  36. placeholder="请填写您的手机号码"
  37. />
  38. </el-form-item> -->
  39. <el-form-item label="申请版本">
  40. <el-select
  41. v-model="formLabelAlign.type"
  42. placeholder="请选择您需要试用的版本(必填)"
  43. >
  44. <el-option
  45. v-for="(item, idx) in typeList.list"
  46. :key="idx"
  47. :label="item.label"
  48. :value="item.value"
  49. />
  50. </el-select>
  51. </el-form-item>
  52. </el-form>
  53. </div>
  54. <div style="display: flex; justify-content: center">
  55. <div class="button" @click="apply">立即申请</div>
  56. </div>
  57. </el-dialog>
  58. </template>
  59. <script setup>
  60. import { useRouter } from "vue-router";
  61. import { onMounted, ref, reactive, watch } from "vue";
  62. import * as configApi from "../../api/config";
  63. import { ElMessage } from "element-plus";
  64. onMounted(() => {});
  65. //表单数据
  66. const formLabelAlign = reactive({
  67. name: "",
  68. region: "",
  69. type: "",
  70. corporation: "",
  71. email: "",
  72. });
  73. const props = defineProps({
  74. dialogTableVisible2: {
  75. default: false,
  76. },
  77. });
  78. const show = ref(false);
  79. watch(
  80. () => props.dialogTableVisible2,
  81. (newVal) => {
  82. show.value = props.dialogTableVisible2;
  83. }
  84. );
  85. const emit = defineEmits(["todetails"], ["like"]);
  86. const todetails = () => {
  87. emit("clos");
  88. };
  89. const islogin = ref(0);
  90. if(localStorage.getItem("access_token")){
  91. islogin.value = 1
  92. }
  93. // show.value = props.dialogTableVisible2;
  94. //发起试用申请
  95. const apply = () => {
  96. if (islogin.value == 1) {
  97. applya();
  98. } else {
  99. ElMessage({
  100. message: "未登录",
  101. type: "error",
  102. });
  103. }
  104. };
  105. const applya = async () => {
  106. try {
  107. const { data } = await configApi.trial({
  108. realname: formLabelAlign.name,
  109. company_name: formLabelAlign.corporation,
  110. email: formLabelAlign.email,
  111. type: formLabelAlign.type,
  112. });
  113. show.value = false;
  114. todetails();
  115. } catch (error) {}
  116. };
  117. //关闭模态框
  118. const closea = () => {
  119. todetails();
  120. };
  121. //申请试用类型
  122. const typeList = reactive({
  123. list: [],
  124. });
  125. const type = async () => {
  126. try {
  127. const { data } = await configApi.trialType({});
  128. typeList.list = data;
  129. } catch (error) {}
  130. };
  131. onMounted(type);
  132. </script>
  133. <style lang="scss" scoped>
  134. :deep(.el-input) {
  135. width: 350px !important;
  136. }
  137. .two {
  138. overflow: hidden;
  139. }
  140. :deep(.el-dialog) {
  141. --el-dialog-width: 520px !important;
  142. }
  143. :deep(.el-popup-parent--hidden) {
  144. width: 100% !important;
  145. }
  146. ::v-deep(.el-form-item__label) {
  147. width: 83px !important;
  148. }
  149. .formbox {
  150. padding: 0 50px;
  151. }
  152. :deep(.el-popup-parent--hidden) {
  153. width: 100% !important;
  154. }
  155. .button {
  156. width: 420px;
  157. height: 44px;
  158. background: #0d0fff;
  159. border-radius: 4px;
  160. font-family: PingFangSC, PingFang SC;
  161. font-weight: 400;
  162. font-size: 16px;
  163. color: #ffffff;
  164. line-height: 44px;
  165. text-align: center;
  166. font-style: normal;
  167. margin-top: 48px;
  168. cursor: pointer;
  169. margin-bottom: 20px;
  170. }
  171. .width {
  172. width: 100%;
  173. padding: 20px 60px 0px;
  174. box-sizing: border-box;
  175. display: flex;
  176. flex-direction: column;
  177. align-items: center;
  178. justify-content: center;
  179. .image {
  180. width: 300px;
  181. height: 300px;
  182. background: rgba(125, 125, 157, 0.3);
  183. margin-top: 22px;
  184. }
  185. .bottom_font {
  186. font-family: PingFangSC, PingFang SC;
  187. font-weight: 400;
  188. font-size: 14px;
  189. color: #333333;
  190. line-height: 20px;
  191. text-align: left;
  192. font-style: normal;
  193. margin-top: 18px;
  194. }
  195. .topfont {
  196. font-family: PingFangSC, PingFang SC;
  197. font-weight: 400;
  198. font-size: 14px;
  199. color: #333333;
  200. line-height: 20px;
  201. text-align: center;
  202. font-style: normal;
  203. margin-top: 12px;
  204. margin-bottom: 20px;
  205. }
  206. .toptitle {
  207. font-family: PingFangSC, PingFang SC;
  208. font-weight: 600;
  209. font-size: 20px;
  210. color: #333333;
  211. line-height: 28px;
  212. text-align: center;
  213. font-style: normal;
  214. }
  215. }
  216. </style>