|
|
@ -9,13 +9,19 @@ |
|
|
:init-data="referenceTextData" @cancel="(data) => handleCancelEvent(data, 'referenceTextRef')" |
|
|
:init-data="referenceTextData" @cancel="(data) => handleCancelEvent(data, 'referenceTextRef')" |
|
|
@submit="(data) => handleSubmitEvent(data, 'referenceTextRef')" /> |
|
|
@submit="(data) => handleSubmitEvent(data, 'referenceTextRef')" /> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
<div class="save-button flex"> |
|
|
|
|
|
<GuipButton type="primary" :btnstyle="{width:'144px',height:'46px'}" @click="submitFun">收录完成</GuipButton> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
|
<script> |
|
|
<script> |
|
|
|
|
|
import GuipButton from '@/components/GuipButton.vue'; |
|
|
import ClientForm from '@/components/clientSet/clientForm.vue'; |
|
|
import ClientForm from '@/components/clientSet/clientForm.vue'; |
|
|
export default { |
|
|
export default { |
|
|
components: { |
|
|
components: { |
|
|
ClientForm, |
|
|
ClientForm, |
|
|
|
|
|
GuipButton |
|
|
}, |
|
|
}, |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
@ -35,6 +41,11 @@ export default { |
|
|
// this.getReferenceInfo(); |
|
|
// this.getReferenceInfo(); |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
submitFun() { |
|
|
|
|
|
this.$router.push({ |
|
|
|
|
|
path: '/super/paiban/tpl', |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
getReferenceInfo(){ |
|
|
getReferenceInfo(){ |
|
|
this.$http('POST', '/api', {}, { |
|
|
this.$http('POST', '/api', {}, { |
|
|
}).then(response => { |
|
|
}).then(response => { |
|
|
|