upgrade.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <!--
  2. * @Author: liuzhenlin 461480418@qq.ocm
  3. * @Date: 2023-01-12 11:57:48
  4. * @LastEditors: liuzhenlin
  5. * @LastEditTime: 2023-02-21 17:47:39
  6. * @Description: file content
  7. * @FilePath: \frontend_mobile\pages\project\upgrade.vue
  8. -->
  9. <template>
  10. <view class="home">
  11. <view class="nav">
  12. <view :style="{ paddingTop }">
  13. <view class="title" :style="[{ height }, { lineHeight: height }]">
  14. <view class="back" @click="goBack()">
  15. <u-icon name="arrow-left" color="#ffffff" size="22"></u-icon>
  16. </view>
  17. <text>项目升级</text>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="main">
  22. <u-form :model="addForm" :rules="rules" ref="addForm" label-width="0">
  23. <u-form-item prop="nboType" borderBottom customStyle="padding:40rpx 0 30rpx">
  24. <view class="form-label flex_l">
  25. <view class="label-tag"></view>
  26. 项目级别
  27. </view>
  28. <u-radio-group v-model="addForm.nboType" placement="row">
  29. <u-radio
  30. customStyle="margin-right:40rpx"
  31. :disabled="projectDetails.nboType === '10'"
  32. label="A"
  33. name="10"></u-radio>
  34. <u-radio
  35. customStyle="margin-right:40rpx"
  36. :disabled="projectDetails.nboType === '20'"
  37. label="B"
  38. name="20"></u-radio>
  39. <u-radio
  40. :disabled="['10', '20', '30'].includes(projectDetails.nboType)"
  41. customStyle="margin-right:40rpx"
  42. label="C"
  43. name="30"></u-radio>
  44. <!-- <u-radio v-if="projectDetails.nboType === '10'" label="储备" name="50"></u-radio> -->
  45. </u-radio-group>
  46. </u-form-item>
  47. <view v-if="addForm.nboType !== '30'">
  48. <u-form-item prop="nboBudget" borderBottom customStyle="padding:40rpx 0 30rpx">
  49. <view class="form-label flex_l">
  50. <view class="label-tag"></view>
  51. 项目预算
  52. </view>
  53. <u-input
  54. placeholder="输入项目预算"
  55. v-model="addForm.nboBudget"
  56. border="none"
  57. type="number"
  58. suffixIconStyle="color:#CDCDCD"
  59. clearable
  60. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  61. </u-form-item>
  62. <u-form-item
  63. prop="distributorName"
  64. borderBottom
  65. customStyle="padding:40rpx 0 30rpx"
  66. @click="$refs.dealer.open()">
  67. <view class="form-label flex_l">
  68. <view class="label-tag"></view>
  69. 经销商/代理商
  70. </view>
  71. <u-input
  72. :readonly="true"
  73. placeholder="请选择经销商/代理商"
  74. v-model="addForm.distributorName"
  75. border="none"
  76. suffixIcon="arrow-down"
  77. suffixIconStyle="color:#CDCDCD"
  78. clearable
  79. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  80. </u-form-item>
  81. <u-form-item prop="parentReceiver" borderBottom customStyle="padding:40rpx 0 30rpx">
  82. <view class="form-label flex_l">
  83. <view class="label-tag"></view>
  84. 总部对接人
  85. </view>
  86. <u-input
  87. placeholder="输入总部对接人"
  88. v-model="addForm.parentReceiver"
  89. border="none"
  90. suffixIconStyle="color:#CDCDCD"
  91. clearable
  92. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  93. </u-form-item>
  94. </view>
  95. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  96. <view class="form-label flex_l">
  97. <view class="label-tag"></view>
  98. 技术支持人员
  99. </view>
  100. <u-input
  101. placeholder="输入技术支持人员"
  102. v-model="addForm.technicalSupportName"
  103. border="none"
  104. suffixIconStyle="color:#CDCDCD"
  105. clearable
  106. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  107. </u-form-item>
  108. <u-form-item prop="technicalSupportContent" borderBottom customStyle="padding:40rpx 0 30rpx">
  109. <view class="form-label flex_l">
  110. <view class="label-tag"></view>
  111. 技术支持内容
  112. </view>
  113. <u-input
  114. placeholder="输入技术支持内容"
  115. v-model="addForm.technicalSupportContent"
  116. border="none"
  117. suffixIconStyle="color:#CDCDCD"
  118. clearable
  119. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  120. </u-form-item>
  121. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx" @click="showSupportDate = true">
  122. <view class="form-label flex_l">
  123. <view class="label-tag"></view>
  124. 技术支持时间
  125. </view>
  126. <u-input
  127. :readonly="true"
  128. placeholder="请选择技术支持时间"
  129. v-model="addForm.technicalSupportTime"
  130. border="none"
  131. suffixIcon="arrow-down"
  132. suffixIconStyle="color:#CDCDCD"
  133. clearable
  134. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  135. </u-form-item>
  136. <view v-if="addForm.nboType !== '30'">
  137. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx" @click="showBudgetDate = true">
  138. <view class="form-label flex_l">
  139. <view class="label-tag"></view>
  140. 项目预算期限
  141. </view>
  142. <u-input
  143. :readonly="true"
  144. placeholder="请选择项目预算期限"
  145. v-model="addForm.nboBudgetTime"
  146. border="none"
  147. suffixIcon="arrow-down"
  148. suffixIconStyle="color:#CDCDCD"
  149. clearable
  150. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  151. </u-form-item>
  152. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  153. <view class="form-label flex_l">
  154. <view class="label-tag"></view>
  155. 资金来源
  156. </view>
  157. <u-input
  158. placeholder="输入资金来源"
  159. v-model="addForm.capitalSource"
  160. border="none"
  161. suffixIconStyle="color:#CDCDCD"
  162. clearable
  163. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  164. </u-form-item>
  165. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  166. <view class="form-label flex_l">
  167. <view class="label-tag"></view>
  168. 产品/方案满足情况
  169. </view>
  170. <u-input
  171. placeholder="输入产品/方案满足情况"
  172. v-model="addForm.productSatisfaction"
  173. border="none"
  174. suffixIconStyle="color:#CDCDCD"
  175. clearable
  176. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  177. </u-form-item>
  178. </view>
  179. <view v-if="addForm.nboType === '10'">
  180. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx" @click="showChasingWay = true">
  181. <view class="form-label flex_l">
  182. <view class="label-tag"></view>
  183. 采购方式
  184. </view>
  185. <u-input
  186. :readonly="true"
  187. placeholder="请选择采购方式"
  188. v-model="addForm.purchasingWayVal"
  189. border="none"
  190. suffixIcon="arrow-down"
  191. suffixIconStyle="color:#CDCDCD"
  192. clearable
  193. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  194. </u-form-item>
  195. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx" @click="showPurchasingDate = true">
  196. <view class="form-label flex_l">
  197. <view class="label-tag"></view>
  198. 采购时间
  199. </view>
  200. <u-input
  201. :readonly="true"
  202. placeholder="请选择采购时间"
  203. v-model="addForm.technicalSupportTime"
  204. border="none"
  205. suffixIcon="arrow-down"
  206. suffixIconStyle="color:#CDCDCD"
  207. clearable
  208. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  209. </u-form-item>
  210. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx" @click="selectContact()">
  211. <view class="form-label flex_l">
  212. <view class="label-tag"></view>
  213. 决策人员
  214. </view>
  215. <u-input
  216. :readonly="true"
  217. placeholder="输入决策人员"
  218. v-model="addForm.makerName"
  219. border="none"
  220. suffixIconStyle="color:#CDCDCD"
  221. clearable
  222. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  223. </u-form-item>
  224. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  225. <view class="form-label flex_l">
  226. <view class="label-tag"></view>
  227. 决策部门
  228. </view>
  229. <u-input
  230. :readonly="true"
  231. placeholder="输入决策部门"
  232. v-model="addForm.makerDept"
  233. border="none"
  234. suffixIconStyle="color:#CDCDCD"
  235. clearable
  236. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  237. </u-form-item>
  238. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  239. <view class="form-label flex_l">
  240. <view class="label-tag"></view>
  241. 经销商与客户历史成交信息
  242. </view>
  243. <u-input
  244. placeholder="输入经销商与客户历史成交信息"
  245. v-model="addForm.historicalTransactionInfo"
  246. border="none"
  247. suffixIconStyle="color:#CDCDCD"
  248. clearable
  249. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  250. </u-form-item>
  251. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  252. <view class="form-label flex_l">
  253. <view class="label-tag"></view>
  254. 经销商销售人员
  255. </view>
  256. <u-input
  257. placeholder="输入经销商销售人员"
  258. v-model="addForm.dealerSalesName"
  259. border="none"
  260. suffixIconStyle="color:#CDCDCD"
  261. clearable
  262. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  263. </u-form-item>
  264. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  265. <view class="form-label flex_l">
  266. <view class="label-tag"></view>
  267. 维护部门及人员
  268. </view>
  269. <u-input
  270. placeholder="输入维护部门及人员"
  271. v-model="addForm.accendant"
  272. border="none"
  273. suffixIconStyle="color:#CDCDCD"
  274. clearable
  275. customStyle="padding: 0 30rpx 0 12rpx"></u-input>
  276. </u-form-item>
  277. <u-form-item borderBottom customStyle="padding:40rpx 0 30rpx">
  278. <view class="form-label flex_l">
  279. <view class="label-tag"></view>
  280. 是否采纳大数技术参数
  281. </view>
  282. <u-radio-group v-model="addForm.isAdoptDashoo" placement="row">
  283. <u-radio customStyle="margin-right:40rpx" label="是" name="10"></u-radio>
  284. <u-radio customStyle="margin-right:40rpx" label="否" name="20"></u-radio>
  285. </u-radio-group>
  286. </u-form-item>
  287. </view>
  288. <u-form-item prop="remark" customStyle="padding:40rpx 0 30rpx">
  289. <view class="form-label flex_l">
  290. <view class="label-tag"></view>
  291. 备注原因
  292. </view>
  293. <u-textarea
  294. fontSize="26rpx"
  295. v-model="addForm.remark"
  296. placeholder="请输入备注原因"
  297. height="180"
  298. :count="true"
  299. maxlength="300"></u-textarea>
  300. </u-form-item>
  301. </u-form>
  302. <view class="save" @click="handleDowngrade">提交</view>
  303. </view>
  304. <!-- 技术支持时间 -->
  305. <u-datetime-picker
  306. v-if="showSupportDate"
  307. :show="showSupportDate"
  308. mode="datetime"
  309. v-model="addForm.technicalSupportTime"
  310. @cancel="showSupportDate = false"
  311. @confirm="pickSupportDate"></u-datetime-picker>
  312. <!-- 项目预算期限 -->
  313. <u-datetime-picker
  314. v-if="showBudgetDate"
  315. :show="showBudgetDate"
  316. mode="datetime"
  317. v-model="addForm.nboBudgetTime"
  318. @cancel="showBudgetDate = false"
  319. @confirm="pickBudgetDate"></u-datetime-picker>
  320. <!-- 采购时间 -->
  321. <u-datetime-picker
  322. v-if="showPurchasingDate"
  323. :show="showPurchasingDate"
  324. mode="datetime"
  325. v-model="addForm.purchasingTime"
  326. @cancel="showPurchasingDate = false"
  327. @confirm="pickPurchasingDate"></u-datetime-picker>
  328. <!-- 采购方式 -->
  329. <u-picker
  330. :show="showChasingWay"
  331. :columns="[purchasingWayOptions]"
  332. keyName="value"
  333. @cancel="showChasingWay = false"
  334. @confirm="pickModel"></u-picker>
  335. <!-- 选择经销商 -->
  336. <select-dealer ref="dealer" @close="closeDealer()"></select-dealer>
  337. <!-- 客户联系人 -->
  338. <customer-contact ref="contact" @close="closeContact()"></customer-contact>
  339. <u-notify ref="uNotify"></u-notify>
  340. <u-toast ref="uToast"></u-toast>
  341. <u-modal
  342. :show="showModal"
  343. content="确认进行项目升级?"
  344. :showCancelButton="true"
  345. @cancel="this.showModal = false"
  346. @confirm="this.handleDownApi()"></u-modal>
  347. </view>
  348. </template>
  349. <script>
  350. import projectApi from '../../api/project'
  351. import to from 'await-to-js'
  352. import SelectDealer from 'components/SelectDealer'
  353. import CustomerContact from '../../components/CustomerContact'
  354. export default {
  355. name: 'omsIndex',
  356. components: { SelectDealer, CustomerContact },
  357. data() {
  358. return {
  359. height: '',
  360. paddingTop: '',
  361. showSupportDate: false, //技术支持时间
  362. showBudgetDate: false, //项目预算时间
  363. showPurchasingDate: false, //采购时间
  364. showChasingWay: false,
  365. purchasingWayOptions: [],
  366. addForm: {
  367. nboType: '', //项目及别
  368. nboBudget: 0, //项目预算
  369. distributorName: '', //经销商
  370. distributorId: '', //经销商ID
  371. parentReceiver: '', //项目对接人
  372. technicalSupportName: '', //技术支持人员
  373. technicalSupportContent: null, //技术支持内容
  374. technicalSupportTime: '', //技术支持时间
  375. nboBudgetTime: this.parseTime(new Date(), '{y}-{m}-{d} {h}:{i}'), //项目预算时间
  376. capitalSource: '', //资金来源
  377. productSatisfaction: '', //产品方案满足情况
  378. purchasingWay: '', //采购方式id
  379. purchasingWayVal: '', //采购方式
  380. purchasingTime: this.parseTime(new Date(), '{y}-{m}-{d} {h}:{i}'), //采购时间
  381. makerId: '', //决策人
  382. makerName: '', //决策人
  383. makerDept: '', //决策部门
  384. historicalTransactionInfo: '', //输入经销商与客户历史成交信息
  385. dealerSalesName: '', //经销商销售人员
  386. accendant: '', //维护部门及人员
  387. isAdoptDashoo: '', //是否是大项目选择
  388. remark: '', //备注
  389. id: 0, //项目id
  390. },
  391. showModal: false,
  392. projectDetails: {},
  393. rules: {
  394. nboType: {
  395. type: 'string',
  396. required: true,
  397. message: '请选择项目级别',
  398. trigger: ['blur'],
  399. },
  400. technicalSupportContent: {
  401. type: 'string',
  402. required: true,
  403. message: '请输入技术支持内容',
  404. trigger: ['blur'],
  405. },
  406. nboBudget: {
  407. type: 'string',
  408. required: true,
  409. message: '请输入项目预算',
  410. trigger: ['blur'],
  411. },
  412. distributorName: {
  413. type: 'string',
  414. required: true,
  415. message: '请选择经销商',
  416. trigger: ['blur'],
  417. },
  418. remark: {
  419. type: 'string',
  420. required: true,
  421. message: '请输入备注内容',
  422. trigger: ['blur'],
  423. },
  424. },
  425. }
  426. },
  427. created() {
  428. const navData = uni.getMenuButtonBoundingClientRect()
  429. this.height = navData.height + 'px'
  430. this.paddingTop = navData.top + 'px'
  431. },
  432. onLoad(option) {
  433. console.log(option.id) //打印出上个页面传递的参数。
  434. this.addForm.id = parseInt(option.id)
  435. },
  436. onShow() {
  437. this.getDetails()
  438. this.getOptions()
  439. },
  440. methods: {
  441. getOptions() {
  442. Promise.all([this.getDicts('proj_purchasing_way')])
  443. .then(([purchasing]) => {
  444. this.purchasingWayOptions = purchasing.data.values || []
  445. })
  446. .catch((err) => console.log(err))
  447. },
  448. async getDetails() {
  449. const [err, res] = await to(projectApi.getDetail({ id: this.addForm.id }))
  450. if (err) return
  451. if (res.code == 200) {
  452. this.projectDetails = res.data
  453. this.addForm = Object.assign(this.addForm, this.projectDetails)
  454. this.addForm.nboType = ''
  455. this.addForm.technicalSupportName = ''
  456. this.addForm.technicalSupportContent = ''
  457. this.addForm.technicalSupportTime = this.parseTime(new Date(), '{y}-{m}-{d} {h}:{i}')
  458. this.addForm.nboBudgetTime = this.parseTime(new Date(), '{y}-{m}-{d} {h}:{i}')
  459. this.addForm.remark = ''
  460. }
  461. },
  462. // 选择采购方式
  463. pickModel(e) {
  464. this.addForm.purchasingWay = e.value[0].key
  465. this.addForm.purchasingWayVal = e.value[0].value
  466. this.showChasingWay = false
  467. },
  468. // 经销商
  469. closeDealer(dealer) {
  470. if (dealer) {
  471. console.log(dealer)
  472. this.addForm.distributorId = dealer.id
  473. this.addForm.distributorName = dealer.name
  474. }
  475. },
  476. selectContact() {
  477. if (!this.addForm.custId) {
  478. this.$refs.uNotify.show({
  479. top: this.height + this.paddingTop + 10,
  480. type: 'warning',
  481. message: '请先选择客户',
  482. duration: 1000 * 3,
  483. })
  484. return
  485. }
  486. this.$refs.contact.open(this.addForm.custId)
  487. },
  488. // 关闭选择客户联系人
  489. closeContact(user) {
  490. if (user) {
  491. console.log(user)
  492. this.addForm.makerId = user.id
  493. this.addForm.makerName = user.cuctName
  494. this.addForm.makerDept = user.dept
  495. // this.addForm.makerPost = user.postion
  496. // this.addForm.makerTelephone = user.telephone
  497. }
  498. },
  499. // 技术支持时间
  500. async pickSupportDate(e) {
  501. this.showSupportDate = false
  502. const timeFormat = uni.$u.timeFormat
  503. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd hh:MM')
  504. this.addForm.technicalSupportTime = timeValue
  505. console.log(timeValue)
  506. },
  507. // 项目预算时间
  508. async pickBudgetDate(e) {
  509. this.showBudgetDate = false
  510. const timeFormat = uni.$u.timeFormat
  511. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd hh:MM')
  512. this.addForm.nboBudgetTime = timeValue
  513. console.log(timeValue)
  514. },
  515. // 采购时间
  516. async pickPurchasingDate(e) {
  517. this.showPurchasingDate = false
  518. const timeFormat = uni.$u.timeFormat
  519. let timeValue = await timeFormat(e.value, 'yyyy-mm-dd hh:MM')
  520. this.addForm.purchasingTime = timeValue
  521. console.log(timeValue)
  522. },
  523. handleDowngrade() {
  524. this.$refs.addForm
  525. .validate()
  526. .then(async () => {
  527. this.showModal = true
  528. })
  529. .catch((err) => {
  530. console.log(err)
  531. this.$refs.uNotify.show({
  532. top: this.height + this.paddingTop + 10,
  533. type: 'warning',
  534. message: err[0].message,
  535. duration: 1000 * 3,
  536. })
  537. })
  538. },
  539. async handleDownApi() {
  540. let params = this.addForm
  541. params.nboBudget = Number(params.nboBudget)
  542. const [err, res] = await to(projectApi.upgrade(params))
  543. this.showModal = false
  544. if (err) return
  545. if (res && res.code == 200) {
  546. this.$refs.uToast.show({
  547. type: 'success',
  548. message: '提交成功',
  549. complete: () => {
  550. this.goBack()
  551. },
  552. })
  553. }
  554. },
  555. closeUser(user) {
  556. if (user) {
  557. console.log(user)
  558. this.addForm.userId = user.id
  559. this.addForm.userName = user.label
  560. }
  561. },
  562. goBack() {
  563. uni.navigateBack({
  564. //关闭当前页面,返回上一页面或多级页面。
  565. delta: 1,
  566. })
  567. },
  568. },
  569. }
  570. </script>
  571. <style>
  572. page {
  573. background: #f2f3f5;
  574. }
  575. </style>
  576. <style lang="scss" scoped>
  577. .home {
  578. padding-top: 188rpx;
  579. .nav {
  580. position: absolute;
  581. left: 0;
  582. top: 0;
  583. width: 100%;
  584. height: 284rpx;
  585. background: #3e7ef8;
  586. .title {
  587. position: relative;
  588. text-align: center;
  589. font-size: 32rpx;
  590. font-weight: bold;
  591. color: #ffffff;
  592. .back {
  593. position: absolute;
  594. top: 0;
  595. bottom: 0;
  596. margin: auto;
  597. left: 70rpx;
  598. display: flex;
  599. }
  600. }
  601. }
  602. .main {
  603. position: absolute;
  604. width: 100%;
  605. height: calc(100vh - 188rpx);
  606. background: #ffffff;
  607. box-shadow: 0 6rpx 19rpx 2rpx rgba(0, 45, 132, 0.15);
  608. border-radius: 31rpx 31rpx 0 0;
  609. padding: 0 32rpx;
  610. overflow: auto;
  611. padding-bottom: 64rpx;
  612. .form-label {
  613. font-size: 32rpx;
  614. font-weight: bold;
  615. color: #323232;
  616. padding-bottom: 18rpx;
  617. .label-tag {
  618. width: 15rpx;
  619. height: 15rpx;
  620. background: rgba(62, 126, 248, 0.6);
  621. border-radius: 50%;
  622. margin-right: -4rpx;
  623. }
  624. }
  625. .save {
  626. width: 569rpx;
  627. height: 92rpx;
  628. background: #3e7ef8;
  629. border-radius: 31rpx;
  630. margin: 116rpx auto 0;
  631. font-size: 32rpx;
  632. color: #ffffff;
  633. text-align: center;
  634. line-height: 92rpx;
  635. }
  636. }
  637. }
  638. </style>