purchaseNotice.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <div>
  3. <Editor v-model:value="purchaseNotice" className="h-[70vh]" />
  4. <div class="flex items-center justify-end mt-4">
  5. <el-button @click="clearPurchaseNotice">清空内容</el-button>
  6. <el-button type="primary" @click="savePurchaseNotice">保存</el-button>
  7. </div>
  8. </div>
  9. </template>
  10. <script setup>
  11. import { ref } from "vue";
  12. import { request } from "@/utils";
  13. import Editor from "@/components/Editor.vue";
  14. import { ElMessage, ElMessageBox} from 'element-plus';
  15. import { useUserStoreHook } from "@/store/modules/user";
  16. const mechanismId = useUserStoreHook()?.profile.id;
  17. const purchaseNotice = ref("");
  18. const getPurchaseNotice = async () => {
  19. const { data } = await request.get(
  20. `/articleService/open/serviceProvider/purchaseNotice`,
  21. {
  22. params: {
  23. mechanismId
  24. }
  25. }
  26. );
  27. purchaseNotice.value = data.notice || "";
  28. };
  29. getPurchaseNotice();
  30. const savePurchaseNotice = async () => {
  31. await request.post(`/articleService/serviceProvider/purchaseNotice`, {
  32. mechanismId,
  33. notice:
  34. purchaseNotice.value == "<p><br></p>" ? "" : purchaseNotice.value
  35. });
  36. ElMessage.success("保存成功");
  37. };
  38. const clearPurchaseNotice = async () => {
  39. await ElMessageBox.confirm(`确定要清空内容吗?`, "提示", {
  40. type: "warning"
  41. });
  42. await request.post(`/articleService/serviceProvider/purchaseNotice`, {
  43. mechanismId,
  44. notice: ""
  45. });
  46. ElMessage.success("清空成功");
  47. };
  48. </script>
  49. <style lang="scss" scoped></style>