SayPrice.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. <template>
  2. <div>
  3. <div class="modal-wrap" v-if="currentSayPriceIndex > -1" @click="clearSimilar">
  4. <div class="say-price-box" >
  5. <div class="title">
  6. <!--<div>型号:<span :title="purchaseManList.content[currentSayPriceIndex].cmpCode">{{purchaseManList.content[currentSayPriceIndex].cmpCode}}</span></div>-->
  7. <!--<div>品牌:<span :title="purchaseManList.content[currentSayPriceIndex].inbrand">{{purchaseManList.content[currentSayPriceIndex].inbrand}}</span></div>-->
  8. <div>我要报价</div>
  9. <i class="fa fa-close" @click="cancelSayPrice"></i>
  10. </div>
  11. <div class="content">
  12. <div class="content-line">
  13. <div class="form-item form-left text-line">
  14. <span>品牌:</span><span class="text" :title="purchaseManList.content[currentSayPriceIndex].inbrand">{{purchaseManList.content[currentSayPriceIndex].inbrand}}</span>
  15. </div>
  16. </div>
  17. <div class="content-line">
  18. <div class="form-item form-left text-line">
  19. <span>物料名称:</span><span class="text" :title="purchaseManList.content[currentSayPriceIndex].prodTitle">{{purchaseManList.content[currentSayPriceIndex].prodTitle || '-'}}</span>
  20. </div>
  21. </div>
  22. <div class="content-line">
  23. <div class="form-item form-left text-line">
  24. <span>型号:</span><span class="text" :title="purchaseManList.content[currentSayPriceIndex].cmpCode">{{purchaseManList.content[currentSayPriceIndex].cmpCode}}</span>
  25. </div>
  26. </div>
  27. <div class="content-line">
  28. <div class="form-item form-left text-line">
  29. <span>规格:</span><span class="text" :title="purchaseManList.content[currentSayPriceIndex].spec">{{purchaseManList.content[currentSayPriceIndex].spec || '-'}}</span>
  30. </div>
  31. </div>
  32. <ul class="switch-say">
  33. <li :class="{'active': sayType == 'current'}" @click="setSayType('current')">当前型号报价</li>
  34. <li :class="{'active': sayType == 'replace'}" @click="setSayType('replace')">替代型号报价</li>
  35. </ul>
  36. <template v-if="sayType == 'replace'">
  37. <div class="content-line">
  38. <div class="form-item form-left form-long">
  39. <span><i>*</i>品牌:</span>
  40. <input type="text" class="form-control" @blur="checkBrand" @input="onBrandChange" v-model="sayPriceObj.replaceBrand" placeholder="请勿填中文符号">
  41. <ul class="similar-list" v-show="showSimilarBrandList && sayPriceObj.replaceBrand">
  42. <li v-for="sBrand in similarBrand" @click="setBrand(sBrand.nameEn)">{{sBrand.nameEn}}</li>
  43. </ul>
  44. </div>
  45. </div>
  46. <div class="content-line">
  47. <div class="form-item form-left form-long">
  48. <span><i>*</i>型号:</span>
  49. <input type="text" class="form-control" v-model="sayPriceObj.replaceCmpCode" @blur="checkCode" @input="onCodeChange" placeholder="请勿填中文符号">
  50. <ul v-show="showSimilarCodeList && sayPriceObj.replaceCmpCode">
  51. <li v-for="sCode in similarCode" @click="setCode(sCode.code)">{{sCode.code}}</li>
  52. </ul>
  53. </div>
  54. </div>
  55. <div class="content-line">
  56. <div class="form-item form-left form-long">
  57. <span>规格:</span>
  58. <input type="text" class="form-control" v-model="sayPriceObj.replaceSpec">
  59. </div>
  60. </div>
  61. </template>
  62. <div class="content-line">
  63. <div class="form-item form-left">
  64. <span><i>*</i>交期(天):</span>
  65. <input type="text" class="form-control" placeholder="最长交期" @input="onLeadtimeInput" @blur="onLeadtimeBlur" v-model="sayPriceObj.leadtime">
  66. </div>
  67. <div class="form-item form-right">
  68. <span><i>*</i>税率:</span>
  69. <input type="text" class="form-control" placeholder="税率" @input="onTaxrateInput" @blur="onTaxrateBlur" v-model="sayPriceObj.taxrate">%
  70. </div>
  71. <!--<div class="form-item form-upload">
  72. <label>
  73. <span><i>+</i>添加附件</span>
  74. <input type="file">
  75. </label>
  76. &lt;!&ndash;<div>
  77. <span>我是Excel的名字111</span>
  78. <i class="fa fa-times-circle"></i>
  79. <a href="">更换</a>
  80. </div>&ndash;&gt;
  81. </div>-->
  82. </div>
  83. <div class="content-line" v-for="(reply, index) in sayPriceObj.replies">
  84. <div class="form-item form-left">
  85. <span><i>*</i>价格梯度:</span>
  86. <input type="text" class="form-control" @blur="onReplyLapQtyBlur(index)" @input="onReplyLapQtyInput(index)" v-model="reply.lapQty" placeholder="分段数量">
  87. <!-- -
  88. <input type="text" class="form-control" placeholder="数量">-->
  89. </div>
  90. <div class="form-item form-right">
  91. <span><i>*</i>单价<span v-if="purchaseManList.content[currentSayPriceIndex].currency" v-text="purchaseManList.content[currentSayPriceIndex].currency == 'USD' ? '($)' : '(¥)'"></span>:</span>
  92. <!--{{purchaseManList.content[currentSayPriceIndex].currency == 'USD' ? '$' : '¥'}})-->
  93. <select v-if="!purchaseManList.content[currentSayPriceIndex].currency" v-model="sayPriceObj.currency">
  94. <option value="RMB">¥</option>
  95. <option value="USD">$</option>
  96. </select>
  97. <input type="text" class="form-control" @input="onReplyPriceInput(index)" @blur="onReplyPriceBlur(index)" placeholder="分段单价" v-model="reply.price">
  98. <i class="fa fa-minus-circle" v-if="sayPriceObj.replies.length > 1" @click="setReplies('sub', index)"></i>
  99. <i class="fa fa-plus-circle" v-if="sayPriceObj.replies.length < 5" @click="setReplies('add', index)"></i>
  100. </div>
  101. </div>
  102. </div>
  103. <div class="operate">
  104. <span @click="commitSayPrice">确定</span>
  105. <span @click="cancelSayPrice">取消</span>
  106. </div>
  107. </div>
  108. </div>
  109. <loading v-show="showLoading"></loading>
  110. </div>
  111. </template>
  112. <script>
  113. import Loading from '~components/common/loading/PageLoading.vue'
  114. import { sayPriceReplace } from '~utils/mixin'
  115. export default {
  116. props: {
  117. purchase: Object,
  118. current: Number
  119. },
  120. data () {
  121. return {
  122. sayPriceObj: {
  123. currency: 'RMB',
  124. leadtime: '',
  125. taxrate: '',
  126. replies: [
  127. {
  128. lapQty: '',
  129. price: ''
  130. }
  131. ],
  132. replaceBrand: '',
  133. replaceCmpCode: '',
  134. replaceSpec: ''
  135. },
  136. validSayPrice: {
  137. leadtime: false,
  138. taxrate: false,
  139. repliesPrice: false,
  140. repliesLapQty: false,
  141. replaceBrand: false,
  142. replaceCmpCode: false,
  143. replaceSpec: true
  144. },
  145. showLoading: false,
  146. sayType: 'current'
  147. }
  148. },
  149. components: {
  150. Loading
  151. },
  152. mixins: [sayPriceReplace],
  153. computed: {
  154. purchaseManList () {
  155. return this.purchase || []
  156. },
  157. currentSayPriceIndex () {
  158. this.resetSayPrice()
  159. this.sayType = 'current'
  160. return this.current
  161. },
  162. user () {
  163. return this.$store.state.option.user
  164. }
  165. },
  166. methods: {
  167. setIndex: function (index) {
  168. this.$emit('sayPriceIndexAction', index)
  169. },
  170. sayPrice: function (purchaseMan, index) {
  171. if (this.user.logged) {
  172. if (this.user.data.enterprise.uu) {
  173. if (this.user.data.enterprise.isVendor && this.user.data.enterprise.isVendor !== '1690') {
  174. this.resetSayPrice()
  175. // purchaseMan.active = true
  176. this.setIndex(index)
  177. } else {
  178. this.$message.error('抱歉,您需开通卖家功能才可报价')
  179. }
  180. } else {
  181. this.$message.error('个人账户暂不可报价')
  182. }
  183. } else {
  184. this.$router.push('/auth/login?returnUrl=' + window.location.href)
  185. }
  186. },
  187. cancelSayPrice: function () {
  188. this.$emit('cancelSayPriceAction')
  189. },
  190. commitSayPrice: function () {
  191. if (this.checkValid()) {
  192. let purchaseMan = JSON.parse(JSON.stringify(this.purchaseManList.content[this.currentSayPriceIndex]))
  193. this.showLoading = true
  194. purchaseMan.leadtime = this.sayPriceObj.leadtime
  195. purchaseMan.taxrate = this.sayPriceObj.taxrate
  196. purchaseMan.replies = this.sayPriceObj.replies
  197. purchaseMan.vendUU = this.user.data.enterprise.uu
  198. purchaseMan.vendUserUU = this.user.data.userUU
  199. purchaseMan.qutoApp = 'MALL'
  200. if (!purchaseMan.currency) {
  201. purchaseMan.currency = this.sayPriceObj.currency
  202. }
  203. if (this.sayType === 'replace') {
  204. purchaseMan.replaceBrand = this.sayPriceObj.replaceBrand
  205. purchaseMan.replaceCmpCode = this.sayPriceObj.replaceCmpCode
  206. purchaseMan.replaceSpec = this.sayPriceObj.replaceSpec
  207. purchaseMan.isReplace = 1
  208. }
  209. this.$http.post('/inquiry/sale/item/saveQuote', purchaseMan).then(response => {
  210. this.showLoading = false
  211. if (response.data.success === false) {
  212. this.$message.error(response.data.message)
  213. } else {
  214. this.$message.success('感谢您参与报价,敬请期待回复!')
  215. this.resetSayPrice()
  216. this.resetList()
  217. }
  218. }, error => {
  219. console.log(error)
  220. this.$message.error('请勿重复报价或报价自己的求购')
  221. this.showLoading = false
  222. })
  223. } else {
  224. this.$message.error('请输入正确的报价信息')
  225. }
  226. },
  227. resetList: function () {
  228. this.$emit('resetListAction')
  229. },
  230. resetSayPrice: function () {
  231. this.sayPriceObj = {
  232. currency: 'RMB',
  233. leadtime: '',
  234. taxrate: '',
  235. replies: [
  236. {
  237. lapQty: '',
  238. price: ''
  239. }
  240. ],
  241. replaceBrand: '',
  242. replaceCmpCode: '',
  243. replaceSpec: ''
  244. }
  245. },
  246. onLeadtimeInput: function () {
  247. this.sayPriceObj.leadtime = this.sayPriceObj.leadtime.replace(/[^0-9]*/g, '')
  248. if (this.sayPriceObj.leadtime.length > 3) {
  249. this.sayPriceObj.leadtime = this.sayPriceObj.leadtime.substring(0, 3)
  250. }
  251. },
  252. onLeadtimeBlur: function () {
  253. if (!this.sayPriceObj.leadtime || this.sayPriceObj.leadtime < 1 || this.sayPriceObj.leadtime >= 1000 || this.sayPriceObj.leadtime.toString().indexOf('.') !== -1) {
  254. this.validSayPrice.leadtime = false
  255. this.$message.error('交期请填写1-999之间的正整数')
  256. } else {
  257. this.validSayPrice.leadtime = true
  258. }
  259. },
  260. onTaxrateInput () {
  261. this.sayPriceObj.taxrate = this.sayPriceObj.taxrate.replace(/[^0-9]*/g, '')
  262. if (this.sayPriceObj.taxrate.length > 2) {
  263. this.sayPriceObj.taxrate = this.sayPriceObj.taxrate.substring(0, 2)
  264. }
  265. },
  266. onTaxrateBlur () {
  267. if (!this.sayPriceObj.taxrate || this.sayPriceObj.taxrate < 0 || this.sayPriceObj.taxrate >= 100 || this.sayPriceObj.taxrate.toString().indexOf('.') !== -1) {
  268. this.validSayPrice.taxrate = false
  269. this.$message.error('税率请填写0-99之间的正整数')
  270. } else {
  271. this.validSayPrice.taxrate = true
  272. }
  273. },
  274. onReplyPriceInput: function (index) {
  275. this.sayPriceObj.replies[index].price = this.sayPriceObj.replies[index].price.replace(/[^0-9.]*/g, '')
  276. let price = this.sayPriceObj.replies[index].price
  277. if (price >= 10000) {
  278. this.sayPriceObj.replies[index].price = price.substring(0, 4)
  279. } else if (price.indexOf('.') > -1) {
  280. let arr = price.split('.')
  281. if (arr[0].length > 4) {
  282. this.sayPriceObj.replies[index].price = Number(arr[0].substring(0, 4) + '.' + arr[1])
  283. } else if (arr[1].length > 6) {
  284. this.sayPriceObj.replies[index].price = Number(arr[0] + '.' + arr[1].substring(0, 6))
  285. }
  286. }
  287. },
  288. onReplyPriceBlur: function (index) {
  289. let price = this.sayPriceObj.replies[index].price
  290. if (!price) {
  291. this.sayPriceObj.replies[index].price = ''
  292. this.$message.error('价格不能为空')
  293. this.validSayPrice.repliesPrice = false
  294. } else if (price <= 0) {
  295. this.sayPriceObj.replies[index].price = ''
  296. this.$message.error('输入值必须为正整数')
  297. this.validSayPrice.repliesPrice = false
  298. } else {
  299. this.validSayPrice.repliesPrice = true
  300. }
  301. },
  302. onReplyLapQtyBlur: function (index) {
  303. let lapQty = Number(this.sayPriceObj.replies[index].lapQty)
  304. let limitDownObj = Number(this.getLimitDownQty())
  305. if (!lapQty || lapQty < 1) {
  306. this.sayPriceObj.replies[index].lapQty = ''
  307. this.$message.error('输入值必须为正整数')
  308. this.validSayPrice.repliesLapQty = false
  309. } else if (limitDownObj.index !== index && limitDownObj.lapQty > lapQty) {
  310. this.$message.error('输入值必须大于#该梯度的下限#')
  311. this.sayPriceObj.replies[index].lapQty = ''
  312. this.validSayPrice.repliesLapQty = false
  313. } else if ((index - 1 >= 0 && this.sayPriceObj.replies[index - 1].lapQty && this.sayPriceObj.replies[index - 1].lapQty >= lapQty) || (index + 1 < this.sayPriceObj.replies.length && this.sayPriceObj.replies[index + 1].lapQty && this.sayPriceObj.replies[index + 1].lapQty <= lapQty)) {
  314. this.$message.error('输入值会导致梯度重叠,请重新修改')
  315. this.sayPriceObj.replies[index].lapQty = ''
  316. this.validSayPrice.repliesLapQty = false
  317. } else {
  318. this.validSayPrice.repliesLapQty = true
  319. }
  320. },
  321. onReplyLapQtyInput: function (index) {
  322. this.sayPriceObj.replies[index].lapQty = this.sayPriceObj.replies[index].lapQty.replace(/[^0-9]*/g, '')
  323. let lapQty = this.sayPriceObj.replies[index].lapQty
  324. if (lapQty.length > 9) {
  325. this.sayPriceObj.replies[index].lapQty = lapQty.substring(0, 9)
  326. }
  327. },
  328. getLimitDownQty: function () {
  329. for (let i = 0; i < this.sayPriceObj.replies.length; i++) {
  330. if (this.sayPriceObj.replies[i].lapQty) {
  331. return {
  332. lapQty: this.sayPriceObj.replies[i].lapQty,
  333. index: i
  334. }
  335. }
  336. }
  337. return {index: -1}
  338. },
  339. checkValid: function () {
  340. let validReplace = this.sayType === 'replace' ? this.validSayPrice.replaceBrand && this.validSayPrice.replaceCmpCode && this.validSayPrice.replaceSpec : true
  341. for (let i = 0; i < this.sayPriceObj.replies.length; i++) {
  342. if (!this.sayPriceObj.replies[i].lapQty || !this.sayPriceObj.replies[i].price) {
  343. return false
  344. }
  345. }
  346. return this.validSayPrice.leadtime && this.validSayPrice.taxrate && this.validSayPrice.repliesLapQty && this.validSayPrice.repliesPrice && validReplace
  347. },
  348. setReplies: function (type, index) {
  349. if (type === 'add' && this.sayPriceObj.replies.length < 5) {
  350. if (this.sayPriceObj.replies[index].lapQty && this.sayPriceObj.replies[index].price) {
  351. this.sayPriceObj.replies.splice(index + 1, 0, {
  352. lapQty: '',
  353. price: ''
  354. })
  355. } else {
  356. this.$message.error('请填完整信息')
  357. }
  358. } else if (type === 'sub' && this.sayPriceObj.replies.length > 1) {
  359. this.sayPriceObj.replies.splice(index, 1)
  360. }
  361. },
  362. setSayType: function (type) {
  363. this.sayType = type
  364. this.resetSayPrice()
  365. }
  366. }
  367. }
  368. </script>
  369. <style scoped lang="scss">
  370. .say-price-box {
  371. position: fixed;
  372. width: 476px;
  373. top: 50%;
  374. left: 50%;
  375. margin-top: calc(((80vh - 113px) - 133px - 100vh) / 2);
  376. margin-left: -238px;
  377. max-height: calc(80vh - 113px);
  378. overflow-y: auto;
  379. /*-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);*/
  380. /*-moz-box-shadow: 0 5px 15px rgba(0,0,0,.5);*/
  381. /*box-shadow: 0 5px 15px rgba(0,0,0,.5);*/
  382. z-index: 1;
  383. .title {
  384. position: relative;
  385. height: 38px;
  386. background: #4290f7;
  387. line-height: 38px;
  388. color: #fff;
  389. border: {
  390. top-right-radius: 5px;
  391. top-left-radius: 5px;
  392. }
  393. padding-left: 20px;
  394. font-weight: bold;
  395. /*> div {*/
  396. /*display: inline-block;*/
  397. /*padding-left: 57px;*/
  398. /*width: 47%;*/
  399. /*overflow: hidden;*/
  400. /*text-overflow: ellipsis;*/
  401. /*white-space: nowrap;*/
  402. /*}*/
  403. i {
  404. position: absolute;
  405. right: 10px;
  406. top: 8px;
  407. cursor: pointer;
  408. }
  409. }
  410. .content {
  411. padding: 9px 0 0 0;
  412. background: #fff;
  413. .content-line {
  414. padding: 0 0 14px 0;
  415. .form-item {
  416. display: inline-block;
  417. width: 49%;
  418. > span {
  419. i {
  420. color: #fd2637;
  421. margin-right: 4px;
  422. }
  423. }
  424. input {
  425. border: 1px solid #bfbfbf;
  426. border-radius: 2px;
  427. height: 28px;
  428. padding: 0 8px;
  429. }
  430. &.form-left {
  431. span {
  432. display: inline-block;
  433. width: 115px;
  434. text-align: right;
  435. }
  436. input {
  437. width: 104px;
  438. padding: 0 8px;
  439. }
  440. &.text-line {
  441. width: 100%;
  442. span {
  443. &.text {
  444. width: 300px;
  445. text-align: left;
  446. color: #4290f7;
  447. word-break: break-all;
  448. word-wrap: break-word;
  449. vertical-align: top;
  450. }
  451. }
  452. }
  453. }
  454. &.form-upload {
  455. text-align: center;
  456. label {
  457. margin-bottom: 0;
  458. cursor: pointer;
  459. input {
  460. display: none;
  461. }
  462. span {
  463. display: block;
  464. width: 94px;
  465. height: 23px;
  466. line-height: 18px;
  467. font-weight: normal;
  468. color: #4290f7;
  469. text-align: center;
  470. border: 1px dashed #4290f7;
  471. border-radius: 11px;
  472. i {
  473. font-weight: bold;
  474. font-style: normal;
  475. font-size: 18px;
  476. margin-right: 5px;
  477. }
  478. }
  479. }
  480. div {
  481. i {
  482. cursor: pointer;
  483. color: #eb222c;
  484. font-size: 16px;
  485. margin-right: 10px;
  486. }
  487. span {
  488. display: inline-block;
  489. max-width: 128px;
  490. overflow: hidden;
  491. text-overflow: ellipsis;
  492. white-space: nowrap;
  493. }
  494. }
  495. }
  496. &.form-right {
  497. position: relative;
  498. input {
  499. width: 110px;
  500. padding: 0 8px;
  501. margin-right:5px;
  502. }
  503. select {
  504. position: absolute;
  505. top: 0;
  506. width: 32px;
  507. height: 28px;
  508. background: url(/images/applyPurchase/arrow-down.png) no-repeat right center;
  509. border: {
  510. left: none;
  511. top: none;
  512. bottom: none;
  513. right: 1px solid #bfbfbf;
  514. bottom-left-radius: 4px;
  515. top-left-radius: 4px;
  516. }
  517. color: #5392f9;
  518. font: small-caption;
  519. padding-left: 8px;
  520. outline: none;
  521. & + input {
  522. padding-left: 36px;
  523. width: 133px;
  524. }
  525. }
  526. }
  527. &.form-long {
  528. width: 100%;
  529. position: relative;
  530. ul {
  531. line-height: normal;
  532. position: absolute;
  533. top: 27px;
  534. left: 115px;
  535. background: #fff;
  536. border: 1px solid #b5b5b5;
  537. z-index: 1;
  538. max-height: 120px;
  539. overflow-y: auto;
  540. overflow-x: hidden;
  541. border-radius: 3px;
  542. width: 292px;
  543. font-size: 12px;
  544. li {
  545. height: 24px;
  546. line-height: 24px;
  547. cursor: pointer;
  548. overflow: hidden;
  549. text-overflow: ellipsis;
  550. white-space: nowrap;
  551. padding: 0 5px;
  552. &:hover {
  553. background: #ddd;
  554. }
  555. }
  556. }
  557. input {
  558. width: 292px;
  559. }
  560. }
  561. }
  562. }
  563. .switch-say {
  564. text-align: center;
  565. margin: 0 0 14px 0;
  566. font-size: 0;
  567. li {
  568. width: 200px;
  569. height: 34px;
  570. line-height: 34px;
  571. color: #4290f7;
  572. border: 1px solid #4290f7;
  573. display: inline-block;
  574. vertical-align: middle;
  575. font-size: 14px;
  576. cursor: pointer;
  577. &.active {
  578. color: #fff;
  579. background: #4290f7;
  580. }
  581. }
  582. }
  583. }
  584. .operate {
  585. background: #fff;
  586. height: 52px;
  587. text-align: center;
  588. padding-top: 12px;
  589. border: {
  590. top: 1px solid #e4e5e6;
  591. bottom-left-radius: 5px;
  592. bottom-right-radius: 5px;
  593. }
  594. span {
  595. display: inline-block;
  596. width: 64px;
  597. height: 28px;
  598. line-height: 28px;
  599. text-align: center;
  600. background: #4290f7;
  601. color: #fff;
  602. cursor: pointer;
  603. border-radius: 2px;
  604. &:last-child {
  605. margin-left: 15px;
  606. background: #acabab;
  607. }
  608. }
  609. }
  610. }
  611. </style>