diff --git a/src/api/application.js b/src/api/application.js index bfc2842..1428327 100644 --- a/src/api/application.js +++ b/src/api/application.js @@ -48,6 +48,18 @@ export function getindustry(data) { } }); } +// 计算税额 +export function getstoreSe(data) { + return request({ + url: "/api/invoice/storeSe", + method: "post", + data: { + shopId: localStorage.getItem("shopId"), + is_tax:1, + ...data + } + }); +} /** * 获取应用中心列表 * @returns diff --git a/src/views/application/index.vue b/src/views/application/index.vue index 73c2e57..05d00e7 100644 --- a/src/views/application/index.vue +++ b/src/views/application/index.vue @@ -27,7 +27,7 @@ + style="width: 100%;" placeholder=""> @@ -74,11 +74,6 @@ export default { this.getindustry() }, methods: { - changeEvent(d, names) { - console.log(d, names, '调试1') - console.log(this.forms, '调试2') - this.forms[names] = d - }, upPop() { this.dialogVisible = true }, diff --git a/src/views/order_manage/components/Invoicing.vue b/src/views/order_manage/components/Invoicing.vue index bbfbed6..8384518 100644 --- a/src/views/order_manage/components/Invoicing.vue +++ b/src/views/order_manage/components/Invoicing.vue @@ -9,20 +9,19 @@ - + - + - + @@ -56,7 +55,7 @@