优化台桌页面
This commit is contained in:
parent
5e7935bb53
commit
4543854d0a
|
|
@ -13,7 +13,10 @@ VITE_API_WSS = 'wss://wxcashiertest.sxczgkj.cn/client'
|
|||
|
||||
|
||||
# 测试 php
|
||||
VITE_API_PHP_URL = 'http://192.168.2.33:1666/index.php/api'
|
||||
# VITE_API_PHP_URL = 'http://192.168.2.33:1666/index.php/api'
|
||||
|
||||
# 正式 php
|
||||
VITE_API_PHP_URL = 'http://czgdoumei.sxczgkj.com/index.php/api'
|
||||
|
||||
# 阿伟
|
||||
# VITE_API_URL = 'http://192.168.2.96:10587/cashier-client'
|
||||
|
|
|
|||
|
|
@ -8,7 +8,10 @@ ENV = production
|
|||
VITE_API_WSS = 'wss://wxcashiertest.sxczgkj.cn/client'
|
||||
|
||||
# 测试 php
|
||||
VITE_API_PHP_URL = 'http://192.168.2.33:1666/index.php/api'
|
||||
# VITE_API_PHP_URL = 'http://192.168.2.33:1666/index.php/api'
|
||||
|
||||
# 正式 php
|
||||
VITE_API_PHP_URL = 'http://czgdoumei.sxczgkj.com/index.php/api'
|
||||
|
||||
# 测试
|
||||
VITE_API_URL = 'https://cashier-client.sxczgkj.cn/cashier-client'
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "vite-electron",
|
||||
"private": true,
|
||||
"version": "1.3.60",
|
||||
"version": "1.3.61",
|
||||
"main": "dist-electron/main.js",
|
||||
"scripts": {
|
||||
"dev": "chcp 65001 && vite",
|
||||
|
|
|
|||
|
|
@ -8,16 +8,16 @@
|
|||
<el-text>{{ item.label }}</el-text>
|
||||
</div>
|
||||
</div>
|
||||
<div class="all">
|
||||
<el-button type="text" icon="Clock">预定管理</el-button>
|
||||
</div>
|
||||
<!-- <div class="all">
|
||||
<el-button type="link" icon="Clock">预定管理</el-button>
|
||||
</div> -->
|
||||
</div>
|
||||
<div class="tab_container">
|
||||
<div class="tab_head">
|
||||
<el-radio-group v-model="area" @change="queryShopTableAjax">
|
||||
<el-radio-button label="">全部</el-radio-button>
|
||||
<el-radio-button :label="item.id" v-for="item in areaList" :key="item.id">{{ item.name
|
||||
}}</el-radio-button>
|
||||
<el-radio-button label="全部" value=""></el-radio-button>
|
||||
<el-radio-button :label="item.name" :value="item.id" v-for="item in areaList"
|
||||
:key="item.id"></el-radio-button>
|
||||
</el-radio-group>
|
||||
</div>
|
||||
<div class="overflow_y" v-loading="loading">
|
||||
|
|
@ -75,10 +75,10 @@ const tabAreas = ref([
|
|||
label: '使用中',
|
||||
type: 2,
|
||||
},
|
||||
{
|
||||
label: '已预订',
|
||||
type: 3,
|
||||
}
|
||||
// {
|
||||
// label: '已预订',
|
||||
// type: 3,
|
||||
// }
|
||||
])
|
||||
|
||||
const loading = ref(false)
|
||||
|
|
|
|||
Loading…
Reference in New Issue