card-label-form.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. <template>
  2. <view class="card-label-form-container">
  3. <JHeader width="50" height="50" title="名片标签表单"></JHeader>
  4. <FieldPaneCLF v-model="form.basicInfo" :fields="applyOne" title="标签信息"></FieldPaneCLF>
  5. <view class="buts">
  6. <button class="btn" @click="submit()">
  7. 提交
  8. </button>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. import FieldPaneCLF from './components/field-pane-clf.vue'
  14. import { getEnterpriseUserLabelDetailApi, updateByIdEnterpriseUserLabelApi, addEnterpriseUserLabelSaveApi } from '../../../api/anotherTFInterface'
  15. export default {
  16. name: 'CardLabelForm',
  17. components: {
  18. FieldPaneCLF
  19. },
  20. onLoad(options) {
  21. this.form.basicInfo.enterpriseUserId = this.$store.getters.electronicCardInfo.enterpriseUserId
  22. if (Number(options.id)) {
  23. this.form.basicInfo.labelId = options.id
  24. this.getElectronicLabel(options.id)
  25. }
  26. },
  27. data() {
  28. return {
  29. applyOne: [
  30. {
  31. label: '标签ID:',
  32. field: 'labelId',
  33. type: 'input',
  34. placeholder: '标签ID'
  35. },
  36. {
  37. label: '创建时间:',
  38. field: 'createTime',
  39. type: 'input',
  40. placeholder: '创建时间'
  41. },
  42. {
  43. label: '关联名片ID:',
  44. field: 'enterpriseUserId',
  45. type: 'input',
  46. placeholder: '关联名片ID'
  47. },
  48. {
  49. label: '标签名称:',
  50. field: 'labelName',
  51. type: 'input',
  52. placeholder: '请填写标签名称'
  53. }
  54. ],
  55. form: {
  56. basicInfo: {
  57. labelId: '',
  58. createTime: '',
  59. enterpriseUserId: '',
  60. labelName: ''
  61. }
  62. }
  63. }
  64. },
  65. methods: {
  66. // 获取标签信息
  67. async getElectronicLabel(id) {
  68. uni.showLoading()
  69. try {
  70. const res = await getEnterpriseUserLabelDetailApi({ labelId: id })
  71. uni.hideLoading()
  72. // this.form.basicInfo.labelId = res.data.labelId || ''
  73. this.form.basicInfo.createTime = res.data.createTime || ''
  74. this.form.basicInfo.enterpriseUserId = res.data.enterpriseUserId || ''
  75. this.form.basicInfo.labelName = res.data.labelName || ''
  76. } catch (err) {
  77. console.log(err)
  78. uni.hideLoading()
  79. }
  80. },
  81. // 点击提交按钮
  82. submit() {
  83. const data = {
  84. ...this.form.basicInfo
  85. }
  86. console.log(data)
  87. if (!data.labelName) {
  88. this.$showToast('缺少标签名称')
  89. return
  90. }
  91. if (!data.enterpriseUserId) {
  92. this.$showToast('缺少关联名片ID')
  93. return
  94. }
  95. uni.showModal({
  96. title: '提示',
  97. content: '确认提交名片标签表单?',
  98. success: (res) => {
  99. if (res.confirm) {
  100. if (data.labelId) {
  101. updateByIdEnterpriseUserLabelApi(data).then((res) => {
  102. this.$showToast('提交成功')
  103. setTimeout(() => {
  104. uni.navigateBack()
  105. }, 2000)
  106. })
  107. } else {
  108. addEnterpriseUserLabelSaveApi(data).then((res) => {
  109. this.$showToast('提交成功')
  110. setTimeout(() => {
  111. uni.navigateBack()
  112. }, 2000)
  113. })
  114. }
  115. }
  116. }
  117. })
  118. }
  119. }
  120. }
  121. </script>
  122. <style lang="less" scoped>
  123. .card-label-form-container {
  124. padding: 40upx 40upx 140upx 40upx;
  125. box-sizing: border-box;
  126. .buts {
  127. position: fixed;
  128. bottom: -1px;
  129. z-index: 2;
  130. padding: 20upx 40upx;
  131. left: 0;
  132. display: flex;
  133. justify-content: center;
  134. align-items: center;
  135. background-color: #fff;
  136. width: 100%;
  137. box-sizing: border-box;
  138. margin-top: 272upx;
  139. }
  140. .btn {
  141. display: flex;
  142. justify-content: center;
  143. align-items: center;
  144. height: 72upx;
  145. width: 306upx;
  146. font-size: 32upx;
  147. color: #fff;
  148. margin: 0;
  149. background-color: #07b9b9;
  150. border-radius: 100px;
  151. &:last-child {
  152. background-color: #fa5151;
  153. }
  154. }
  155. }
  156. </style>