|
|
@@ -1,12 +1,12 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
<view class="billing_box_bg">
|
|
|
- <view class="top-view"> </view>
|
|
|
+ <view class="top-view"></view>
|
|
|
<view class="result-view">
|
|
|
<view class="iconfont iconchenggong"></view>
|
|
|
<view class="result-title">添加成功</view>
|
|
|
<button class="admin-button-com middle blue" style="width:20vw;" @click="goBack">返回</button>
|
|
|
- <view class="form-container">
|
|
|
+ <view class="form-container" v-if="makeTable == 1">
|
|
|
<form>
|
|
|
<view class="module-com input-line-wrap">
|
|
|
|
|
|
@@ -176,6 +176,7 @@
|
|
|
<script>
|
|
|
import TuiListCell from "@/components/plugin/list-cell";
|
|
|
import { createOrder } from "@/api/order";
|
|
|
+import { getMyExtInfo } from "@/api/shop/ext";
|
|
|
import { mapGetters } from "vuex";
|
|
|
import MxDatePicker from '@/components/mx-datepicker/mx-datepicker.vue';
|
|
|
|
|
|
@@ -215,7 +216,8 @@ export default {
|
|
|
selectedHour: '12', // 选中的小时
|
|
|
selectedMinute: '00', // 选中的分钟
|
|
|
reachDatePickerShow: false,
|
|
|
- reachDatePickerValue: ''
|
|
|
+ reachDatePickerValue: '',
|
|
|
+ makeTable:0,//1:显示操作台 0:不显示操作台
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
@@ -235,7 +237,11 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
init() {
|
|
|
-
|
|
|
+ getMyExtInfo().then(res => {
|
|
|
+ if(res.code == 1){
|
|
|
+ this.makeTable = res.data.makeTable||0
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
setSendType (type) {
|
|
|
this.form.sendType = type
|
|
|
@@ -314,7 +320,7 @@ export default {
|
|
|
<style lang="scss" scoped>
|
|
|
.billing_box_bg {
|
|
|
position: relative;
|
|
|
- padding: 30upx 30upx;
|
|
|
+ padding: 30upx 30upx 50upx 30upx;
|
|
|
display: flex;
|
|
|
background: white;
|
|
|
flex-direction: column;
|