Commit 0f13614c authored by 李晓兵's avatar 李晓兵

''

parents 8abb75e3 cf216289
Pipeline #4024 canceled with stages
/*
* @Author: your name
* @Date: 2019-11-11 16:28:43
* @LastEditTime: 2019-12-03 18:22:07
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \hls-xcmg-vue-app\config\index.js
*/
'use strict' 'use strict'
// Template version: 1.2.4 // Template version: 1.2.4
// see http://vuejs-templates.github.io/webpack for documentation. // see http://vuejs-templates.github.io/webpack for documentation.
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2019-10-31 09:49:57 * @Date: 2019-10-31 09:49:57
* @LastEditTime: 2019-12-02 09:50:30 * @LastEditTime: 2019-12-03 12:27:02
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 合同查询--记录 * @Description: 合同查询--记录
* @FilePath: * @FilePath:
...@@ -108,32 +108,32 @@ export default { ...@@ -108,32 +108,32 @@ export default {
this.$refs.scroll.scrollToTop() this.$refs.scroll.scrollToTop()
if (this.selected === 'all') { if (this.selected === 'all') {
this.contract_status_n = '全部' this.contract_status_n = '全部'
this.pageNum = this.pagenum // this.pageNum = this.pagenum
this.showLists = this.lists this.showLists = this.lists
} else if (this.selected === 'one') { } else if (this.selected === 'one') {
this.contract_status_n = '待首付' this.contract_status_n = '待首付'
this.pageNum = this.unSigned_pagenum // this.pageNum = this.unSigned_pagenum
this.showLists = this.unSignedLists this.showLists = this.unSignedLists
if (!this.unSigned_flag) { if (!this.unSigned_flag) {
this.recordQuery('待首付', this.unSignedLists) this.recordQuery('待首付', this.unSignedLists)
} }
} else if (this.selected === 'two') { } else if (this.selected === 'two') {
this.contract_status_n = '首付还款中' this.contract_status_n = '首付还款中'
this.pageNum = this.unRepay_pagenum // this.pageNum = this.unRepay_pagenum
this.showLists = this.unRepayLists this.showLists = this.unRepayLists
if (!this.unRepay_flag) { if (!this.unRepay_flag) {
this.recordQuery('首付还款中', this.unRepayLists) this.recordQuery('首付还款中', this.unRepayLists)
} }
} else if (this.selected === 'three') { } else if (this.selected === 'three') {
this.contract_status_n = '还款中' this.contract_status_n = '还款中'
this.pageNum = this.repaying_pagenum // this.pageNum = this.repaying_pagenum
this.showLists = this.repayingLists this.showLists = this.repayingLists
if (!this.repaying_flag) { if (!this.repaying_flag) {
this.recordQuery('还款中', this.repayingLists) this.recordQuery('还款中', this.repayingLists)
} }
} else if (this.selected === 'four') { } else if (this.selected === 'four') {
this.contract_status_n = '已结清' this.contract_status_n = '已结清'
this.pageNum = this.repayed_pagenum // this.pageNum = this.repayed_pagenum
this.showLists = this.repayedLists this.showLists = this.repayedLists
if (!this.repayed_flag) { if (!this.repayed_flag) {
this.recordQuery('已结清', this.repayedLists) this.recordQuery('已结清', this.repayedLists)
...@@ -254,6 +254,22 @@ export default { ...@@ -254,6 +254,22 @@ export default {
loadMore () { loadMore () {
let vm = this let vm = this
if (vm.selected === 'all') {
vm.pagenum++
vm.pageNum = vm.pagenum
} else if (vm.selected === 'one') {
vm.unSigned_pagenum++
vm.pageNum = vm.unSigned_pagenum
} else if (vm.selected === 'two') {
vm.unRepay_pagenum++
vm.pageNum = vm.unRepay_pagenum
} else if (vm.selected === 'three') {
vm.repaying_pagenum++
vm.pageNum = vm.repaying_pagenum
} else if (vm.selected === 'four') {
vm.repayed_pagenum++
vm.pageNum = vm.repayed_pagenum
}
let url = $config.basePath + 'con_contract_list' let url = $config.basePath + 'con_contract_list'
let param = { let param = {
user_phone: window.localStorage.user_phone, user_phone: window.localStorage.user_phone,
...@@ -273,30 +289,30 @@ export default { ...@@ -273,30 +289,30 @@ export default {
} else if (returnData.length > 0 && returnData.length < 10) { } else if (returnData.length > 0 && returnData.length < 10) {
returnData.forEach((data, index, array) => { returnData.forEach((data, index, array) => {
// 加载更多时,将请求到的数据push到对应数组 // 加载更多时,将请求到的数据push到对应数组
if (this.selected === 'all') { if (vm.selected === 'all') {
vm.lists.push(array[index]) vm.lists.push(array[index])
} else if (this.selected === 'one') { } else if (vm.selected === 'one') {
vm.unSignedLists.push(array[index]) vm.unSignedLists.push(array[index])
} else if (this.selected === 'two') { } else if (vm.selected === 'two') {
vm.unRepayLists.push(array[index]) vm.unRepayLists.push(array[index])
} else if (this.selected === 'three') { } else if (vm.selected === 'three') {
vm.repayingLists.push(array[index]) vm.repayingLists.push(array[index])
} else if (this.selected === 'four') { } else if (vm.selected === 'four') {
vm.repayedLists.push(array[index]) vm.repayedLists.push(array[index])
} }
}) })
vm.$refs.scroll.update(true) vm.$refs.scroll.update(true)
} else if (returnData.length === 10) { } else if (returnData.length === 10) {
returnData.forEach((data, index, array) => { returnData.forEach((data, index, array) => {
if (this.selected === 'all') { if (vm.selected === 'all') {
vm.lists.push(array[index]) vm.lists.push(array[index])
} else if (this.selected === 'one') { } else if (vm.selected === 'one') {
vm.unSignedLists.push(array[index]) vm.unSignedLists.push(array[index])
} else if (this.selected === 'two') { } else if (vm.selected === 'two') {
vm.unRepayLists.push(array[index]) vm.unRepayLists.push(array[index])
} else if (this.selected === 'three') { } else if (vm.selected === 'three') {
vm.repayingLists.push(array[index]) vm.repayingLists.push(array[index])
} else if (this.selected === 'four') { } else if (vm.selected === 'four') {
vm.repayedLists.push(array[index]) vm.repayedLists.push(array[index])
} }
}) })
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2019-09-29 10:02:11 * @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-11-29 12:40:58 * @LastEditTime: 2019-12-03 15:09:16
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
--> -->
...@@ -333,6 +333,7 @@ export default { ...@@ -333,6 +333,7 @@ export default {
vm.bank_flag = false vm.bank_flag = false
vm.isConfirm = false vm.isConfirm = false
vm.ischecked = false vm.ischecked = false
vm.showModalValue = false
vm.confirm_note = '' // 审批意见 vm.confirm_note = '' // 审批意见
vm.num = 0 // 进入详情显示基本信息 vm.num = 0 // 进入详情显示基本信息
vm.bp_name = vm.$route.params.item.bp_name vm.bp_name = vm.$route.params.item.bp_name
...@@ -494,12 +495,8 @@ export default { ...@@ -494,12 +495,8 @@ export default {
if (res.result === 'S') { if (res.result === 'S') {
vm.save_picture(vm.faceListUpload) vm.save_picture(vm.faceListUpload)
vm.hlsPopup.showSuccess('审批成功') vm.hlsPopup.showSuccess('审批成功')
vm.$router.push({ window.localStorage.setItem('backFlag', true)
name: 'ContractSigning', vm.$routeGo()
params: {
backFlag: true,
},
})
} else { } else {
vm.hlsPopup.showSuccess(res.message) vm.hlsPopup.showSuccess(res.message)
} }
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2019-09-29 10:02:11 * @Date: 2019-09-29 10:02:11
* @LastEditTime: 2019-12-02 09:39:11 * @LastEditTime: 2019-12-03 09:50:57
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
--> -->
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<h-view id="contract-signing"> <h-view id="contract-signing">
<h-header :proportion="[5,1,1]" class="bar-custom"> <h-header :proportion="[5,1,1]" class="bar-custom">
<div slot="left" class="h-header-btn"> <div slot="left" class="h-header-btn">
<img src="@/assets/userBind/arrow.png" @click="goBack"> <img src="@/assets/userBind/arrow.png" @click="$routeGo()">
<span>合同签约</span> <span>合同签约</span>
</div> </div>
</h-header> </h-header>
...@@ -121,7 +121,7 @@ export default { ...@@ -121,7 +121,7 @@ export default {
vm.user_bp_type = vm.$route.params.user_bp_type vm.user_bp_type = vm.$route.params.user_bp_type
vm.contractList() vm.contractList()
} else if (from.name === 'ContractDetail') { } else if (from.name === 'ContractDetail') {
if (vm.$route.params.backFlag) { if (window.localStorage.backFlag === 'true') {
vm.searchInput = '' vm.searchInput = ''
vm.submitPagenum = 1 vm.submitPagenum = 1
vm.approvedPagenum = 1 vm.approvedPagenum = 1
...@@ -334,12 +334,6 @@ export default { ...@@ -334,12 +334,6 @@ export default {
}, },
}) })
}, },
// 返回个人中心
goBack () {
this.$router.push({
name: 'MyInfo',
})
},
}, },
} }
</script> </script>
......
...@@ -379,12 +379,8 @@ export default { ...@@ -379,12 +379,8 @@ export default {
if (res.result === 'S') { if (res.result === 'S') {
vm.save_picture(vm.faceListUpload) vm.save_picture(vm.faceListUpload)
vm.hlsPopup.showSuccess('签约成功') vm.hlsPopup.showSuccess('签约成功')
vm.$router.push({ window.localStorage.setItem('backflag', true)
name: 'ContractList', vm.$routeGo()
params: {
backFlag: true,
},
})
} else { } else {
vm.hlsPopup.showSuccess(res.message) vm.hlsPopup.showSuccess(res.message)
} }
......
...@@ -86,7 +86,7 @@ export default { ...@@ -86,7 +86,7 @@ export default {
this.$refs.scroll.scrollToTop() this.$refs.scroll.scrollToTop()
} }
}, },
immediate: true, // immediate: true,
}, },
searchInput () { searchInput () {
let vm = this let vm = this
...@@ -113,7 +113,7 @@ export default { ...@@ -113,7 +113,7 @@ export default {
vm.approvedLists = [] vm.approvedLists = []
vm.getLists() vm.getLists()
} else if (from.name === 'ContractDetails') { } else if (from.name === 'ContractDetails') {
if (vm.$route.params.backFlag) { if (window.localStorage.backflag === 'true') {
vm.searchInput = '' vm.searchInput = ''
vm.submitPagenum = 1 vm.submitPagenum = 1
vm.approvedPagenum = 1 vm.approvedPagenum = 1
...@@ -267,7 +267,9 @@ export default { ...@@ -267,7 +267,9 @@ export default {
vm.hlsHttp.post(url, param).then(function (res) { vm.hlsHttp.post(url, param).then(function (res) {
vm.hlsPopup.hideLoading() vm.hlsPopup.hideLoading()
vm.submitLists = res.lists vm.submitLists = res.lists
if (vm.num === 1) {
vm.showLists = vm.submitLists vm.showLists = vm.submitLists
}
if (res.lists.length >= 0 && res.lists.length < 10) { if (res.lists.length >= 0 && res.lists.length < 10) {
vm.$refs.scroll.update(true) vm.$refs.scroll.update(true)
} else if (res.lists.length === 10) { } else if (res.lists.length === 10) {
...@@ -288,7 +290,9 @@ export default { ...@@ -288,7 +290,9 @@ export default {
} }
vm.hlsHttp.post(url, param).then(function (res) { vm.hlsHttp.post(url, param).then(function (res) {
vm.approvedLists = res.lists vm.approvedLists = res.lists
if (vm.num === 2) {
vm.showLists = vm.approvedLists vm.showLists = vm.approvedLists
}
if (res.lists.length >= 0 && res.lists.length < 10) { if (res.lists.length >= 0 && res.lists.length < 10) {
vm.$refs.scroll.update(true) vm.$refs.scroll.update(true)
} else if (res.lists.length === 10) { } else if (res.lists.length === 10) {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Descrip""/>User Settings Edit * @Descrip""/>User Settings Edit
* @Author: your name * @Author: your name
* @Date: 2019-09-29 20:31:00 * @Date: 2019-09-29 20:31:00
* @LastEditTime: 2019-11-28 17:37:58 * @LastEditTime: 2019-12-03 18:02:46
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
--> -->
<template> <template>
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
</item> </item>
<item> <item>
<div slot="name" class="font-color">设备总价</div> <div slot="name" class="font-color">设备总价</div>
<CurrencyInput slot="content" :value="equip_price" @input="getVal" /> <CurrencyInput slot="content" v-model="equip_price" placeholder="请输入设备总价" />
</item> </item>
<item> <item>
<div slot="name" class="font-color">融资金额</div> <div slot="name" class="font-color">融资金额</div>
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
</item> </item>
<item> <item>
<div slot="name" class="font-color">年利率</div> <div slot="name" class="font-color">年利率</div>
<input slot="content" v-model="info.int_rate_n" placeholder="请输入年利率"> <span slot="content">{{ info.int_rate_n }}</span>
</item> </item>
<!-- <item> <!-- <item>
<div slot="name" class="font-color">产品数量</div> <div slot="name" class="font-color">产品数量</div>
...@@ -146,8 +146,8 @@ export default { ...@@ -146,8 +146,8 @@ export default {
beforeRouteEnter (to, from, next) { beforeRouteEnter (to, from, next) {
next(vm => { next(vm => {
if (from.name === 'FinancingTrial') { if (from.name === 'FinancingTrial') {
vm.equip_price = Number(vm.$route.params.plan_price) // 参考价 console.log('ssssss', vm.$route.params.plan_price)
// if (vm.product_plan_id !== vm.$route.params.product_plan_id) { vm.$route.params.plan_price ? vm.equip_price = Number(vm.$route.params.plan_price) : vm.equip_price = ''
// 重置产品id、试算返回id、试算状态、保险押金、gps费用、预计还款日 // 重置产品id、试算返回id、试算状态、保险押金、gps费用、预计还款日
vm.product_plan_id = vm.$route.params.product_plan_id vm.product_plan_id = vm.$route.params.product_plan_id
vm.quotation_id = '' vm.quotation_id = ''
...@@ -155,7 +155,6 @@ export default { ...@@ -155,7 +155,6 @@ export default {
vm.insurance_fee = '' vm.insurance_fee = ''
vm.gps_fee = '' vm.gps_fee = ''
vm.price_date_to = '请选择时间' vm.price_date_to = '请选择时间'
// }
vm.detailsQuery() vm.detailsQuery()
vm.repayPeriod() vm.repayPeriod()
} }
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2019-11-11 16:28:45 * @Date: 2019-11-11 16:28:45
* @LastEditTime: 2019-12-02 15:32:37 * @LastEditTime: 2019-12-03 10:04:41
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \hls-xcmg-vue-app\src\pages\help\detail.vue * @FilePath: \hls-xcmg-vue-app\src\pages\help\detail.vue
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<p></p> <p></p>
</div> </div>
<div v-if="title === '如何进行“产品试算”?'" class="article"> <div v-if="title === '如何进行“产品试算”?'" class="article">
<p>进入首页“产品试算”功能,选择产品进入试算页面,填写相关数据,即可进行试算。</p> <p>进入首页“产品试算”功能,选择产品进入试算页面,填写设备金额、保险押金、还款日期等数据,即可进行试算。</p>
</div> </div>
<div v-if="title === '产品展示功能如何使用?'" class="article"> <div v-if="title === '产品展示功能如何使用?'" class="article">
<p>进入首页“产品查询”功能,选择产品名称即可展示该类产品。</p> <p>进入首页“产品查询”功能,选择产品名称即可展示该类产品。</p>
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<div class="write"> <div class="write">
<div class="box"> <div class="box">
<span>问题描述</span> <span>问题描述</span>
<textarea placeholder="请输入您的描述……" /> <textarea v-model="question_desc" placeholder="请输入您的描述……" />
</div> </div>
</div> </div>
<div class="upLoad"> <div class="upLoad">
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
<p class="info">欢迎您为我们提出宝贵的意见与建议,您留下的任何信息都将改善我们的软件</p> <p class="info">欢迎您为我们提出宝贵的意见与建议,您留下的任何信息都将改善我们的软件</p>
</h-content> </h-content>
<bottom-tab> <bottom-tab>
<tab-button class="bottom-button">&nbsp;&nbsp;</tab-button> <tab-button class="bottom-button" @click.native = "handSubmit">&nbsp;&nbsp;</tab-button>
</bottom-tab> </bottom-tab>
</h-view> </h-view>
</template> </template>
...@@ -51,13 +51,36 @@ import ps from '../../assets/constractSigning/bank.png' ...@@ -51,13 +51,36 @@ import ps from '../../assets/constractSigning/bank.png'
export default { export default {
data () { data () {
return { return {
question_desc: '', // 问题描述
list: { list: {
chck_id: '123456', chck_id: '123456',
}, },
upload_list: [], // 上传图片列表 upload_list: [], // 上传图片列表
} }
}, },
beforeRouteEnter (to, from, next) {
next(vm => {
if (from.name === 'HelpList') {
vm.question_desc = ''
}
})
},
methods: { methods: {
handSubmit () {
let vm = this
let url = process.env.basePath + 'app_question_save'
let param = {
'master': {
user_phone: window.localStorage.user_phone,
question_desc: vm.question_desc,
},
}
vm.hlsPopup.showLoading('提交数据中!')
vm.hlsHttp.post(url, param).then(function (res) {
vm.hlsPopup.hideLoading()
console.log(',,,,,', res)
})
},
// 图片上传入口 // 图片上传入口
imgUploadShow (check_id) { imgUploadShow (check_id) {
let vm = this let vm = this
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<li @click="changeDetail('如何通过扫描录入进件?')">如何通过扫描录入进件?</li> <li @click="changeDetail('如何通过扫描录入进件?')">如何通过扫描录入进件?</li>
</ul> </ul>
</div> </div>
<div class="question"> <!-- <div class="question">
<div class="question-top" @click="show(1)"> <div class="question-top" @click="show(1)">
<span>客户绑定相关问题</span> <span>客户绑定相关问题</span>
<img class="img1" src="@/assets/help/down.png" > <img class="img1" src="@/assets/help/down.png" >
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
<li>如何进行客户绑定?</li> <li>如何进行客户绑定?</li>
<li>如何通过扫描录入进件?</li> <li>如何通过扫描录入进件?</li>
</ul> </ul>
</div> </div> -->
<div class="question"> <div class="question">
<div class="question-top" @click="show(2)"> <div class="question-top" @click="show(2)">
<span>功能相关问题</span> <span>功能相关问题</span>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Descrip: 产品明细 * @Descrip: 产品明细
* @Author: your name * @Author: your name
* @Date: 2019-10-15 14:30:00 * @Date: 2019-10-15 14:30:00
* @LastEditTime: 2019-11-29 09:21:47 * @LastEditTime: 2019-12-03 15:36:03
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
--> -->
<template> <template>
...@@ -294,6 +294,7 @@ export default { ...@@ -294,6 +294,7 @@ export default {
let vm = this let vm = this
let url = $config.basePath + 'prd_product_conf' let url = $config.basePath + 'prd_product_conf'
let param = { let param = {
bp_id: vm.bp_id,
product_id: vm.$route.params.product_id, product_id: vm.$route.params.product_id,
} }
vm.hlsPopup.showLoading('数据加载中') vm.hlsPopup.showLoading('数据加载中')
......
...@@ -39,15 +39,9 @@ ...@@ -39,15 +39,9 @@
<span class="number">{{ item.total_price }}</span> <span class="number">{{ item.total_price }}</span>
</li> </li>
<li> <li>
<p class="to-unSign" @click="toSign1"> <p v-if="item.interview_status ==='待面签'" class="to-unSign" @click="toSign">
<img src="@/assets/videoSign/unSign.png" >视频面签1 <img src="@/assets/videoSign/unSign.png" >&nbsp;视频面签
</p> </p>
<p class="to-unSign" @click="toSign2">
<img src="@/assets/videoSign/unSign.png" >视频面签2
</p>
<!-- <p v-if="item.leases_status ==='Y'" class="to-sign" @click="toWatch">
<img src="@/assets/videoSign/sign.png" >&nbsp;视频回放
</p>-->
</li> </li>
</ul> </ul>
</div> </div>
...@@ -82,7 +76,7 @@ export default { ...@@ -82,7 +76,7 @@ export default {
if (from.name === 'MyInfo') { if (from.name === 'MyInfo') {
vm.searchInput = '' vm.searchInput = ''
vm.pagenum = 1 vm.pagenum = 1
vm.tabNum = 1 vm.tabNum = 0
vm.submitPagenum = 1 vm.submitPagenum = 1
vm.approvedPagenum = 1 vm.approvedPagenum = 1
vm.approvedFlag = false vm.approvedFlag = false
...@@ -136,7 +130,7 @@ export default { ...@@ -136,7 +130,7 @@ export default {
this.$refs.scroll.update(false) this.$refs.scroll.update(false)
this.$refs.scroll.scrollToTop() this.$refs.scroll.scrollToTop()
}, },
toSign1 () { toSign () {
let vm = this let vm = this
hlsPopup.showConfirm({ hlsPopup.showConfirm({
title: '提示', title: '提示',
...@@ -145,7 +139,7 @@ export default { ...@@ -145,7 +139,7 @@ export default {
var sendStr = 'xcmg' var sendStr = 'xcmg'
if (res) { if (res) {
hls.cordova.cloudroom.CloudRoomService.loginCloudRoom(sendStr, function (data) { hls.cordova.cloudroom.CloudRoomService.loginCloudRoom(sendStr, function (data) {
vm.entrySign1() vm.entrySign()
}, },
function (fail) { function (fail) {
hlsPopup.showLongCenter('登录失败') hlsPopup.showLongCenter('登录失败')
...@@ -156,7 +150,7 @@ export default { ...@@ -156,7 +150,7 @@ export default {
}, },
}) })
}, },
toSign2 () { /*toSign2 () {
let vm = this let vm = this
var sendStr = 'xcmg' var sendStr = 'xcmg'
hls.cordova.cloudroom.CloudRoomService.loginCloudRoom(sendStr, function (data) { hls.cordova.cloudroom.CloudRoomService.loginCloudRoom(sendStr, function (data) {
...@@ -165,8 +159,8 @@ export default { ...@@ -165,8 +159,8 @@ export default {
function (fail) { function (fail) {
hlsPopup.showLongCenter('登录失败') hlsPopup.showLongCenter('登录失败')
}) })
}, },*/
entrySign1 () { entrySign () {
var sendStr = 'xcmg' var sendStr = 'xcmg'
hlsPopup.showConfirm({ hlsPopup.showConfirm({
title: '提示', title: '提示',
...@@ -185,7 +179,7 @@ export default { ...@@ -185,7 +179,7 @@ export default {
}, },
}) })
}, },
entrySign2 () { /* entrySign2 () {
var sendStr = 'xcmg' var sendStr = 'xcmg'
hls.cordova.cloudroom.CloudRoomService.helpYourSelf(sendStr, function (data) { hls.cordova.cloudroom.CloudRoomService.helpYourSelf(sendStr, function (data) {
...@@ -193,7 +187,7 @@ export default { ...@@ -193,7 +187,7 @@ export default {
function (fail) { function (fail) {
hlsPopup.showLongCenter('进入会话失败') hlsPopup.showLongCenter('进入会话失败')
}) })
}, },*/
toWatch () { toWatch () {
hlsPopup.showLongCenter('敬请期待') hlsPopup.showLongCenter('敬请期待')
}, },
...@@ -205,6 +199,7 @@ export default { ...@@ -205,6 +199,7 @@ export default {
pagesize: 10, pagesize: 10,
searchInput: vm.searchInput, searchInput: vm.searchInput,
pagenum: vm.submitPagenum, pagenum: vm.submitPagenum,
// interview_status: '待面签',
user_phone: window.localStorage.getItem('user_phone'), user_phone: window.localStorage.getItem('user_phone'),
} }
hlsPopup.showLoading('请稍候') hlsPopup.showLoading('请稍候')
......
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