41 lines
995 B
Vue
41 lines
995 B
Vue
<template>
|
|
<modal-inner aria-label="提交信息">
|
|
<p>自定义 <b>{{ config.name }}</b> 提交信息。</p>
|
|
<div class="modal__content">
|
|
<form-entry label="提交信息">
|
|
<input slot="field" class="textfield" placeholder="提交信息非必填" type="text" v-model.trim="commitMessage" @keydown.enter="resolve()">
|
|
</form-entry>
|
|
</div>
|
|
<div class="modal__button-bar">
|
|
<button class="button" @click="config.reject()">取消</button>
|
|
<button class="button button--resolve" @click="resolve()">确认</button>
|
|
</div>
|
|
</modal-inner>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import ModalInner from './common/ModalInner';
|
|
|
|
export default {
|
|
components: {
|
|
ModalInner,
|
|
},
|
|
data: () => ({
|
|
commitMessage: '',
|
|
}),
|
|
computed: {
|
|
...mapGetters('modal', [
|
|
'config',
|
|
]),
|
|
},
|
|
methods: {
|
|
resolve() {
|
|
this.config.resolve({
|
|
commitMessage: this.commitMessage,
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|