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