123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <SmartModal v-if="show" @close="hideModal">
- <template #header>
- <h3 class="heading">{{ $t("edit_request") }}</h3>
- <div>
- <button class="icon button" @click="hideModal">
- <i class="material-icons">close</i>
- </button>
- </div>
- </template>
- <template #body>
- <label for="selectLabel">{{ $t("label") }}</label>
- <input
- id="selectLabel"
- v-model="requestUpdateData.name"
- class="input"
- type="text"
- :placeholder="placeholderReqName"
- @keyup.enter="saveRequest"
- />
- </template>
- <template #footer>
- <span></span>
- <span>
- <button class="icon button" @click="hideModal">
- {{ $t("cancel") }}
- </button>
- <button class="icon button primary" @click="saveRequest">
- {{ $t("save") }}
- </button>
- </span>
- </template>
- </SmartModal>
- </template>
- <script>
- export default {
- props: {
- show: Boolean,
- placeholderReqName: { type: String, default: null },
- },
- data() {
- return {
- requestUpdateData: {
- name: null,
- },
- }
- },
- methods: {
- saveRequest() {
- this.$emit("submit", this.requestUpdateData)
- this.hideModal()
- },
- hideModal() {
- this.requestUpdateData = { name: null }
- this.$emit("hide-modal")
- },
- },
- }
- </script>
|