Commit 65699cfa authored by 李晓兵's avatar 李晓兵

''

parent 5e430237
src/assets/messageCenter/noMsg.png

37.1 KB | W: | H:

src/assets/messageCenter/noMsg.png

99.7 KB | W: | H:

src/assets/messageCenter/noMsg.png
src/assets/messageCenter/noMsg.png
src/assets/messageCenter/noMsg.png
src/assets/messageCenter/noMsg.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -41,6 +41,11 @@
</div>
</div>
</scroll>
<div v-if="showList.length === 0">
<div class="display">
<img src="@/assets/messageCenter/noMsg.png" alt="">
</div>
</div>
</h-view>
</template>
<script>
......@@ -193,6 +198,15 @@ export default {
</script>
<style lang="less">
#confirmList {
.display {
position: fixed;
// top: 0;
img {
width: 100%;
height: 100%;
// margin-top: -70px;
}
}
.search {
background-color: #fff;
padding: 8px 12px;
......
......@@ -286,9 +286,12 @@ export default {
return parseFloat(this.saveInfo.equip_price - this.saveInfo.equip_price * this.saveInfo.down_payment_ratio_n.replace('%', '') / 100).toFixed(2)
},
isReadOnly () {
console.log(window.localStorage.contractReadonly + '---------------' + this.fromPage)
if (window.localStorage.contractReadonly === 'true' && this.fromPage === 'list') {
console.log("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&true")
return true
} else {
console.log("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%false")
return false
}
},
......
......@@ -314,7 +314,7 @@ export default {
checkedApproved: false, // 是否特批
bp_class: '',
showModalValue: false,
fromPutted: false, // 从已提交进来
fromPutted: false, // 为true为从已提交进来
keyWord: '',
bp_agent_id: '',
pageNum: 1,
......
......@@ -48,6 +48,11 @@
</div>
</div>
</scroll>
<div v-if="showLists.length === 0">
<div class="display">
<img src="@/assets/messageCenter/noMsg.png" alt="">
</div>
</div>
</h-view>
</template>
......@@ -346,6 +351,15 @@ export default {
<style lang="less" type="text/less">
#contract-signing{
.display {
position: fixed;
// top: 0;
img {
width: 100%;
height: 100%;
// margin-top: -70px;
}
}
.tab-style{
display:flex;
width: 100%;
......
......@@ -46,6 +46,11 @@
</div>
</div>
</scroll>
<div v-if="showLists.length === 0">
<div class="display">
<img src="@/assets/messageCenter/noMsg.png" alt="">
</div>
</div>
</h-view>
</template>
......@@ -327,6 +332,15 @@ export default {
</script>
<style lang="less">
#distribute-sign {
.display {
position: fixed;
// top: 0;
img {
width: 100%;
height: 100%;
// margin-top: -70px;
}
}
.tab-style{
display:flex;
width: 100%;
......
......@@ -123,13 +123,13 @@ export default {
vm.hlsPopup.hideLoading()
if (res.result === 'S') {
vm.prj_lists = res.prj_lists
vm.prj_lists.forEach(i => {
/* vm.prj_lists.forEach(i => {
i.cf_lists.forEach(j => {
// let num = parseFloat(j.due_amount) - parseFloat(j.received_amount)
let num = ''
vm.$set(j, 'amount', num)
})
})
}) */
} else {
hlsPopup.showLongCenter(res.message)
}
......@@ -140,7 +140,11 @@ export default {
this.prj_lists.forEach(i => {
i.cf_lists.forEach(j => {
j.project_id = i.project_id
data.push(j)
if (!j.amount || j.amount === 0) {
} else {
data.push(j)
}
})
})
data.forEach(i => {
......
......@@ -217,13 +217,13 @@ export default {
vm.hlsPopup.hideLoading()
if (res.result === 'S') {
vm.info = res.prj_lists
vm.info.forEach(i => {
/* vm.info.forEach(i => {
i.con_lists.forEach(j => {
// let num = (parseFloat(j.due_amount) - parseFloat(j.received_amount))
let num = ''
vm.$set(j, 'amount', num)
})
})
})*/
vm.showList = vm.info
} else {
hlsPopup.showLongCenter(res.message)
......@@ -234,11 +234,15 @@ export default {
let pushList = []
this.info.forEach(i => {
i.con_lists.forEach(j => {
let obj = {}
obj.bp_id = window.localStorage.getItem('bp_id')
obj.amount = j.amount
obj.contract_id = j.contract_id
pushList.push(obj)
if (!j.amount || j.amount === 0) {
}else{
let obj = {}
obj.bp_id = window.localStorage.getItem('bp_id')
obj.amount = j.amount
obj.contract_id = j.contract_id
pushList.push(obj)
}
})
})
return pushList
......
......@@ -33,6 +33,11 @@
</list-item>
</section>
</scroll>
<div v-if="showList.length === 0">
<div class="display">
<img src="@/assets/messageCenter/noMsg.png" alt="">
</div>
</div>
</h-view>
</template>
......@@ -177,6 +182,15 @@ export default {
<style lang="less" rel="stylesheet">
#reimburse {
.display {
position: fixed;
// top: 0;
img {
width: 100%;
height: 100%;
// margin-top: -70px;
}
}
.h-header-btn {
img {
width: 16px;
......
......@@ -48,6 +48,11 @@
</div>
</div>
</scroll>
<div v-if="showLists.length === 0">
<div class="display">
<img src="@/assets/messageCenter/noMsg.png" alt="">
</div>
</div>
</h-view>
</template>
<script>
......@@ -380,6 +385,15 @@ export default {
</script>
<style lang="less">
#videoList {
.display {
position: fixed;
// top: 0;
img {
width: 100%;
height: 100%;
// margin-top: -70px;
}
}
.search {
background-color: #fff;
padding: 8px 12px;
......
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