tjDialog.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <view class="container">
  3. <view class="example">
  4. <uni-forms ref="form" :model="firm" labelWidth="80px">
  5. <uni-forms-item label="图斑编号:" name="dkbh">
  6. {{ tjform.dkbh }}
  7. </uni-forms-item>
  8. <div class="tit">
  9. 确定对该图斑数据进行提交吗?提交后无法进行修改。
  10. </div>
  11. <div v-for="(note, nkey) in JSON.parse(tjform.notes)" :key="nkey">
  12. {{ note.stepValue }}:{{ note.notes }}
  13. </div>
  14. <div>提交数据包括图斑核查数据、审核数据、合法性判定数据。</div>
  15. </uni-forms>
  16. <button type="primary" @click="submitForm">确 定</button>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. import {
  22. getTjInfo,
  23. tjWork
  24. } from "@/api/dkjbxx.js";
  25. export default {
  26. data() {
  27. return {
  28. obj: {},
  29. tjform: {
  30. "id": "",
  31. "confirmState": "",
  32. "confirmType": "",
  33. "confirmNotse": "",
  34. "auditflowStep": "WYQR"
  35. },
  36. }
  37. },
  38. onLoad() {
  39. let obj = uni.$globalData || {}
  40. let pram = {
  41. dkid: obj.id,
  42. auditflowStep: 'WYTJ',
  43. auditflowId: obj.auditflowId,
  44. fieldworkId: obj.fieldworkId
  45. };
  46. this.getInfo(pram)
  47. },
  48. onReady() {
  49. // this.$refs.form.setRules(this.rules)
  50. },
  51. methods: {
  52. getInfo(pram) {
  53. getTjInfo(pram).then(response => {
  54. this.tjform = response.data
  55. // tjform.value = {
  56. // ...res.data,
  57. // dkbh: infoObj.dkbh,
  58. // auditflowStep: 'WYTJ',
  59. // };
  60. })
  61. },
  62. submit(ref) {
  63. this.$refs.form.validate().then(res => {
  64. confirm(this.firm).then(response => {
  65. this.$modal.msgSuccess("修改成功")
  66. })
  67. })
  68. }
  69. }
  70. }
  71. </script>
  72. <style lang="scss">
  73. page {
  74. background-color: #ffffff;
  75. }
  76. .example {
  77. padding: 15px;
  78. background-color: #fff;
  79. }
  80. .segmented-control {
  81. margin-bottom: 15px;
  82. }
  83. .button-group {
  84. margin-top: 15px;
  85. display: flex;
  86. justify-content: space-around;
  87. }
  88. .form-item {
  89. display: flex;
  90. align-items: center;
  91. flex: 1;
  92. }
  93. .button {
  94. display: flex;
  95. align-items: center;
  96. height: 35px;
  97. line-height: 35px;
  98. margin-left: 10px;
  99. }
  100. </style>