index.vue 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773
  1. <template>
  2. <view :style="colorStyle">
  3. <form @submit="formSubmit">
  4. <view class='addAddress'>
  5. <view class='list'>
  6. <view class='item acea-row row-between-wrapper'>
  7. <view class='name'>主标题</view>
  8. <input type='text' placeholder='请填写主标题' name='mainTitle' :value="grouponReqData.mainTitle"
  9. placeholder-class='placeholder'></input>
  10. </view>
  11. <view class='item acea-row row-between-wrapper'>
  12. <view class='name'>副标题</view>
  13. <input type='number' placeholder='请填写副标题' name="subTitle" :value='grouponReqData.subTitle'
  14. placeholder-class='placeholder' pattern="\d*" maxlength="11"></input>
  15. </view>
  16. </view>
  17. <view class="list" style="margin-top:50rpx;">
  18. <view class="title">
  19. 团购商品
  20. </view>
  21. <view class='item acea-row row-between-wrapper'>
  22. <view class='name'>团购时间</view>
  23. <view @click="show1 = true">
  24. <input placeholder='请选择团购时间' name="phone" disabled :value='userAddress.date'
  25. placeholder-class='placeholder' maxlength="11"></input>
  26. </view>
  27. <u-datetime-picker @confirm="dateConfirm" :show="show1" v-model="value1" mode="datetimerange"></u-datetime-picker>
  28. </view>
  29. <view class='item acea-row row-between-wrapper'>
  30. <view class='name'>提货时间</view>
  31. <view @click="show2 = true">
  32. <input placeholder='请选择提货时间' name="phone" disabled :value='userAddress.date2'
  33. placeholder-class='placeholder' maxlength="11"></input>
  34. </view>
  35. <u-datetime-picker @confirm="dateConfirmDate2()" :show="show2" v-model="value1"
  36. mode="datetimerange"></u-datetime-picker>
  37. </view>
  38. <view class='item acea-row row-between-wrapper'>
  39. <view class='name'>自提点</view>
  40. <view @click="openSelfTakeTable()">
  41. <input type='number' placeholder='请选择提自提点' name="phone" disabled :value='userAddress.ZTD'
  42. placeholder-class='placeholder' maxlength="11"></input>
  43. </view>
  44. <u-picker @confirm="dateConfirmZTD()" :show="showZTD" :columns="columns"></u-picker>
  45. </view>
  46. </view>
  47. <view class="list select-list" v-if="selectGoodList.length > 0">
  48. <view class="title">
  49. 团购商品
  50. </view>
  51. <view class="list-item">
  52. <block v-for="(itemn, indexn) in selectGoodList" :key="indexn">
  53. <view hover-class='none' class='item acea-row-item row-column row-middle'>
  54. <view class='picture'>
  55. <image :src='itemn.logo' v-if="itemn.logo"></image>
  56. <image src="/static/images/sort-img.png" v-else></image>
  57. </view>
  58. <view class="p-r">
  59. <view class='name line1'>{{ $t(itemn.title) }}</view>
  60. <view class="acea-row-item-bArea">
  61. <view class='jiage line1'>¥48.00</view>
  62. <view @click="delItem(indexn)" :class="[itemn.selected ? 'selde' : 'noselde']">删除<text
  63. :class="[itemn.selected ? 'selde-q' : 'noselde-q']"></text></view>
  64. </view>
  65. </view>
  66. </view>
  67. </block>
  68. </view>
  69. </view>
  70. <button class="button_1 flex-col" @click="addGood">
  71. <text class="text_15">添加商品</text>
  72. </button>
  73. <button class='keepBnt' form-type="submit">保存并提交</button>
  74. <!-- #ifdef MP -->
  75. <!-- <view class="wechatAddress" v-if="!id" @click="getWxAddress">{{ $t(`导入微信地址`) }}</view> -->
  76. <!-- #endif -->
  77. <!-- #ifdef H5 -->
  78. <view class="wechatAddress" v-if="this.$wechat.isWeixin() && !id" @click="getAddress">{{ $t(`导入微信地址`) }}
  79. </view>
  80. <!-- #endif -->
  81. </view>
  82. </form>
  83. <!-- #ifdef MP -->
  84. <!-- <authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize> -->
  85. <!-- #endif -->
  86. <!-- #ifndef MP -->
  87. <home></home>
  88. <!-- #endif -->
  89. <u-popup :show="addGoodPopupShow" @close="close" @open=" ">
  90. <view>
  91. <publish_good_list @getSelectData="getSelectData" v-if="addGoodPopupShow"></publish_good_list>
  92. </view>
  93. </u-popup>
  94. </view>
  95. </template>
  96. <script>
  97. const city_res = require('@/mock/json/city_res.json')
  98. import {publishGroupon, getAllSelfTake} from '@/api/groupon.js';
  99. import {
  100. postUserAddressSave,
  101. postUserAddressUpdate,
  102. getUserAddressDetailById
  103. } from '@/api/home.js';
  104. import {
  105. editAddress,
  106. getAddressDetail
  107. } from '@/api/user.js';
  108. import {
  109. getCity
  110. } from '@/api/api.js';
  111. import {
  112. toLogin
  113. } from '@/libs/login.js';
  114. import {
  115. mapGetters
  116. } from "vuex";
  117. // #ifdef MP
  118. import authorize from '@/components/Authorize';
  119. // #endif
  120. import home from '@/components/home';
  121. import publish_good_list from '../publish_good_list/index.vue';
  122. import colors from '@/mixins/color.js';
  123. export default {
  124. components: {
  125. // #ifdef MP
  126. authorize,
  127. // #endif
  128. home,
  129. publish_good_list
  130. },
  131. mixins: [colors],
  132. data () {
  133. return {
  134. grouponReqData: {
  135. mainTitle: '',
  136. subTitle: '',
  137. grouponStartTime:'2023-06-09 00:00:00',
  138. grouponEndTime:'2023-06-11 00:00:00',
  139. takeStartTime:'2023-06-13 00:00:00',
  140. takeEndTime:'2023-06-16 00:00:00',
  141. selfTakeIds: ['1664554394738343938'],
  142. goodsIds: ['1666726817158090753']
  143. },
  144. grouponTimeRange: [],
  145. takeTimeRange: [],
  146. columns: [
  147. ['中国', '美国', '日本']
  148. ],
  149. array: [],
  150. show1: false,
  151. show2: false,
  152. showZTD: false,
  153. addGoodPopupShow: false,
  154. value1: Number(new Date()),
  155. regionDval: [this.$t(`浙江省`), this.$t(`杭州市`), this.$t(`滨江区`)],
  156. cartId: '', //购物车id
  157. pinkId: 0, //拼团id
  158. couponId: 0, //优惠券id
  159. id: 0, //地址id
  160. userAddress: {
  161. date: '',
  162. date2: '',
  163. userAddress: '',
  164. defaultState: true
  165. }, //地址详情
  166. region: [this.$t(`省`), this.$t(`市`), this.$t(`区`)],
  167. valueRegion: [0, 0, 0],
  168. isAuto: false, //没有授权的不会自动授权
  169. isShowAuth: false, //是否隐藏授权
  170. district: [],
  171. multiArray: [],
  172. multiIndex: [0, 0, 0],
  173. cityId: 0,
  174. defaultRegion: [this.$t(`广东省`), this.$t(`广州市`), this.$t(`番禺区`)],
  175. defaultRegionCode: '110101',
  176. news: '',
  177. noCoupon: 0,
  178. selectGoodList: [],
  179. selfTakeList: []
  180. };
  181. },
  182. computed: mapGetters(['isLogin']),
  183. watch: {
  184. isLogin: {
  185. handler: function (newV, oldV) {
  186. if (newV) {
  187. this.getUserAddress();
  188. }
  189. },
  190. deep: true
  191. }
  192. },
  193. onLoad (options) {
  194. if (this.isLogin) {
  195. this.cartId = options.cartId || '';
  196. this.pinkId = options.pinkId || 0;
  197. this.couponId = options.couponId || 0;
  198. this.id = options.id || 0;
  199. this.noCoupon = options.noCoupon || 0;
  200. this.news = options.new || '';
  201. uni.setNavigationBarTitle({
  202. title: options.id ? this.$t(`修改地址`) : this.$t(`添加地址`)
  203. })
  204. this.getUserAddress();
  205. this.getCityList();
  206. } else {
  207. toLogin();
  208. }
  209. },
  210. methods: {
  211. openSelfTakeTable() {
  212. this.showZTD = true;
  213. getAllSelfTake({
  214. current: 1,
  215. size: 20
  216. }).then(res => {
  217. this.selfTakeList = res.data.recoreds;
  218. })
  219. },
  220. delItem (index) {
  221. this.selectGoodList.splice(index, 1)
  222. },
  223. getSelectData (data) {
  224. this.selectGoodList = data
  225. console.log(this.selectGoodList);
  226. },
  227. open () {
  228. // console.log('open');
  229. },
  230. close () {
  231. this.addGoodPopupShow = false
  232. // console.log('close');
  233. },
  234. addGood () {
  235. this.addGoodPopupShow = true
  236. },
  237. bindPickerChange: function (e) {
  238. this.index = e.detail.value;
  239. },
  240. dateConfirm (value) {
  241. console.log('dateConfirm! ', value)
  242. this.userAddress.date = value.value
  243. this.show1 = false
  244. },
  245. dateConfirmDate2 (value) {
  246. this.userAddress.date2 = value.value
  247. this.show2 = false
  248. },
  249. dateConfirmZTD (value) {
  250. this.userAddress.ZTD = value.value
  251. this.showZTD = false
  252. },
  253. // #ifdef APP-PLUS
  254. // 获取选择的地区
  255. handleGetRegion (region) {
  256. this.region = region
  257. },
  258. // #endif
  259. // 回去地址数据
  260. getCityList: function () {
  261. let that = this;
  262. // getCity().then(res => {
  263. this.district = city_res
  264. that.initialize();
  265. // })
  266. },
  267. initialize () {
  268. let that = this,
  269. province = [],
  270. city = [],
  271. area = [];
  272. let cityChildren = that.district[0].c || [];
  273. let areaChildren = cityChildren.length ? (cityChildren[0].c || []) : [];
  274. that.district.forEach((item, i) => {
  275. province.push(item.n);
  276. if (item.n === this.region[0]) {
  277. this.valueRegion[0] = i
  278. this.multiIndex[0] = i
  279. }
  280. });
  281. that.district[this.valueRegion[0]].c.forEach((item, i) => {
  282. if (this.region[1] == item.c) {
  283. this.valueRegio[1] = i
  284. this.multiIndex[1] = i
  285. }
  286. city.push(item.n);
  287. });
  288. that.district[this.valueRegion[0]].c[this.valueRegion[1]].c.forEach((item, i) => {
  289. if (this.region[2] == item.c) {
  290. this.valueRegio[2] = i
  291. this.multiIndex[2] = i
  292. }
  293. area.push(item.n);
  294. });
  295. this.multiArray = [province, city, area]
  296. },
  297. bindRegionChange: function (e) {
  298. let multiIndex = this.multiIndex,
  299. province = this.district[multiIndex[0]] || {
  300. c: []
  301. },
  302. city = province.c[multiIndex[1]] || {
  303. v: 0
  304. },
  305. multiArray = this.multiArray,
  306. value = e.detail.value;
  307. this.region = [multiArray[0][value[0]], multiArray[1][value[1]], multiArray[2][value[2]]]
  308. // this.$set(this.region,0,multiArray[0][value[0]]);
  309. // this.$set(this.region,1,multiArray[1][value[1]]);
  310. // this.$set(this.region,2,multiArray[2][value[2]]);
  311. this.cityId = city.v
  312. this.valueRegion = [0, 0, 0]
  313. this.initialize();
  314. },
  315. bindMultiPickerColumnChange: function (e) {
  316. let that = this,
  317. column = e.detail.column,
  318. value = e.detail.value,
  319. currentCity = this.district[value] || {
  320. c: []
  321. },
  322. multiArray = that.multiArray,
  323. multiIndex = that.multiIndex;
  324. multiIndex[column] = value;
  325. switch (column) {
  326. case 0:
  327. let areaList = currentCity.c[0] || {
  328. c: []
  329. };
  330. multiArray[1] = currentCity.c.map((item) => {
  331. return item.n;
  332. });
  333. multiArray[2] = areaList.c.map((item) => {
  334. return item.n;
  335. });
  336. break;
  337. case 1:
  338. let cityList = that.district[multiIndex[0]].c[multiIndex[1]].c || [];
  339. multiArray[2] = cityList.map((item) => {
  340. return item.n;
  341. });
  342. break;
  343. case 2:
  344. break;
  345. }
  346. // #ifdef MP || APP-PLUS
  347. this.$set(this.multiArray, 0, multiArray[0]);
  348. this.$set(this.multiArray, 1, multiArray[1]);
  349. this.$set(this.multiArray, 2, multiArray[2]);
  350. // #endif
  351. // #ifdef H5
  352. this.multiArray = multiArray;
  353. // #endif
  354. this.multiIndex = multiIndex
  355. // this.setData({ multiArray: multiArray, multiIndex: multiIndex});
  356. },
  357. // 授权回调
  358. onLoadFun: function () {
  359. this.getUserAddress();
  360. },
  361. // 授权关闭
  362. authColse: function (e) {
  363. this.isShowAuth = e
  364. },
  365. toggleTab (str) {
  366. this.$refs[str].show();
  367. },
  368. // bindRegionChange: function(e) {
  369. // this.$set(this, 'region', e.detail.value);
  370. // },
  371. onConfirm (val) {
  372. this.region = val.checkArr[0] + '-' + val.checkArr[1] + '-' + val.checkArr[2];
  373. },
  374. getUserAddress: function () {
  375. if (!this.id) return false;
  376. let that = this;
  377. getUserAddressDetailById({ id: this.id, type: 0 }).then(res => {
  378. // let region = [res.data.province, res.data.city, res.data.district];
  379. let region = [res.data.province, res.data.city, res.data.district];
  380. that.$set(that, 'userAddress', res.data);
  381. that.userAddress.defaultState = that.userAddress.defaultState == 2 ? true : false
  382. that.$set(that, 'region', region);
  383. that.cityId = res.data.city
  384. });
  385. },
  386. // 导入共享地址(小程序)
  387. getWxAddress: function () {
  388. let that = this;
  389. uni.authorize({
  390. scope: 'scope.address',
  391. success: function (res) {
  392. uni.chooseAddress({
  393. success: function (res) {
  394. let addressP = {};
  395. addressP.province = res.provinceName;
  396. addressP.city = res.cityName;
  397. addressP.district = res.countyName;
  398. editAddress({
  399. address: addressP,
  400. defaultState: 1,
  401. realName: res.userName,
  402. post_code: res.postalCode,
  403. phone: res.telNumber,
  404. detail: res.detailInfo,
  405. id: 0,
  406. type: 1,
  407. }).then(res => {
  408. setTimeout(function () {
  409. if (that.cartId) {
  410. let cartId = that.cartId;
  411. let pinkId = that.pinkId;
  412. let couponId = that.couponId;
  413. that.cartId = '';
  414. that.pinkId = '';
  415. that.couponId = '';
  416. uni.navigateTo({
  417. url: '/pages/goods/order_confirm/index?cartId=' +
  418. cartId +
  419. '&addressId=' + (
  420. that.id ? that
  421. .id :
  422. res.data
  423. .id) +
  424. '&pinkId=' +
  425. pinkId +
  426. '&couponId=' +
  427. couponId +
  428. '&new=' + that
  429. .news +
  430. '&noCoupon=' + that
  431. .noCoupon
  432. });
  433. } else {
  434. uni.navigateBack({
  435. delta: 1
  436. });
  437. }
  438. }, 1000);
  439. return that.$util.Tips({
  440. title: this.$t(`添加成功`),
  441. icon: 'success'
  442. });
  443. }).catch(err => {
  444. return that.$util.Tips({
  445. title: err
  446. });
  447. });
  448. },
  449. fail: function (res) {
  450. if (res.errMsg == 'chooseAddress:cancel') return that.$util
  451. .Tips({
  452. title: this.$t(`取消选择`)
  453. });
  454. },
  455. })
  456. },
  457. fail: function (res) {
  458. uni.showModal({
  459. title: this.$t(`您已拒绝导入微信地址权限`),
  460. content: this.$t(`是否进入权限管理,调整授权?`),
  461. success (res) {
  462. if (res.confirm) {
  463. uni.openSetting({
  464. success: function (res) { }
  465. });
  466. } else if (res.cancel) {
  467. return that.$util.Tips({
  468. title: that.$t(`已取消!`)
  469. });
  470. }
  471. }
  472. })
  473. },
  474. })
  475. },
  476. // 导入共享地址(微信);
  477. getAddress () {
  478. let that = this;
  479. that.$wechat.openAddress().then(userInfo => {
  480. editAddress({
  481. id: this.id,
  482. realName: userInfo.userName,
  483. phone: userInfo.telNumber,
  484. address: {
  485. province: userInfo.provinceName,
  486. city: userInfo.cityName,
  487. district: userInfo.countryName
  488. },
  489. detail: userInfo.detailInfo,
  490. defaultState: 1,
  491. post_code: userInfo.postalCode,
  492. type: 1,
  493. })
  494. .then(() => {
  495. setTimeout(function () {
  496. if (that.cartId) {
  497. let cartId = that.cartId;
  498. let pinkId = that.pinkId;
  499. let couponId = that.couponId;
  500. that.cartId = '';
  501. that.pinkId = '';
  502. that.couponId = '';
  503. uni.navigateTo({
  504. url: '/pages/goods/order_confirm/index?cartId=' +
  505. cartId + '&addressId=' + (that.id ? that.id :
  506. res.data
  507. .id) + '&pinkId=' + pinkId + '&couponId=' +
  508. couponId + '&new=' + that.news +
  509. '&noCoupon=' + that
  510. .noCoupon
  511. });
  512. } else {
  513. uni.navigateTo({
  514. url: '/pages/users/user_address_list/index'
  515. })
  516. // history.back();
  517. }
  518. }, 1000);
  519. // close();
  520. that.$util.Tips({
  521. title: that.$t(`添加成功`),
  522. icon: 'success'
  523. });
  524. })
  525. .catch(err => {
  526. // close();
  527. return that.$util.Tips({
  528. title: err || that.$t(`添加失败`)
  529. });
  530. });
  531. }).catch(err => { });
  532. },
  533. /**
  534. * 发布团购
  535. */
  536. formSubmit: function (e) {
  537. let that = this,
  538. value = e.detail.value;
  539. console.log(value);
  540. console.log(that.grouponReqData);
  541. if (!value.mainTitle.trim()) return that.$util.Tips({
  542. title: that.$t(`请填写主标题`)
  543. });
  544. if (!value.subTitle.trim()) return that.$util.Tips({
  545. title: that.$t(`请填写副标题`)
  546. });
  547. uni.showLoading({
  548. title: that.$t(`发布中`),
  549. mask: true
  550. })
  551. let resSuccess = false;
  552. publishGroupon(that.grouponReqData).then(res => {
  553. that.$util.Tips({
  554. title: that.$t(`提交成功`),
  555. icon: 'success'
  556. });
  557. resSuccess = true
  558. }).catch(err => {
  559. return that.$util.Tips({
  560. title: err
  561. });
  562. })
  563. if (resSuccess) {
  564. // setTimeout(function () {
  565. // if (that.cartId) {
  566. // let cartId = that.cartId;
  567. // let pinkId = that.pinkId;
  568. // let couponId = that.couponId;
  569. // that.cartId = '';
  570. // that.pinkId = '';
  571. // that.couponId = '';
  572. // uni.navigateTo({
  573. // url: '/pages/goods/order_confirm/index?new=' + that.news +
  574. // '&cartId=' + cartId + '&addressId=' + (that.id ? that.id :
  575. // res.data.id) + '&pinkId=' + pinkId + '&couponId=' +
  576. // couponId +
  577. // '&noCoupon=' + that
  578. // .noCoupon
  579. // });
  580. // } else {
  581. // // #ifdef H5
  582. // return history.back();
  583. // // #endif
  584. // // #ifndef H5
  585. // return uni.navigateBack({
  586. // delta: 1,
  587. // })
  588. // // #endif
  589. // }
  590. // }, 1000);
  591. }
  592. },
  593. ChangeIsDefault: function (e) {
  594. this.$set(this.userAddress, 'defaultState', !this.userAddress.defaultState);
  595. }
  596. }
  597. }
  598. </script>
  599. <style scoped lang="scss">
  600. .fontcolor {
  601. color: var(--view-theme);
  602. }
  603. .addAddress .list {
  604. background-color: #fff;
  605. padding-top: 10rpx;
  606. .title {
  607. margin: 30rpx;
  608. height: 44rpx;
  609. font-size: 32rpx;
  610. font-weight: bolder;
  611. color: #111111;
  612. line-height: 44rpx;
  613. }
  614. }
  615. .addAddress .list .item {
  616. padding: 30rpx;
  617. border-top: 1rpx solid #eee;
  618. }
  619. .addAddress .list .item .name {
  620. width: 195rpx;
  621. font-size: 30rpx;
  622. color: #333;
  623. }
  624. .addAddress .list .item .address {
  625. // width: 412rpx;
  626. flex: 1;
  627. margin-left: 20rpx;
  628. }
  629. .addAddress .list .item input {
  630. width: 475rpx;
  631. font-size: 30rpx;
  632. }
  633. .addAddress .list .item .placeholder {
  634. color: #ccc;
  635. }
  636. .addAddress .list .item picker {
  637. width: 475rpx;
  638. }
  639. .addAddress .list .item picker .picker {
  640. width: 410rpx;
  641. font-size: 30rpx;
  642. }
  643. .addAddress .list .item picker .iconfont {
  644. font-size: 43rpx;
  645. }
  646. .addAddress .default {
  647. padding: 0 30rpx;
  648. height: 90rpx;
  649. background-color: #fff;
  650. margin-top: 23rpx;
  651. }
  652. .addAddress .default checkbox {
  653. margin-right: 15rpx;
  654. }
  655. .addAddress .keepBnt {
  656. width: 90%;
  657. height: 84rpx;
  658. background: #B42A3E;
  659. border-radius: 8rpx;
  660. margin: 30rpx auto;
  661. font-size: 28rpx;
  662. font-weight: 400;
  663. color: #FFFFFF;
  664. line-height: 84rpx;
  665. }
  666. .addAddress .wechatAddress {
  667. width: 690rpx;
  668. height: 86rpx;
  669. border-radius: 50rpx;
  670. text-align: center;
  671. line-height: 86rpx;
  672. margin: 0 auto;
  673. font-size: 32rpx;
  674. color: var(--view-theme);
  675. border: 1px solid var(--view-theme);
  676. }
  677. .button_1 {
  678. width: 90%;
  679. height: 84rpx;
  680. background: #FFFFFF;
  681. border-radius: 8rpx;
  682. border: 2rpx solid #B42A3E;
  683. margin: 30rpx auto;
  684. font-size: 28rpx;
  685. font-weight: 400;
  686. color: #B42A3E;
  687. line-height: 84rpx;
  688. }
  689. .text_15 {
  690. overflow-wrap: break-word;
  691. color: rgba(180, 42, 62, 1);
  692. font-size: 14px;
  693. font-weight: NaN;
  694. text-align: center;
  695. white-space: nowrap;
  696. line-height: 20px;
  697. }
  698. .acea-row-item {
  699. display: flex;
  700. width: 100% !important;
  701. flex-direction: row;
  702. .picture {
  703. width: 120rpx;
  704. height: 120rpx;
  705. border-radius: 50%;
  706. image {
  707. width: 100%;
  708. height: 100%;
  709. border-radius: 50%;
  710. }
  711. }
  712. .p-r {
  713. flex-direction: column;
  714. width: 100%;
  715. display: flex;
  716. justify-content: space-between;
  717. .name {}
  718. .acea-row-item-bArea {
  719. display: flex;
  720. justify-content: space-between;
  721. }
  722. }
  723. }
  724. </style>