cardHolder.vue 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682
  1. <template>
  2. <view class="content">
  3. <view class='wrap'>
  4. <u-navbar title="电子名片" placeholder bgColor="#112253" titleStyle="color:#fff">
  5. <view class="u-nav-slot relative" slot="left">
  6. <u-icon name="bell" size="26" @click="toNotice" color="#fff"></u-icon>
  7. <u-badge :isDot="unread>0?true:false" type="error" class="point"></u-badge>
  8. </view>
  9. </u-navbar>
  10. <view class="content1 flex-row-center">
  11. <view class="search flex flex-between" @click="search">
  12. <view class="left flex">
  13. <uni-icons type="search" size="24" color="#9199af"></uni-icons>
  14. <text class="search-val"> {{searchVal?searchVal:'搜索名片'}}</text>
  15. <uni-icons type="closeempty" size="24" @click.native.stop="delSearchVal" v-if="searchVal">
  16. </uni-icons>
  17. </view>
  18. <view class="right">
  19. <image style='width:32rpx;height:32rpx;' v-if="searchVal" @click.native.stop="delSearchVal"
  20. src="../../static/imgs/card/searchdel.png" mode="widthFix"></image>
  21. <uni-icons type="mic" size="24" @click.native.stop="micOpen" color="#9199af"></uni-icons>
  22. </view>
  23. </view>
  24. <view class="col flex">
  25. <uni-icons type="scan" size="30" @click="scan" color="#fff"></uni-icons>
  26. </view>
  27. </view>
  28. <view
  29. :style='cardHolderList.length>0?"padding:20rpx 20rpx 200rpx 20rpx;":"padding:20rpx 20rpx 20rpx 20rpx;"'
  30. class="content2">
  31. <view class="all-type flex" @click="selectType">
  32. <text style="margin-right: 10rpx;">{{typeName?typeName:'全部分类'}}</text>
  33. <uni-icons type="bottom" size="18" color="#fff"></uni-icons>
  34. </view>
  35. </view>
  36. </view>
  37. <!-- :style='cardHolderList.length>0?"top:376rpx;":"top:276rpx;"' -->
  38. <view class="content3 relative" style="top: 380rpx;">
  39. <mescroll-uni v-if='cardHolderList' :up="upOption" :down="downOption" ref="mescrollRef" @init="mescrollInit"
  40. @up="upCallback" @down="downCallback" height="1060">
  41. <view v-for='(item,index) in cardHolderList' @longpress="longpress" class="item flex">
  42. <!-- <view class="card-list-item" style="background:red"> -->
  43. <view class="card-list-item"
  44. :style="'background: url('+item.currentBackground+');background-size:100% 100%'">
  45. <view class="card-content style1" v-if="item.cuttentTemplate==1">
  46. <view class="left">
  47. <u--image :showLoading="true" :src="item.headSculpture" width="66px" height="66px"
  48. shape="circle"></u--image>
  49. </view>
  50. <view class="right">
  51. <view class="row1">
  52. <text class="name">{{item.name}}</text>
  53. <text class="post">{{item.post}}</text>
  54. </view>
  55. <view class="row2">
  56. {{item.companyName}}
  57. </view>
  58. <view class="row3 flex" @click="toMap(item)">
  59. <u--image :showLoading="true" src="/static/imgs/card/address1.png" width="13px"
  60. height="16px"></u--image>
  61. <view class='icon-text'>{{ item.province }}{{ item.city }}{{ item.area }}</view>
  62. </view>
  63. <view @click="freeTell(item)" class="row4 flex">
  64. <u--image :showLoading="true" src="/static/imgs/card/phone1.png" width="12px"
  65. height="13px"></u--image>
  66. <view class='icon-text'>{{ item.phone }}</view>
  67. </view>
  68. <view @click='remarkEdit(item)' class="row2 flex" style="color: #808080">
  69. <u--image :showLoading="true" src="/static/imgs/card/remark1.png" width="10px"
  70. height="12px"></u--image>
  71. <view class='icon-text' style="color: #808080;">{{item.remark?item.remark:'单击添加备注'}}
  72. </view>
  73. </view>
  74. </view>
  75. <u-checkbox-group v-if='islongPress' placement="column"
  76. @change="checkboxChange($event,index)">
  77. <u-checkbox iconColor='#4977FC' activeColor="#fff" :name='index+1'
  78. :checked='item.checked' :customStyle="{marginBottom: '8px'}">
  79. </u-checkbox>
  80. </u-checkbox-group>
  81. </view>
  82. <view class="card-content style1 flex-between" v-if="item.cuttentTemplate==2">
  83. <view class="right">
  84. <view class="row1">
  85. <text class="name">{{item.name}}</text>
  86. <text class="post">{{item.post}}</text>
  87. </view>
  88. <view class="row2">
  89. {{item.companyName}}
  90. </view>
  91. <view @click="toMap(item)" class="row3 flex">
  92. <u--image :showLoading="true" src="/static/imgs/card/address3.png" width="13px"
  93. height="16px"></u--image>
  94. <view class='icon-text'>{{ item.province }}{{ item.city }}{{ item.area }}</view>
  95. </view>
  96. <view @click="freeTell(item)" class="row4 flex">
  97. <u--image :showLoading="true" src="/static/imgs/card/phone3.png" width="12px"
  98. height="13px"></u--image>
  99. <view class='icon-text'>{{ item.phone }}</view>
  100. </view>
  101. <view @click='remarkEdit(item)' class="row2 flex" style="color: #808080">
  102. <u--image :showLoading="true" src="/static/imgs/card/remark3.png" width="10px"
  103. height="12px"></u--image>
  104. <view class='icon-text' style="color: #808080;">{{item.remark?item.remark:'单击添加备注'}}
  105. </view>
  106. </view>
  107. </view>
  108. <view class="left">
  109. <u--image :showLoading="true" :src="item.headSculpture" width="66px" height="66px"
  110. shape="circle" v-if="item.headSculpture"></u--image>
  111. <u--image :showLoading="true" src="/./../static/imgs/card/defaulthead.png" width="66px"
  112. height="66px" shape="circle" v-else></u--image>
  113. </view>
  114. <u-checkbox-group v-if='islongPress' placement="column"
  115. @change="checkboxChange($event,index)">
  116. <u-checkbox iconColor='#4977FC' activeColor="#fff" :name='index+1'
  117. :checked='item.checked' :customStyle="{marginBottom: '8px'}">
  118. </u-checkbox>
  119. </u-checkbox-group>
  120. </view>
  121. <view class="card-content style2" v-if="item.cuttentTemplate==3">
  122. <view class="top">
  123. <u--image :showLoading="true" :src="item.headSculpture" width="66px" height="66px"
  124. shape="circle" v-if="item.headSculpture"></u--image>
  125. <u--image :showLoading="true" src="/./../static/imgs/card/defaulthead.png" width="66px"
  126. height="66px" shape="circle" v-else></u--image>
  127. </view>
  128. <view class="bottom flex">
  129. <view class="left">
  130. <view class="row1">
  131. <text class="name">{{item.name}}</text>
  132. <text class="post">{{item.post}}</text>
  133. </view>
  134. <view class="row2">
  135. {{item.companyName}}
  136. </view>
  137. </view>
  138. <view class="right">
  139. <view @click="toMap(item)" class="row1 flex">
  140. <u--image :showLoading="true" src="/static/imgs/card/address1.png" width="13px"
  141. height="16px"></u--image>
  142. <view class='icon-text'>{{ item.province }}{{ item.city }}{{ item.area }}</view>
  143. </view>
  144. <view @click="freeTell(item)" class="row2 flex">
  145. <u--image :showLoading="true" src="/static/imgs/card/phone1.png" width="12px"
  146. height="13px"></u--image>
  147. <view class='icon-text'>{{ item.phone }}</view>
  148. </view>
  149. <view @click='remarkEdit(item)' class="row2 flex" style="color: #808080">
  150. <u--image :showLoading="true" src="/static/imgs/card/remark1.png" width="10px"
  151. height="12px"></u--image>
  152. <view class='icon-text' style="color: #808080;">
  153. {{item.remark?item.remark:'单击添加备注'}}
  154. </view>
  155. </view>
  156. </view>
  157. </view>
  158. <u-checkbox-group v-if='islongPress' placement="column"
  159. @change="checkboxChange($event,index)">
  160. <u-checkbox iconColor='#4977FC' activeColor="#fff" :name='index+1'
  161. :checked='item.checked' :customStyle="{marginBottom: '8px'}">
  162. </u-checkbox>
  163. </u-checkbox-group>
  164. </view>
  165. <view class="card-content style2" v-if="item.cuttentTemplate==4">
  166. <view class="top">
  167. <view class="row1">
  168. <text class="name">{{item.name}}</text>
  169. <text class="post">{{item.post}}</text>
  170. </view>
  171. <view class="row2">
  172. {{item.companyName}}
  173. </view>
  174. </view>
  175. <view class="bottom flex">
  176. <view class="left">
  177. <u--image :showLoading="true" :src="item.headSculpture" width="66px" height="66px"
  178. shape="circle" v-if="item.headSculpture"></u--image>
  179. <u--image :showLoading="true" src="/./../static/imgs/card/defaulthead.png"
  180. width="66px" height="66px" shape="circle" v-else></u--image>
  181. </view>
  182. <view class="right">
  183. <view @click="toMap(item)" class="row1 flex">
  184. <u--image :showLoading="true" src="/static/imgs/card/address2.png" width="13px"
  185. height="16px"></u--image>
  186. <view class='icon-text'>{{ item.province }}{{ item.city }}{{ item.area }}</view>
  187. </view>
  188. <view @click="freeTell(item)" class="row2 flex">
  189. <u--image :showLoading="true" src="/static/imgs/card/phone2.png" width="12px"
  190. height="13px"></u--image>
  191. <view class='icon-text'>{{ item.phone }}</view>
  192. </view>
  193. <view @click='remarkEdit(item)' class="row2 flex" style="color: #808080">
  194. <u--image :showLoading="true" src="/static/imgs/card/remark2.png" width="10px"
  195. height="12px"></u--image>
  196. <view :style='item.remark?"color:#000;":"color:#808080;"' class='icon-text'>
  197. {{item.remark?item.remark:'单击添加备注'}}
  198. </view>
  199. </view>
  200. </view>
  201. </view>
  202. <u-checkbox-group v-if='islongPress' placement="column"
  203. @change="checkboxChange($event,index)">
  204. <u-checkbox iconColor='#4977FC' activeColor="#fff" :name='index+1'
  205. :checked='item.checked' :customStyle="{marginBottom: '8px'}">
  206. </u-checkbox>
  207. </u-checkbox-group>
  208. </view>
  209. <view class="car-bottom flex">
  210. <view class="left">
  211. <image src="../../static/imgs/card/home.png" mode="widthFix" style="width: 32rpx;height: auto;"
  212. @click="toHome(item)"></image>
  213. <text @click='switchType(item)'
  214. style="color: #fff;font-size: 36rpx;font-weight: 700;">{{item.classify?item.classifyName:'默'}}</text>
  215. <image v-if='item.shareCard==1' src="../../static/imgs/card/share.png" mode="widthFix"
  216. style="width: 35rpx;height: auto;" @click="share(item)"></image>
  217. <image v-if='item.shareCard==0' src="../../static/imgs/card/share_grey.png"
  218. mode="widthFix" style="width: 40rpx;height: auto;"></image>
  219. </view>
  220. <view class="right">
  221. </view>
  222. </view>
  223. </view>
  224. </view>
  225. </mescroll-uni>
  226. </view>
  227. <view class="del-style" v-if="islongPress">
  228. <view class="left">
  229. <text class="qx" @click="islongPress=false">取消</text>
  230. <text class="del" @click="del">删除</text>
  231. </view>
  232. <view style='width:128rpx;' class="right flex">
  233. <view>全选</view>
  234. <u-checkbox-group class='' placement="column" @change="checkboxChange($event,'')">
  235. <u-checkbox iconColor='#4977FC' activeColor="#fff" name='全选' :checked='checked'
  236. :customStyle="{marginBottom: '8px',position: 'relative',top: '-19px',right:'-8px'}">
  237. </u-checkbox>
  238. </u-checkbox-group>
  239. </view>
  240. </view>
  241. <u-picker :show="isShowType" :columns="typeColumns" keyName="circleName" :title="type == 2?'修改分类':'选择分类'"
  242. @close="isShowType=false" @cancel="isShowType=false" closeOnClickOverlay @confirm="typeConfirm"></u-picker>
  243. <u-toast ref="uToast"></u-toast>
  244. <u-modal :show="delShow" title="提示" confirmText='确定' showCancelButton='true' @cancel="delShow=false"
  245. @confirm="delConfirm" :content='"已选中"+this.checkedList.length+"张名片,确定删除?"'></u-modal>
  246. <u-modal :show="modalShow" @confirm='remarkConfirm' :confirmColor="remark?'#2979ff':'#ccc'"
  247. showCancelButton='true' title="备注" @cancel="modalShow=false">
  248. <view class="slot-content">
  249. <u--textarea v-model="remark" placeholder="输入备注,不超过150个字"></u--textarea>
  250. </view>
  251. </u-modal>
  252. <u-popup :show="qrcodeShow" @close="qrcodeShow=false" mode="center" :round='10'>
  253. <image style='margin:10px;height: auto;' :src="currectData.qrCode" mode="widthFix"></image>
  254. </u-popup>
  255. <u-popup :show="popupshow" :closeOnClickOverlay='true' :overlayOpacity='0.4' @close='handleHiddenShare'
  256. :round="10" mode="bottom">
  257. <view>
  258. <!-- <view class="share-to">
  259. <text>分享到</text>
  260. </view> -->
  261. <view class="share-content">
  262. <view class="block" @click="toUrl()">
  263. <button class="moment">
  264. <image style='width:108rpx;height:108rpx;' src="@/static/imgs/scancode.png"
  265. mode="aspectFill"></image>
  266. <view>扫码分享</view>
  267. </button>
  268. </view>
  269. <view class="block">
  270. <button class="shareBtn" type="default" data-name="shareBtn" open-type="share">
  271. <image style='width:108rpx;height:108rpx;' src="@/static/imgs/shade.png" mode="aspectFill">
  272. </image>
  273. <view>分享微信好友</view>
  274. </button>
  275. </view>
  276. </view>
  277. </view>
  278. </u-popup>
  279. <!-- <image :src="poster" style="width: 750rpx;height: 1334rpx;"></image> -->
  280. <!-- 生成图片 -->
  281. <poster :data="canvasData" background-color="#FFF" :width='750' :height='420' @on-success="posterSuccess"
  282. ref="poster" @on-error="posterError"></poster>
  283. <!-- #ifdef MP-WEIXIN -->
  284. <!-- <u-popup :show="isPhone" mode="center" :round="10">
  285. <view class='sq-view'>
  286. <view class="text">
  287. 手机登录后才能查看名片哦~
  288. </view>
  289. <button class="confirm" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">授权手机号</button>
  290. </view>
  291. </u-popup> -->
  292. <u-modal :show="showAuthorizePhone"
  293. :showConfirmButton="false">
  294. <view class="slot-content">
  295. <div class="auth-card">
  296. <div class="img">
  297. <img class="avatar-img"
  298. src="@/static/imgs/logo.png"
  299. mode="widthFix">
  300. </div>
  301. <!-- <div class="title">手机登录后才能查看名片哦~</div> -->
  302. <div class="content">手机登录后才能查看名片哦~</div>
  303. </div>
  304. <div class="auth-btncard">
  305. <div class="btn-unok"><u-button :customStyle="customStyleUnOk" @click="showAuthorizePhone=false"> 拒绝</u-button></div>
  306. <div class="btn-ok"><u-button :customStyle="customStyleOk" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber"> 立即登录</u-button></div>
  307. </div>
  308. </view>
  309. </u-modal>
  310. <u-modal :show="showAuthorizeUser"
  311. :showConfirmButton="false">
  312. <view class="slot-content">
  313. <div class="auth-card">
  314. <div class="img">
  315. <img class="avatar-img"
  316. src="/static/imgs/logo.png"
  317. mode="widthFix">
  318. </div>
  319. <div class="content">邀请您补全个人信息<br></br>(昵称、头像)</div>
  320. <div style="margin-left: 100rpx;margin-right: 100rpx">
  321. <u-form :model="userInfo" ref="uForm">
  322. <u-form-item label="头像">
  323. <button class="avatar-wrapper" open-type="chooseAvatar" @chooseavatar="onChooseAvatar" slot="right">
  324. <image class="avatar" :src="userInfo.head?userInfo.head:'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'"></image>
  325. </button>
  326. </u-form-item>
  327. <u-form-item label="昵称">
  328. <u-input inputAlign='right' v-model="userInfo.nickname" class="weui-input" @blur="userNameInput" placeholder="请输入昵称" border="false"/>
  329. <!-- <input type="nickname" :value="userInfo.nickname" class="weui-input" @blur="userNameInput" placeholder="请输入昵称"/> -->
  330. </u-form-item>
  331. </u-form>
  332. </div>
  333. </div>
  334. <div class="auth-btncard">
  335. <div class="btn-unok"><u-button :customStyle="customStyleUnOk" @click="showAuthorizeUser=false"> 拒绝</u-button></div>
  336. <div class="btn-ok"><u-button :customStyle="customStyleOk" @click="authUser"> 允许</u-button></div>
  337. </div>
  338. </view>
  339. </u-modal>
  340. <!-- #endif -->
  341. <u-toast ref="uToast"></u-toast>
  342. </view>
  343. </template>
  344. <script>
  345. var that;
  346. import Poster from '../../components/zhangyuhao-poster/Poster.vue'
  347. import { pathToBase64, base64ToPath } from 'image-tools'
  348. import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
  349. export default {
  350. mixins: [MescrollMixin],
  351. components: {
  352. Poster
  353. },
  354. data() {
  355. return {
  356. userInfo: {head:'',nickname:''},
  357. downOption: {
  358. auto: false,
  359. },
  360. upOption: {
  361. page: {
  362. size: 10 // 每页数据的数量,默认10
  363. },
  364. auto: false,
  365. noMoreSize: 1,
  366. empty: {
  367. tip: '暂无相关数据'
  368. }
  369. },
  370. params: {
  371. encryptedData: '',
  372. session_key: '',
  373. iv: '',
  374. },
  375. key: '',
  376. isPhone: false,
  377. canReset: false,
  378. poster: '',
  379. canvasData: {},
  380. searchVal: '',
  381. isShowType: false,
  382. loading: true,
  383. typeName: '',
  384. typeColumns: [],
  385. cardHolderList: [],
  386. currectData: [],
  387. type: 1,
  388. popupshow: false,
  389. modalShow: false,
  390. remark: '',
  391. islongPress: false,
  392. checked: false,
  393. checkedList: [],
  394. delShow: false,
  395. qrcodeShow: false,
  396. unread: 0,
  397. clicknum: 0,
  398. noticeList: [],
  399. status: 0,
  400. // 是否弹出登录注册授权弹窗
  401. showAuthorizeUser: false,
  402. showAuthorizePhone: false,
  403. customStyleUnOk: {
  404. marginTop: '20rpx', // 注意驼峰命名,并且值必须用引号包括,因为这是对象
  405. border:'none',
  406. color:'gray'
  407. },
  408. customStyleOk: {
  409. marginTop: '20rpx', // 注意驼峰命名,并且值必须用引号包括,因为这是对象
  410. border:'none',
  411. color:'#157DFB'
  412. },
  413. };
  414. },
  415. mounted() {
  416. },
  417. onShow:function(){
  418. this.searchVal = uni.getStorageSync("search_val") ? uni.getStorageSync("search_val") : ''
  419. if(this.searchVal) this.mescroll.resetUpScroll();
  420. },
  421. onLoad: function(options) {
  422. that = this
  423. console.log(uni.getLaunchOptionsSync().scene, 1011)
  424. if (uni.getStorageSync("userInfo").phone) {
  425. this.userInfo = uni.getStorageSync("userInfo")
  426. this.$nextTick(function() {
  427. this.mescroll.resetUpScroll()
  428. wx.showShareMenu({
  429. withShareTicket: true,
  430. menus: ["shareAppMessage", "shareTimeline"]
  431. })
  432. });
  433. } else {
  434. if (uni.getLaunchOptionsSync().scene != 1154) {
  435. this.login()
  436. }
  437. }
  438. this.status = uni.getLaunchOptionsSync().scene
  439. if (uni.getLaunchOptionsSync().scene == 1154) {
  440. uni.showToast({
  441. title: '请前往小程序查看名片',
  442. icon: 'none',
  443. duration: 10000
  444. });
  445. }
  446. },
  447. onShareAppMessage(res) {
  448. console.log(res, this.popupshow)
  449. let that = this;
  450. //生成名片图片
  451. let imageUrl = this.poster
  452. console.log("imageUrl", imageUrl)
  453. if (res.from === 'button') {
  454. let path = `/pages/cardHolder/scanCodeAddCard?id=${that.currectData.id}`
  455. return {
  456. title: this.popupshow ? `${that.currectData.name}分享的名片~` : '电子名片',
  457. path: path,
  458. imageUrl: this.popupshow ? imageUrl : '',
  459. };
  460. }
  461. if (res.from === 'menu') {
  462. return {
  463. title: '名片夹',
  464. path: '/pages/tabBarPro/index/index',
  465. imageUrl: this.popupshow ? imageUrl : ''
  466. };
  467. }
  468. },
  469. methods: {
  470. //获取昵称输入内容
  471. userNameInput(e){
  472. this.userInfo.nickname = e.detail.value
  473. },
  474. async onChooseAvatar(e) {
  475. this.$set(this.userInfo,"head",await this.toBase64(e.detail.avatarUrl))
  476. },
  477. toBase64(url){
  478. return new Promise(resolve => {
  479. pathToBase64(url).then(path => {
  480. resolve(path);
  481. }).catch(error => {
  482. console.log(error)
  483. })
  484. })
  485. },
  486. authUser(){
  487. if(this.userInfo.nickname==''){
  488. uni.showToast({
  489. icon:"none",
  490. title: '请输入您的昵称',
  491. duration: 2000
  492. });
  493. return;
  494. }
  495. this.getTokenAsync1()
  496. },
  497. downCallback(){
  498. this.mescroll.resetUpScroll()
  499. },
  500. freeTell(item) {
  501. uni.makePhoneCall({
  502. phoneNumber: item.phone, //仅为示例,并非真实的电话号码
  503. success: function() {
  504. console.log("拨打电话成功!")
  505. },
  506. fail: function() {
  507. console.log("拨打电话失败!")
  508. }
  509. })
  510. },
  511. getPhoneNumber(e) {
  512. console.log(e)
  513. if (e.mp.detail.errMsg === "getPhoneNumber:ok") {
  514. this.isPhone = false
  515. this.params.iv = e.mp.detail.iv
  516. this.params.encryptedData = e.mp.detail.encryptedData
  517. this.params.session_key = this.accessToken
  518. console.log(this.params)
  519. let appId = 'wx5d8906c2208c899f'
  520. let sessionKey = this.userInfo.sessionKey
  521. let encryptedData = this.params.encryptedData
  522. let iv = this.params.iv
  523. let pc = this.$WXBizDataCrypt(appId, sessionKey)
  524. let data = this.$WXBizDataCrypt.prototype.decryptData(encryptedData, iv, appId, sessionKey)
  525. console.log('解密后 data: ', data)
  526. this.showAuthorizePhone = false
  527. this.getTokenAsync(data)
  528. }
  529. },
  530. async getTokenAsync(val) {
  531. let that = this
  532. that.userInfo.phone = val.phoneNumber
  533. that.$request.baseRequest('commonUserApp', 'edit', {
  534. commonUserInfo: JSON.stringify(that.userInfo)
  535. }, failres => {
  536. uni.showToast({
  537. icon:"none",
  538. title: failres.errmsg,
  539. duration: 3000
  540. });
  541. uni.hideLoading()
  542. }).then(res1 => {
  543. that.userInfo = res1.data
  544. uni.setStorageSync("userInfo", that.userInfo)
  545. that.showAuthorizeUser = true
  546. that.mescroll.resetUpScroll()
  547. })
  548. },
  549. async getTokenAsync1() {
  550. let that = this
  551. that.$request.baseRequest('commonUserApp', 'edit', {
  552. commonUserInfo: JSON.stringify(that.userInfo)
  553. }, failres => {
  554. uni.showToast({
  555. icon:"none",
  556. title: failres.errmsg,
  557. duration: 3000
  558. });
  559. uni.hideLoading()
  560. }).then(res1 => {
  561. that.userInfo = res1.data
  562. uni.setStorageSync("userInfo", that.userInfo)
  563. that.showAuthorizeUser = false
  564. that.mescroll.resetUpScroll()
  565. })
  566. },
  567. delVal() {
  568. this.searchVal = ""
  569. this.mescroll.resetUpScroll()
  570. },
  571. handleHiddenShare() {
  572. console.log(11111)
  573. this.popupshow = false
  574. },
  575. posterError(err) {
  576. console.log(err)
  577. uni.hideLoading()
  578. },
  579. posterSuccess(url) {
  580. console.log("hahahah", url)
  581. // 生成成功,会把临时路径在这里返回
  582. this.poster = url;
  583. this.popupshow = true
  584. console.log(url)
  585. uni.hideLoading()
  586. },
  587. toHome(item) {
  588. uni.navigateTo({
  589. url: "/pages/circle/lookHome?id=" + item.personalHomeId
  590. })
  591. },
  592. delSearchVal() {
  593. this.searchVal = ""
  594. uni.removeStorageSync('search_val')
  595. this.mescroll.resetUpScroll()
  596. },
  597. toUrl() {
  598. console.log(this.currectData)
  599. this.popupshow = false
  600. this.qrcodeShow = true
  601. },
  602. share(item) {
  603. uni.showLoading({
  604. title: '加载中',
  605. mask: true
  606. })
  607. this.currectData = item
  608. var data = [{
  609. type: 'image',
  610. path: this.currectData.currentBackground,
  611. use: 'bg',
  612. x: -10,
  613. y: 0,
  614. width: 530,
  615. height: 325
  616. },
  617. {
  618. type: 'image',
  619. path: this.currectData.headSculpture?this.currectData.headSculpture:'../../static/imgs/card/defaulthead.png',
  620. shape: 'circle',
  621. use: 'head',
  622. imageType:this.currectData.headSculpture?'wl':'bd',
  623. x: 30,
  624. y: 30,
  625. width: 100,
  626. height: 100
  627. },
  628. {
  629. type: 'text',
  630. text: this.currectData.name,
  631. use: 'name',
  632. x: 150,
  633. y: 50,
  634. size: 24,
  635. color: '#000'
  636. },
  637. {
  638. type: 'text',
  639. text: this.currectData.post,
  640. use: 'post',
  641. x: 240,
  642. y: 55,
  643. size: 18,
  644. color: '#666666'
  645. },
  646. {
  647. type: 'text',
  648. text: this.currectData.companyName,
  649. use: 'companyName',
  650. x: 150,
  651. y: 95,
  652. size: 18,
  653. color: '#000'
  654. },
  655. {
  656. type: 'image',
  657. path: '../../static/imgs/card/address1.png',
  658. use: 'address-icon',
  659. x: 145,
  660. y: 130,
  661. width: 15,
  662. height: 20
  663. },
  664. {
  665. type: 'textarea',
  666. text: this.currectData.province + this.currectData.city + this.currectData.area + this
  667. .currectData.detailedAddress,
  668. lineSpace: 1,
  669. width: 320,
  670. use: 'address',
  671. x: 175,
  672. y: 135,
  673. size: 14,
  674. color: '#000'
  675. },
  676. {
  677. type: 'image',
  678. path: '../../static/imgs/card/phone1.png',
  679. use: 'phone-icon',
  680. x: 145,
  681. y: 163,
  682. width: 16,
  683. height: 16
  684. },
  685. {
  686. type: 'text',
  687. text: this.currectData.phone,
  688. use: 'phone',
  689. x: 175,
  690. y: 167,
  691. size: 14,
  692. color: '#000'
  693. },
  694. {
  695. type: 'image',
  696. path: '../../static/imgs/card/remark1.png',
  697. use: 'remark-icon',
  698. x: 145,
  699. y: 197,
  700. width: 13,
  701. height: 16
  702. },
  703. {
  704. type: 'textarea',
  705. text: this.currectData.remark ? this.currectData.remark : '单击添加备注',
  706. use: 'remark',
  707. lineSpace: 2,
  708. width: 200,
  709. x: 175,
  710. y: 200,
  711. size: 13,
  712. color: '#000'
  713. },
  714. {
  715. type: 'image',
  716. path: '../../static/imgs/card/bg3.png',
  717. use: 'bg1',
  718. x: 0,
  719. y: 243,
  720. width: 370,
  721. height: 67
  722. },
  723. {
  724. type: 'image',
  725. path: '../../static/imgs/card/bg4.png',
  726. use: 'bg2',
  727. x: 355,
  728. y: 243,
  729. width: 150,
  730. height: 67
  731. },
  732. {
  733. type: 'image',
  734. path: '../../static/imgs/card/home.png',
  735. use: 'home',
  736. x: 65,
  737. y: 260,
  738. width: 33,
  739. height: 33
  740. },
  741. {
  742. type: 'text',
  743. text: this.currectData.classifyName ? this.currectData.classifyName : '默',
  744. use: 'classify',
  745. x: 145,
  746. y: 263,
  747. size: 34,
  748. color: '#fff'
  749. },
  750. {
  751. type: 'image',
  752. path: '../../static/imgs/card/share.png',
  753. use: 'share',
  754. x: 235,
  755. y: 263,
  756. width: 33,
  757. height: 28
  758. },
  759. ]
  760. console.log(this.currectData.cuttentTemplate, 111111)
  761. for (var i = 0; i < data.length; i++) {
  762. switch (this.currectData.cuttentTemplate) {
  763. case '2':
  764. if (data[i].use === 'name' ||
  765. data[i].use === 'companyName' ||
  766. data[i].use === 'address-icon' ||
  767. data[i].use === 'phone-icon' ||
  768. data[i].use === 'remark-icon') {
  769. data[i].x = 30
  770. }
  771. if (data[i].use === 'address-icon') {
  772. data[i].path = '../../static/imgs/card/address3.png'
  773. }
  774. if (data[i].use === 'phone-icon') {
  775. data[i].path = '../../static/imgs/card/phone3.png'
  776. }
  777. if (data[i].use === 'remark-icon') {
  778. data[i].path = '../../static/imgs/card/remark3.png'
  779. }
  780. if (data[i].use === 'post') {
  781. data[i].x = 100
  782. }
  783. if (data[i].use === 'address' ||
  784. data[i].use === 'phone' ||
  785. data[i].use === 'remark') {
  786. data[i].x = 60
  787. }
  788. if (data[i].use == 'head') {
  789. data[i].x = 370
  790. }
  791. break;
  792. case '3':
  793. if (data[i].use === 'name') {
  794. data[i].x = 30
  795. data[i].y = 150
  796. }
  797. if (data[i].use === 'companyName') {
  798. data[i].x = 30
  799. data[i].y = 180
  800. }
  801. if (data[i].use === 'post') {
  802. data[i].x = 100
  803. data[i].y = 153
  804. }
  805. if (data[i].use === 'address-icon' ||
  806. data[i].use === 'phone-icon' ||
  807. data[i].use === 'remark-icon') {
  808. data[i].x = 170
  809. }
  810. if (data[i].use === 'address-icon') {
  811. data[i].y = 150
  812. }
  813. if (data[i].use === 'address') {
  814. data[i].y = 155;
  815. data[i].width = 300
  816. }
  817. if (data[i].use === 'phone-icon') {
  818. data[i].y = 180
  819. }
  820. if (data[i].use === 'phone') {
  821. data[i].y = 183
  822. }
  823. if (data[i].use === 'remark-icon') {
  824. data[i].y = 210
  825. }
  826. if (data[i].use === 'remark') {
  827. data[i].y = 212
  828. }
  829. if (data[i].use === 'address' ||
  830. data[i].use === 'phone' ||
  831. data[i].use === 'remark') {
  832. data[i].x = 190
  833. }
  834. break;
  835. case '4':
  836. if (data[i].use === 'name' ||
  837. data[i].use === 'companyName') {
  838. data[i].x = 30
  839. }
  840. if (data[i].use === 'companyName') {
  841. data[i].y = 90
  842. }
  843. if (data[i].use === 'post') {
  844. data[i].x = 100
  845. }
  846. if (data[i].use == 'head') {
  847. data[i].x = 25
  848. data[i].y = 120
  849. }
  850. if (data[i].use === 'address-icon') {
  851. data[i].path = '../../static/imgs/card/address2.png'
  852. }
  853. if (data[i].use === 'phone-icon') {
  854. data[i].path = '../../static/imgs/card/phone2.png'
  855. }
  856. if (data[i].use === 'remark-icon') {
  857. data[i].path = '../../static/imgs/card/remark2.png'
  858. }
  859. if (data[i].use === 'address-icon' ||
  860. data[i].use === 'phone-icon' ||
  861. data[i].use === 'remark-icon') {
  862. data[i].x = 170
  863. }
  864. if (data[i].use === 'address') {
  865. data[i].width = 300
  866. }
  867. if (data[i].use === 'address' ||
  868. data[i].use === 'phone' ||
  869. data[i].use === 'remark') {
  870. data[i].x = 190
  871. }
  872. break;
  873. default:
  874. }
  875. }
  876. this.canvasData = {
  877. clicknum: this.clicknum++,
  878. list: data,
  879. page: 'cardHolder'
  880. }
  881. },
  882. async delConfirm() {
  883. uni.showLoading({
  884. title: '数据加载中',
  885. mask: true
  886. })
  887. for (var i = 0; i < this.checkedList.length; i++) {
  888. await this.$request.baseRequest('admin.unimall.cardHolderInfo', 'delete', {
  889. id: this.checkedList[i].data.id,
  890. }, failres => {
  891. console.log('res+++++', failres.errmsg)
  892. uni.showToast({
  893. icon:"none",
  894. title: failres.errmsg,
  895. duration: 3000
  896. });
  897. }).then(res => {
  898. console.log(i, this.checkedList.length - 1)
  899. if (i == this.checkedList.length - 1) {
  900. uni.hideLoading()
  901. uni.showToast({
  902. icon:"success",
  903. title: '删除成功!',
  904. duration: 2000
  905. });
  906. this.delShow = false
  907. this.islongPress = false
  908. this.mescroll.resetUpScroll()
  909. }
  910. })
  911. }
  912. },
  913. del() {
  914. if (this.checkedList.length > 0) {
  915. this.delShow = true
  916. } else {
  917. uni.showToast({
  918. icon:"none",
  919. title: '请勾选后再进行删除',
  920. duration: 2000
  921. });
  922. }
  923. },
  924. longpress() {
  925. console.log("长按事件", 1111111111);
  926. this.islongPress = true;
  927. },
  928. checkboxChange(e, i) {
  929. console.log(e, i, 111111111)
  930. if (i === '') {
  931. console.log(this.checked)
  932. this.checked = !this.checked;
  933. this.cardHolderList.map(item => item.checked = this.checked);
  934. this.$forceUpdate()
  935. var checkList = this.cardHolderList.filter((item) => {
  936. return item.checked == true
  937. })
  938. var data = checkList.map((item, index) => {
  939. return {
  940. index: index,
  941. data: item
  942. }
  943. })
  944. this.checkedList = JSON.parse(JSON.stringify(data))
  945. } else {
  946. if (e[0]) {
  947. this.checkedList.push({
  948. index: i,
  949. data: this.cardHolderList[i]
  950. })
  951. } else {
  952. var index = this.checkedList.findIndex((item) => {
  953. return item.index == i
  954. })
  955. this.checkedList.splice(index, 1)
  956. }
  957. if (this.checkedList.length != this.cardHolderList.length) {
  958. this.checked = false
  959. }
  960. }
  961. // for(var i=0;i<this.cardList.length;i++){
  962. // console.log(this.cardList[i].checked)
  963. // // if(this.cardList[i].checkedList.length>0){
  964. // // this.checkedList.push(i)
  965. // // }
  966. // }
  967. console.log(this.checkedList)
  968. },
  969. remarkConfirm() {
  970. if (this.remark) {
  971. this.currectData.remark = this.remark
  972. this.$request.baseRequest('admin.unimall.cardHolderInfo', 'update', {
  973. cardHolderInfo: JSON.stringify(this.currectData),
  974. }, failres => {
  975. console.log('res+++++', failres.errmsg)
  976. uni.showToast({
  977. icon:"none",
  978. title: failres.errmsg,
  979. duration: 3000
  980. });
  981. }).then(res => {
  982. uni.showToast({
  983. icon:"success",
  984. title: '修改备注成功!',
  985. duration: 2000
  986. });
  987. this.remark=''
  988. this.modalShow = false
  989. this.mescroll.resetUpScroll()
  990. })
  991. }
  992. },
  993. remarkEdit(item) {
  994. this.currectData = item
  995. this.remark = this.currectData.remark
  996. this.modalShow = true
  997. },
  998. switchType(item) {
  999. this.type = 2
  1000. this.typeColumns[0].shift()
  1001. this.currectData = item
  1002. this.isShowType = true
  1003. },
  1004. typeConfirm(e) {
  1005. if (this.type == 2) {
  1006. console.log(e.value[0].circleName,"123312132")
  1007. this.$set(this.currectData,'classify',e.value[0].circleName)
  1008. this.$request.baseRequest('admin.unimall.cardHolderInfo', 'update', {
  1009. cardHolderInfo: JSON.stringify(this.currectData),
  1010. }, failres => {
  1011. console.log('res+++++', failres.errmsg)
  1012. uni.showToast({
  1013. icon:"none",
  1014. title: failres.errmsg,
  1015. duration: 3000
  1016. });
  1017. }).then(res => {
  1018. uni.showToast({
  1019. icon:"success",
  1020. title: '修改分类成功!',
  1021. duration: 2000
  1022. });
  1023. this.mescroll.resetUpScroll()
  1024. })
  1025. } else {
  1026. this.typeName = e.value[0].circleName
  1027. if(this.typeName =="全部分类") this.typeName = ''
  1028. this.mescroll.resetUpScroll()
  1029. }
  1030. this.isShowType = false
  1031. },
  1032. async upCallback(page) {
  1033. if (uni.getLaunchOptionsSync().scene == 1154) {
  1034. uni.showToast({
  1035. title: '请前往小程序查看名片',
  1036. icon: 'none',
  1037. duration: 10000
  1038. });
  1039. } else {
  1040. var that = this
  1041. if(uni.getStorageSync("userInfo").id){
  1042. uni.showLoading({
  1043. title: '数据加载中'
  1044. })
  1045. await this.$request.baseRequest('admin.unimall.cardHolderInfo', 'list', {
  1046. page: page.num,
  1047. limit: page.size,
  1048. commonId: uni.getStorageSync("userInfo").id,
  1049. searchContent: this.searchVal,
  1050. classify:this.typeName
  1051. }, failres => {
  1052. console.log('res+++++', failres.errmsg)
  1053. uni.showToast({
  1054. icon:"none",
  1055. title: failres.errmsg,
  1056. duration: 3000
  1057. });
  1058. uni.hideLoading()
  1059. }).then(res => {
  1060. console.log(res)
  1061. if (page.num == 1) this.cardHolderList = [];
  1062. let curPageLen = res.data.items.length;
  1063. let totalPage = res.data.total;
  1064. for (var i = 0; i < res.data.items.length; i++) {
  1065. res.data.items[i].checked = false
  1066. if (res.data.items[i].classify) {
  1067. res.data.items[i].classifyName = res.data.items[i].classify[0]
  1068. }
  1069. }
  1070. this.cardHolderList = res.data.items
  1071. this.loading = false
  1072. this.$nextTick(() => {
  1073. that.mescroll.endBySize(curPageLen, totalPage)
  1074. });
  1075. uni.hideLoading()
  1076. })
  1077. await this.$request.baseRequest('admin.unimall.cardClassifyInfo', 'list', {
  1078. page: 1,
  1079. limit: 9999,
  1080. commonId: uni.getStorageSync("userInfo").id
  1081. }, failres => {
  1082. console.log('res+++++', failres.errmsg)
  1083. uni.showToast({
  1084. icon:"none",
  1085. title: failres.errmsg,
  1086. duration: 3000
  1087. });
  1088. }).then(res => {
  1089. res.data.items.unshift({
  1090. circleName:'全部分类'
  1091. })
  1092. this.typeColumns = [res.data.items]
  1093. console.log(this.typeColumns)
  1094. })
  1095. await this.$request.baseRequest('admin.unimall.cardNewsInfo', 'list', {
  1096. receiveId: uni.getStorageSync("userInfo").id,
  1097. }, failres => {
  1098. console.log('res+++++', failres.errmsg)
  1099. uni.showToast({
  1100. icon:"none",
  1101. title: failres.errmsg,
  1102. duration: 3000
  1103. });
  1104. }).then(res => {
  1105. this.noticeList = res.data.items
  1106. if (this.noticeList.length > 0) {
  1107. var data = this.noticeList.filter((item) => {
  1108. return item.newsFlag == 0
  1109. })
  1110. this.unread = data ? data.length : 0
  1111. }
  1112. console.log(this.unread)
  1113. })
  1114. }
  1115. }
  1116. },
  1117. login() {
  1118. let that = this
  1119. uni.login({
  1120. "provider": "weixin",
  1121. success: function(wxres) {
  1122. that.$request.baseRequest('commonUserApp', 'commonUserLogin', {
  1123. loginType: 1,
  1124. raw: JSON.stringify(wxres)
  1125. }, failres => {
  1126. uni.showToast({
  1127. icon:"none",
  1128. title: failres.errmsg,
  1129. duration: 3000
  1130. });
  1131. uni.hideLoading()
  1132. }).then(res => {
  1133. console.log(res.data)
  1134. that.isPhone = true
  1135. that.showAuthorizePhone = true
  1136. that.userInfo = res.data
  1137. })
  1138. },
  1139. fail: function(err) {
  1140. uni.showToast({
  1141. icon:"none",
  1142. title: err.code,
  1143. duration: 3000
  1144. });
  1145. // 登录授权失败
  1146. // err.code是错误码
  1147. }
  1148. })
  1149. },
  1150. toNotice() {
  1151. uni.navigateTo({
  1152. url: "/pages/cardHolder/notice"
  1153. })
  1154. },
  1155. micOpen: function() {
  1156. uni.navigateTo({
  1157. url: "/pages/cardHolder/search?mic=1"
  1158. })
  1159. },
  1160. uploadFile: function(tempFilePath) {
  1161. return new Promise((resolve, reject) => {
  1162. //调用你的接口把音频文件转为文字
  1163. this.$minApi.upload('txasr/SentenceRecognition', null, tempFilePath)
  1164. .then(res => {
  1165. if (res.code == 1) {
  1166. resolve(res.data.Result);
  1167. } else {
  1168. reject(e);
  1169. }
  1170. })
  1171. .catch(e => {
  1172. reject(e);
  1173. });
  1174. });
  1175. },
  1176. search() {
  1177. uni.navigateTo({
  1178. url: "/pages/cardHolder/search"
  1179. })
  1180. },
  1181. input(res) {
  1182. console.log('----input:', res)
  1183. },
  1184. clear(res) {
  1185. uni.showToast({
  1186. title: 'clear事件,清除值为:' + res.value,
  1187. icon: 'none'
  1188. })
  1189. },
  1190. blur(res) {
  1191. uni.showToast({
  1192. title: 'blur事件,输入值为:' + res.value,
  1193. icon: 'none'
  1194. })
  1195. },
  1196. focus(e) {
  1197. uni.showToast({
  1198. title: 'focus事件,输出值为:' + e.value,
  1199. icon: 'none'
  1200. })
  1201. },
  1202. cancel(res) {
  1203. uni.showToast({
  1204. title: '点击取消,输入值为:' + res.value,
  1205. icon: 'none'
  1206. })
  1207. },
  1208. selectType() {
  1209. this.isShowType = true
  1210. this.type = 1
  1211. },
  1212. scan() {
  1213. // console.log(1)
  1214. // uni.navigateTo({
  1215. // url: "/pages/cardHolder/scancode"
  1216. // })
  1217. uni.scanCode({
  1218. success: function(res) {
  1219. console.log('条码类型:' + res.scanType);
  1220. console.log('条码内容:' + res.result);
  1221. uni.navigateTo({
  1222. url: "/pages/cardHolder/scanCodeAddCard?id=" + res.result.split("=")[1]
  1223. })
  1224. }
  1225. });
  1226. },
  1227. toMap(item) {
  1228. uni.navigateTo({
  1229. url: "/pages/cardHolder/map?val=" + JSON.stringify(item)
  1230. })
  1231. },
  1232. }
  1233. }
  1234. </script>
  1235. <style lang="scss" scoped>
  1236. .content {
  1237. // padding: 0 20rpx;
  1238. }
  1239. .u-nav-slot {
  1240. /deep/.u-badge {
  1241. position: absolute;
  1242. top: 0;
  1243. right: 6rpx;
  1244. }
  1245. }
  1246. .content1 {
  1247. padding: 20rpx;
  1248. background-color: #112253;
  1249. .search {
  1250. color: #9199af;
  1251. background: #22325f;
  1252. border-radius: 50rpx;
  1253. width: 100%;
  1254. padding: 10rpx 30rpx;
  1255. box-sizing: border-box;
  1256. margin-right: 20rpx;
  1257. }
  1258. }
  1259. .content2 {
  1260. background: #112253;
  1261. color: #fff;
  1262. padding: 20rpx 20rpx 200rpx 20rpx;
  1263. border-radius: 0px 0px 20px 20px;
  1264. }
  1265. .content3 {
  1266. // padding:0 20rpx;
  1267. // position: relative;
  1268. // top: 376rpx;
  1269. margin: 0 20rpx;
  1270. background: #f5f5f5;
  1271. // height: 1000px;
  1272. border-radius: 30rpx;
  1273. .style1 {
  1274. display: flex;
  1275. padding: 20rpx 30rpx;
  1276. width: 85%;
  1277. margin-bottom: 90rpx;
  1278. .left {
  1279. width: 132rpx;
  1280. height: 132rpx;
  1281. border-radius: 50%;
  1282. }
  1283. .right {
  1284. margin-left: 40rpx;
  1285. .row1 {
  1286. .name {
  1287. font-size: 38rpx;
  1288. font-weight: bold;
  1289. color: #040000;
  1290. margin-right: 20rpx;
  1291. }
  1292. .post {
  1293. font-size: 26rpx;
  1294. font-weight: 500;
  1295. color: #666666;
  1296. }
  1297. }
  1298. .row2 {
  1299. font-size: 24rpx;
  1300. font-weight: bold;
  1301. color: #323333;
  1302. }
  1303. .row3 {
  1304. margin-top: 30rpx;
  1305. font-size: 24rpx;
  1306. font-weight: 500;
  1307. color: #323333;
  1308. }
  1309. .row2,
  1310. .row4 {
  1311. margin-top: 10rpx;
  1312. }
  1313. }
  1314. }
  1315. .style2 {
  1316. padding: 15rpx;
  1317. margin-bottom: 80rpx;
  1318. .top {
  1319. .row1 {
  1320. .name {
  1321. font-size: 38rpx;
  1322. font-weight: bold;
  1323. color: #040000;
  1324. margin-right: 20rpx;
  1325. }
  1326. .post {
  1327. font-size: 26rpx;
  1328. font-weight: 500;
  1329. color: #666666;
  1330. }
  1331. }
  1332. .row2 {
  1333. margin-top: 10rpx;
  1334. font-size: 24rpx;
  1335. font-weight: bold;
  1336. color: #323333;
  1337. }
  1338. }
  1339. .bottom {
  1340. margin-top: 20rpx;
  1341. .left {
  1342. margin-right: 40rpx;
  1343. .row1 {
  1344. .name {
  1345. font-size: 38rpx;
  1346. font-weight: bold;
  1347. color: #040000;
  1348. margin-right: 20rpx;
  1349. }
  1350. .post {
  1351. font-size: 26rpx;
  1352. font-weight: 500;
  1353. color: #666666;
  1354. }
  1355. }
  1356. .row2 {
  1357. margin-top: 10rpx;
  1358. font-size: 26rpx;
  1359. font-weight: bold;
  1360. color: #323333;
  1361. }
  1362. }
  1363. .right {
  1364. .row1,
  1365. .row2 {
  1366. font-size: 24rpx;
  1367. font-weight: 500;
  1368. color: #323333;
  1369. }
  1370. .row2,
  1371. .row4 {
  1372. margin-top: 10rpx;
  1373. }
  1374. }
  1375. }
  1376. }
  1377. .card-list-item {
  1378. width: calc(100%);
  1379. // left:-20rpx;
  1380. position: relative;
  1381. border-radius: 30rpx;
  1382. padding: 40rpx;
  1383. box-sizing: border-box;
  1384. .car-bottom {
  1385. position: absolute;
  1386. bottom: 63rpx;
  1387. left: 20rpx;
  1388. bottom: 24rpx;
  1389. width: 94.9%;
  1390. background: url("../../static/imgs/card/bg5.png") no-repeat center;
  1391. background-size: 100% 100%;
  1392. height: 80rpx;
  1393. // width: calc(100% - 40rpx);
  1394. .left {
  1395. // top: -40rpx;
  1396. position: absolute;
  1397. padding: 20rpx 0;
  1398. width: 70vw;
  1399. height: 80rpx;
  1400. box-sizing: border-box;
  1401. display: flex;
  1402. align-items: center;
  1403. justify-content: space-evenly;
  1404. left: 0px;
  1405. // background-size: 100% 100%;
  1406. overflow-y: hidden;
  1407. }
  1408. }
  1409. .left {
  1410. width: 30%;
  1411. .top {
  1412. margin-bottom: 20rpx;
  1413. }
  1414. .img {
  1415. width: 80%;
  1416. }
  1417. .bottom {}
  1418. }
  1419. .right {
  1420. .row1 {
  1421. .line {
  1422. width: 1px;
  1423. height: 20px;
  1424. margin: 0 20rpx;
  1425. background: black;
  1426. }
  1427. }
  1428. }
  1429. }
  1430. }
  1431. .slot-content {
  1432. width: 100%;
  1433. }
  1434. .shade {
  1435. background: rgba(0, 0, 0, 0.2);
  1436. width: 100%;
  1437. height: 100vh;
  1438. position: fixed;
  1439. top: 0;
  1440. left: 0;
  1441. }
  1442. .qrCode {
  1443. position: absolute;
  1444. top: 50%;
  1445. left: 0;
  1446. right: 0;
  1447. transform: translateY(-50%);
  1448. text-align: center;
  1449. }
  1450. /deep/.u-checkbox-group {
  1451. position: absolute;
  1452. right: 20px;
  1453. z-index: 99;
  1454. top: 30px;
  1455. }
  1456. .del-style {
  1457. background: #fff;
  1458. padding: 20rpx;
  1459. width: calc(100vw - 40rpx);
  1460. position: fixed;
  1461. display: flex;
  1462. z-index: 100;
  1463. justify-content: space-between;
  1464. bottom: 0;
  1465. font-size: 28rpx;
  1466. .right {
  1467. color: #344577;
  1468. }
  1469. }
  1470. .del,
  1471. .qx {
  1472. padding: 10rpx;
  1473. }
  1474. .del {
  1475. color: #FF4040;
  1476. }
  1477. .qx {
  1478. color: #666;
  1479. bottom: 0
  1480. }
  1481. .share-content {
  1482. display: flex;
  1483. padding: 20rpx;
  1484. justify-content: center;
  1485. font-size: 24rpx;
  1486. button {
  1487. background: transparent;
  1488. line-height: 1;
  1489. }
  1490. button:after {
  1491. border: none;
  1492. }
  1493. }
  1494. .sq-view {
  1495. padding: 60rpx 80rpx 80rpx 80rpx;
  1496. .text {
  1497. display: flex;
  1498. justify-content: center;
  1499. font-size: 32rpx;
  1500. font-weight: bold;
  1501. color: #1A1A1A;
  1502. margin-bottom: 60rpx;
  1503. }
  1504. .confirm {
  1505. display: flex;
  1506. justify-content: center;
  1507. color: white;
  1508. // margin: 40rpx auto;
  1509. background: #18254C;
  1510. border-radius: 20rpx;
  1511. }
  1512. }
  1513. .icon-text {
  1514. margin-left: 10px;
  1515. font-size: 26rpx;
  1516. font-weight: 500;
  1517. color: #323333;
  1518. }
  1519. /deep/.u-checkbox__icon-wrap.u-checkbox__icon-wrap--square {
  1520. border-color: #D7DEEB !important;
  1521. }
  1522. .wrap {
  1523. position: fixed;
  1524. top: 0;
  1525. width: 100%;
  1526. }
  1527. /deep/.mescroll-body {
  1528. min-height: 558px !important;
  1529. height: 558px !important;
  1530. background-color: green;
  1531. overflow: scroll !important;
  1532. }
  1533. .auth-btncard{
  1534. .btn-unok{
  1535. width: 50%;
  1536. float: left;
  1537. }
  1538. .btn-ok{
  1539. width: 50%;
  1540. float: left;
  1541. margin: 0;
  1542. padding: 0;
  1543. border: 0px solid transparent; //自定义边框
  1544. outline: none; //消除默认点击蓝色边框效果
  1545. u-button{
  1546. margin: 0;
  1547. padding: 0;
  1548. border: 0px solid transparent; //自定义边框
  1549. outline: none; //消除默认点击蓝色边框效果
  1550. }
  1551. }
  1552. }
  1553. .auth-card{
  1554. text-align: center;
  1555. .avatar-img{
  1556. width: 150rpx;
  1557. height: 150rpx;
  1558. overflow: hidden;
  1559. border-radius: 100%;
  1560. margin-top: 30rpx;
  1561. }
  1562. .title{
  1563. font-size: 20rpx;
  1564. }
  1565. .content{
  1566. margin-top: 10rpx;
  1567. margin-bottom: 30rpx;
  1568. }
  1569. }
  1570. .avatar-wrapper{
  1571. color: #333 !important;
  1572. border: none !important;
  1573. border-radius:0 !important;
  1574. background-color:transparent !important;
  1575. padding: 0;
  1576. }
  1577. .avatar-wrapper::after {
  1578. border: none !important;
  1579. }
  1580. .avatar{
  1581. width: 100rpx;
  1582. height: 100rpx;
  1583. overflow: hidden;
  1584. border-radius: 100%;
  1585. }
  1586. </style>