Merge branch 'master' of git.zdool.com:xs/yyx/h5
This commit is contained in:
commit
b81d2f99f8
|
@ -111,7 +111,8 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
">
|
"
|
||||||
|
>
|
||||||
<view class="title">
|
<view class="title">
|
||||||
{{ item.title }}
|
{{ item.title }}
|
||||||
</view>
|
</view>
|
||||||
|
@ -206,7 +207,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
showShoudao: false,
|
showShoudao: false,
|
||||||
|
@ -216,10 +217,12 @@
|
||||||
value: 2,
|
value: 2,
|
||||||
rate2: 2,
|
rate2: 2,
|
||||||
total: 0,
|
total: 0,
|
||||||
score: [{
|
score: [
|
||||||
|
{
|
||||||
name: "jack",
|
name: "jack",
|
||||||
star: 0,
|
star: 0,
|
||||||
}, ],
|
},
|
||||||
|
],
|
||||||
starvalue: 0,
|
starvalue: 0,
|
||||||
orderList: [],
|
orderList: [],
|
||||||
tabNum: 1,
|
tabNum: 1,
|
||||||
|
@ -246,7 +249,7 @@
|
||||||
// 下拉刷新
|
// 下拉刷新
|
||||||
onPullDownRefresh() {
|
onPullDownRefresh() {
|
||||||
this.clickTab(this.tabNum);
|
this.clickTab(this.tabNum);
|
||||||
setTimeout(function() {
|
setTimeout(function () {
|
||||||
uni.stopPullDownRefresh();
|
uni.stopPullDownRefresh();
|
||||||
}, 1000);
|
}, 1000);
|
||||||
},
|
},
|
||||||
|
@ -259,6 +262,7 @@
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
clickTab(num) {
|
clickTab(num) {
|
||||||
|
this.orderList = [];
|
||||||
this.receivingList = [];
|
this.receivingList = [];
|
||||||
this.issueList = [];
|
this.issueList = [];
|
||||||
this.tabNum = num;
|
this.tabNum = num;
|
||||||
|
@ -334,9 +338,11 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
|
this.id = "";
|
||||||
this.show = false;
|
this.show = false;
|
||||||
},
|
},
|
||||||
closeRecive() {
|
closeRecive() {
|
||||||
|
this.id = "";
|
||||||
this.showShoudao = false;
|
this.showShoudao = false;
|
||||||
},
|
},
|
||||||
undone(val) {
|
undone(val) {
|
||||||
|
@ -357,7 +363,8 @@
|
||||||
}
|
}
|
||||||
this.http
|
this.http
|
||||||
.request(
|
.request(
|
||||||
`/artCountryside/evaluate?id=${this.id}&evaluate=${this.evaluate}`, {},
|
`/artCountryside/evaluate?id=${this.id}&evaluate=${this.evaluate}`,
|
||||||
|
{},
|
||||||
"POST"
|
"POST"
|
||||||
)
|
)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
|
Loading…
Reference in New Issue