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