users.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. <template>
  2. <div class="users">
  3. <Card :bordered="false" dis-hover>
  4. <div class="acea-row row-top">
  5. <div class="left" :style="colorStyle">
  6. <div class="header" :class="userData.status == 3 ? 'bgColor' : ''">
  7. <div class="top acea-row row-between-wrapper">
  8. <div class="picTxt acea-row row-middle">
  9. <div class="pictrue">
  10. <img src="../../../assets/images/f.png" />
  11. </div>
  12. <div class="txt">
  13. <div class="name">用户名称用户名称</div>
  14. <div class="phone acea-row row-center-wrapper">
  15. 绑定手机号<span class="iconfont iconjinru"></span>
  16. </div>
  17. </div>
  18. </div>
  19. <div class="acea-row row-middle">
  20. <div class="news">
  21. <span class="iconfont icons-kefu"></span>
  22. <div class="num">6</div>
  23. </div>
  24. <span class="iconfont iconshezhi"></span>
  25. </div>
  26. </div>
  27. <div class="center acea-row row-around">
  28. <div class="item">
  29. <div class="num">0.00</div>
  30. <div class="font">我的余额</div>
  31. </div>
  32. <div class="item">
  33. <div class="num">65749</div>
  34. <div class="font">当前积分</div>
  35. </div>
  36. <div class="item">
  37. <div class="num">25</div>
  38. <div class="font">优惠券</div>
  39. </div>
  40. </div>
  41. <div class="bottom acea-row row-between-wrapper" v-if="userData.status == 1">
  42. <div>会员到期 2022-12-31</div>
  43. <div class="renew">立即续费<span class="iconfont iconjinru"></span></div>
  44. </div>
  45. <div class="bottomB acea-row row-between" v-if="userData.status == 3">
  46. <div class="vip"><img src="../../../assets/images/member01.png" />开通会员VIP</div>
  47. <div>会员可享多项权益<span class="iconfont iconjinru"></span></div>
  48. </div>
  49. </div>
  50. <div class="member acea-row row-between-wrapper" v-if="userData.status == 2">
  51. <div class="text">
  52. <div class="title">会员可享多项权益</div>
  53. <div>会员剩余360天</div>
  54. </div>
  55. <div class="bnt">立即续费</div>
  56. </div>
  57. <div class="orderCenter on dotted" :class="current == 4 ? 'solid' : ''" @click="currentShow(4)">
  58. <div class="title acea-row row-between-wrapper">
  59. <div>订单中心</div>
  60. <div class="all">查看全部<span class="iconfont iconjinru"></span></div>
  61. </div>
  62. <div class="list acea-row row-around">
  63. <div class="item">
  64. <div class="iconfont" :class="order.dfk"></div>
  65. <div>待付款</div>
  66. </div>
  67. <div class="item">
  68. <div class="iconfont" :class="order.dfh"></div>
  69. <div>待发货</div>
  70. </div>
  71. <div class="item">
  72. <div class="iconfont" :class="order.dsh"></div>
  73. <div>待收货</div>
  74. </div>
  75. <div class="item">
  76. <div class="iconfont" :class="order.dpj"></div>
  77. <div>待评价</div>
  78. </div>
  79. <div class="item">
  80. <div class="iconfont" :class="order.sh"></div>
  81. <div>售后/退款</div>
  82. </div>
  83. </div>
  84. </div>
  85. <div class="carousel dotted" :class="current == 1 ? 'solid' : ''" @click="currentShow(1)">
  86. <swiper :options="swiperOption" class="swiperimg" v-if="userData.routine_my_banner.length">
  87. <swiper-slide class="swiperimg" v-for="(item, index) in userData.routine_my_banner" :key="index">
  88. <img :src="item.pic" />
  89. </swiper-slide>
  90. <div class="swiper-pagination" slot="pagination"></div>
  91. </swiper>
  92. <div v-else class="default">暂无广告数据</div>
  93. </div>
  94. <div class="orderCenter service dotted" :class="current == 2 ? 'solid' : ''" @click="currentShow(2)">
  95. <div class="title acea-row row-between-wrapper">
  96. <div>我的服务</div>
  97. </div>
  98. <div class="list acea-row">
  99. <div class="item" v-for="(item, index) in MyMenus" :key="index" v-if="item.pic">
  100. <div class="pictrue">
  101. <img :src="item.pic" v-if="item.pic && item.pic != ''" />
  102. <span class="iconfont icontupian1" v-else></span>
  103. </div>
  104. <div>{{ item.name ? item.name : '服务名称' }}</div>
  105. </div>
  106. </div>
  107. </div>
  108. <div class="orderCenter service dotted" :class="current == 3 ? 'solid' : ''" @click="currentShow(3)">
  109. <div class="title acea-row row-between-wrapper">
  110. <div>商家管理</div>
  111. </div>
  112. <div class="list acea-row">
  113. <div class="item" v-for="(item, index) in storeMenu" :key="index" v-if="item.pic">
  114. <div class="pictrue">
  115. <img :src="item.pic" />
  116. </div>
  117. <div>{{ item.name }}</div>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. <div class="right">
  123. <div class="title">页面设置</div>
  124. <div class="c_row-item">
  125. <Col class="label" span="4"> 页面风格: </Col>
  126. <Col span="20" class="slider-box">
  127. <RadioGroup v-model="userData.status">
  128. <Radio :label="1">
  129. <Icon></Icon>
  130. <span>样式1</span>
  131. </Radio>
  132. <Radio :label="2">
  133. <Icon></Icon>
  134. <span>样式2</span>
  135. </Radio>
  136. <Radio :label="3">
  137. <Icon></Icon>
  138. <span>样式3</span>
  139. </Radio>
  140. </RadioGroup>
  141. </Col>
  142. </div>
  143. <div class="c_row-item" v-if="current == 4">
  144. <Col class="label" span="4"> 订单中心: </Col>
  145. <Col span="20" class="slider-box">
  146. <RadioGroup v-model="userData.order_status" @on-change="orderStyle">
  147. <Radio :label="1">
  148. <Icon></Icon>
  149. <span>样式1</span>
  150. </Radio>
  151. <Radio :label="2">
  152. <Icon></Icon>
  153. <span>样式2</span>
  154. </Radio>
  155. <Radio :label="3">
  156. <Icon></Icon>
  157. <span>样式3</span>
  158. </Radio>
  159. <Radio :label="4">
  160. <Icon></Icon>
  161. <span>样式4</span>
  162. </Radio>
  163. <Radio :label="5">
  164. <Icon></Icon>
  165. <span>样式5</span>
  166. </Radio>
  167. </RadioGroup>
  168. </Col>
  169. </div>
  170. <div class="c_row-item acea-row row-top" v-if="current == 1">
  171. <Col class="label" span="4"> 广告位: </Col>
  172. <Col span="20" class="slider-box">
  173. <i-switch v-model="userData.my_banner_status" style="margin-bottom: 12px" />
  174. <div class="info">建议尺寸:690 * 240px,拖拽图片可调整图片显示顺序哦,最多添加五张</div>
  175. <uploadPic :listData="userData.routine_my_banner" :type="2"></uploadPic>
  176. </Col>
  177. </div>
  178. <div class="c_row-item acea-row row-top" v-if="current == 2">
  179. <Col class="label" span="4"> 我的服务: </Col>
  180. <Col span="20" class="slider-box">
  181. <div class="info">建议尺寸:86 * 86px,拖拽图片可调整图片显示顺序哦</div>
  182. <uploadPic :listData="MyMenus"></uploadPic>
  183. </Col>
  184. </div>
  185. <div class="c_row-item acea-row row-top" v-if="current == 3">
  186. <Col class="label" span="4"> 商家管理: </Col>
  187. <Col span="20" class="slider-box">
  188. <div class="info">建议尺寸:86 * 86px,拖拽图片可调整图片显示顺序哦,最多添加五张</div>
  189. <uploadPic :listData="storeMenu" :type="1"></uploadPic>
  190. </Col>
  191. </div>
  192. </div>
  193. </div>
  194. </Card>
  195. </div>
  196. </template>
  197. <script>
  198. import { getMember, memberSave } from '@/api/diy';
  199. import uploadPic from './components/uploadPic';
  200. export default {
  201. name: 'users',
  202. components: {
  203. uploadPic,
  204. },
  205. props: {},
  206. data() {
  207. return {
  208. swiperOption: {
  209. //显示分页
  210. pagination: {
  211. el: '.swiper-pagination',
  212. },
  213. //自动轮播
  214. autoplay: {
  215. delay: 2000,
  216. //当用户滑动图片后继续自动轮播
  217. disableOnInteraction: false,
  218. },
  219. //开启循环模式
  220. loop: false,
  221. },
  222. userData: {
  223. my_banner_status: true,
  224. routine_my_banner: [],
  225. routine_my_menus: [],
  226. status: '',
  227. order_status: '',
  228. },
  229. MyMenus: [{ pic: '', url: '', name: '', sort: 1, status: 1 }],
  230. storeMenu: [{ pic: '', url: '', name: '', sort: 1, status: 1 }],
  231. current: 1,
  232. colorStyle: '',
  233. order: {},
  234. order01: {
  235. dfk: 'icondaifukuan1',
  236. dfh: 'icondaifahuo1',
  237. dsh: 'icondaishouhuo1',
  238. dpj: 'icondaipingjia1',
  239. sh: 'iconshouhou_tuikuan',
  240. },
  241. order02: {
  242. dfk: 'icondaifukuan-lan',
  243. dfh: 'icondaifahuo-lan',
  244. dsh: 'icondaishouhuo-lan',
  245. dpj: 'icondaipingjia-lan',
  246. sh: 'iconshouhou-tuikuan-lan',
  247. },
  248. order03: {
  249. dfk: 'icondaifukuan-ju',
  250. dfh: 'icondaifahuo-ju',
  251. dsh: 'icondaishouhuo-ju',
  252. dpj: 'icondaipingjia-ju',
  253. sh: 'iconshouhou-tuikuan-ju',
  254. },
  255. order04: {
  256. dfk: 'icondaifukuan-fen',
  257. dfh: 'icondaifahuo-fen',
  258. dsh: 'icondaishouhuo-fen',
  259. dpj: 'icondaipingjia-fen',
  260. sh: 'icona-shouhoutuikuan-fen',
  261. },
  262. order05: {
  263. dfk: 'icondaifukuan-lv',
  264. dfh: 'icondaifahuo-lv',
  265. dsh: 'icondaishouhuo-lv',
  266. dpj: 'icondaipingjia-lv',
  267. sh: 'iconshouhou-tuikuan-lv',
  268. },
  269. };
  270. },
  271. created() {
  272. this.getInfo();
  273. },
  274. methods: {
  275. currentShow(type) {
  276. this.current = type;
  277. },
  278. switchOrder(status) {
  279. switch (status) {
  280. case 1:
  281. this.order = this.order01;
  282. break;
  283. case 2:
  284. this.order = this.order02;
  285. break;
  286. case 3:
  287. this.order = this.order03;
  288. break;
  289. case 4:
  290. this.order = this.order04;
  291. break;
  292. case 5:
  293. this.order = this.order05;
  294. break;
  295. default:
  296. this.order = this.order01;
  297. break;
  298. }
  299. },
  300. orderStyle(e) {
  301. this.switchOrder(e);
  302. },
  303. getInfo() {
  304. let green =
  305. '--view-theme: #42CA4D;--view-priceColor:#FF7600;--view-minorColor:rgba(108, 198, 94, 0.5);--view-minorColorT:rgba(66, 202, 77, 0.1);--view-bntColor:#FE960F;';
  306. let red =
  307. '--view-theme: #e93323;--view-priceColor:#e93323;--view-minorColor:rgba(233, 51, 35, 0.5);--view-minorColorT:rgba(233, 51, 35, 0.1);--view-bntColor:#FE960F;';
  308. let blue =
  309. '--view-theme: #1DB0FC;--view-priceColor:#FD502F;--view-minorColor:rgba(58, 139, 236, 0.5);--view-minorColorT:rgba(9, 139, 243, 0.1);--view-bntColor:#22CAFD;';
  310. let pink =
  311. '--view-theme: #FF448F;--view-priceColor:#FF448F;--view-minorColor:rgba(255, 68, 143, 0.5);--view-minorColorT:rgba(255, 68, 143, 0.1);--view-bntColor:#282828;';
  312. let orange =
  313. '--view-theme: #FE5C2D;--view-priceColor:#FE5C2D;--view-minorColor:rgba(254, 92, 45, 0.5);--view-minorColorT:rgba(254, 92, 45, 0.1);--view-bntColor:#FDB000;';
  314. getMember().then((res) => {
  315. this.userData.status = res.data.status;
  316. this.userData.order_status = res.data.order_status;
  317. this.userData.my_banner_status = res.data.my_banner_status;
  318. let storeMenu = [];
  319. let myMenu = [];
  320. this.switchOrder(res.data.order_status);
  321. switch (res.data.color_change) {
  322. case 1:
  323. this.colorStyle = blue;
  324. break;
  325. case 2:
  326. this.colorStyle = green;
  327. break;
  328. case 3:
  329. this.colorStyle = red;
  330. break;
  331. case 4:
  332. this.colorStyle = pink;
  333. break;
  334. case 5:
  335. this.colorStyle = orange;
  336. break;
  337. default:
  338. this.colorStyle = red;
  339. break;
  340. }
  341. res.data.routine_my_banner.forEach((el, index, arr) => {
  342. if (el.pic.length) {
  343. el.pic = el.pic[0];
  344. }
  345. });
  346. if (res.data.routine_my_banner.length) {
  347. this.userData.routine_my_banner = res.data.routine_my_banner;
  348. } else {
  349. this.userData.routine_my_banner = [];
  350. }
  351. res.data.routine_my_menus.forEach((el, index, arr) => {
  352. if (el.pic.length) {
  353. el.pic = el.pic[0];
  354. }
  355. if (
  356. el.url == '/pages/admin/order/index' ||
  357. el.url == '/pages/admin/order_cancellation/index' ||
  358. el.name == '客服接待'
  359. ) {
  360. storeMenu.push(el);
  361. } else {
  362. myMenu.push(el);
  363. }
  364. });
  365. if (myMenu.length) {
  366. this.MyMenus = myMenu;
  367. }
  368. if (storeMenu.length) {
  369. this.storeMenu = storeMenu;
  370. }
  371. });
  372. },
  373. onSubmit() {
  374. this.userData.routine_my_menus = this.MyMenus.concat(this.storeMenu);
  375. this.$emit('parentFun', true);
  376. memberSave(this.userData)
  377. .then((res) => {
  378. this.$emit('parentFun', false);
  379. this.$Message.success(res.msg);
  380. })
  381. .catch((err) => {
  382. this.$Message.error(err.msg);
  383. this.$emit('parentFun', false);
  384. });
  385. },
  386. },
  387. };
  388. </script>
  389. <style scoped lang="stylus">
  390. /* 定义滑块 内阴影+圆角 */
  391. ::-webkit-scrollbar-thumb {
  392. -webkit-box-shadow: inset 0 0 6px #ddd;
  393. }
  394. ::-webkit-scrollbar {
  395. width: 4px !important; /* 对垂直流动条有效 */
  396. }
  397. .default {
  398. background-color: #fff;
  399. text-align: center;
  400. height: 50px;
  401. line-height: 50px;
  402. border-radius: 8px;
  403. }
  404. .bgColor {
  405. background-color: unset !important;
  406. .top {
  407. .picTxt {
  408. .txt {
  409. .name {
  410. color: #333 !important;
  411. }
  412. .phone {
  413. color: rgba(51, 51, 51, 0.8) !important;
  414. background-color: rgba(51, 51, 51, 0.13) !important;
  415. }
  416. }
  417. }
  418. .news {
  419. .iconfont {
  420. color: #333 !important;
  421. }
  422. .num {
  423. background-color: var(--view-theme) !important;
  424. color: #fff !important;
  425. }
  426. }
  427. .iconshezhi {
  428. color: #333 !important;
  429. }
  430. }
  431. .center {
  432. color: rgba(51, 51, 51, 0.7) !important;
  433. .num {
  434. color: #333 !important;
  435. }
  436. }
  437. }
  438. .dotted {
  439. border: 1px dashed #2d8cf0;
  440. cursor: pointer;
  441. }
  442. .solid {
  443. border: 1px solid #2d8cf0 !important;
  444. }
  445. .c_row-item {
  446. .slider-box {
  447. .info {
  448. font-size: 13px;
  449. color: #999999;
  450. }
  451. }
  452. }
  453. .bottomB {
  454. width: 270px;
  455. height: 62px;
  456. background: #343A48;
  457. border-radius: 8px 8px 0px 0px;
  458. padding: 11px 15px 0 15px;
  459. margin: 10px auto 0 auto;
  460. color: #BBBBBB;
  461. font-size: 13px;
  462. z-index: 0;
  463. position: relative;
  464. .iconfont {
  465. font-size: 11px;
  466. }
  467. .vip {
  468. font-size: 13px;
  469. font-weight: bold;
  470. color: #F8D5A8;
  471. img {
  472. width: 18px;
  473. height: 18px;
  474. display: inline-block;
  475. vertical-align: middle;
  476. margin-right: 9px;
  477. }
  478. }
  479. }
  480. .member {
  481. background-image: url('../../../assets/images/user_vip.png');
  482. background-repeat: no-repeat;
  483. background-size: 100%;
  484. width: 270px;
  485. height: 48px;
  486. margin: -42px auto 0 auto;
  487. position: relative;
  488. z-index: 9;
  489. margin-bottom: 13px;
  490. padding: 0 20px 0 45px;
  491. .text {
  492. color: rgba(174, 90, 42, 0.8);
  493. font-size: 12px;
  494. .title {
  495. font-size: 12px;
  496. }
  497. }
  498. .bnt {
  499. width: 70px;
  500. height: 23px;
  501. background-color: #fff;
  502. border-radius: 14px;
  503. color: #AE5A2A;
  504. text-align: center;
  505. line-height: 26px;
  506. font-size: 12px;
  507. }
  508. }
  509. .carousel {
  510. margin: 10px 18px 0 18px;
  511. .swiperimg {
  512. width: 100%;
  513. height: 63px;
  514. border-radius: 8px;
  515. img {
  516. width: 100%;
  517. height: 100%;
  518. border-radius: 8px;
  519. }
  520. }
  521. }
  522. .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  523. bottom: 2px;
  524. }
  525. /deep/.swiper-pagination-bullet {
  526. width: 4px;
  527. height: 4px;
  528. }
  529. /deep/.swiper-pagination-bullet-active {
  530. background: #fff;
  531. }
  532. .users {
  533. .left {
  534. background: #F7F7F7;
  535. width: 310px;
  536. height: 550px;
  537. overflow-x: hidden;
  538. overflow-y: auto;
  539. padding-bottom: 1px;
  540. border-radius: 10px;
  541. margin-right: 30px;
  542. border: 1px solid #eee;
  543. .header {
  544. background-color: var(--view-theme);
  545. background-image: url('../../../assets/images/user01.png');
  546. background-size: 100%;
  547. background-repeat: no-repeat;
  548. width: 100%;
  549. height: 150px;
  550. position: relative;
  551. margin-bottom: 14px;
  552. .top {
  553. padding: 19px 20px 0 20px;
  554. .picTxt {
  555. .pictrue {
  556. width: 35px;
  557. height: 35px;
  558. border-radius: 50%;
  559. margin-right: 10px;
  560. img {
  561. width: 100%;
  562. height: 100%;
  563. border-radius: 50%;
  564. }
  565. }
  566. .txt {
  567. .name {
  568. font-size: 12px;
  569. color: #fff;
  570. font-weight: 600;
  571. img {
  572. width: 40px;
  573. height: 15px;
  574. margin-left: 7px;
  575. vertical-align: middle;
  576. }
  577. }
  578. .phone {
  579. width: 86px;
  580. height: 21px;
  581. border-radius: 13px;
  582. background-color: rgba(16, 55, 72, 0.2);
  583. font-size: 11px;
  584. color: #fff;
  585. margin-top: 4px;
  586. .iconfont {
  587. font-size: 11px;
  588. }
  589. }
  590. }
  591. }
  592. .news {
  593. position: relative;
  594. margin-right: 18px;
  595. .iconfont {
  596. font-size: 22px;
  597. color: #fff;
  598. }
  599. .num {
  600. position: absolute;
  601. width: 14px;
  602. height: 14px;
  603. background: #FFFFFF;
  604. border-radius: 50%;
  605. font-size: 9px;
  606. color: var(--view-theme);
  607. text-align: center;
  608. line-height: 14px;
  609. top: 3px;
  610. right: -4px;
  611. }
  612. }
  613. .iconshezhi {
  614. font-size: 22px;
  615. color: #fff;
  616. }
  617. }
  618. .center {
  619. text-align: center;
  620. color: rgba(255, 255, 255, 0.8);
  621. margin-top: 9px;
  622. .num {
  623. font-size: 15px;
  624. font-weight: 600;
  625. color: rgba(255, 255, 255, 1);
  626. }
  627. .font {
  628. font-size: 13px;
  629. }
  630. .item {
  631. &~.item {
  632. position: relative;
  633. &:before {
  634. position: absolute;
  635. content: '';
  636. width: 1px;
  637. height: 14px;
  638. background-color: rgba(255, 255, 255, 0.3);
  639. left: -36px;
  640. top: 50%;
  641. margin-top: -7px;
  642. }
  643. }
  644. }
  645. }
  646. .bottom {
  647. background-image: url('../../../assets/images/member.png');
  648. width: 287px;
  649. height: 34px;
  650. background-size: 100%;
  651. background-repeat: no-repeat;
  652. position: absolute;
  653. bottom: -6px;
  654. padding: 0 17px 0 44px;
  655. font-size: 13px;
  656. color: #905100;
  657. right: 8px;
  658. .renew {
  659. font-size: 12px;
  660. .iconjinru {
  661. font-size: 11px;
  662. }
  663. }
  664. }
  665. }
  666. .orderCenter {
  667. background: #FFFFFF;
  668. border-radius: 8px;
  669. margin: 0 18px 10px 18px;
  670. text-align: center;
  671. padding: 15px 0;
  672. &.on {
  673. position: relative;
  674. margin-top: -5px;
  675. }
  676. .title {
  677. padding: 0 15px;
  678. font-size: 13px;
  679. color: #282828;
  680. font-weight: 600px;
  681. .all {
  682. font-size: 12px;
  683. color: #666666;
  684. .iconfont {
  685. font-size: 12px;
  686. margin-left: 2px;
  687. }
  688. }
  689. }
  690. .list {
  691. margin-top: 10px;
  692. .item {
  693. font-size: 12px;
  694. color: #454545;
  695. .iconfont {
  696. font-size: 20px;
  697. color: var(--view-theme);
  698. }
  699. }
  700. }
  701. &.service {
  702. padding: 15px 0 0 0;
  703. margin-top: 10px;
  704. .list {
  705. .item {
  706. width: 25%;
  707. margin-bottom: 10px;
  708. .pictrue {
  709. width: 23px;
  710. height: 23px;
  711. margin: 0 auto 8px auto;
  712. font-size: 12px;
  713. img {
  714. width: 100%;
  715. height: 100%;
  716. }
  717. }
  718. }
  719. }
  720. }
  721. }
  722. }
  723. .right {
  724. width: 540px;
  725. /deep/.ivu-radio-wrapper {
  726. font-size: 13px;
  727. margin-right: 20px;
  728. }
  729. .title {
  730. font-size: 14px;
  731. color: rgba(0, 0, 0, 0.85);
  732. position: relative;
  733. font-weight: bold;
  734. &:before {
  735. content: '';
  736. position: absolute;
  737. width: 2px;
  738. height: 14px;
  739. background: #1890FF;
  740. top: 50%;
  741. margin-top: -7px;
  742. left: -8px;
  743. }
  744. }
  745. .c_row-item {
  746. margin-top: 24px;
  747. }
  748. }
  749. }
  750. </style>