diff --git a/src/pages.json b/src/pages.json
index 9295f12..8efe5e7 100644
--- a/src/pages.json
+++ b/src/pages.json
@@ -148,6 +148,12 @@
"navigationBarTitleText": "合同审核",
"navigationBarTextStyle": "black"
}
+ }, {
+ "path": "house_application",
+ "style": {
+ "navigationBarTitleText": "代房申请",
+ "navigationBarTextStyle": "black"
+ }
}, {
"path": "electContract",
"style": {
diff --git a/src/pages/my/house_application.vue b/src/pages/my/house_application.vue
new file mode 100644
index 0000000..9349da1
--- /dev/null
+++ b/src/pages/my/house_application.vue
@@ -0,0 +1,203 @@
+
+
+
+
+ 类型
+
+
+
+
+
+
+
+ 地址
+
+
+
+
+
+ 原始户型新增
+
+
+
+
+
+ 房本面积
+
+
+
+
+
+ 预计代理价格(年)
+
+
+
+
+
+ 免租期(年)
+
+
+
+
+
+
+ 付款方式
+
+
+
+
+
+
+
+ 装修配货支付总计
+
+
+
+
+
+ 预计出租价格(间)
+
+
+
+
+
+ 预估利润
+
+
+
+
+
+ 提交
+
+
+
+
+
diff --git a/src/pages/my/modifyPassword.vue b/src/pages/my/modifyPassword.vue
index 1cf924e..01708dc 100644
--- a/src/pages/my/modifyPassword.vue
+++ b/src/pages/my/modifyPassword.vue
@@ -46,13 +46,9 @@
onShow() {
},
methods: {
-
submit() {
-
},
-
},
-x
};
diff --git a/src/pages/my/myapply.vue b/src/pages/my/myapply.vue
index db64b27..616a486 100644
--- a/src/pages/my/myapply.vue
+++ b/src/pages/my/myapply.vue
@@ -1,9 +1,9 @@
-
+
- 待房申请
+ 代房申请
diff --git a/src/pages/tabs/customer.vue b/src/pages/tabs/customer.vue
index af615bc..f55836b 100644
--- a/src/pages/tabs/customer.vue
+++ b/src/pages/tabs/customer.vue
@@ -2,7 +2,7 @@
-
+
增加客户
@@ -14,13 +14,13 @@
- 颂女士
- 刘晓洁于2019-01-17录入
- 未跟进时间:1239天
+ {{item.customerName}}
+ {{item.belongPerson}}于{{item.createTime}}录入
+ 未跟进时间:{{item.missingDays}}天
-
+
@@ -78,14 +78,32 @@
],
zujinshow: false,
huxingshow: false,
+ pageNo: 1,
+ pageSize: 10,
};
},
onLoad(options) {
},
onShow() {
+ },
+ created() {
+ this.getcustomerList()
},
methods: {
+ getcustomerList(){
+ let body = {
+ pageNo:this.pageNo,
+ pageSize:this.pageSize,
+ houseType: '',//房型: 1,开间 2,一居 3,二居 4,三居 5,四居 6,其他
+ rentPriceMin: '',//最小租金
+ rentPriceMax:''
+ }
+ this.$u.api.customerFind({body:body}).then((res)=>{
+ console.log(res)
+ this.listData = res.result
+ })
+ },
secectZujin(item){
this.searchForm.zujinval = item.value
},
diff --git a/src/pages/tabs/gonggao.vue b/src/pages/tabs/gonggao.vue
index e5c1985..0f8302a 100644
--- a/src/pages/tabs/gonggao.vue
+++ b/src/pages/tabs/gonggao.vue
@@ -1,16 +1,16 @@
-
+
-
-
- {{item.name}}
+
+
+ {{item.title}}
{{item.time}}
- {{item.from}}
+ {{item.deptName}}
回复列表
@@ -23,22 +23,10 @@
export default {
data() {
return {
- list: [{
- name: '办公区管理制度',
- dot: true,
- time: '2022-05-20 18:00:00',
- from:'来自人力资源部'
- },{
- name: '关于人才招聘及新员工试用期管理实施办法',
- dot: true,
- time: '2022-05-20 18:00:00',
- from:'来自人力资源部'
- },{
- name: '关于李秀峰等人的岗位调整与任命通知',
- dot: false,
- time: '2022-05-20 18:00:00',
- from:'来自人力资源部'
- }]
+ gonggaoList: [],
+ pageNo: 1,
+ pageSize: 10,
+ loadDone: false,
};
},
onLoad(options) {
@@ -46,7 +34,31 @@
onShow() {
},
- methods: {},
+ created(){
+ this.getGonggao()
+ },
+ onReachBottom() {
+ this.getGonggao();
+ },
+ methods: {
+ getGonggao(){
+ if (this.loadDone) return;
+ this.$u.api.applist({body:{pageNo:this.pageNo,pageSize:this.pageSize}}).then((res)=>{
+ console.log(res)
+ if(res.result&&res.result.length){
+ if(this.pageNo==1){
+ this.gonggaoList = res.result
+ }else{
+ this.gonggaoList = [...this.gonggaoList, ...res.result];
+ }
+ this.pageNo += 1;
+ this.loadDone = false
+ }else{
+ this.loadDone = true;
+ }
+ })
+ },
+ },
};
diff --git a/src/pages/tabs/index.vue b/src/pages/tabs/index.vue
index 83310e0..95a96ec 100644
--- a/src/pages/tabs/index.vue
+++ b/src/pages/tabs/index.vue
@@ -18,14 +18,13 @@
我的待办
-
公告
-
+
@@ -63,10 +62,7 @@
export default {
data() {
return {
- list: ['关于人才招聘及新员工试用期管理实施',
- '平明送客楚山孤平明送客楚山孤',
- '关于人才招聘及新员工试用期管理实施123',
- '一片冰心在玉壶一片冰心在玉壶一片冰心在玉壶'],
+ gonggaoList: [],
tabList: [{
name: '今日战报'
}, {
@@ -100,23 +96,23 @@
rankList: [{},{},{}],
current: 0,
current1: 0,
- openGid:''
};
},
onLoad(options) {
- let that = this
- wx.showShareMenu({
- withShareTicket: true
- })
- app.getShareTiket(function (globalData) {
- console.log('clickReload---globalData-->' + JSON.stringify(globalData))
- that.openGid= globalData.openGid
- })
+ },
+ created(){
+ this.getGonggao()
},
onShow() {
},
methods: {
+ getGonggao(){
+ this.$u.api.applist({body:{pageNo:1,pageSize:20}}).then((res)=>{
+ console.log(res)
+ this.gonggaoList = res.result.map(item=>item.title)
+ })
+ },
change(index){
this.current = index
},