deal.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852
  1. <template>
  2. <view class="">
  3. <view class="sort">
  4. <view class="sortItem" :style="{color:current==1?'#A5CF49':'#333333'}" @click="sort(1)">
  5. <text>{{sortCurrent==null?'时间排序':sortList[sortCurrent].name}}</text>
  6. <u-icon name="arrow-down-fill" :color="{color:current==1?'#A5CF49':'#333333'}"
  7. :class="{'select':current==1}" size="8"></u-icon>
  8. </view>
  9. <view class="sortItem" @click="sort(2)" :style="{color:current==2?'#A5CF49':'#333333'}">
  10. <view class="">
  11. <text>账号筛选</text>
  12. <view class="tips">
  13. {{mark_notice}}
  14. </view>
  15. <u-badge showZero absolute='true' :offset='[10,30]' bgColor='red' type="warning " max="99" :value="total_num"></u-badge>
  16. </view>
  17. <u-icon name="arrow-down-fill" :color="{color:current==2?'#A5CF49':'#333333'}"
  18. :class="{'select':current==2}" size="8"></u-icon>
  19. <zpTooltip content="点击快速筛选" :visible="visible" placement="bottom"></zpTooltip>
  20. </view>
  21. </view>
  22. <view class="notice">
  23. <u-notice-bar :text="text1" color="#fff" bgColor="#A5CF49" fontSize='16'></u-notice-bar>
  24. </view>
  25. <view class="" v-if="swiperList.length!=0">
  26. <u-swiper
  27. :list="swiperList"
  28. @change="change"
  29. keyName="image"
  30. @click="click"
  31. ></u-swiper>
  32. </view>
  33. <view class="accountList">
  34. <view class="accountItem" v-for="(item,index) in goodsList" :key="index" @click="toInfo(item)">
  35. <view class="imgBox">
  36. <image :src="BASE_URL+item.coverimage" mode=""></image>
  37. <view class="bar" :class="{'bule':item.bar_type==0}">
  38. {{item.color_bar}}
  39. </view>
  40. </view>
  41. <view class="introduction">
  42. <view class="title">
  43. {{item.show_title}}
  44. </view>
  45. <view class="labelBox">
  46. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.top_bg.value+')'}" v-if="item.is_top==1">
  47. 置顶
  48. </view>
  49. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.discount_bg.value+')'}" v-if="item.discount==1">
  50. 特价
  51. </view>
  52. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.recommend_bg.value+')'}" v-if="item.recommend==1">
  53. 斑马推荐
  54. </view>
  55. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.stage_bg.value+')'}" v-if="item.stage==1">
  56. 可分期
  57. </view>
  58. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.recommend_bg.value+')'}" v-if="item.is_hot==1">
  59. 热门
  60. </view>
  61. <!-- <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.level_bg.value+')'}" v-if="item.level>=1">
  62. VIP
  63. </view> -->
  64. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.new_bg.value+')'}" v-if="item.is_new==1">
  65. 新品
  66. </view>
  67. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.standby1_bg.value+')'}" v-if="item.standby1==1">
  68. {{item.standby1_title}}
  69. </view>
  70. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.standby2_bg.value+')'}" v-if="item.standby2==1">
  71. {{item.standby2_title}}
  72. </view>
  73. <view class="labelItem" :style="{ backgroundImage:'url('+BASE_URL+bg_list.standby3_bg.value+')'}" v-if="item.standby3==1">
  74. {{item.standby3_title}}
  75. </view>
  76. <!-- <u-tag v-if="item.discount==1" text="特价" type="error" shape="circle" size="mini"></u-tag>
  77. <u-tag v-if="item.recommend==1" text="斑马推荐" shape="circle" size="mini"></u-tag>
  78. <u-tag v-if="item.stage==1" text="可分期" type="success" shape="circle" size="mini"></u-tag> -->
  79. </view>
  80. <view class="price">
  81. <text>{{item.money}}</text>米
  82. </view>
  83. </view>
  84. </view>
  85. <u-empty
  86. v-if="goodsList.length==0"
  87. mode="list"
  88. icon="http://cdn.uviewui.com/uview/empty/list.png"
  89. >
  90. </u-empty>
  91. </view>
  92. </view>
  93. <u-popup :show="show" mode="top" @close="close">
  94. <view class="popup">
  95. <view class="item" :class="{'selectSort':sortCurrent==index}" v-for="(item,index) in sortList" :key="index" @click="sortClick(item,index)">
  96. {{item.name}}
  97. </view>
  98. </view>
  99. </u-popup>
  100. <u-popup :show="show1" mode="top" @close="close1">
  101. <scroll-view scroll-y="true" >
  102. <view class="popup popup1">
  103. <view class="labelItem">
  104. <view class="label">
  105. 编号
  106. </view>
  107. <view class="value">
  108. <input type="text" v-model="condition.search_name" class="codeInput" placeholder="请输入需要搜索的账号编号">
  109. </view>
  110. </view>
  111. <view class="" style="height: 800rpx;overflow: scroll;">
  112. <view class="labelItem">
  113. <view class="label">
  114. 标签选择
  115. </view>
  116. <view class="value">
  117. <u-checkbox-group v-model="checkboxValue1" placement="row" @change="checkboxChange">
  118. <u-checkbox :customStyle="{marginBottom: '8px'}" v-for="(item, index) in labelList"
  119. :key="index" :label="item.title" :name="item.id">
  120. </u-checkbox>
  121. </u-checkbox-group>
  122. </view>
  123. </view>
  124. <view class="labelItem">
  125. <view class="label">
  126. 价格区间
  127. </view>
  128. <view class="value1">
  129. <input type="number" v-model="condition.min_money" class="codeInput" placeholder="最低价格">
  130. <text>至</text>
  131. <input type="number" v-model="condition.max_money" class="codeInput" placeholder="最高价格">
  132. </view>
  133. </view>
  134. <view class="labelItem">
  135. <view class="label">
  136. 区服范围
  137. </view>
  138. <view class="value1">
  139. <input type="number" v-model="condition.min_server" class="codeInput" placeholder="XXX区">
  140. <text>至</text>
  141. <input type="number" v-model="condition.max_server" class="codeInput" placeholder="XXX区">
  142. </view>
  143. </view>
  144. <view class="labelItem">
  145. <view class="label">
  146. 金伙伴数量区间
  147. </view>
  148. <view class="value1">
  149. <input type="number" v-model="condition.min_partner" class="codeInput" placeholder="最少伙伴数量">
  150. <text>至</text>
  151. <input type="number" v-model="condition.max_partner" class="codeInput" placeholder="最多伙伴数量">
  152. </view>
  153. </view>
  154. <view class="labelItem">
  155. <view class="label">
  156. VIP等级区间
  157. </view>
  158. <view class="value1">
  159. <input type="number" v-model="condition.min_level" class="codeInput" placeholder="最低等级">
  160. <text>至</text>
  161. <input type="number" v-model="condition.max_level" class="codeInput" placeholder="最高等级">
  162. </view>
  163. </view>
  164. <view class="labelItem">
  165. <view class="label">
  166. 战力范围(单位:亿)
  167. </view>
  168. <view class="value1">
  169. <input type="number" v-model="condition.min_force" class="codeInput" placeholder="最低战力">
  170. <text>至</text>
  171. <input type="number" v-model="condition.max_force" class="codeInput" placeholder="最高战力">
  172. </view>
  173. </view>
  174. <view class="labelItem">
  175. <view class="label">
  176. 速度范围(单位:万)
  177. </view>
  178. <view class="value1">
  179. <input type="number" v-model="condition.min_speed" class="codeInput" placeholder="最低速度">
  180. <text>至</text>
  181. <input type="number" v-model="condition.max_speed" class="codeInput" placeholder="最高速度">
  182. </view>
  183. </view>
  184. <view class="labelItem">
  185. <view class="label">
  186. 法伤范围(单位:万)
  187. </view>
  188. <view class="value1">
  189. <input type="number" v-model="condition.min_atk" class="codeInput" placeholder="最低法伤">
  190. <text>至</text>
  191. <input type="number" v-model="condition.max_atk" class="codeInput" placeholder="最高法伤">
  192. </view>
  193. </view>
  194. <view class="labelItem">
  195. <view class="label">
  196. 冰冻范围(单位:万)
  197. </view>
  198. <view class="value1">
  199. <input type="number" v-model="condition.min_property" class="codeInput" placeholder="最低冰冻">
  200. <text>至</text>
  201. <input type="number" v-model="condition.max_property" class="codeInput" placeholder="最高冰冻">
  202. </view>
  203. </view>
  204. <view class="labelItem">
  205. <view class="label">
  206. 账号类型
  207. </view>
  208. <view class="value">
  209. <u-radio-group v-model="radiovalue1" placement="row" @change="groupChange">
  210. <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in checkboxList1"
  211. :key="index" :label="item.name" :name="item.type" >
  212. </u-radio>
  213. </u-radio-group>
  214. </view>
  215. </view>
  216. <view class="labelItem">
  217. <view class="label">
  218. 是否榜一
  219. </view>
  220. <view class="value">
  221. <u-radio-group v-model="radiovalue2" placement="row" @change="groupChange1">
  222. <u-radio :customStyle="{marginBottom: '8px'}" v-for="(item, index) in checkboxList2"
  223. :key="index" :label="item.name" :name="item.type" >
  224. </u-radio>
  225. </u-radio-group>
  226. </view>
  227. </view>
  228. </view>
  229. <view class="btnBox">
  230. <button class="btn1" @click="reset">重置</button>
  231. <button class="btn2" @click="getList">确定</button>
  232. </view>
  233. </view>
  234. </scroll-view>
  235. </u-popup>
  236. <u-overlay :show="show10" @click="show10 = false">
  237. <view class="warp">
  238. <view class="rect1" @tap.stop>
  239. <image src="../../static/tishi.png" mode=""></image>
  240. <p>该商品已出售或下架</p>
  241. <u-button color="#A5CF49" type="success" shape="circle" text="看看其他斑马账号" @click="show10 = false"></u-button>
  242. </view>
  243. </view>
  244. </u-overlay>
  245. </template>
  246. <script setup>
  247. import {
  248. onLoad,
  249. onShow,
  250. onPullDownRefresh,onReachBottom
  251. } from "@dcloudio/uni-app";
  252. import zpTooltip from '../../uni_modules/zb-tooltip/components/zb-tooltip/zb-tooltip.vue'
  253. import {BASE_URL} from '../../utils/http.js'
  254. import {
  255. ref
  256. } from "vue"
  257. import {getbannerlist,getnoticelist,getSelLabel,getGoodsList,getplatformmeun,getplatformeditor} from '@/utils/api.js'
  258. let mark_notice=ref('')
  259. onLoad(() => {
  260. getplatformeditor().then(res => {
  261. mark_notice.value = res.data.mark_notice
  262. })
  263. uni.hideTabBar()
  264. getplatformmeun().then(res=>{
  265. text1.value=res.data.acc_notice
  266. let menu=res.data
  267. getApp().globalData.config=menu
  268. uni.setTabBarItem({
  269. index: 0,
  270. text: menu.simple_menu,
  271. iconPath: BASE_URL+menu.simple_logo,
  272. selectedIconPath: BASE_URL+menu.simple_logo2
  273. })
  274. uni.setTabBarItem({
  275. index: 1,
  276. text: menu.acc_menu,
  277. iconPath: BASE_URL+menu.acc_logo,
  278. selectedIconPath: BASE_URL+menu.acc_logo2
  279. })
  280. uni.setTabBarItem({
  281. index: 2,
  282. text: menu.jump_menu,
  283. iconPath: BASE_URL+menu.jump_logo,
  284. selectedIconPath: BASE_URL+menu.jump_logo2
  285. })
  286. uni.setTabBarItem({
  287. index: 3,
  288. text: menu.information_menu,
  289. iconPath: BASE_URL+menu.information_logo,
  290. selectedIconPath: BASE_URL+menu.information_logo2
  291. })
  292. uni.showTabBar()
  293. uni.setNavigationBarTitle({
  294. title: res.data.name
  295. });
  296. })
  297. getBanner()
  298. getSelLabel().then(res=>{
  299. labelList.value=res.data
  300. })
  301. // getnoticelist(2).then(res=>{
  302. // let data=res.data
  303. // data.forEach(item=>{
  304. // text1.value=text1.value+' '+item.content
  305. // })
  306. // })
  307. getList()
  308. })
  309. let show10=ref(false)
  310. onReachBottom(()=>{
  311. condition.value.page++
  312. getList()
  313. })
  314. let groupChange=(e)=>{
  315. condition.value.account_type=e
  316. }
  317. let groupChange1=(e)=>{
  318. condition.value.is_top=e
  319. }
  320. let sortCurrent=ref(null)
  321. let sortClick=(item,index)=>{
  322. if(sortCurrent.value!=index){
  323. sortCurrent.value=index
  324. condition.value.sort_type=item.sort_type
  325. condition.value.sort_order=item.sort_order
  326. show.value=false
  327. current.value=0
  328. condition.value.page=1
  329. getList()
  330. }
  331. }
  332. let goodsList=ref([])
  333. let bg_list=ref({})
  334. let total_num=ref(0)
  335. let getList=()=>{
  336. show1.value=false
  337. current.value=0
  338. getGoodsList(condition.value).then(res=>{
  339. getNum()
  340. bg_list.value=res.data.bg_list
  341. if(condition.value.page==1){
  342. goodsList.value=res.data.list
  343. }else{
  344. goodsList.value=[...goodsList.value,...res.data.list]
  345. }
  346. })
  347. }
  348. let labelList=ref([])
  349. onShow(() => {
  350. // setTimeout(()=>{
  351. // visible.value=false
  352. // },3000)
  353. })
  354. let getNum=()=>{
  355. let count=0
  356. if(condition.value.search_name!=''){
  357. count+=1
  358. }
  359. if(condition.value.label_ids.split(',')!=0){
  360. count+=condition.value.label_ids.split(',').length
  361. }
  362. if(condition.value.min_money!=''||condition.value.max_money!=''){
  363. count+=1
  364. }
  365. if(condition.value.min_server!=''||condition.value.max_server!=''){
  366. count+=1
  367. }
  368. if(condition.value.min_partner!=''||condition.value.max_partner!=''){
  369. count+=1
  370. }
  371. if(condition.value.min_level!=''||condition.value.max_level!=''){
  372. count+=1
  373. }
  374. if(condition.value.min_force!=''||condition.value.max_force!=''){
  375. count+=1
  376. }
  377. if(condition.value.min_speed!=''||condition.value.max_speed!=''){
  378. count+=1
  379. }
  380. // console.log(123,condition.value.min_atk,condition.value.max_atk)
  381. if(condition.value.min_atk!=''||condition.value.max_atk!=''){
  382. count+=1
  383. }
  384. if(condition.value.min_property!=''||condition.value.max_property!=''){
  385. count+=1
  386. }
  387. if(condition.value.account_type!=0){
  388. count+=1
  389. }
  390. if(condition.value.is_top!=-1){
  391. count+=1
  392. }
  393. total_num.value=count
  394. }
  395. let reset=()=>{
  396. radiovalue1.value = ref(0)
  397. radiovalue2.value = ref(-1)
  398. checkboxValue1.value=[]
  399. condition.value={
  400. page:1,
  401. page_num:10,
  402. sort_type:'',
  403. sort_order:'',
  404. min_money:'',
  405. max_money:'',
  406. min_server:'',
  407. max_server:'',
  408. min_partner:'',
  409. max_partner:'',
  410. min_level:'',
  411. max_level:'',
  412. min_force:'',
  413. max_force:'',
  414. min_speed:'',
  415. max_speed:'',
  416. min_atk:'',
  417. max_atk:'',
  418. min_property:'',
  419. max_property:'',
  420. account_type:0,
  421. is_top:-1,
  422. label_ids:'',
  423. search_name:''
  424. }
  425. }
  426. let sortList=[
  427. {name:'最近发布',sort_type:1,sort_order:1},
  428. // {name:'发布时间从远到近',sort_type:1,sort_order:2},
  429. {name:'价格从高到低',sort_type:2,sort_order:1},
  430. {name:'价格从低到高',sort_type:2,sort_order:2},
  431. {name:'战力从高到低',sort_type:3,sort_order:1},
  432. {name:'战力从低到高',sort_type:3,sort_order:2},
  433. {name:'冰冻从高到低',sort_type:4,sort_order:1},
  434. {name:'冰冻从低到高',sort_type:4,sort_order:2},
  435. {name:'速度从高到低',sort_type:5,sort_order:1},
  436. {name:'速度从低到高',sort_type:5,sort_order:2},
  437. {name:'法伤从高到低',sort_type:6,sort_order:1},
  438. {name:'法伤从低到高',sort_type:6,sort_order:2},
  439. {name:'vip等级排序',sort_type:7,sort_order:1},
  440. // {name:'vip等级从低到高',sort_type:7,sort_order:2},
  441. ]
  442. let condition=ref({
  443. page:1,
  444. page_num:10,
  445. sort_type:'',
  446. sort_order:'',
  447. min_money:'',
  448. max_money:'',
  449. min_server:'',
  450. max_server:'',
  451. min_partner:'',
  452. max_partner:'',
  453. min_level:'',
  454. max_level:'',
  455. min_force:'',
  456. max_force:'',
  457. min_speed:'',
  458. max_speed:'',
  459. min_atk:'',
  460. max_atk:'',
  461. min_property:'',
  462. max_property:'',
  463. account_type:0,
  464. is_top:-1,
  465. label_ids:'',
  466. search_name:''
  467. })
  468. let getBanner=()=>{
  469. getbannerlist().then(res=>{
  470. res.data.forEach(item=>{
  471. item.image=BASE_URL+item.image
  472. })
  473. swiperList.value=res.data
  474. })
  475. }
  476. let toInfo=(item)=>{
  477. if(item.status==0){
  478. show10.value=true
  479. return
  480. }
  481. uni.navigateTo({
  482. url:`/pages/deal/productInfo?id=${item.id}`+(item.rand_num?`&rand_num=${item.rand_num}`:'')
  483. // url:'/pages/deal/productInfo?id='+6
  484. })
  485. }
  486. let visible=ref(true)
  487. let swiperList=ref([])
  488. let radiovalue1 = ref(0)
  489. let radiovalue2 = ref(-1)
  490. let checkboxValue1 = ref([])
  491. let checkboxChange = (n) => {
  492. condition.value.label_ids=n.toString()
  493. }
  494. let text1=ref('')
  495. // 基本案列数据
  496. let checkboxList1 = [{
  497. name: '全部',
  498. type: 0
  499. },
  500. {
  501. name: '手机',
  502. type: 1
  503. },
  504. {
  505. name: '邮箱',
  506. type: 2
  507. },
  508. {
  509. name: '微信/qq',
  510. type: 3
  511. }
  512. ]
  513. let checkboxList2 = [{
  514. name: '全部',
  515. type: -1
  516. },
  517. {
  518. name: '否',
  519. type: 0
  520. },
  521. {
  522. name: '是',
  523. type: 1
  524. }
  525. ]
  526. let show = ref(false)
  527. let show1 = ref(false)
  528. let current = ref(0)
  529. let sort = (type) => {
  530. if (current.value != type) {
  531. current.value = type
  532. if (type == 1) {
  533. show.value = true
  534. show1.value = false
  535. } else {
  536. show1.value = true
  537. show.value = false
  538. }
  539. } else {
  540. current.value = 0
  541. show.value = false
  542. show1.value = false
  543. }
  544. }
  545. let close = () => {
  546. show.value = false
  547. current.value = 0
  548. }
  549. let close1 = () => {
  550. show1.value = false
  551. current.value = 0
  552. }
  553. onPullDownRefresh(() => {
  554. reset()
  555. getList()
  556. setTimeout(function() {
  557. uni.stopPullDownRefresh();
  558. }, 2000);
  559. })
  560. </script>
  561. <style>
  562. uni-button:after{
  563. border:none;
  564. }
  565. </style>
  566. <style lang="scss">
  567. .notice{
  568. height: 37px;
  569. overflow: hidden;
  570. }
  571. .warp {
  572. padding: 0 28rpx;
  573. display: flex;
  574. align-items: center;
  575. justify-content: center;
  576. height: 100%;
  577. }
  578. .rect1 {
  579. padding: 60rpx 120rpx;
  580. display: flex;
  581. flex-direction: column;
  582. align-items: center;
  583. width: 558rpx;
  584. height: 438rpx;
  585. background: #FFFFFF;
  586. border-radius: 20rpx;
  587. image {
  588. width: 96rpx;
  589. height: 96rpx;
  590. }
  591. p {
  592. font-size: 24rpx;
  593. margin: 62rpx 0 40rpx;
  594. }
  595. // background-color: #fff;
  596. }
  597. .labelBox{
  598. margin: 10rpx 0;
  599. display: flex;
  600. flex-wrap: wrap;
  601. .labelItem{
  602. margin-right: 20rpx;
  603. margin-bottom: 5rpx;
  604. font-size: 24rpx;
  605. font-weight: bold;
  606. color: #fff;
  607. border-radius: 30rpx;
  608. padding: 7rpx 16rpx;
  609. background-position: center center;
  610. background-repeat: no-repeat;
  611. background-size: cover;
  612. // background-color: #A5CF49;
  613. }
  614. }
  615. .selectSort{
  616. color: rgb(165, 207, 73);
  617. }
  618. .accountList{
  619. background-color: #FFFFFF;
  620. .accountItem{
  621. border-bottom: 20rpx solid #F5F5F5;
  622. display: flex;
  623. padding: 8rpx 24rpx;
  624. align-items: center;
  625. .imgBox{
  626. overflow: hidden;
  627. position: relative;
  628. margin-right: 26rpx;
  629. image{
  630. width: 188rpx;
  631. max-height: 188rpx;
  632. border-radius: 10rpx;
  633. }
  634. .bar{
  635. display: flex;
  636. justify-content: center;
  637. font-weight: bold;
  638. overflow: hidden;
  639. font-size: 28rpx;
  640. color: #fff;
  641. padding: 5rpx;
  642. // text-align: center;
  643. position: absolute;
  644. top: 50%;
  645. transform: translateY(-50%);
  646. width: 188rpx;
  647. background: red;
  648. }
  649. .bule{
  650. background: blue;
  651. }
  652. }
  653. .introduction{
  654. flex: 1;
  655. .title{
  656. color: #000000;
  657. font-weight: bold;
  658. font-size: 28rpx;
  659. }
  660. .u-fade-enter-active{
  661. margin-top: 0;
  662. padding: 10rpx;
  663. }
  664. .price{
  665. color: #FF2828;
  666. font-size: 24rpx;
  667. text{
  668. font-size: 40rpx;
  669. font-weight: bold;
  670. }
  671. }
  672. }
  673. }
  674. }
  675. .btnBox {
  676. margin-top: 100rpx;
  677. display: flex;
  678. justify-content: right;
  679. button {
  680. margin: 0;
  681. margin-left: 40rpx;
  682. padding: 0;
  683. width: 206rpx;
  684. height: 80rpx;
  685. line-height: 80rpx;
  686. background: #F5F5F5;
  687. border-radius: 40rpx;
  688. font-size: 24rpx;
  689. }
  690. .btn1 {
  691. background: #F5F5F5;
  692. }
  693. .btn2 {
  694. background: #A5CF49;
  695. color: #fff;
  696. }
  697. }
  698. .labelItem {
  699. .label {
  700. font-size: 24rpx;
  701. font-weight: bold;
  702. margin: 24rpx 0 10rpx;
  703. }
  704. .value {
  705. .codeInput {
  706. font-size: 24rpx;
  707. width: 562rpx;
  708. height: 68rpx;
  709. line-height: 68rpx;
  710. background: #F5F5F5;
  711. border-radius: 20rpx;
  712. padding: 0 24rpx;
  713. }
  714. }
  715. .value1 {
  716. display: flex;
  717. align-items: center;
  718. justify-content: space-between;
  719. input {
  720. font-size: 24rpx;
  721. text-align: center;
  722. width: 231rpx;
  723. height: 68rpx;
  724. line-height: 68rpx;
  725. background: #F5F5F5;
  726. border-radius: 20rpx;
  727. padding: 0 24rpx;
  728. }
  729. }
  730. }
  731. .popup {
  732. padding: 0 40rpx;
  733. font-size: 24rpx;
  734. .item {
  735. line-height: 90rpx;
  736. border-bottom: 1rpx solid #F5F5F5;
  737. }
  738. }
  739. .popup1 {
  740. padding: 0 40rpx 40rpx;
  741. }
  742. ::v-deep .u-checkbox {
  743. span {
  744. font-size: 24rpx !important;
  745. }
  746. margin-right: 20rpx;
  747. }
  748. ::v-deep .u-radio {
  749. span {
  750. font-size: 24rpx !important;
  751. }
  752. margin-right: 20rpx;
  753. }
  754. ::v-deep .u-fade-enter-active {
  755. margin-top: 89px;
  756. }
  757. ::v-deep .u-slide-down-enter-to {
  758. top: 49px !important;
  759. }
  760. .select {
  761. transform: rotate(180deg);
  762. }
  763. page {
  764. .sort {
  765. border-top: 1rpx solid #F2F2F2;
  766. width: 750rpx;
  767. height: 120rpx;
  768. line-height: 120rpx;
  769. background: #FFFFFF;
  770. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(0, 0, 0, 0.1);
  771. display: flex;
  772. position: sticky;
  773. top: 0;
  774. z-index: 99999;
  775. .sortItem {
  776. position: relative;
  777. flex: 1;
  778. display: flex;
  779. justify-content: center;
  780. align-items: center;
  781. text {
  782. margin-right: 16rpx;
  783. }
  784. .tips{
  785. width: 100%;
  786. text-align: center;
  787. position: absolute;
  788. bottom: -40rpx;
  789. left: 0;
  790. // transform: translateX(-50%);
  791. font-size: 8rpx;
  792. white-space: nowrap;
  793. color: #000;
  794. font-weight: bold;
  795. // transform: scale(0.8);
  796. }
  797. }
  798. }
  799. }
  800. </style>