|
|
@@ -0,0 +1,26 @@
|
|
|
+<template>
|
|
|
+<!-- icondaizhifu -->
|
|
|
+ <appResult :title="'入库成功'">
|
|
|
+ <button class="admin-button-com blue big">登录后台</button>
|
|
|
+ <button class="admin-button-com big">开启通知</button>
|
|
|
+ </appResult>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import appResult from "@/components/app-result";
|
|
|
+export default {
|
|
|
+ name: "BillingResult", // 开单结果
|
|
|
+ components: {
|
|
|
+ appResult
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.admin-button-com {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+</style>
|