page6.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <div class="content">
  3. <!-- 主体内容-->
  4. <div class="row content-row">
  5. <div id="info">
  6. <div class="list-unstyled list-inline step" id="tabTitle">
  7. <li>客户基础资料</li>
  8. <li>股东构成</li>
  9. <li>主要关联企业</li>
  10. <li>高管信息</li>
  11. <li>经营状况</li>
  12. <li :class="{active:true}">贸易流程</li>
  13. <li>资产科目明细(上半年末)</li>
  14. <li>负债科目明细(上半年末)</li>
  15. <li>买方客户信息</li>
  16. </div>
  17. </div>
  18. <!--page6-->
  19. <div class="tab">
  20. <div class="all">
  21. <div class="form-group1">
  22. <label class="control-label">贸易流程简述:</label>
  23. <textarea class="form-control" v-model="$store.state.condition.bc_sweaterprocess" rows="10"
  24. placeholder="限500字符" maxlength="500">
  25. </textarea>
  26. </div>
  27. </div>
  28. <!--前五大供应商-->
  29. <div>
  30. <button class="toggle" style="width:100px"><h5>前五大供应商</h5></button>
  31. <table class="table table-striped">
  32. <thead>
  33. <tr>
  34. <th>序号</th>
  35. <th>名称</th>
  36. <th>产品</th>
  37. <th>上年交易额(元)</th>
  38. <th>今年交易额(元)</th>
  39. <th>结账方式及账期</th>
  40. <th>合作年限</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <tr v-for="(item,index) in $store.state.tab6">
  45. <td v-text="index+1" style="width:70px"></td>
  46. <td><input type="text" v-model="item.udc_name"/></td>
  47. <td><input type="text" v-model="item.udc_product"/></td>
  48. <td><input type="number" v-model="item.udc_lastyear"/></td>
  49. <td><input type="number" v-model="item.udc_thisyear"/></td>
  50. <td><input type="text" v-model="item.udc_payment"/></td>
  51. <td><input type="number" v-model="item.udc_cooperationyears"/></td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. <!--前五大客户-->
  56. <div>
  57. <button class="toggle" style="width:100px"><h5>前五大客户</h5></button>
  58. <table class="table table-striped">
  59. <thead>
  60. <tr>
  61. <th>序号</th>
  62. <th>名称</th>
  63. <th>产品</th>
  64. <th>上年交易额(元)</th>
  65. <th>今年交易额(元)</th>
  66. <th>结账方式及日期</th>
  67. <th>合作年限</th>
  68. </tr>
  69. </thead>
  70. <tbody>
  71. <tr v-for="(item,index) in $store.state.tab6_2">
  72. <td v-text="index+1" style="width:70px"></td>
  73. <td><input type="text" v-model="item.udc_name"/></td>
  74. <td><input type="text" v-model="item.udc_product"/></td>
  75. <td><input type="number" v-model="item.udc_lastyear"/></td>
  76. <td><input type="number" v-model="item.udc_thisyear"/></td>
  77. <td><input type="text" v-model="item.udc_payment"/></td>
  78. <td><input type="text" v-model="item.udc_cooperationyears"/></td>
  79. </tr>
  80. </tbody>
  81. </table>
  82. </div>
  83. <div class="buttons">
  84. <button><nuxt-link
  85. :to="{path: '/custInfo/page5'}" style="color:white">上一步</nuxt-link></button>
  86. <button><nuxt-link
  87. :to="{path: '/custInfo/page7'}" style="color:white">下一步</nuxt-link></button>
  88. <button @click="$store.dispatch('savepage6')" v-if="$store.state.cansave">保存</button>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. </template>
  95. <script>
  96. export default {
  97. layout: 'default',
  98. }
  99. </script>