12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //卸货
- <template>
- <!-- 卸货卸货实绩页面 -->
- <div class="homeworkPath">
- <div class="top">
- <el-input placeholder="请输入内容" v-model="input" clearable> </el-input>
- <el-button type="primary" class="btn" @click="onclick">
- <i class="el-icon-search"></i>查询
- </el-button>
- </div>
- <dilTable v-bind.sync="option"></dilTable>
- </div>
- </template>
- <script>
- import { getCookie } from "@/utils/util.js";
- export default {
- name: "homeworkPath",
- data() {
- return {
- restaurants: [],
- input: "",
- option: {
- // 表格请求数据的地址
- requestUrl: "",
- },
- };
- },
- created(){
- if(getCookie("orgCode") == "dagangadmin" || getCookie("orgCode") == "zidonghuabu"){
- this.option.requestUrl = "/api/v1/tms/getUnloadResult?apiId=360&orderType=11"
- }else{
- this.option.requestUrl = "/api/v1/tms/getUnloadResult?apiId=360&orderType=11&userId=" + getCookie("orgCode")
- }
- },
- methods: {
- onclick() {
- this.$message.info("功能暂时关闭")
- },
- }
- };
- </script>
- <style lang='scss' scoped>
- .homeworkPath {
- .top {
- padding: 1.25rem 1.875rem;
- .el-input{
- width: 20%;
- }
- }
- }
- </style>
|