add.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="title requ">图片和标题</view>
  5. <view class="upload">
  6. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="1" width="166rpx" height="166rpx">
  7. </u-upload>
  8. </view>
  9. <u-textarea v-model="name" border="none" confirmType="done" placeholder="标题示例:【现货】夏季新款 韩版碎花雪纺连衣裙" count maxlength="100"></u-textarea>
  10. </view>
  11. <view class="box">
  12. <view class="box_item hflex acenter jbetween">
  13. <view class="box_left requ">规格</view>
  14. <view class="hflex acenter" @click="addSpec">
  15. <view class="box_right text_blue" v-if="items == ''">+新增规格</view>
  16. <view class="box_right text_blue" v-else>共{{items.length}}个规格</view>
  17. <u-icon name="arrow-right" size="12" color="#617BFE"></u-icon>
  18. </view>
  19. </view>
  20. <view class="box_item hflex acenter jbetween">
  21. <view class="box_left requ">价格和库存</view>
  22. <view class="hflex acenter" @click="toSetting">
  23. <view class="box_right" v-if="items == ''">未设置</view>
  24. <view class="box_right" v-else>已设置</view>
  25. <u-icon name="arrow-right" size="12" color="#ACACAC"></u-icon>
  26. </view>
  27. </view>
  28. <view class="box_item hflex acenter jbetween" @click="open">
  29. <view class="box_left requ">类目</view>
  30. <view class="hflex acenter">
  31. <view class="box_right" v-if="cateids == ''">请选择商品类目</view>
  32. <view class="box_right" style="max-width: 500rpx;" v-else>{{cate}}</view>
  33. <u-icon name="arrow-right" size="12" color="#ACACAC"></u-icon>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="box">
  38. <view class="box_item hflex acenter jbetween">
  39. <view class="box_left">物流配送</view>
  40. <view class="hflex acenter">
  41. <view class="box_right">快递发货</view>
  42. <u-icon name="arrow-right" size="12" color="#ACACAC"></u-icon>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="box">
  47. <view class="title">商品详情</view>
  48. <u-textarea v-model="content" border="none" confirmType="done" placeholder="描述一下商品特色吧~" ></u-textarea>
  49. <view class="title">图片/视频</view>
  50. <view class="upload hflex acenter fwrap">
  51. <block v-for="(item,index) in fileList2" :key="index">
  52. <view v-if="item.type == 'image'" style="position: relative;">
  53. <image :src="item.url" class="img" mode="aspectFill" v-if="item.type == 'image'"></image>
  54. <image src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic2(index)"></image>
  55. </view>
  56. <view v-if="item.type == 'video'" style="position: relative;">
  57. <video :src="item.url" direction="0" class="img" v-if="item.type == 'video'"></video>
  58. <image src="/static/images/common/popu_close.png" class="close_icon" @click="deletePic2(index)"></image>
  59. </view>
  60. <!-- <image :src="item.url" class="img" mode="aspectFill" v-if="item.type == 'image'"></image>
  61. <video :src="item.url" direction="0" class="img" v-if="item.type == 'video'"></video> -->
  62. </block>
  63. <!-- <u-upload :fileList="fileList2" @afterRead="afterRead" @delete="deletePic" name="2" multiple :maxCount="9" width="200rpx" height="200rpx">
  64. <image src="/static/images/common/upload_img.png" class="upload_img2"></image>
  65. </u-upload> -->
  66. <image src="/static/images/common/upload_img.png" class="img" @click="choose"></image>
  67. </view>
  68. </view>
  69. <view class="box" style="margin-bottom: 186rpx;">
  70. <view class="box_item hflex acenter jbetween">
  71. <view class="box_left">商品状态</view>
  72. <view class="hflex acenter">
  73. <block v-for="(item,index) in radioList" :key="index">
  74. <view class="hflex acenter" style="padding-left: 32rpx;" @click="changeRadio(index)">
  75. <image src="/static/images/common/select1.png" style="width: 36rpx;height: 36rpx;" v-if="active !== index"></image>
  76. <image src="/static/images/common/select2.png" style="width: 36rpx;height: 36rpx;" v-else></image>
  77. <view class="radio_text">{{item.name}}</view>
  78. </view>
  79. </block>
  80. </view>
  81. </view>
  82. </view>
  83. <view class="bottom">
  84. <view class="btn hflex acenter jcenter" @click="create" v-if="id == ''">创建商品</view>
  85. <view class="btn_group hflex acenter jbetween" v-else>
  86. <view class="btn1 hflex acenter jcenter" @click="dele">删除</view>
  87. <view class="btn2 hflex acenter jcenter" @click="save">保存</view>
  88. </view>
  89. </view>
  90. <u-popup :show="cate_show" round="10" mode="bottom" @close="close" :safeAreaInsetBottom="false">
  91. <view class="popu">
  92. <view class="popu_top hflex acenter jbetween">
  93. <view></view>
  94. <view class="popu_title">选择类目</view>
  95. <image src="/static/images/common/close_icon.png" style="width: 28rpx;height: 28rpx;" @click="close"></image>
  96. </view>
  97. <view class="center">
  98. <view class="menuList hflex acenter jbetween">
  99. <scroll-view scroll-y="true" class="menu_left">
  100. <view class="vflex">
  101. <block v-for="(item,index) in cateList" :key="index">
  102. <view class="left_item text_hide hflex acenter" :class="index == left_active? 'left_active':''" @click="clickTab1(index)">
  103. <text class="text_hide" style="width: 100%;text-align: center;">{{item.name}}</text>
  104. </view>
  105. </block>
  106. </view>
  107. </scroll-view>
  108. <scroll-view scroll-y="true" class="menu_right">
  109. <view class="vflex" v-if="cateList[left_active]">
  110. <block v-for="(item,index) in cateList[left_active].sub" :key="index">
  111. <view class="right_item hflex acenter jbetween" @click="selectItem(index)">
  112. <view class="item_text hflex acenter jcenter" :class="index == right_active? 'right_active':''">{{item.name}}</view>
  113. <image src="/static/images/common/check.png" style="width: 36rpx;height: 36rpx;" v-if="index == right_active"></image>
  114. </view>
  115. </block>
  116. </view>
  117. </scroll-view>
  118. </view>
  119. </view>
  120. <view class="popu_bottom">
  121. <view class="btn hflex acenter jcenter"@click="sure">确定</view>
  122. </view>
  123. </view>
  124. </u-popup>
  125. <u-popup :show="show_choose" @close="close">
  126. <view class="vflex acenter">
  127. <view class="hflex acenter jcenter choose" @click="choose_img">
  128. <view>图片</view>
  129. </view>
  130. <view class="hflex acenter jcenter choose" @click="choose_video">
  131. <view>视频</view>
  132. </view>
  133. <view class="hflex acenter jcenter choose" @click="close">
  134. <view>取消</view>
  135. </view>
  136. </view>
  137. </u-popup>
  138. </view>
  139. </template>
  140. <script>
  141. import $api, { info } from '@/static/js/api.js'
  142. var that = ''
  143. export default {
  144. data() {
  145. return {
  146. fileList1: [],
  147. fileList2: [],
  148. cateList: [],
  149. left_active: 0,
  150. right_active: -1,
  151. name: '',
  152. content: '',
  153. radioList: [
  154. {
  155. name: '上架售卖'
  156. },
  157. {
  158. name: '暂不上架'
  159. }
  160. ],
  161. active: 0,
  162. items: '',
  163. cover: '',
  164. slider: '',
  165. content: '',
  166. status: 1,
  167. cateids: '',
  168. cate: '',
  169. spec: '',
  170. stock_total: 0,
  171. price_selling: '',
  172. cate_show: false,
  173. id: '',
  174. data: [],
  175. spect: '',
  176. data_specs: '',
  177. show_choose: false
  178. }
  179. },
  180. onLoad(options) {
  181. that = this
  182. if(options.id) {
  183. that.id = options.id
  184. that.getData()
  185. }
  186. if(options.data) {
  187. that.data = JSON.parse(options.data)
  188. that.spect = options.spec
  189. that.items = that.data
  190. that.spec = that.spect
  191. for(var i=0;i<that.items.length;i++) {
  192. that.stock_total += Number(that.items[i].stock_total)
  193. if(that.items[i].status) {
  194. that.items[i].status = 1
  195. } else {
  196. that.items[i].status = 2
  197. }
  198. }
  199. that.price_selling = that.items[0].price_selling
  200. }
  201. that.getCate()
  202. },
  203. onShow() {
  204. var data = uni.getStorageSync('specData')
  205. var spec = uni.getStorageSync('spectitle')
  206. if(data) {
  207. that.data = JSON.parse(data)
  208. that.spect = JSON.parse(spec)
  209. that.items = that.data
  210. that.spec = that.spect
  211. for(var i=0;i<that.items.length;i++) {
  212. that.stock_total += Number(that.items[i].stock_total)
  213. if(that.items[i].status) {
  214. that.items[i].status = 1
  215. } else {
  216. that.items[i].status = 2
  217. }
  218. }
  219. that.price_selling = that.items[0].price_selling
  220. }
  221. },
  222. methods: {
  223. getData() {
  224. $api.req({
  225. url: '/data/api.business.Goods/goods_details',
  226. method: 'POST',
  227. data: {
  228. goods_id: that.id
  229. }
  230. }, function(res) {
  231. if(res.code == 1) {
  232. console.log(res);
  233. that.data_specs = res.data.data_specs
  234. that.cover = res.data.cover
  235. var imgList = res.data.cover.split('|')
  236. for(var i=0;i<imgList.length;i++) {
  237. var data = {
  238. url: imgList[i]
  239. }
  240. that.fileList1.push(data)
  241. }
  242. that.name = res.data.name
  243. that.items = res.data.item
  244. that.cateids = res.data.cateids
  245. that.cate = res.data.cate_name[0].name
  246. that.content = res.data.content
  247. that.slider = res.data.slider
  248. imgList = res.data.slider.split('|')
  249. for(var i=0;i<imgList.length;i++) {
  250. var data = {
  251. url: imgList[i]
  252. }
  253. that.fileList2.push(data)
  254. }
  255. that.status = res.data.status
  256. that.stock_total = res.data.stock_total
  257. that.price_selling = res.data.price_selling
  258. if(that.status == 1) {
  259. that.active = 0
  260. } else {
  261. that.active = 1
  262. }
  263. if(that.data.length!==0) {
  264. that.items = that.data
  265. that.spec = that.spect
  266. for(var i=0;i<that.items.length;i++) {
  267. that.stock_total += Number(that.items[i].stock_total)
  268. }
  269. that.price_selling = that.items[0].price_selling
  270. }
  271. }
  272. })
  273. },
  274. getCate() {
  275. $api.req({
  276. url: '/data/api.business.Goods/getCate'
  277. }, function(res) {
  278. if(res.code == 1) {
  279. that.cateList = res.data
  280. }
  281. })
  282. },
  283. // 删除图片
  284. deletePic(event) {
  285. this[`fileList${event.name}`].splice(event.index, 1)
  286. },
  287. deletePic2(index) {
  288. that.fileList2.splice(index,1)
  289. },
  290. // 新增图片
  291. async afterRead(event) {
  292. uni.showLoading({
  293. title: '上传中',
  294. mask: true
  295. })
  296. let lists = [].concat(event.file)
  297. let fileListLen = this[`fileList${event.name}`].length
  298. lists.map((item) => {
  299. this[`fileList${event.name}`].push({
  300. ...item,
  301. // status: 'uploading',
  302. // message: '上传中'
  303. })
  304. })
  305. for (let i = 0; i < lists.length; i++) {
  306. const result = await this.uploadFilePromise(lists[i].url)
  307. let item = this[`fileList${event.name}`][fileListLen]
  308. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  309. // status: 'success',
  310. type: result.type,
  311. url: result.url
  312. }))
  313. fileListLen++
  314. if(lists.length - 1 == i) {
  315. uni.hideLoading()
  316. }
  317. }
  318. console.log(that.fileList1);
  319. },
  320. uploadFilePromise(url) {
  321. return new Promise((resolve, reject) => {
  322. let a = uni.uploadFile({
  323. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  324. filePath: url,
  325. name: 'file',
  326. header: {
  327. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  328. 'api-name': 'iosapp'
  329. },
  330. formData: {
  331. user: 'test'
  332. },
  333. success: (res) => {
  334. setTimeout(() => {
  335. var data = JSON.parse(res.data)
  336. console.log('data:',data);
  337. var type = data.data.key.split('.')
  338. if(type[1] == 'mp4') {
  339. that.$set(data.data,'type','video')
  340. } else {
  341. that.$set(data.data,'type','image')
  342. }
  343. resolve(data.data)
  344. }, 1000)
  345. }
  346. });
  347. })
  348. },
  349. changeRadio(index) {
  350. that.active = index
  351. if(that.active == 0) {
  352. that.status = 1
  353. } else {
  354. that.status = 0
  355. }
  356. },
  357. addSpec() {
  358. if(that.id) {
  359. return
  360. }
  361. $api.jump('/pages/good/spec?items=' + that.data_specs+'&good_id=' + that.id)
  362. },
  363. toSetting() {
  364. var data = uni.getStorageSync('specData')
  365. var list = uni.getStorageSync('spectitle')
  366. if(that.id) {
  367. $api.jump('/pages/good/setting?good_id=' + that.id + '&list=' + JSON.stringify(that.items) + '&data=' +that.data_specs)
  368. } else {
  369. $api.jump('/pages/good/setting?list=' + data + '&data=' +list)
  370. }
  371. },
  372. open() {
  373. that.cate_show = true
  374. },
  375. clickTab1(e) {
  376. that.left_active = e
  377. that.right_active = -1
  378. },
  379. selectItem(index) {
  380. that.right_active = index
  381. },
  382. sure() {
  383. if(that.left_active == -1 && that.right_active == -1) {
  384. $api.info("请先选择类目")
  385. return
  386. }
  387. if(that.right_active == -1) {
  388. that.cateids = that.cateList[that.left_active].id
  389. that.cate = that.cateList[that.left_active].name
  390. } else {
  391. that.cateids = that.cateList[that.left_active].sub[that.right_active].id
  392. that.cate = that.cateList[that.left_active].sub[that.right_active].name
  393. }
  394. that.close()
  395. },
  396. close() {
  397. that.cate_show = false
  398. that.show_choose = false
  399. },
  400. create() {
  401. uni.removeStorageSync("specData")
  402. uni.removeStorageSync("spectitle")
  403. console.log('总库存',that.stock_total);
  404. for(var i=0;i<that.fileList1.length;i++) {
  405. that.cover += that.fileList1[i].url + '|'
  406. }
  407. for(var i=0;i<that.fileList2.length;i++) {
  408. that.slider += that.fileList2[i].url + '|'
  409. }
  410. that.cover = that.cover.substr(0,that.cover.length - 1)
  411. that.slider = that.slider.substr(0,that.slider.length - 1)
  412. console.log(that.spec);
  413. $api.req({
  414. url: '/data/api.business.Goods/goods_add',
  415. method: 'POST',
  416. data: {
  417. name: that.name,
  418. cateids: that.cateids,
  419. cover: that.cover,
  420. slider: that.slider,
  421. content: that.content,
  422. stock_total: that.stock_total,
  423. price_selling: that.price_selling,
  424. status: that.status,
  425. spec: JSON.stringify(that.spec),
  426. items: JSON.stringify(that.items)
  427. }
  428. }, function(res) {
  429. if(res.code == 1) {
  430. $api,info(res.info)
  431. $api.jump('/pages/tabbar/index/index',2)
  432. }
  433. })
  434. },
  435. save() {
  436. that.cover = ""
  437. that.slider = ""
  438. uni.removeStorageSync("specData")
  439. uni.removeStorageSync("spectitle")
  440. console.log('总库存',that.stock_total);
  441. for(var i=0;i<that.fileList1.length;i++) {
  442. that.cover += that.fileList1[i].url + '|'
  443. }
  444. for(var i=0;i<that.fileList2.length;i++) {
  445. that.slider += that.fileList2[i].url + '|'
  446. }
  447. var items = []
  448. for(var i=0;i<that.items.length;i++) {
  449. var temp = {
  450. id: that.items[i].id,
  451. goods_spec: that.items[i].goods_spec,
  452. stock_total: that.items[i].stock_total,
  453. price_selling: that.items[i].price_selling,
  454. sku_image: that.items[i].show_image?that.items[i].show_image: that.items[i].sku_image,
  455. status: that.items[i].status
  456. }
  457. items.push(temp)
  458. }
  459. that.cover = that.cover.substr(0,that.cover.length - 1)
  460. that.slider = that.slider.substr(0,that.slider.length - 1)
  461. $api.req({
  462. url: '/data/api.business.Goods/goods_edit',
  463. method: 'POST',
  464. data: {
  465. goods_id: that.id,
  466. name: that.name,
  467. cateids: that.cateids,
  468. cover: that.cover,
  469. slider: that.slider,
  470. content: that.content,
  471. stock_total: that.stock_total,
  472. price_selling: that.price_selling,
  473. status: that.status,
  474. items: JSON.stringify(items)
  475. }
  476. }, function(res) {
  477. if(res.code == 1) {
  478. $api,info(res.info)
  479. $api.jump('/pages/tabbar/index/index',2)
  480. }
  481. })
  482. },
  483. dele() {
  484. $api.req({
  485. url: '/data/api.business.Goods/del_goods',
  486. method: 'POST',
  487. data: {
  488. goods_id: that.id
  489. }
  490. }, function(res) {
  491. if(res.code == 1) {
  492. $api.info(res.info)
  493. $api.jump('/pages/tabbar/index/index',2)
  494. }
  495. })
  496. },
  497. choose() {
  498. that.show_choose = true
  499. },
  500. choose_img() {
  501. that.close()
  502. uni.chooseImage({
  503. count: 9, //默认9
  504. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  505. sourceType: ['album','camera'], //从相册选择
  506. success: function (res) {
  507. uni.showLoading({
  508. title: '上传中',
  509. mask: true
  510. })
  511. let fileListLen = that.fileList2.length
  512. let file = res.tempFiles[0].path
  513. console.log(file);
  514. uni.uploadFile({
  515. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  516. filePath: file,
  517. name: 'file',
  518. header: {
  519. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  520. 'api-name': 'iosapp'
  521. },
  522. formData: {
  523. user: 'test'
  524. },
  525. success: (res2) => {
  526. var data = JSON.parse(res2.data)
  527. console.log('data:',data);
  528. let item = {
  529. type: 'image',
  530. url: data.data.url
  531. }
  532. that.fileList2.push(item)
  533. uni.hideLoading()
  534. },
  535. fail(err) {
  536. console.log(err);
  537. }
  538. });
  539. }
  540. });
  541. },
  542. choose_video() {
  543. that.close()
  544. uni.chooseVideo({
  545. sourceType: ['camera', 'album'],
  546. success: function (res) {
  547. uni.showLoading({
  548. title: '上传中',
  549. mask: true
  550. })
  551. let fileListLen = that.fileList2.length
  552. let file = res.tempFilePath
  553. console.log(file);
  554. uni.uploadFile({
  555. url: $api.config.baseUrl + '/data/api.auth.Center/upload',
  556. filePath: file,
  557. name: 'file',
  558. header: {
  559. 'token': uni.getStorageSync('token')?uni.getStorageSync('token'):'',
  560. 'api-name': 'iosapp'
  561. },
  562. formData: {
  563. user: 'test'
  564. },
  565. success: (res2) => {
  566. var data = JSON.parse(res2.data)
  567. let item = {
  568. type: 'video',
  569. url: data.data.url
  570. }
  571. that.fileList2.push(item)
  572. uni.hideLoading()
  573. },
  574. fail(err) {
  575. console.log(err);
  576. }
  577. });
  578. }
  579. });
  580. }
  581. },
  582. }
  583. </script>
  584. <style lang="scss" scoped>
  585. .content::v-deep {
  586. background: #F5F5F5;
  587. .box {
  588. width: 100%;
  589. background: #FFFFFF;
  590. box-sizing: border-box;
  591. padding: 0 30rpx;
  592. margin-top: 20rpx;
  593. .title {
  594. font-size: 30rpx;
  595. font-weight: 400;
  596. color: #222222;
  597. line-height: 42rpx;
  598. margin: 28rpx 0 20rpx;
  599. }
  600. .requ {
  601. position: relative;
  602. }
  603. .requ:before {
  604. content: '*';
  605. top: 0;
  606. left: -15rpx;
  607. position: absolute;
  608. font-size: 30rpx;
  609. font-weight: 400;
  610. color: #FF3636;
  611. }
  612. .upload {
  613. margin-bottom: 20px;
  614. .upload_img1 {
  615. width: 166rpx;
  616. height: 166rpx;
  617. }
  618. .upload_img2 {
  619. width: 200rpx;
  620. height: 200rpx;
  621. }
  622. .img {
  623. width: 200rpx;
  624. height: 200rpx;
  625. margin: 0 20rpx 20rpx 0;
  626. border-radius: 16rpx;
  627. }
  628. video {
  629. width: 200rpx;
  630. height: 200rpx;
  631. margin: 0 20rpx 20rpx 0;
  632. }
  633. .close_icon {
  634. position: absolute;
  635. top: 0;
  636. right: 15rpx;
  637. width: 30rpx;
  638. height: 30rpx;
  639. z-index: 99;
  640. }
  641. }
  642. .u-textarea {
  643. padding: 0 !important;
  644. }
  645. .box_item {
  646. padding: 28rpx 0;
  647. border-bottom: 1rpx solid #F5F5F5;
  648. .box_left {
  649. font-size: 30rpx;
  650. font-weight: 400;
  651. color: #222222;
  652. line-height: 42rpx;
  653. }
  654. .box_right {
  655. font-size: 30rpx;
  656. font-weight: 400;
  657. color: #ACACAC;
  658. line-height: 42rpx;
  659. padding-right: 10rpx;
  660. text-overflow: ellipsis;
  661. overflow: hidden;
  662. display: -webkit-box;
  663. -webkit-box-orient: vertical;
  664. box-orient: vertical;
  665. line-clamp: 2;
  666. -webkit-line-clamp: 2;
  667. }
  668. .text_blue {
  669. color: #617BFE;
  670. }
  671. .radio_text {
  672. font-size: 30rpx;
  673. font-weight: 400;
  674. color: #222222;
  675. line-height: 42rpx;
  676. padding-left: 12rpx;
  677. }
  678. }
  679. }
  680. .bottom {
  681. width: 100%;
  682. height: 166rpx;
  683. background: #FFFFFF;
  684. position: fixed;
  685. bottom: 0;
  686. z-index: 99;
  687. .btn {
  688. width: 690rpx;
  689. height: 84rpx;
  690. background: #5471FF;
  691. border-radius: 46rpx;
  692. margin: 8rpx auto 0;
  693. font-size: 36rpx;
  694. font-weight: 500;
  695. color: #FFFFFF;
  696. line-height: 50rpx;
  697. }
  698. .btn_group {
  699. width: 100%;
  700. box-sizing: border-box;
  701. padding: 8rpx 30rpx 0;
  702. .btn1 {
  703. width: 330rpx;
  704. height: 84rpx;
  705. border-radius: 46rpx;
  706. border: 1rpx solid #5471FF;
  707. font-size: 32rpx;
  708. font-weight: 500;
  709. color: #5471FF;
  710. line-height: 50rpx;
  711. }
  712. .btn2 {
  713. width: 330rpx;
  714. height: 84rpx;
  715. background: #5471FF;
  716. border-radius: 46rpx;
  717. font-size: 32rpx;
  718. font-weight: 500;
  719. color: #FFFFFF;
  720. line-height: 50rpx;
  721. }
  722. }
  723. }
  724. .popu {
  725. background: #FFFFFF;
  726. border-radius: 40rpx 40rpx 0px 0px;
  727. // border: 2rpx solid #979797;
  728. .popu_top {
  729. width: 690rpx;
  730. margin: 0 auto;
  731. padding: 44rpx 0 28rpx;
  732. border-bottom: 1px solid #F7F7F7;
  733. .popu_title {
  734. font-size: 36rpx;
  735. font-weight: 500;
  736. color: #222222;
  737. line-height: 50rpx;
  738. }
  739. }
  740. .center {
  741. margin: 0 0 188rpx;
  742. .menuList {
  743. width: 100%;
  744. .menu_left {
  745. width: 200rpx;
  746. height: 850rpx;
  747. background: #F5F5F5;
  748. border-radius: 0px 28rpx 0px 0px;
  749. .left_item {
  750. max-width: 200rpx;
  751. font-size: 28rpx;
  752. font-weight: 400;
  753. color: #222222;
  754. line-height: 40rpx;
  755. padding: 30rpx 20rpx;
  756. }
  757. .left_active {
  758. color: #506DFF;
  759. background: #fff;
  760. }
  761. }
  762. .menu_right {
  763. width: 550rpx;
  764. height: 850rpx;
  765. background: #FFFFFF;
  766. .right_item {
  767. padding: 30rpx 30rpx 30rpx 64rpx;
  768. .item_text {
  769. font-size: 30rpx;
  770. font-weight: 400;
  771. color: #393939;
  772. line-height: 42rpx;
  773. }
  774. .right_active {
  775. color: #5B77FF;
  776. }
  777. }
  778. .tabs_text {
  779. width: 80rpx;
  780. height: 56rpx;
  781. background: #FFFFFF;
  782. font-size: 20rpx;
  783. font-weight: 400;
  784. color: #393939;
  785. line-height: 28rpx;
  786. }
  787. }
  788. }
  789. }
  790. .popu_bottom {
  791. width: 100%;
  792. height: 166rpx;
  793. background: #FFFFFF;
  794. position: fixed;
  795. bottom: 0;
  796. z-index: 99;
  797. .btn {
  798. width: 690rpx;
  799. height: 84rpx;
  800. background: #5471FF;
  801. border-radius: 46rpx;
  802. margin: 8rpx auto 0;
  803. font-size: 36rpx;
  804. font-weight: 500;
  805. color: #FFFFFF;
  806. line-height: 50rpx;
  807. }
  808. }
  809. }
  810. .choose {
  811. padding: 20rpx 0;
  812. }
  813. }
  814. </style>