移动端
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

inviteTendersDetail.vue 2.9 KiB

há 2 anos
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <div class="app-container">
  3. <van-nav-bar
  4. title="招标公告"
  5. left-arrow
  6. fixed
  7. placeholder
  8. @click-left="onClickLeft"
  9. />
  10. <p class="title">{{attestationDetail.projectName}}</p>
  11. <van-row>
  12. <van-col>招标方名称:{{attestationDetail.tenderName}}</van-col>
  13. </van-row>
  14. <van-row>
  15. <van-col>资金来源:{{attestationDetail.moneySource}}</van-col>
  16. </van-row>
  17. <van-row>
  18. <van-col>招标代理公司:{{attestationDetail.agentName}}</van-col>
  19. </van-row>
  20. <van-row>
  21. <van-col>联系人:{{attestationDetail.linkman}}</van-col>
  22. </van-row>
  23. <van-row>
  24. <van-col>联系电话:{{attestationDetail.linkphone}}</van-col>
  25. </van-row>
  26. <van-row>
  27. <van-col>联系地址:{{attestationDetail.linkaddress}}</van-col>
  28. </van-row>
  29. <van-row>
  30. <van-col>招标方意见:{{attestationDetail.tenderOpinion}}</van-col>
  31. </van-row>
  32. <van-row>
  33. <van-col>代理公司意见:{{attestationDetail.agentOpinion}}</van-col>
  34. </van-row>
  35. <van-row>
  36. <van-col>建设地点:{{attestationDetail.address}}</van-col>
  37. </van-row>
  38. <van-row>
  39. <van-col>建设工期:{{attestationDetail.timeLimit}}</van-col>
  40. </van-row>
  41. <van-row>
  42. <van-col>项目规模:{{attestationDetail.scale}}</van-col>
  43. </van-row>
  44. <van-row>
  45. <van-col>招标内容:{{attestationDetail.tenderContent}}</van-col>
  46. </van-row>
  47. <van-row>
  48. <van-col>投标人要求:{{attestationDetail.condition}}</van-col>
  49. </van-row>
  50. <van-row>
  51. <van-col>保证金:{{attestationDetail.deposit}}</van-col>
  52. </van-row>
  53. <van-row>
  54. <van-col>招标文件价格(元):{{attestationDetail.price}}</van-col>
  55. </van-row>
  56. <van-row>
  57. <van-col>招标发布日期:{{attestationDetail.logintime}}</van-col>
  58. </van-row>
  59. <van-row>
  60. <van-col>招标书领取开始日期:{{attestationDetail.startTime}}</van-col>
  61. </van-row>
  62. <van-row>
  63. <van-col>招标书领取结束日期:{{attestationDetail.stopTime}}</van-col>
  64. </van-row>
  65. </div>
  66. </template>
  67. <script>
  68. import { tenderDetail } from "@/api/notice/index";
  69. export default {
  70. name: "noticeDetail",
  71. data() {
  72. return {
  73. attestationDetail:''
  74. };
  75. },
  76. created() {
  77. this.getDetail();
  78. },
  79. methods: {
  80. //成交公告集合
  81. getDetail(){
  82. tenderDetail(this.$route.query.id,{translate_dict:1}).then(response => {
  83. this.attestationDetail = response.data;
  84. // //公司性质字典
  85. // this.getDicts("company_nature").then(res => {
  86. // this.attestationDetail.companyNature = this.selectDictLabel(res.data,response.data.companyNature);
  87. // });
  88. });
  89. },
  90. },
  91. };
  92. </script>
  93. <style scoped lang="scss">
  94. .app-container {
  95. padding: 0.5rem 5%;
  96. }
  97. .title{
  98. font-size: 0.5rem;
  99. margin-bottom: 0.5rem;
  100. }
  101. .van-row{
  102. margin-bottom: 0.4rem;
  103. }
  104. .van-col{
  105. font-size: 0.4rem;
  106. color: #666666;
  107. }
  108. </style>