ContactSaveEnDia.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. <script setup>
  2. import { reactive, ref,watch } from "vue";
  3. import { ElMessage } from 'element-plus'
  4. import { customInterence } from '@/api/api.js';
  5. const props = defineProps({
  6. title:{
  7. type:String,
  8. default:'标题'
  9. },
  10. showAddDia:{
  11. type:Boolean,
  12. required:true
  13. },
  14. contactsSubmitForm:{
  15. type:Object,
  16. default:()=> {}
  17. },
  18. companyId:{
  19. type:Number,
  20. required:true
  21. }
  22. })
  23. const emit = defineEmits(['close','updateList'])
  24. const telCodeArr = [
  25. { value: '86', label: '+86' },
  26. { value: '852', label: "+852" },
  27. { value: '886', label: '+886' },
  28. { value: '1', label: '+1' },
  29. { value: '65', label: '+65' },
  30. { value: '62', label: '+62' },
  31. { value:'081',label: '+081' },
  32. { value:'44',label: '+44' }
  33. ]
  34. // 关闭弹窗
  35. const submitForm = reactive({
  36. Id:0,
  37. Name:"",
  38. Email:"",
  39. TelCode:'',
  40. Tel:'',
  41. carte:'',
  42. Enabled:1
  43. })
  44. const addContactsForm = ref(null)
  45. function closeAddDia(){
  46. submitForm.Id=0
  47. submitForm.Name=""
  48. submitForm.Email=""
  49. submitForm.TelCode=''
  50. submitForm.Tel=''
  51. submitForm.carte=''
  52. submitForm.Enabled=1
  53. emit('close')
  54. addContactsForm.value.clearValidate()
  55. }
  56. watch(
  57. () => props.showAddDia,
  58. (nval) => {
  59. if(!nval) return
  60. if(props.contactsSubmitForm.Id){
  61. submitForm.Id=props.contactsSubmitForm.Id,
  62. submitForm.Name=props.contactsSubmitForm.Name,
  63. submitForm.Email=props.contactsSubmitForm.Email,
  64. submitForm.TelCode=props.contactsSubmitForm.CountryCode,
  65. submitForm.Tel=props.contactsSubmitForm.Mobile,
  66. submitForm.carte=props.contactsSubmitForm.BusinessCardUrl,
  67. submitForm.Enabled=props.contactsSubmitForm.Enabled
  68. }
  69. }
  70. )
  71. /* 预览 */
  72. function preview() {
  73. $("#img").click();
  74. }
  75. function clickinput() {
  76. //上传模拟点击
  77. // debugger
  78. $("#fileCard").click();
  79. }
  80. // 选择文件上传
  81. function fileSelected() {
  82. //选择文件上传
  83. if (document.getElementById("fileCard").files[0]) {
  84. let hostfile = document.getElementById("fileCard").files[0];
  85. let size = Math.floor(hostfile.size / 1024 / 1024);
  86. if (size > 200) {
  87. ElMessage.error("上传文件大小不能大于200M!");
  88. hostfile = {};
  89. return false;
  90. }
  91. if (
  92. hostfile.name.toLowerCase().includes(".png") ||
  93. hostfile.name.toLowerCase().includes(".jpg") ||
  94. hostfile.name.toLowerCase().includes(".jpeg")
  95. ) {
  96. let form = new FormData();
  97. form.append("file", hostfile); //hostfile.name
  98. customInterence.upload(form).then((res) => {
  99. if (res.Ret === 200) {
  100. submitForm.carte = res.Data.ResourceUrl;
  101. }
  102. $("#fileCard").val("");
  103. hostfile = {};
  104. });
  105. } else {
  106. ElMessage.error("上传文件格式不正确!");
  107. }
  108. }
  109. }
  110. // 提交表单
  111. const showHintDia = ref(false);
  112. const existContactList = ref([])
  113. const contactSource = ref('')
  114. function submit(){
  115. addContactsForm.value.validate(valid=>{
  116. if(valid){
  117. // 保存
  118. const params={
  119. Id:submitForm.Id,
  120. CompanyId:companyId,
  121. Name:submitForm.Name,
  122. Email:submitForm.Email,
  123. CountryCode:submitForm.TelCode,
  124. Mobile:submitForm.Tel,
  125. BusinessCardUrl:submitForm.carte,
  126. Enabled:submitForm.Enabled
  127. }
  128. customInterence.contactsSaveEn(params).then(res=>{
  129. if(res.Ret == 200){
  130. if(submitForm.Id==0){
  131. // 新增
  132. emit('updateList')
  133. }else{
  134. emit('updateList')
  135. }
  136. ElMessage.success(`${props.title}成功`)
  137. closeAddDia()
  138. }else if(res.Ret == 1001){
  139. existContactList.value = res.Data?[res.Data]:[]
  140. contactSource.value = res.Data.Status
  141. showHintDia.value=true
  142. }
  143. })
  144. }
  145. })
  146. }
  147. // 移动联系人
  148. function moveContact(){
  149. if(!(existContactList.value && existContactList.value.length>0)){
  150. return
  151. }
  152. customInterence.contactsMoveEn({EmailId:existContactList.value[0].Id,CompanyId:props.companyId}).then(res=>{
  153. if(res.Ret == 200){
  154. ElMessage.success('移动成功')
  155. emit('updateList')
  156. showHintDia.value=false
  157. closeAddDia()
  158. }
  159. })
  160. }
  161. </script>
  162. <template>
  163. <el-dialog
  164. :title="title"
  165. :close-on-click-modal="false"
  166. :modal-append-to-body="false"
  167. :model-value="showAddDia"
  168. width="725px"
  169. @closed="closeAddDia"
  170. >
  171. <div style="padding: 10px 66px 35px 66px">
  172. <el-form
  173. :model="submitForm"
  174. ref="addContactsForm"
  175. label-position="right"
  176. label-width="92px"
  177. >
  178. <el-form-item
  179. label="联系人姓名"
  180. prop="Name"
  181. :rules="{
  182. required: true,
  183. message: '联系人姓名不能为空',
  184. trigger: 'blur',
  185. }"
  186. >
  187. <el-input
  188. v-model="submitForm.Name"
  189. style="width: 337px"
  190. placeholder="请输入联系人姓名"
  191. size="medium"
  192. ></el-input>
  193. </el-form-item>
  194. <el-form-item
  195. label="邮箱地址"
  196. prop="Email"
  197. :rules="[
  198. { required: true, message: '邮箱地址不能为空', trigger: 'blur' },
  199. { type: 'email', message: '邮箱地址格式不正确', trigger: 'blur' },
  200. ]"
  201. >
  202. <el-input
  203. v-model="submitForm.Email"
  204. style="width: 337px"
  205. placeholder="请输入邮箱地址"
  206. size="medium"
  207. ></el-input>
  208. </el-form-item>
  209. <el-form-item label="手机号" prop="Phone">
  210. <el-select
  211. v-model="submitForm.TelCode"
  212. placeholder="区号"
  213. style="width: 90px"
  214. >
  215. <el-option
  216. v-for="item in telCodeArr"
  217. :key="item.value"
  218. :label="item.label"
  219. :value="item.value"
  220. />
  221. </el-select>
  222. <el-input
  223. v-model="submitForm.Tel"
  224. placeholder="手机号"
  225. style="width: 245px"
  226. clearable
  227. />
  228. </el-form-item>
  229. <el-form-item label="个人名片" prop="carte" style="width: 100%">
  230. <input
  231. type="file"
  232. name="file"
  233. @change="fileSelected"
  234. id="fileCard"
  235. class="true-file"
  236. style="display: none"
  237. />
  238. <el-button
  239. type="primary"
  240. size="medium"
  241. @click="clickinput"
  242. v-if="!submitForm.carte"
  243. >点击上传</el-button
  244. >
  245. <div class="img_item" v-if="submitForm.carte">
  246. <el-image
  247. :src="submitForm.carte"
  248. alt=""
  249. style="background: #aaa; width: 280px; height: 180px"
  250. :preview-src-list="submitForm.carte.split(',')"
  251. id="img"
  252. />
  253. <i
  254. class="el-icon-zoom-in"
  255. style="position: absolute; right: 20px; top: 20px; color: #fff"
  256. @click="preview"
  257. ></i>
  258. <span
  259. style="
  260. position: absolute;
  261. right: 12px;
  262. bottom: 1px;
  263. color: #409eff;
  264. font-size: 16px;
  265. cursor: pointer;
  266. "
  267. @click.stop="clickinput"
  268. >重新上传</span
  269. >
  270. </div>
  271. </el-form-item>
  272. <el-form-item label="状态" prop="Enabled">
  273. <el-radio-group v-model="submitForm.Enabled">
  274. <el-radio :label="1">启用</el-radio>
  275. <el-radio :label="0">禁用</el-radio>
  276. </el-radio-group>
  277. </el-form-item>
  278. </el-form>
  279. <div style="text-align: center; margin-top: 60px">
  280. <el-button
  281. type="primary"
  282. size="medium"
  283. style="width: 120px; margin-right: 6px"
  284. @click="submit"
  285. >确定</el-button
  286. >
  287. <el-button size="medium" style="width: 120px" @click="closeAddDia"
  288. >取消</el-button
  289. >
  290. </div>
  291. </div>
  292. </el-dialog>
  293. <!-- 存在联系人的提示弹窗 -->
  294. <el-dialog
  295. title="提示"
  296. :close-on-click-modal="false"
  297. :modal-append-to-body="false"
  298. :model-value="showHintDia"
  299. width="920px"
  300. >
  301. <div style="padding: 0 40px">
  302. <p style="margin-bottom: 20px">检测到系统中已存在以下联系人</p>
  303. <p style="margin-bottom: 10px" v-if="contactSource">
  304. 来源:{{
  305. contactSource == 1
  306. ? "正式客户列表"
  307. : contactSource == 2
  308. ? "临时权限列表"
  309. : "终止权限列表"
  310. }}
  311. </p>
  312. <el-table :data="existContactList" border>
  313. <el-table-column label="联系人姓名" align="center" prop="Name">
  314. <template #default="{ row }">
  315. <img
  316. :src="$icons.card"
  317. alt=""
  318. style="width: 17px; cursor: pointer; marginright: 5px"
  319. v-if="row.BusinessCardUrl"
  320. @click="reviewCard(row.BusinessCardUrl)"
  321. />
  322. <span>{{ row.Name }}</span>
  323. </template>
  324. </el-table-column>
  325. <el-table-column label="注册公司" align="center" prop="CompanyName">
  326. <template #default="{ row }">
  327. {{
  328. row.CompanyName ? row.CompanyName : row.RegisterCompanyName || "-"
  329. }}
  330. </template>
  331. </el-table-column>
  332. <el-table-column label="手机号" align="center" prop="Mobile">
  333. <template #default="{ row }">
  334. {{ row.CountryCode }}-{{ row.Mobile }}
  335. </template>
  336. </el-table-column>
  337. <el-table-column label="注册时间" align="center" prop="CreateTime">
  338. <template #default="{ row }">
  339. {{ row.CreateTime || "-" }}
  340. </template>
  341. </el-table-column>
  342. <el-table-column label="邮箱地址" align="center" prop="Email">
  343. <template #default="{ row }">
  344. {{ row.Email }}
  345. </template>
  346. </el-table-column>
  347. </el-table>
  348. <div style="text-align: center; margin: 60px 0 40px">
  349. <el-button
  350. @click="showHintDia = false"
  351. style="min-width: 120px; margin-right: 6px"
  352. >取消</el-button
  353. >
  354. <el-button
  355. type="primary"
  356. @click="moveContact"
  357. style="min-width: 120px; padding: 12px 10px"
  358. >移动至当前用户</el-button
  359. >
  360. </div>
  361. </div>
  362. </el-dialog>
  363. </template>
  364. <style scoped lang="scss"></style>