Browse Source

v4.3.2功能

feature
是小王呀\24601 1 year ago
parent
commit
24d1908e5a
  1. 23
      src/views/modules/base/community/roomForm.vue
  2. 7
      src/views/modules/communityService/fuwuzhaoren/personList.vue
  3. 7
      src/views/modules/communityService/gangweizhaoren/personList.vue
  4. 7
      src/views/modules/communityService/jinengzhaoren/personList.vue

23
src/views/modules/base/community/roomForm.vue

@ -64,7 +64,7 @@
</el-input>
</el-form-item> -->
<el-form-item v-if="dataForm.houseQrcodeUrl"
<el-form-item
label=""
prop="coding"
style="display: block">
@ -77,7 +77,7 @@
<a style="margin-left: 10px;"
class="div-table-button--blue"
:href="dataForm.houseQrcodeUrl"
target="_blank"><i class="el-icon-download"></i>下载电子门牌二维码</a>
target="_blank" @click="downloadQR"><i class="el-icon-download"></i>下载电子门牌二维码</a>
</div>
</el-form-item>
@ -284,7 +284,23 @@ export default {
},
downloadQR(){
let title = "二维码导入模板";
let url = "/gov/org/house/exportQRCardTemplate";
let params={}
app.ajax.exportFilePost(
url,
params,
(data, rspMsg) => {
this.download(data, title + ".xls");
},
(rspMsg, data) => {
this.$message.error(rspMsg);
}
);
},
async loadHouseInfo () {
const url = "/actual/base/communityHouse/getClearHouseDeatilById/" + this.houseId
@ -295,12 +311,9 @@ export default {
if (code === 0) {
// debugger
this.dataForm = { ...data }
this.houseType = this.dataForm.houseType
this.purpose = this.dataForm.purpose
this.rentFlag = parseInt(this.dataForm.rentFlag)
} else {
this.$message.error(msg)
}

7
src/views/modules/communityService/fuwuzhaoren/personList.vue

@ -97,7 +97,7 @@
</div>
<div class="div_btn">
<el-button type="primary" size="small" class="diy-button--blue" @click="handleIncrementServeTimes">公众号消息推送</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="onMessagePush">公众号消息推送</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="handleIncrementServeTimes">标记享受服务人员</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="handleSearch">查询</el-button>
</div>
@ -298,7 +298,10 @@ export default {
//
this.handleSearch();
},
//
onMessagePush(){
alert("哥哥,点我")
},
/**
* 组织选择触发事件
* @returns {Promise<void>}

7
src/views/modules/communityService/gangweizhaoren/personList.vue

@ -97,7 +97,7 @@
</div>
<div class="div_btn">
<el-button type="primary" size="small" class="diy-button--blue" @click="handleIncrementServeTimes">公众号消息推送</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="onMessagePush">公众号消息推送</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="handleIncrementServeTimes">标记享受服务人员</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="handleSearch">查询</el-button>
</div>
@ -298,7 +298,10 @@ export default {
//
this.handleSearch();
},
//
onMessagePush() {
alert("哥哥,点我")
},
/**
* 组织选择触发事件
* @returns {Promise<void>}

7
src/views/modules/communityService/jinengzhaoren/personList.vue

@ -97,7 +97,7 @@
</div>
<div class="div_btn">
<el-button type="primary" size="small" class="diy-button--blue" @click="handleIncrementServeTimes">公众号消息推送</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="onMessagePush">公众号消息推送</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="handleIncrementServeTimes">标记享受服务人员</el-button>
<el-button type="primary" size="small" class="diy-button--blue" @click="handleSearch">查询</el-button>
</div>
@ -298,7 +298,10 @@ export default {
//
this.handleSearch();
},
//
onMessagePush() {
alert("哥哥,点我")
},
/**
* 组织选择触发事件
* @returns {Promise<void>}

Loading…
Cancel
Save