zj-dialog-remark.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <zjDialogBox
  3. :title="'留言'"
  4. :minHeight="'50vh'"
  5. :isShow="isShow"
  6. @cancel="cancelDialog"
  7. @confirm="confirmDialog">
  8. <u--textarea
  9. fixed
  10. :cursorSpacing="100"
  11. v-model="value"
  12. :placeholder="replyItem ? `回复${replyItem.createBy || ''}:` : `留言内容:`"
  13. border="none"
  14. height="250">
  15. </u--textarea>
  16. </zjDialogBox>
  17. </template>
  18. <script>
  19. import zjDialogBox from "@/components/zj-dialog/zj-dialog-box.vue";
  20. export default {
  21. components: {
  22. zjDialogBox,
  23. },
  24. props: {
  25. isShow: {
  26. type: Boolean,
  27. default: false
  28. },
  29. },
  30. data() {
  31. return {
  32. name: '',
  33. value: '',
  34. replyItem: null,
  35. }
  36. },
  37. methods: {
  38. setValue(replyItem) {
  39. console.log(replyItem);
  40. this.replyItem = replyItem;
  41. this.value = '';
  42. },
  43. cancelDialog() {
  44. this.$emit('close');
  45. },
  46. confirmDialog() {
  47. if(!this.value) return this.$toast('请填写备注信息');
  48. this.$emit('confirm', this.value);
  49. }
  50. }
  51. }
  52. </script>
  53. <style lang="scss" scoped>
  54. </style>