|
|
|
@ -56,6 +56,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { getFeedbackRecords, addFeedbackRecord} from "../../api/customerServicePlatform/customerServicePlatform"; |
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
@ -82,6 +83,7 @@ |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
this.iSMT = uni.getSystemInfoSync().statusBarHeight; |
|
|
|
this.loadHistoryList() |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
goBack() { |
|
|
|
@ -91,8 +93,15 @@ |
|
|
|
window.history.back(); |
|
|
|
} |
|
|
|
}, |
|
|
|
loadHistoryList(){ |
|
|
|
|
|
|
|
async loadHistoryList(){ |
|
|
|
console.log("????") |
|
|
|
const res = await getFeedbackRecords({ |
|
|
|
token:'dccec0b65a94f498b8183a17589ab16e' |
|
|
|
}) |
|
|
|
console.log(res) |
|
|
|
if(res.code == 200){ |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
previewImage(list, index) { |
|
|
|
if (typeof uni !== 'undefined' && uni.previewImage) { |
|
|
|
|