detail.vue 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <u-navbar title="订单详情" :autoBack="true" bgColor="rgba(0,0,0,0)" @leftClick="leftClick" :placeholder="true" :titleStyle="titleStyle"></u-navbar>
  5. <view class="title" v-if="pageData.status == 1">暂无报价</view>
  6. <view class="title" v-if="pageData.status == 2">已有报价</view>
  7. <view class="title" v-if="pageData.status == 3 && pageData.tab !== 1">已匹配</view>
  8. <!-- <view class="hflex acenter jbetween" v-if="pageData.status == 3 && pageData.tab == 1">
  9. <view class="title">已匹配</view>
  10. <view class="top_down hflex acenter jcenter" @click="select">
  11. <image src="/static/images/common/down2.png" style="width: 36rpx;height: 36rpx;"></image>
  12. <view class="">下载附件</view>
  13. </view>
  14. </view> -->
  15. </view>
  16. <view class="center">
  17. <view class="box">
  18. <view class="title">商品明细</view>
  19. <view class="hflex acenter">
  20. <view class="title">订单号:{{pageData.order_no}}</view>
  21. <image src="@/static/images/common/copy.png" mode="" class="copy_icon" @click="copy(pageData.order_no)"></image>
  22. </view>
  23. <block v-for="(item,index) in pageData.items" :key="index">
  24. <view class="item_bg">
  25. <view class="item_name">{{item.name}}</view>
  26. <view class="text_style1" v-if="tab !== '4'">规格:{{item.spec}} 数量:{{item.number}}</view>
  27. <view class="text_style1" v-else>数量/吨位:{{item.weight}}</view>
  28. <view v-if="item.enclosure">
  29. <block v-for="(item2,index2) in item.enclosure" :key="index2">
  30. <view class="hflex acenter jbetween enclo">
  31. <view class="enclo_name">{{item2.filename}}</view>
  32. <view class="enclo_down hflex acenter jcenter" @click="open(item2.fileurl)">
  33. <image src="/static/images/common/down_icon.png" style="width: 20rpx;height: 20rpx;"></image>
  34. <view>下载附件</view>
  35. </view>
  36. </view>
  37. </block>
  38. </view>
  39. <view class="text_style1" v-if="item.price">原采购价:<span class="price">¥{{item.price}}</span></view>
  40. <view class="text_style1" v-if="item.standard">质量标准:{{item.standard}}</view>
  41. <view class="hflex acenter jcenter" v-if="!item.is_matched && tab == '1' && item.offers.length == 0">
  42. <view class="item_btn hflex acenter jcenter">暂无报价</view>
  43. </view>
  44. <view class="hflex acenter jbetween offer_bg" v-if="!item.is_matched && tab == '1' && item.offers.length != 0">
  45. <view class="bg_left">已有报价•{{item.offers.length}}条</view>
  46. <view class="hflex acenter" @click="showOffer(index)">
  47. <view class="top_text">{{!item.show?'展开':'隐藏'}}</view>
  48. <u-icon name="arrow-up" color="#555555" size="20rpx" v-if="item.show"></u-icon>
  49. <u-icon name="arrow-down" color="#555555" size="20rpx" v-else></u-icon>
  50. </view>
  51. </view>
  52. <view class="vflex" v-if="item.show">
  53. <block v-for="(item2,index2) in item.offers" :key="index2">
  54. <view class="offer_bg">
  55. <view class="hflex acenter jbetween">
  56. <view class="offer-user hflex acenter">
  57. <image :src="item2.user.headimg" class="offer_avatar"></image>
  58. <view class="user_name text_hide">{{item2.user.nickname}}</view>
  59. <view class="renz hflex acenter jcenter">已认证</view>
  60. </view>
  61. <view class="offer_price">
  62. 报价:<span style="font-size: 36rpx;" v-if="item2.amount">¥{{item2.amount}}</span>
  63. <span style="font-size: 36rpx;" v-else>暂无报价</span>
  64. </view>
  65. </view>
  66. <view class="hflex acenter jbetween offer_center">
  67. <view class="tele">联系电话:{{item2.user.phone}}</view>
  68. <image src="/static/images/common/tele.png" style="width: 32rpx; height: 32rpx;" @click="tele(item2.user.phone)"></image>
  69. </view>
  70. <view class="hflex acenter jend offer_bottom">
  71. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail(index,index2)">查看详情</view>
  72. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail(index,index2)">联系报价人</view>
  73. <view class="bottom_btn1 bottom_btn2 hflex acenter jcenter" @click="match(index,index2)">匹配订单</view>
  74. </view>
  75. </view>
  76. </block>
  77. </view>
  78. <view class="offer_bg" v-if="item.is_matched && tab == '1'">
  79. <block v-for="(item1,index1) in item.offers" :key="index1">
  80. <view class="" v-if="item.offer_id == item1.id">
  81. <view class="hflex acenter jbetween">
  82. <view class="offer-user hflex acenter">
  83. <image :src="item1.user.headimg" class="offer_avatar"></image>
  84. <view class="user_name text_hide">{{item1.user.nickname}}</view>
  85. <view class="renz hflex acenter jcenter">已认证</view>
  86. </view>
  87. <view class="offer_price">
  88. 报价:<span style="font-size: 36rpx;" v-if="item1.amount">¥{{item1.amount}}</span>
  89. <span style="font-size: 36rpx;" v-else>暂无报价</span>
  90. </view>
  91. </view>
  92. <view class="hflex acenter jbetween offer_center">
  93. <view class="tele">联系电话:{{item1.user.phone}}</view>
  94. <image src="/static/images/common/tele.png" style="width: 32rpx; height: 32rpx;" @click="tele(item1.user.phone)"></image>
  95. </view>
  96. <view class="hflex acenter jend offer_bottom" v-if="item.offer_id == item1.id">
  97. <view class="bottom_btn1 hflex acenter jcenter" @click="open(item.down_word)">下载订单</view>
  98. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail(index,index1)">查看详情</view>
  99. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail(index,index1)">私信聊聊</view>
  100. <view class="bottom_btn1 bottom_btn2 hflex acenter jcenter" @click="remind(item1.user_id)">提醒完成</view>
  101. </view>
  102. </view>
  103. </block>
  104. </view>
  105. </view>
  106. </block>
  107. <view class="cell">
  108. <view class="right" v-if="pageData.standard_tech">生产技术标准:<span class="left">{{pageData.standard_tech}}</span></view>
  109. </view>
  110. <view class="cell">
  111. <view class="right" v-if="pageData.standard_check">生产验收标准:<span class="left">{{pageData.standard_check}}</span></view>
  112. </view>
  113. <view class="title">上传图片</view>
  114. <view class="hflex acenter fwrap" v-if="pageData.tab == 1">
  115. <block v-for="(item,index) in pageData.images" :key="index">
  116. <image v-if="item.type == 'image'" :src="item.src" class="img"></image>
  117. <video v-else direction="0" :src="item.src" class="img"></video>
  118. </block>
  119. </view>
  120. <view class="hflex acenter fwrap" v-else>
  121. <block v-for="(item,index) in pageData.file" :key="index">
  122. <image v-if="item.type == 'image'" :src="item.src" class="img"></image>
  123. <video v-else direction="0" :src="item.src" class="img"></video>
  124. </block>
  125. </view>
  126. <view class="hflex acenter cell" v-if="pageData.post_address">
  127. <view class="left">交货地址:</view>
  128. <view class="right">{{pageData.post_address}}</view>
  129. </view>
  130. <view class="hflex acenter cell" v-if="pageData.post_time">
  131. <view class="left">交货日期:</view>
  132. <view class="right">{{pageData.post_time}}</view>
  133. </view>
  134. <view class="hflex acenter cell" v-if="pageData.create_time">
  135. <view class="left">发布时间:</view>
  136. <view class="right">{{pageData.create_time}}</view>
  137. </view>
  138. <view class="hflex acenter cell" v-if="pageData.form">
  139. <view class="left">包装形式:</view>
  140. <view class="right">{{pageData.form}}</view>
  141. </view>
  142. <view class="hflex acenter cell" v-if="pageData.wharf_to">
  143. <view class="left">装货码头:</view>
  144. <view class="right">{{pageData.wharf_to}}</view>
  145. </view>
  146. <view class="hflex acenter cell" v-if="pageData.wharf_for">
  147. <view class="left">到港码头:</view>
  148. <view class="right">{{pageData.wharf_for}}</view>
  149. </view>
  150. </view>
  151. <view class="box" v-if="pageData.status == 2 && tab !== '1'">
  152. <view class="hflex acenter jbetween cell2">
  153. <view class="bg_left">已有报价•{{pageData.offers.length}}条</view>
  154. <view class="hflex acenter" @click="showOffer2">
  155. <view class="top_text">{{!show?'展开':'隐藏'}}</view>
  156. <u-icon name="arrow-up" color="#555555" size="20rpx" v-if="show"></u-icon>
  157. <u-icon name="arrow-down" color="#555555" size="20rpx" v-else></u-icon>
  158. </view>
  159. </view>
  160. <view class="vflex box_bg" v-if="show">
  161. <block v-for="(item2,index2) in pageData.offers" :key="index2">
  162. <view class="offer_bg">
  163. <view class="hflex acenter jbetween">
  164. <view class="offer-user hflex acenter">
  165. <image :src="item2.user.headimg" class="offer_avatar"></image>
  166. <view class="user_name text_hide">{{item2.user.nickname}}</view>
  167. <view class="renz hflex acenter jcenter">已认证</view>
  168. </view>
  169. <view class="offer_price">
  170. 报价:<span style="font-size: 36rpx;" v-if="item2.amount">¥{{item2.amount}}</span>
  171. <span style="font-size: 36rpx;" v-else>暂无报价</span>
  172. </view>
  173. </view>
  174. <view class="hflex acenter jbetween offer_center">
  175. <view class="tele">联系电话:{{item2.user.phone}}</view>
  176. <image src="/static/images/common/tele.png" style="width: 32rpx; height: 32rpx;" @click="tele(item2.user.phone)"></image>
  177. </view>
  178. <view class="hflex acenter jend offer_bottom">
  179. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail1(index2)">查看详情</view>
  180. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail1(index2)">联系报价人</view>
  181. <view class="bottom_btn1 bottom_btn2 hflex acenter jcenter" @click="match(index,index2)">匹配订单</view>
  182. </view>
  183. </view>
  184. </block>
  185. </view>
  186. </view>
  187. <view class="box" v-if="tab !== '1' && pageData.status == 3">
  188. <view class="bg_left cell2">接单人详情</view>
  189. <block v-for="(item1,index1) in pageData.offers" :key="index1">
  190. <view class="box_bg">
  191. <view class="offer_bg">
  192. <view class="hflex acenter jbetween">
  193. <view class="offer-user hflex acenter">
  194. <image :src="item1.user.headimg" class="offer_avatar"></image>
  195. <view class="user_name text_hide">{{item1.user.nickname}}</view>
  196. <view class="renz hflex acenter jcenter">已认证</view>
  197. </view>
  198. <view class="offer_price">
  199. 报价:<span style="font-size: 36rpx;" v-if="item1.amount">¥{{item1.amount}}</span>
  200. <span style="font-size: 36rpx;" v-else>暂无报价</span>
  201. </view>
  202. </view>
  203. <view class="hflex acenter jbetween offer_center">
  204. <view class="tele">联系电话:{{item1.user.phone}}</view>
  205. <image src="/static/images/common/tele.png" style="width: 32rpx; height: 32rpx;" @click="tele(item1.user.phone)"></image>
  206. </view>
  207. <view class="hflex acenter jend offer_bottom" v-if="item1.id == pageData.offer_id">
  208. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail1(index1)">查看详情</view>
  209. <view class="bottom_btn1 hflex acenter jcenter" @click="toDetail1(index1)">私信聊聊</view>
  210. <view class="bottom_btn1 bottom_btn2 hflex acenter jcenter" @click="remind(item1.user_id)">提醒完成</view>
  211. </view>
  212. </view>
  213. </view>
  214. </block>
  215. </view>
  216. </view>
  217. <view class="bottom hflex jend" v-if="pageData.status == 1">
  218. <view class="btn1 hflex acenter jcenter" @click="cancel(pageData.id)">取消订单</view>
  219. <view class="btn1 btn2 hflex acenter jcenter" v-if="pageData.status == 1" @click="edit(pageData.id)">编辑订单</view>
  220. </view>
  221. <view class="bottom hflex jend" v-if="pageData.status == 3 && pageData.tab != 1">
  222. <view class="btn1 btn2 hflex acenter jcenter" v-if="pageData.status == 3 && pageData.tab != 1" @click="open(pageData.down_word)">下载订单</view>
  223. </view>
  224. <u-popup :show="down_show" mode="center" round="10" @close="close" :safeAreaInsetBottom="false">
  225. <view class="popu">
  226. <view class="popu_top hflex acenter jbetween">
  227. <view></view>
  228. <view class="popu_title">下载订单</view>
  229. <image src="/static/images/common/close_icon.png" style="width: 32rpx;height: 32rpx;" @click="close"></image>
  230. </view>
  231. <view class="file_bg hflex acenter">
  232. <view class="file_name text_hide">{{down_word}}</view>
  233. </view>
  234. <view class="btn_group hflex acenter jbetween">
  235. <view class="left_btn hflex acenter jcenter" @click="copy(down_word)">复制链接</view>
  236. <view class="right_btn hflex acenter jcenter" @click="see(down_word)">预览文件</view>
  237. </view>
  238. <!-- <view class="hflex acenter jcenter text_blue" @click="see(pageData.items[index1].enclosure[index2].fileurl)">预览文件></view> -->
  239. </view>
  240. </u-popup>
  241. <u-popup :show="select_show" mode="center" round="10" @close="close" v-if="pageData.staus==1" :safeAreaInsetBottom="false">
  242. <view class="popu">
  243. <view class="popu_top hflex acenter jbetween">
  244. <view></view>
  245. <view class="popu_title">选择接单人</view>
  246. <image src="/static/images/common/close_icon.png" style="width: 32rpx;height: 32rpx;" @click="close"></image>
  247. </view>
  248. <scroll-view scroll-y="true" style="height: 360rpx;">
  249. <view class="" v-for="(item,index) in pageData.items" :key="index">
  250. <u-radio-group iconPlacement="right">
  251. <view class="hflex acenter jbetween" v-for="(item2,index2) in item.offers" :key="index2">
  252. <view class="hflex acenter ">
  253. <image :src="item2.user.headimg" class="offer_avatar"></image>
  254. <view class="user_name text_hide">{{item2.user.nickname}}</view>
  255. </view>
  256. <u-radio shape="circle" activeColor="#506dff" @change="changge(index,index2)"></u-radio>
  257. </view>
  258. </u-radio-group>
  259. </view>
  260. </scroll-view>
  261. <view class="btn_next hflex acenter jcenter" @click="next">下一步</view>
  262. </view>
  263. </u-popup>
  264. <u-modal :show="show_match" content='是否确认匹配订单' :showCancelButton="true" @confirm="match2" @cancel="close"></u-modal>
  265. </view>
  266. </template>
  267. <script>
  268. import $api from '@/static/js/api.js'
  269. var that = ''
  270. export default {
  271. data() {
  272. return {
  273. titleStyle: {
  274. fontSize: '36rpx',
  275. color: '#FFFFFF'
  276. },
  277. id: '',
  278. tab: '',
  279. pageData: {},
  280. show: false,
  281. down_show: false,
  282. index1: 0,
  283. index2: 0,
  284. select_show: false,
  285. down_word: '',
  286. show_match: false,
  287. match_index1: '',
  288. match_index2: '',
  289. }
  290. },
  291. onLoad(options) {
  292. that = this
  293. that.id = options.id
  294. that.tab = options.tab
  295. that.getData()
  296. },
  297. methods: {
  298. leftClick() {
  299. console.log('leftClick');
  300. },
  301. getData() {
  302. $api.req({
  303. url: '/data/api.business.Purchase/show',
  304. data: {
  305. tab: that.tab,
  306. id: that.id
  307. }
  308. }, function(res) {
  309. if(res.code == 1) {
  310. that.pageData = res.data
  311. // console.log(that.pageData);
  312. } else {
  313. $api.info(res.info)
  314. }
  315. })
  316. },
  317. showOffer(index) {
  318. if(that.pageData.items[index].show) {
  319. that.$set(that.pageData.items[index],'show',false)
  320. } else {
  321. that.$set(that.pageData.items[index],'show',true)
  322. }
  323. },
  324. showOffer2() {
  325. that.show = !that.show
  326. },
  327. open(url) {
  328. that.down_word = url
  329. that.down_show = true
  330. },
  331. close() {
  332. that.down_show = false
  333. that.select_show = false
  334. that.show_match = false
  335. },
  336. /* select() {
  337. that.select_show = true
  338. }, */
  339. next() {
  340. that.select_show = false
  341. that.down_show = true
  342. },
  343. changge(index1,index2) {
  344. that.index1 = index1
  345. that.index2 = index2
  346. },
  347. down(url) {
  348. uni.downloadFile({
  349. url: url, //仅为示例,并非真实的资源
  350. success (res) {
  351. // 只要服务器有响应数据,就会把响应内容写入文件并进入 success 回调,业务需要自行判断是否下载到了想要的内容
  352. if (res.statusCode === 200) {
  353. const filePath = res.tempFilePath
  354. uni.saveFile({
  355. tempFilePath: filePath,
  356. success: function(res) {
  357. // console.log(res);
  358. that.close()
  359. that.see(res.savedFilePath)
  360. }
  361. })
  362. }
  363. }
  364. })
  365. },
  366. see(url) {
  367. uni.downloadFile({
  368. // 示例 url,并非真实存在
  369. url: url,
  370. showMenu: true,
  371. success: function (res) {
  372. const filePath = res.tempFilePath
  373. uni.openDocument({
  374. filePath: filePath,
  375. success: function (res) {
  376. console.log('打开文档成功')
  377. }
  378. })
  379. }
  380. })
  381. },
  382. copy(value) {
  383. uni.setClipboardData({
  384. data: value,
  385. success: function () {
  386. $api.info('复制成功')
  387. }
  388. });
  389. },
  390. tele(value) {
  391. uni.makePhoneCall({
  392. phoneNumber: value
  393. });
  394. },
  395. toDetail(index1,index2) {
  396. $api.jump('/pages/mine/service/purOrder/msg?id=' + that.pageData.id + '&userid=' + that.pageData.items[index1].offers[index2].user_id + '&tab=' + that.pageData.tab + '&offer=' + JSON.stringify(that.pageData.items[index1].offers[index2]))
  397. },
  398. toDetail1(index1) {
  399. $api.jump('/pages/mine/service/purOrder/msg?id=' + that.pageData.id + '&userid=' + that.pageData.offers[index1].user_id + '&tab=' + that.pageData.tab + '&offer=' + JSON.stringify(that.pageData.offers[index1]))
  400. },
  401. remind(id) {
  402. $api.req({
  403. url: '/data/api.business.Purchase/reminder',
  404. data: {
  405. user_id: id,
  406. order_no: that.pageData.order_no
  407. }
  408. }, function(res) {
  409. if(res.code == 1) {
  410. // $api.info(res.info)
  411. $api.info('已发送提醒')
  412. }
  413. })
  414. },
  415. match(index,index2) {
  416. that.show_match = true
  417. that.match_index1 = index
  418. that.match_index2 = index2
  419. },
  420. match2() {
  421. if(that.pageData.tab == 1) {
  422. $api.req({
  423. url: '/data/api.business.Purchase/match',
  424. method: 'POST',
  425. data: {
  426. tab: that.tab,
  427. id: that.pageData.items[that.match_index1].id,
  428. offer_id: that.pageData.items[that.match_index1].offers[that.match_index2].id
  429. }
  430. }, function(res) {
  431. console.log('匹配',res);
  432. that.close()
  433. if(res.code == 1) {
  434. console.log(res);
  435. $api.info(res.info)
  436. that.getData()
  437. }
  438. })
  439. } else {
  440. $api.req({
  441. url: '/data/api.business.Purchase/match',
  442. method: 'POST',
  443. data: {
  444. tab: that.tab,
  445. id: that.pageData.id,
  446. offer_id: that.pageData.offers[that.match_index2].id
  447. }
  448. }, function(res) {
  449. console.log('匹配',res);
  450. if(res.code == 1) {
  451. console.log(res);
  452. $api.info(res.info)
  453. that.getData()
  454. }
  455. })
  456. }
  457. },
  458. cancel(id) {
  459. $api.req({
  460. url: '/data/api.business.Purchase/cancel',
  461. data: {
  462. tab:that.tab,
  463. id: id
  464. }
  465. }, function(res) {
  466. if(res.code == 1) {
  467. $api.info(res.info)
  468. that.getList()
  469. }
  470. })
  471. },
  472. edit(id) {
  473. var url = ''
  474. switch(that.tab) {
  475. case '1' :
  476. url = '/pages/release/purchase/purchase?id=' + id;
  477. break;
  478. case '2' :
  479. url = '/pages/release/production/production?id=' +id;
  480. break;
  481. case '3' :
  482. url = '/pages/release/waixie/waixie?id=' +id;
  483. break;
  484. case '4':
  485. url = '/pages/release/ocean/ocean?id=' +id;
  486. break;
  487. }
  488. $api.jump(url)
  489. },
  490. },
  491. }
  492. </script>
  493. <style lang="scss" scoped>
  494. .content {
  495. background: #F4F4F4;
  496. position: relative;
  497. .top {
  498. width: 100%;
  499. height: 520rpx;
  500. background: url('/static/images/common/top_bg.png') no-repeat;
  501. background-size: 100%;
  502. box-sizing: border-box;
  503. padding: 0 30rpx;
  504. .title {
  505. padding: 24rpx 0;
  506. font-size: 44rpx;
  507. font-weight: 500;
  508. color: #FFFFFF;
  509. line-height: 60rpx;
  510. }
  511. .top_down {
  512. padding: 0 16rpx;
  513. height: 52rpx;
  514. border-radius: 26rpx;
  515. border: 1rpx solid #FFFFFF;
  516. font-size: 24rpx;
  517. font-weight: 500;
  518. color: #FFFFFF;
  519. line-height: 34rpx;
  520. }
  521. }
  522. .center {
  523. position: absolute;
  524. left: 0;
  525. top: 250rpx;
  526. width: 100%;
  527. box-sizing: border-box;
  528. padding: 0 30rpx;
  529. .box {
  530. width: 100%;
  531. background: #FFFFFF;
  532. border-radius: 20px;
  533. box-sizing: border-box;
  534. padding: 0 20rpx 12rpx;
  535. margin-top: 20rpx;
  536. .title {
  537. font-size: 30rpx;
  538. font-weight: 500;
  539. color: #222222;
  540. line-height: 42rpx;
  541. padding: 28rpx 0;
  542. }
  543. .copy_icon {
  544. width: 36rpx;
  545. height: 36rpx;
  546. margin-left: 24rpx;
  547. }
  548. .item_bg {
  549. width: 100%;
  550. background: #F4F4F4;
  551. border-radius: 16rpx;
  552. box-sizing: border-box;
  553. padding: 0 20rpx 13rpx;
  554. margin-bottom: 20rpx;
  555. .item_name {
  556. font-size: 30rpx;
  557. font-weight: 400;
  558. color: #222222;
  559. line-height: 42rpx;
  560. padding: 20rpx 0 14rpx;
  561. }
  562. .text_style1 {
  563. font-size: 24rpx;
  564. font-weight: 400;
  565. color: #888888;
  566. line-height: 34rpx;
  567. padding-bottom: 16rpx;
  568. }
  569. .price {
  570. font-size: 28rpx;
  571. font-weight: 400;
  572. color: #555555;
  573. line-height: 30rpx;
  574. }
  575. .item_btn {
  576. width: 160rpx;
  577. height: 52rpx;
  578. border-radius: 32rpx;
  579. border: 1rpx solid #979797;
  580. font-size: 26rpx;
  581. font-weight: 400;
  582. color: #222222;
  583. margin: 10rpx 0 24rpx;
  584. }
  585. .offer_bg {
  586. width: 100%;
  587. background: #FFFFFF;
  588. border-radius: 16rpx;
  589. width: 100%;
  590. box-sizing: border-box;
  591. padding: 20rpx;
  592. margin-bottom: 20rpx;
  593. .bg_left {
  594. font-size: 26rpx;
  595. font-weight: 500;
  596. color: #222222;
  597. line-height: 36rpx;
  598. }
  599. .top_text {
  600. font-size: 20rpx;
  601. font-weight: 400;
  602. color: #555555;
  603. line-height: 28rpx;
  604. }
  605. .offer-user {
  606. padding: 20rpx 0 16rpx;
  607. .offer_avatar {
  608. width: 72rpx;
  609. height: 72rpx;
  610. border-radius: 50%;
  611. }
  612. .user_name {
  613. max-width: 150rpx;
  614. width: max-content;
  615. font-size: 28rpx;
  616. font-weight: 400;
  617. color: #222222;
  618. line-height: 40rpx;
  619. padding: 0 16rpx;
  620. }
  621. .renz {
  622. height: 28rpx;
  623. background: #506DFF;
  624. border-radius: 14rpx;
  625. font-size: 16rpx;
  626. font-weight: 400;
  627. color: #FFFFFF;
  628. line-height: 22rpx;
  629. padding: 0 12rpx;
  630. }
  631. }
  632. .offer_price {
  633. font-size: 24rpx;
  634. font-weight: 400;
  635. color: #FF4646;
  636. line-height: 34rpx;
  637. }
  638. .offer_center {
  639. padding: 0 0 20rpx;
  640. border-bottom: 1rpx solid #F4F4F4;
  641. .tele {
  642. font-size: 22rpx;
  643. font-weight: 400;
  644. color: #666666;
  645. line-height: 32rpx;
  646. }
  647. }
  648. .offer_bottom {
  649. padding: 20rpx 0 0;
  650. .bottom_btn1 {
  651. margin-left: 10rpx;
  652. // width: 132rpx;
  653. height: 48rpx;
  654. border-radius: 26rpx;
  655. border: 1rpx solid #506DFF;
  656. font-size: 22rpx;
  657. font-weight: 400;
  658. color: #506DFF;
  659. line-height: 32rpx;
  660. padding: 0 15rpx;
  661. }
  662. .bottom_btn2 {
  663. background: #506DFF;
  664. color: #FFFFFF;
  665. }
  666. }
  667. }
  668. .enclo {
  669. padding: 20rpx 0;
  670. border-top: 1rpx solid #ECECEC;
  671. .enclo_name {
  672. font-size: 24rpx;
  673. font-weight: 400;
  674. color: #333333;
  675. line-height: 34rpx;
  676. }
  677. .enclo_down {
  678. padding: 12rpx 16rpx;
  679. border-radius: 22rpx;
  680. border: 1px solid #506DFF;
  681. font-size: 16rpx;
  682. font-weight: 400;
  683. color: #506DFF;
  684. line-height: 22rpx;
  685. }
  686. }
  687. }
  688. .img {
  689. width: 200rpx;
  690. height: 200rpx;
  691. border-radius: 16rpx;
  692. margin: 0 14rpx 20rpx 0;
  693. }
  694. .img:nth-child(3n+3) {
  695. margin: 0 0 20rpx 0;
  696. }
  697. .cell {
  698. margin: 0 0 24rpx;
  699. .left {
  700. font-size: 26rpx;
  701. font-weight: 400;
  702. color: #888888;
  703. line-height: 36rpx;
  704. }
  705. .right {
  706. font-size: 26rpx;
  707. font-family: PingFangSC-Regular, PingFang SC;
  708. font-weight: 400;
  709. color: #333333;
  710. line-height: 36rpx;
  711. }
  712. }
  713. .cell2 {
  714. padding: 20rpx 0;
  715. .bg_left {
  716. font-size: 26rpx;
  717. font-weight: 500;
  718. color: #222222;
  719. line-height: 36rpx;
  720. }
  721. .top_text {
  722. font-size: 20rpx;
  723. font-weight: 400;
  724. color: #555555;
  725. line-height: 28rpx;
  726. }
  727. }
  728. .box_bg {
  729. .offer_bg {
  730. width: 100%;
  731. background: #F4F4F4;
  732. border-radius: 16rpx;
  733. width: 100%;
  734. box-sizing: border-box;
  735. padding: 20rpx;
  736. margin-bottom: 20rpx;
  737. }
  738. .offer-user {
  739. padding: 20rpx 0 16rpx;
  740. .offer_avatar {
  741. width: 72rpx;
  742. height: 72rpx;
  743. border-radius: 50%;
  744. }
  745. .user_name {
  746. max-width: 150rpx;
  747. width: max-content;
  748. font-size: 28rpx;
  749. font-weight: 400;
  750. color: #222222;
  751. line-height: 40rpx;
  752. padding: 0 16rpx;
  753. }
  754. .renz {
  755. height: 28rpx;
  756. background: #506DFF;
  757. border-radius: 14rpx;
  758. font-size: 16rpx;
  759. font-weight: 400;
  760. color: #FFFFFF;
  761. line-height: 22rpx;
  762. padding: 0 12rpx;
  763. }
  764. }
  765. .offer_price {
  766. font-size: 24rpx;
  767. font-weight: 400;
  768. color: #FF4646;
  769. line-height: 34rpx;
  770. }
  771. .offer_center {
  772. padding: 0 0 20rpx;
  773. border-bottom: 1rpx solid #F4F4F4;
  774. .tele {
  775. font-size: 22rpx;
  776. font-weight: 400;
  777. color: #666666;
  778. line-height: 32rpx;
  779. }
  780. }
  781. .offer_bottom {
  782. padding: 20rpx 0 0;
  783. .bottom_btn1 {
  784. margin-left: 20rpx;
  785. // width: 132rpx;
  786. padding: 0 22rpx;
  787. height: 48rpx;
  788. border-radius: 26rpx;
  789. border: 1rpx solid #506DFF;
  790. font-size: 22rpx;
  791. font-weight: 400;
  792. color: #506DFF;
  793. line-height: 32rpx;
  794. }
  795. .bottom_btn2 {
  796. background: #506DFF;
  797. color: #FFFFFF;
  798. }
  799. }
  800. }
  801. }
  802. .box:nth-last-child(1) {
  803. margin-bottom: 186rpx;
  804. }
  805. }
  806. .bottom {
  807. width: 100%;
  808. height: 166rpx;
  809. background: #FFFFFF;
  810. position: fixed;
  811. bottom: 0;
  812. z-index: 99;
  813. box-sizing: border-box;
  814. padding: 12rpx 30rpx 0;
  815. .btn1 {
  816. width: 200rpx;
  817. height: 76rpx;
  818. border-radius: 42rpx;
  819. border: 1rpx solid #979797;
  820. font-size: 32rpx;
  821. font-weight: 400;
  822. color: #222222;
  823. line-height: 44rpx;
  824. margin-left: 40rpx;
  825. }
  826. .btn2 {
  827. border: 1px solid #506DFF;
  828. color: #506DFF;
  829. }
  830. }
  831. .popu {
  832. width: 630rpx;
  833. background: #FFFFFF;
  834. border-radius: 24rpx;
  835. margin: 0 auto;
  836. box-sizing: border-box;
  837. padding: 0 40rpx;
  838. .popu_top {
  839. padding: 32rpx 0 40rpx;
  840. .popu_title {
  841. font-size: 36rpx;
  842. font-weight: 500;
  843. color: #333333;
  844. line-height: 50rpx;
  845. }
  846. }
  847. .btn_next {
  848. width: 310rpx;
  849. height: 88rpx;
  850. background: #506DFF;
  851. border-radius: 44rpx;
  852. font-size: 32rpx;
  853. font-weight: 500;
  854. color: #FFFFFF;
  855. line-height: 44rpx;
  856. margin: 42rpx auto;
  857. }
  858. .file_bg {
  859. width: 550rpx;
  860. height: 100rpx;
  861. background: #F4F4F4;
  862. border-radius: 16rpx;
  863. margin: 0 0 42rpx;
  864. }
  865. .file_icon {
  866. width: 48rpx;
  867. height: 60rpx;
  868. }
  869. .file_name {
  870. padding-left: 14rpx;
  871. font-size: 28rpx;
  872. font-weight: 400;
  873. color: #333333;
  874. line-height: 40rpx;
  875. }
  876. .btn_group {
  877. width: 100%;
  878. padding: 0 0 20rpx;
  879. .left_btn {
  880. width: 260rpx;
  881. height: 76rpx;
  882. background: #ECEFFE;
  883. border-radius: 40rpx;
  884. font-size: 30rpx;
  885. font-weight: 500;
  886. color: #506DFF;
  887. line-height: 42rpx;
  888. }
  889. .right_btn {
  890. width: 260rpx;
  891. height: 76rpx;
  892. background: #506DFF;
  893. border-radius: 40rpx;
  894. font-size: 30rpx;
  895. font-weight: 500;
  896. color: #FFFFFF;
  897. line-height: 42rpx;
  898. }
  899. }
  900. .text_blue {
  901. font-size: 30rpx;
  902. font-weight: 400;
  903. color: #506DFF;
  904. line-height: 42rpx;
  905. padding: 28rpx 0 46rpx;
  906. }
  907. .offer_avatar {
  908. width: 72rpx;
  909. height: 72rpx;
  910. border-radius: 50%;
  911. }
  912. .user_name {
  913. max-width: 150rpx;
  914. width: max-content;
  915. font-size: 28rpx;
  916. font-weight: 400;
  917. color: #222222;
  918. line-height: 40rpx;
  919. padding: 0 16rpx;
  920. }
  921. }
  922. }
  923. </style>