changyong-add.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <view class="changyong-add">
  3. <textarea class="changyong-textarea" placeholder="输入您常用回复,请不要填写QQ、微信等联系方式或广告信息,否则系统将封禁您的账号"
  4. v-model="content"></textarea>
  5. <view class="changyong-down">
  6. <view class="u-flex u-row-center changyong-btn">
  7. <text @click="save">保存</text>
  8. </view>
  9. <view class="safe-area-inset-bottom"></view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import {phrase_update,phrase_create} from "../units/inquire.js"
  15. export default {
  16. data() {
  17. return {
  18. content: ""
  19. }
  20. },
  21. onLoad(options) {
  22. if (options.id) {
  23. this.id = options.id
  24. this.content = options.content
  25. }
  26. },
  27. methods: {
  28. save() {
  29. if (!this.content) {
  30. this.$u.toast("请输入您要添加的常用语")
  31. return
  32. }
  33. var that = this
  34. if (that.id) {
  35. phrase_update({
  36. id: that.id,
  37. content: that.content
  38. }).then((res) => {
  39. if (res.code == 1) {
  40. that.$u.toast(res.msg)
  41. uni.navigateBack()
  42. const eventChannel = this.getOpenerEventChannel();
  43. eventChannel.emit('getconcent', this.concent)
  44. }
  45. })
  46. } else {
  47. phrase_create({
  48. content: that.content
  49. }).then((res) => {
  50. if (res.code == 1) {
  51. that.$u.toast(res.msg)
  52. uni.navigateBack()
  53. const eventChannel = this.getOpenerEventChannel();
  54. eventChannel.emit('getconcent', this.concent)
  55. }
  56. })
  57. }
  58. },
  59. // save() {
  60. // uni.navigateBack()
  61. // }
  62. }
  63. }
  64. </script>
  65. <style lang="scss">
  66. .changyong-add {
  67. padding: 24rpx 32rpx;
  68. .changyong-down {
  69. position: fixed;
  70. bottom: 0;
  71. left: 0;
  72. z-index: 99;
  73. background-color: #fff;
  74. box-shadow: 0rpx -1rpx 0rpx 0rpx rgba(0, 0, 0, 0.1);
  75. width: 750rpx;
  76. .changyong-btn {
  77. padding: 16rpx 0;
  78. text {
  79. width: 686rpx;
  80. line-height: 88rpx;
  81. background: #0C66C2;
  82. border-radius: 12rpx;
  83. text-align: center;
  84. font-size: 32rpx;
  85. font-family: PingFangSC-Regular, PingFang SC;
  86. font-weight: 400;
  87. color: #FFFFFF;
  88. }
  89. }
  90. }
  91. .changyong-textarea {
  92. width: 100%;
  93. height: 500rpx;
  94. }
  95. }
  96. </style>