Commit 722fc71f authored by 黄奎's avatar 黄奎
parents 053dd6da 39e90515
...@@ -48,9 +48,9 @@ module.exports = function(ctx) { ...@@ -48,9 +48,9 @@ module.exports = function(ctx) {
env: ctx.dev ? { env: ctx.dev ? {
//API: 'http://localhost:5001/api', //API: 'http://localhost:5001/api',
API: 'http://192.168.10.46:8300/api', API: 'http://192.168.10.2:8085/api',
// API: 'https://eduapi.oytour.com/api', // API: 'https://eduapi.oytour.com/api',
API_ZC: 'http://192.168.10.17:8087/api', API_ZC: 'http://192.168.10.2:8087/api',
API_SK: 'ws:192.168.10.214:', API_SK: 'ws:192.168.10.214:',
API_SIG: 'http://localhost:5001/messagecenter' API_SIG: 'http://localhost:5001/messagecenter'
} : { } : {
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
<q-space /> <q-space />
<div class="page-option"> <div class="page-option">
<q-btn color="accent" size="sm" icon="add" label="新增" @click="addObj(null)"/> <q-btn color="accent" size="sm" icon="add" label="新增" @click="addObj(null)"/>
<!-- @click="addObj(null)" -->
</div> </div>
</template> </template>
<template v-slot:body-cell-IsRequired="props"> <template v-slot:body-cell-IsRequired="props">
...@@ -66,6 +65,16 @@ ...@@ -66,6 +65,16 @@
label: '学员名称', label: '学员名称',
field: 'GuestName', field: 'GuestName',
align: 'left' align: 'left'
}, {
name: 'StartTime',
label: '开始时间',
field: 'StartTime',
align: 'left'
}, {
name: 'EndTime',
label: '结束时间',
field: 'EndTime',
align: 'left'
}, },
{ {
...@@ -109,7 +118,7 @@ ...@@ -109,7 +118,7 @@
this.loading = false; this.loading = false;
if (res.Code == 1) { if (res.Code == 1) {
this.dataList = res.Data.PageData; this.dataList = res.Data.PageData;
this.pageCount = res.Data.Count this.pageCount = res.Data.PageCount;
} }
console.log("res", res); console.log("res", res);
}); });
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
border: 1px solid #d2d2d2; border: 1px solid #d2d2d2;
} }
.bj { .bj {
background-color: #e6e6e6; background-color: #A5A5A5;
} }
.stulistNumber { .stulistNumber {
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
<th <th
v-for="(item, index) in titlelist" v-for="(item, index) in titlelist"
:key="index" :key="index"
:width="item.Id == 1 ? 120 : 200" :width="item.Id == 1 ? 200 : 200"
> >
{{ item.Name }} {{ item.Name }}
</th> </th>
...@@ -563,7 +563,7 @@ export default { ...@@ -563,7 +563,7 @@ export default {
this.RListlength = res.Data && res.Data[0].MonthList; this.RListlength = res.Data && res.Data[0].MonthList;
this.titlelist = [ this.titlelist = [
{ {
Name: "业绩", Name: "当月业绩",
Id: 1, Id: 1,
index: 0 index: 0
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment