Sfoglia il codice sorgente

Merge branch 'master' of http://git.zthymaoyi.com/gongdecai/wangluohuoyun-htqd

gjy 2 anni fa
parent
commit
c533cfac11

+ 8 - 1
src/api/cargoOwnerManagement.js

@@ -73,4 +73,11 @@ export function editInfo(data) {
      data: data,
   })
 }
-
+// 货主身份
+export function getInfo(data) {
+  return request({
+    url: '/hyCargoOwnerPayeeInfo/getPayee',
+    method: 'get',
+     params: data,
+  })
+}

+ 0 - 1
src/components/mapdrag/indexMap.vue

@@ -45,7 +45,6 @@ export default {
   props: ["radio", "orderid"],
   watch: {
     radio: function (val1, val2) {
-      debugger;
       if (val1 == 1) {
         var that = this;
         travelpath({ orderId: that.orderid })

+ 1 - 1
src/router/orderManagement/index.js

@@ -18,7 +18,7 @@ const orderManagementRouter = {
         name: 'orderAudit',
         component: () => import('@/views/orderManagement/orderAudit'),
         meta: {
-            title: '订单审核',
+            title: '订单信息',
             icon: ''
         }
     },

+ 1 - 1
src/settings.js

@@ -1,6 +1,6 @@
 module.exports = {
 
-  title: '智运管理平台',
+  title: '畅运通管理平台',
 
   /**
    * @type {boolean} true | false

+ 272 - 188
src/views/cargoOwnerManagement/empowerExamine.vue

@@ -4,7 +4,7 @@
     <div class="center_css">
       <div class="top_css">
         <el-row>
-          <el-col :span="14" style="height: 45px;">
+          <el-col :span="14" style="height: 45px">
             <!-- <el-button type="primary">添加</el-button> -->
           </el-col>
           <el-col :span="10">
@@ -22,7 +22,7 @@
                 @click="searchBtn('')">
                 全部
               </div>
-              <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item " @click="searchBtn(1)">
+              <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(1)">
                 待审核
               </div>
               <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
@@ -56,8 +56,11 @@
         <el-table-column prop="accumulatedFreight" label="累计支付运费(元)" min-width="148"></el-table-column>
         <el-table-column prop="amountMoney" label="代理身份">
           <template slot-scope="scope">
-            <el-popover placement="top-start" title="" width="200" trigger="hover"
-              :content="scope.row.proxyIdentity?scope.row.proxyIdentity:'暂无代理企业'">
+            <el-popover placement="top-start" title="" width="200" trigger="hover" :content="
+                scope.row.proxyIdentity
+                  ? scope.row.proxyIdentity
+                  : '暂无代理企业'
+              ">
               <span class="btn_css" slot="reference">企业</span>
             </el-popover>
           </template>
@@ -66,21 +69,21 @@
           <template slot-scope="scope">
             <div class="advancePayment-style">
               <el-input placeholder="0" v-model="scope.row.advancePayment"></el-input>
-              <i class="el-icon-edit" style="margin-top:8px" @click="editRatio(scope.row)"></i>
+              <i class="el-icon-edit" style="margin-top: 8px" @click="editRatio(scope.row)"></i>
               <!-- <span class="btn_css" @click="userSee(scope.row)">查看</span> -->
             </div>
           </template>
         </el-table-column>
-        <el-table-column label="账单" min-width="133">
+        <el-table-column label="账户" min-width="180">
           <template slot-scope="scope">
             <el-popover placement="right" width="400" trigger="click" @show="getBillList(scope.row.commonId)">
               <div class="bill-content">
-                <div class="bill-item" v-for="(item,index) in billList" :key="index">
+                <div class="bill-item" v-for="(item, index) in billList" :key="index">
                   <div class="row1">
                     <div class="left">
-                      {{item.types}}
+                      {{ item.types }}
                     </div>
-                    <div class="right">{{item.amountMoney}}元</div>
+                    <div class="right">{{ item.amountMoney }}元</div>
                   </div>
                   <!-- <div class="row2">
                     <div class="left">
@@ -90,8 +93,11 @@
                   </div> -->
                 </div>
               </div>
-              <el-button slot="reference">账单</el-button>
+              <!-- <el-button slot="reference">账单</el-button> -->
+              <span slot="reference" class="btn_css">账单</span>
             </el-popover>
+            <!-- <el-button @click="seeInfo(scope.row)">信息</el-button> -->
+            <span class="btn_css">信息</span>
           </template>
         </el-table-column>
         <el-table-column prop="authenticationStatus" label="身份证">
@@ -114,12 +120,14 @@
             <el-dropdown>
               <span class="btn_css">•••</span>
               <el-dropdown-menu slot="dropdown">
-                <el-dropdown-item
-                  :disabled="scope.row.authenticationStatus == '已禁用' && scope.row.authenticationStatus != '审核中'"><span
-                    @click="switchChange(scope.row,'1')">禁用</span></el-dropdown-item>
-                <el-dropdown-item
-                  :disabled="scope.row.authenticationStatus != '已禁用' && scope.row.authenticationStatus != '审核中'"><span
-                    @click="switchChange(scope.row,'2')">启用</span></el-dropdown-item>
+                <el-dropdown-item :disabled="
+                    scope.row.authenticationStatus == '已禁用' &&
+                    scope.row.authenticationStatus != '审核中'
+                  "><span @click="switchChange(scope.row, '1')">禁用</span></el-dropdown-item>
+                <el-dropdown-item :disabled="
+                    scope.row.authenticationStatus != '已禁用' &&
+                    scope.row.authenticationStatus != '审核中'
+                  "><span @click="switchChange(scope.row, '2')">启用</span></el-dropdown-item>
               </el-dropdown-menu>
             </el-dropdown>
           </template>
@@ -130,16 +138,19 @@
       style="text-align: center; margin-top: 10px" :page-size="deptCircularPage.pageSize"
       layout="total, sizes, prev, pager, next, jumper" :total="deptBudgetTotal">
     </el-pagination>
-    <el-dialog :close-on-click-modal='false' title="身份信息" :visible.sync="userInfo" width="500px" :before-close="userInfoClose">
+    <el-dialog :close-on-click-modal="false" title="身份信息" :visible.sync="userInfo" width="500px"
+      :before-close="userInfoClose">
       <div class="user">
         <!-- .user -->
         <div class="title_css">姓名</div>
-        <div class="name_css">{{idSee.name}}</div>
+        <div class="name_css">{{ idSee.name }}</div>
         <div class="title_css">身份证号</div>
-        <div class="name_css">{{idSee.cardNumber}}</div>
+        <div class="name_css">{{ idSee.cardNumber }}</div>
         <div class="title_css">有效期</div>
-        <div class="name_css">{{idSee.cardValidityDate}} <span style="color: #EF4C33;margin-left: 10px"
-            v-if="false">已过期</span></div>
+        <div class="name_css">
+          {{ idSee.cardValidityDate }}
+          <span style="color: #ef4c33; margin-left: 10px" v-if="false">已过期</span>
+        </div>
         <div class="title_css">身份证人像面</div>
         <img :src="idSee.cardAddressUrl" class="user_item" @click="enlarge(idSee.cardAddressUrl)" />
         <div class="title_css">身份证国徽面</div>
@@ -149,7 +160,8 @@
         </div>
       </div>
     </el-dialog>
-    <el-dialog :close-on-click-modal='false' title="驳回认证" :visible.sync="rejectInfo" width="400px" :before-close="rejectClose">
+    <el-dialog :close-on-click-modal="false" title="驳回认证" :visible.sync="rejectInfo" width="400px"
+      :before-close="rejectClose">
       <div>
         <!-- <div><span class="sign">*</span>选择驳回原因</div> -->
         <div class="form_css">
@@ -161,7 +173,7 @@
 							<el-checkbox label="证件信息填写错误"></el-checkbox>
 							<el-checkbox label="其他"></el-checkbox>
 						</el-checkbox-group> -->
-            <div style="margin-bottom: 20px;">驳回原因描述(必填)</div>
+            <div style="margin-bottom: 20px">驳回原因描述(必填)</div>
             <el-input type="textarea" :rows="3" resize="none" placeholder="输入驳回原因,6-100个字" maxlength="100"
               v-model="form.rejectReasonDescription"></el-input>
             <div class="form_btn">
@@ -172,7 +184,8 @@
         </div>
       </div>
     </el-dialog>
-    <el-dialog :close-on-click-modal='false' title="发送信息" :visible.sync="sendInfo" width="400px" :before-close="sendInfoClose">
+    <el-dialog :close-on-click-modal="false" title="发送信息" :visible.sync="sendInfo" width="400px"
+      :before-close="sendInfoClose">
       <div class="Info_css">
         <div class="Info_title">标题</div>
         <div class="Info_item">
@@ -189,7 +202,34 @@
         </div>
       </div>
     </el-dialog>
-    <el-image-viewer v-if="imgsVisible" :on-close="closeImgViewer" :url-list="srcList" style="z-index:9999" />
+    <!-- 账户信息 -->
+    <el-dialog :close-on-click-modal="false" title="账户信息" :visible.sync="payInfo" width="500px"
+      :before-close="payClose">
+      <div class="pay">
+        <div class="pay_css">
+          <div class="title_css">收款人:</div>
+          <div class="name_css">{{ paySee.cardholderName }}</div>
+        </div>
+        <div class="pay_css">
+          <div class="title_css">账号:</div>
+          <div class="id_css">{{ paySee.bankCard }}</div>
+        </div>
+        <div class="pay_css">
+          <div class="title_css">开户行:</div>
+          <div class="pay_name">{{ paySee.bankDeposit }}</div>
+        </div>
+        <div class="pay_css">
+          <div class="title_css">开户支行:</div>
+          <div class="pay_name">{{ paySee.bankDepositBranch }}</div>
+        </div>
+      </div>
+      <!-- <img
+          :src="paySee.payeeAddressUrl"
+          class="user_item"
+          @click="enlarge(paySee.payeeAddressUrl)"
+        /> -->
+    </el-dialog>
+    <el-image-viewer v-if="imgsVisible" :on-close="closeImgViewer" :url-list="srcList" style="z-index: 9999" />
   </div>
 </template>
 <script>
@@ -198,8 +238,9 @@
     toExamine,
     postNews,
     getBillList,
-    editInfo
-  } from '@/api/cargoOwnerManagement'
+    editInfo,
+    getInfo,
+  } from "@/api/cargoOwnerManagement";
   export default {
     components: {
       "el-image-viewer": () =>
@@ -227,225 +268,262 @@
         //图片预览
         srcList: [],
         imgsVisible: false,
+        //账户信息
+        payInfo: false,
+        paySee: {},
       };
     },
     mounted() {
-      this.getList()
+      this.getList();
     },
     methods: {
+      seeInfo(val) {
+        this.listLoading = true;
+        getInfo({
+            commonId: val.commonId
+          })
+          .then((response) => {
+            if (response.code == 200) {
+              this.paySee = response.data
+              this.payInfo = true;
+              if (!this.paySee) {
+                this.$message.error("暂无数据!")
+              }
+            }
+          })
+          .catch(() => {
+            this.listLoading = false;
+          });
+
+      },
+      payClose() {
+        this.payInfo = false;
+      },
       closeImgViewer() {
-         this.srcList = []
+        this.srcList = [];
         this.imgsVisible = false;
       },
       enlarge(url) {
         this.imgsVisible = true;
-        this.srcList.push(url)
+        this.srcList.push(url);
       },
-      IDLook(val) { //查看身份证
-        this.idSee = val
-        this.userInfo = true
+      IDLook(val) {
+        //查看身份证
+        this.idSee = val;
+        this.userInfo = true;
       },
       editRatio(val) {
-        this.$confirm("确定修改该货主的垫付比例?", '提示', {
-            confirmButtonText: '确定',
-            cancelButtonText: '取消',
-            type: 'warning',
-          })
-          .then(() => {
-            this.listLoading = true;
-            editInfo(val)
-              .then((response) => {
-                if (response.code == 200) {
-                  this.$notify({
-                    title: "成功",
-                    message: "修改成功!",
-                    type: "success",
-                  });
-                  this.getList()
-                }
-              }).catch(() => {
-                this.listLoading = false;
-              });
-
-          })
+        this.$confirm("确定修改该货主的垫付比例?", "提示", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning",
+        }).then(() => {
+          this.listLoading = true;
+          editInfo(val)
+            .then((response) => {
+              if (response.code == 200) {
+                this.$notify({
+                  title: "成功",
+                  message: "修改成功!",
+                  type: "success",
+                });
+                this.getList();
+              }
+            })
+            .catch(() => {
+              this.listLoading = false;
+            });
+        });
       },
       getBillList(id) {
         let _obj = {
           commonId: id,
           pageSize: 999,
-          currentPage: 1
-        }
-        getBillList(_obj).then(response => {
-            this.billList = response.data.records
+          currentPage: 1,
+        };
+        getBillList(_obj)
+          .then((response) => {
+            this.billList = response.data.records;
           })
           .catch(() => {
-            this.loading = false
-          })
+            this.loading = false;
+          });
       },
       getList() {
-        this.loading = true
-        let _obj = {}
-        _obj.currentPage = this.currentPage
-        _obj.pageSize = this.pageSize
-        _obj.searchKeyWord = this.searchkeyWord
-        _obj.searchType = this.search
-        getList(_obj).then(response => {
-            this.tableData = response.data.records
-            this.deptBudgetTotal = response.data.total
-            this.listLoading = false
+        this.loading = true;
+        let _obj = {};
+        _obj.currentPage = this.currentPage;
+        _obj.pageSize = this.pageSize;
+        _obj.searchKeyWord = this.searchkeyWord;
+        _obj.searchType = this.search;
+        getList(_obj)
+          .then((response) => {
+            this.tableData = response.data.records;
+            this.deptBudgetTotal = response.data.total;
+            this.listLoading = false;
           })
           .catch(() => {
-            this.loading = false
-          })
+            this.loading = false;
+          });
       },
       switchChange(row, num) {
-        var _examine = {}
-        _examine.id = row.id
-        let title
+        var _examine = {};
+        _examine.id = row.id;
+        let title;
         if (num == 1) {
-          _examine.flag = 3
-          title = "禁用后客户将无法使用所有功能,是否确定禁用?"
+          _examine.flag = 3;
+          title = "禁用后客户将无法使用所有功能,是否确定禁用?";
         } else if (num == 2) {
-          title = "确定重新启用该用户?"
-          _examine.flag = 4
+          title = "确定重新启用该用户?";
+          _examine.flag = 4;
         }
-        this.$confirm(title, '提示', {
-            confirmButtonText: '确定',
-            cancelButtonText: '取消',
-            type: 'warning',
-          })
-          .then(() => {
-            this.listLoading = true
-            toExamine(_examine).then(response => {
-                if (num == 1) {
-                  this.$notify({
-                    title: '成功',
-                    message: '禁用成功!',
-                    type: 'success'
-                  });
-                } else if (num == 2) {
-                  this.$notify({
-                    title: '成功',
-                    message: '启用成功!',
-                    type: 'success'
-                  });
-                }
-                this.getList()
-                this.listLoading = false
-              })
-              .catch(() => {
-                this.loading = false
-              })
-          })
+        this.$confirm(title, "提示", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning",
+        }).then(() => {
+          this.listLoading = true;
+          toExamine(_examine)
+            .then((response) => {
+              if (num == 1) {
+                this.$notify({
+                  title: "成功",
+                  message: "禁用成功!",
+                  type: "success",
+                });
+              } else if (num == 2) {
+                this.$notify({
+                  title: "成功",
+                  message: "启用成功!",
+                  type: "success",
+                });
+              }
+              this.getList();
+              this.listLoading = false;
+            })
+            .catch(() => {
+              this.loading = false;
+            });
+        });
       },
       newInfo(row) {
-        this.Info.newsTypeKey = 1
-        this.Info.newsType = "系统消息"
-        this.Info.crtCommonId = JSON.parse(localStorage.getItem('UserInfo')).userId
-        this.Info.reCommonId = row.commonId
-        this.Info.bussId = row.id
-        this.sendInfo = true
+        this.Info.newsTypeKey = 1;
+        this.Info.newsType = "系统消息";
+        this.Info.crtCommonId = JSON.parse(
+          localStorage.getItem("UserInfo")
+        ).userId;
+        this.Info.reCommonId = row.commonId;
+        this.Info.bussId = row.id;
+        this.sendInfo = true;
       },
       sendInfoClose() {
-        this.Info = {}
-        this.sendInfo = false
+        this.Info = {};
+        this.sendInfo = false;
       },
       adopt(row) {
-        this.$confirm('确定通过身份审核?', '提示', {
-            confirmButtonText: '确定',
-            cancelButtonText: '取消',
-            type: 'warning',
-          })
-          .then(() => {
-            this.listLoading = true
-            var _examine = {}
-            _examine.id = row.id
-            _examine.flag = 1
-            toExamine(_examine).then(response => {
-                this.$notify({
-                  title: '成功',
-                  message: '通过成功!',
-                  type: 'success'
-                });
-                this.getList()
-                this.listLoading = false
-              })
-              .catch(() => {
-                this.loading = false
-              })
-          })
+        this.$confirm("确定通过身份审核?", "提示", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning",
+        }).then(() => {
+          this.listLoading = true;
+          var _examine = {};
+          _examine.id = row.id;
+          _examine.flag = 1;
+          toExamine(_examine)
+            .then((response) => {
+              this.$notify({
+                title: "成功",
+                message: "通过成功!",
+                type: "success",
+              });
+              this.getList();
+              this.listLoading = false;
+            })
+            .catch(() => {
+              this.loading = false;
+            });
+        });
       },
       reject(row) {
-        this.form.id = row.id
-        this.form.flag = 2
-        this.rejectInfo = true
+        this.form.id = row.id;
+        this.form.flag = 2;
+        this.rejectInfo = true;
       },
       rejectClose() {
-        this.form.rejectReasonDescription = ""
-        this.rejectInfo = false
+        this.form.rejectReasonDescription = "";
+        this.rejectInfo = false;
       },
       submit() {
         if (!this.form.rejectReasonDescription) {
-          this.$message.error("请输入驳回原因")
-          return
+          this.$message.error("请输入驳回原因");
+          return;
         }
-        if (this.form.rejectReasonDescription.length < 6 || this.form.rejectReasonDescription.length > 100) {
-          this.$message.error("驳回原因字数应在6-100之间")
-          return
+        if (
+          this.form.rejectReasonDescription.length < 6 ||
+          this.form.rejectReasonDescription.length > 100
+        ) {
+          this.$message.error("驳回原因字数应在6-100之间");
+          return;
         }
-        this.listLoading = true
-        toExamine(this.form).then(response => {
+        this.listLoading = true;
+        toExamine(this.form)
+          .then((response) => {
             this.$notify({
-              title: '成功',
-              message: '驳回成功!',
-              type: 'success'
+              title: "成功",
+              message: "驳回成功!",
+              type: "success",
             });
-            this.form = {}
-            this.rejectInfo = false
-            this.getList()
-            this.listLoading = false
+            this.form = {};
+            this.rejectInfo = false;
+            this.getList();
+            this.listLoading = false;
           })
           .catch(() => {
-            this.loading = false
-          })
+            this.loading = false;
+          });
       },
       submitInfo() {
         if (!this.Info.newsTitle) {
-          this.$message.error("请输入标题")
-          return
+          this.$message.error("请输入标题");
+          return;
         }
         if (!this.Info.newsContent) {
-          this.$message.error("请输入内容")
-          return
+          this.$message.error("请输入内容");
+          return;
         }
         if (this.Info.newsTitle.length < 4 || this.Info.newsTitle.length > 20) {
-          this.$message.error("标题字数应在4-20之间")
-          return
+          this.$message.error("标题字数应在4-20之间");
+          return;
         }
-        if (this.Info.newsContent.length < 10 || this.Info.newsContent.length > 100) {
-          this.$message.error("消息内容字数应在10-100之间")
-          return
+        if (
+          this.Info.newsContent.length < 10 ||
+          this.Info.newsContent.length > 100
+        ) {
+          this.$message.error("消息内容字数应在10-100之间");
+          return;
         }
-        this.listLoading = true
-        postNews(this.Info).then(response => {
+        this.listLoading = true;
+        postNews(this.Info)
+          .then((response) => {
             this.$notify({
-              title: '成功',
-              message: '发送成功!',
-              type: 'success'
+              title: "成功",
+              message: "发送成功!",
+              type: "success",
             });
-            this.sendInfoClose()
-            this.listLoading = false
+            this.sendInfoClose();
+            this.listLoading = false;
           })
           .catch(() => {
-            this.loading = false
-          })
+            this.loading = false;
+          });
       },
       userSee(row) {
-        this.idSee.cardAddressUrl = row.cardAddressUrl
-        this.idSee.cardBackAddressUrl = row.cardBackAddressUrl
-        this.idSee.name = row.name
-        this.idSee.cardNumber = row.cardNumber
-        this.idSee.cardValidityDate = row.cardValidityDate
+        this.idSee.cardAddressUrl = row.cardAddressUrl;
+        this.idSee.cardBackAddressUrl = row.cardBackAddressUrl;
+        this.idSee.name = row.name;
+        this.idSee.cardNumber = row.cardNumber;
+        this.idSee.cardValidityDate = row.cardValidityDate;
         this.userInfo = true;
       },
       userInfoClose() {
@@ -589,12 +667,12 @@
     margin-bottom: 20px;
 
     .title_css {
-      color: #9D9D9D;
+      color: #9d9d9d;
       margin-bottom: 6px;
     }
 
     .name_css {
-      color: #0D0D0D;
+      color: #0d0d0d;
       margin-bottom: 20px;
     }
 
@@ -614,8 +692,8 @@
   }
 
   .btn_css {
-    color: #409EFF;
-    cursor: pointer
+    color: #409eff;
+    cursor: pointer;
   }
 
   .sign {
@@ -669,10 +747,16 @@
 
   .advancePayment-style {
     display: flex;
-
   }
 
   ::v-deep .advancePayment-style .el-input__inner {
     height: 30px;
   }
+
+  .pay {
+    .pay_css {
+      display: flex;
+      margin-bottom: 20px;
+    }
+  }
 </style>

+ 5 - 5
src/views/enterpriseManagement/enterpriseAudit.vue

@@ -26,10 +26,10 @@
               <div :class="search == 1 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(1)">
                 待审核
               </div>
-              <div :class="search == 3 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(3)">
+              <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
                 已通过
               </div>
-              <div :class="search == 2 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(2)">
+              <div :class="search == 3 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(3)">
                 已驳回
               </div>
               <div :class="search == 4 ? 'search' : 'searchNo'" class="search_item" @click="searchBtn(4)">
@@ -129,8 +129,8 @@
         <div class="right_item">{{infoData.legalPersonName}}</div>
         <div class="right_title">联系方式</div>
         <div class="right_item">{{infoData.accountNumber}}</div>
-<!--        <div class="right_title">注册实缴金额(万元)</div>
-        <div class="right_item">{{infoData.registeredPaidAmount}}</div> -->
+       <div class="right_title">通讯地址</div>
+        <div class="right_item">{{infoData.mailingAddress}}</div>
         <div class="right_title">上传营业执照</div>
         <div class="right_item">
           <img :src="infoData.businessLicenseAddressUrl" class="right_img" @click="enlarge(infoData.businessLicenseAddressUrl)">
@@ -149,7 +149,7 @@
           <div class="right_title">身份证有效期</div>
         <div class="right_item">{{infoData.cardValidityDate}}</div>
 
-        <div class="right_title">{{infoData.landOwnership == 0 ? "房产证":"租赁合同"}}</div>
+        <div class="right_title" v-if="infoData.advanceFreightService == 1">{{infoData.landOwnership == 0 ? "房产证":"租赁合同"}}</div>
         <div class="right_item"  v-for="(item , index) in infoData.imgs" :key="index">
           <img :src="item" class="right_img" @click="enlarge(item)">
         </div>

+ 2 - 2
src/views/feedbackManagement/userFeedback.vue

@@ -39,7 +39,7 @@
         <el-table-column prop="initiatorNumber" label="发起方账号"></el-table-column>
         <el-table-column prop="passive" label="被动方"></el-table-column>
         <el-table-column prop="passiveNumber" label="被动方账号"></el-table-column>
-        <el-table-column prop="content" label="内容"></el-table-column>
+        <el-table-column prop="content" label="内容" min-width="200"></el-table-column>
         <el-table-column prop="authenticationStatus" label="附图">
           <template scope="scope">
             <span  class="btn_css" @click="seeUrl(scope.row)">查看</span>
@@ -56,7 +56,7 @@
             <span v-if="scope.row.processingResultsSatisfaction == 5">非常满意</span>
           </template>
         </el-table-column>
-        <el-table-column label="操作" min-width="300">
+        <el-table-column label="操作" min-width="100">
           <template slot-scope="scope">
             <el-link target="_blank" type="primary" :underline="false" @click="lookInfo(scope.row)">查看</el-link>
             <el-divider direction="vertical"></el-divider>

+ 1 - 1
src/views/login/index.vue

@@ -3,7 +3,7 @@
 		<el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form" auto-complete="on"
 			label-position="left">
 			<div class="title-container">
-				<h3 class="title">智运管理平台</h3>
+				<h3 class="title">畅运通管理平台</h3>
 			</div>
 
 			<el-form-item prop="username">

+ 0 - 1
src/views/officialWebsiteManagement/newsAdd.vue

@@ -147,7 +147,6 @@
         return isIMAGE && isLt1M
       },
       uploadSuccess(res) {
-        debugger
         // 获取富文本组件实例
         let quill = this.$refs.QuillEditor.quill
         // 如果上传成功

+ 0 - 3
src/views/officialWebsiteManagement/newsEdit.vue

@@ -127,12 +127,10 @@
     },
     methods: {
       getList() {
-        debugger
         this.listLoading = true
         var _obj = {}
         _obj.id = this.id
         seeData(_obj).then(response => {
-            debugger
             this.form = response.data
             console.log(this.form)
             this.listLoading = false
@@ -166,7 +164,6 @@
         return isIMAGE && isLt1M
       },
       uploadSuccess(res) {
-        debugger
         // 获取富文本组件实例
         let quill = this.$refs.QuillEditor.quill
         // 如果上传成功

+ 1 - 2
src/views/officialWebsiteManagement/newsLook.vue

@@ -38,9 +38,8 @@
 				this.listLoading = true
 				var _obj = {}
 				_obj.id = this.id
-				seeData(_obj).then(response => {debugger
+				seeData(_obj).then(response => {
 						this.form = response.data
-            console.log(this.form)
 						this.listLoading = false
 					})
 					.catch(() => {

+ 0 - 1
src/views/officialWebsiteManagement/noticeAdd.vue

@@ -147,7 +147,6 @@
         return isIMAGE && isLt1M
       },
       uploadSuccess(res) {
-        debugger
         // 获取富文本组件实例
         let quill = this.$refs.QuillEditor.quill
         // 如果上传成功

+ 0 - 3
src/views/officialWebsiteManagement/noticeEdit.vue

@@ -127,12 +127,10 @@
     },
     methods: {
       getList() {
-        debugger
         this.listLoading = true
         var _obj = {}
         _obj.id = this.id
         seeData(_obj).then(response => {
-            debugger
             this.form = response.data
             console.log(this.form)
             this.listLoading = false
@@ -166,7 +164,6 @@
         return isIMAGE && isLt1M
       },
       uploadSuccess(res) {
-        debugger
         // 获取富文本组件实例
         let quill = this.$refs.QuillEditor.quill
         // 如果上传成功

+ 0 - 1
src/views/officialWebsiteManagement/publicityAdd.vue

@@ -147,7 +147,6 @@
         return isIMAGE && isLt1M
       },
       uploadSuccess(res) {
-        debugger
         // 获取富文本组件实例
         let quill = this.$refs.QuillEditor.quill
         // 如果上传成功

+ 0 - 3
src/views/officialWebsiteManagement/publicityEdit.vue

@@ -127,12 +127,10 @@
     },
     methods: {
       getList() {
-        debugger
         this.listLoading = true
         var _obj = {}
         _obj.id = this.id
         seeData(_obj).then(response => {
-            debugger
             this.form = response.data
             console.log(this.form)
             this.listLoading = false
@@ -166,7 +164,6 @@
         return isIMAGE && isLt1M
       },
       uploadSuccess(res) {
-        debugger
         // 获取富文本组件实例
         let quill = this.$refs.QuillEditor.quill
         // 如果上传成功

+ 1 - 2
src/views/officialWebsiteManagement/publicityLook.vue

@@ -38,9 +38,8 @@
 				this.listLoading = true
 				var _obj = {}
 				_obj.id = this.id
-				seeData(_obj).then(response => {debugger
+				seeData(_obj).then(response => {
 						this.form = response.data
-            console.log(this.form)
 						this.listLoading = false
 					})
 					.catch(() => {

+ 18 - 2
src/views/orderManagement/orderAudit.vue

@@ -211,6 +211,21 @@
         </div>
         <div class="right_title">货名</div>
         <div class="right_item">{{costData.goodsName}}</div>
+        <div class="right_title">发货联系人</div>
+        <div class="right_item">{{costData.publishTaskInfo.sender}}</div>
+         <div class="right_title">发货联系人电话</div>
+        <div class="right_item">{{costData.publishTaskInfo.senderPhone}}</div>
+
+         <div class="right_title">收货联系人</div>
+        <div class="right_item">{{costData.publishTaskInfo.receiver}}</div>
+         <div class="right_title">收货联系人电话</div>
+        <div class="right_item">{{costData.publishTaskInfo.receiverPhone}}</div>
+         <div class="right_title">收货人身份证号</div>
+        <div class="right_item">{{costData.publishTaskInfo.receiverIdcard}}</div>
+          <div class="right_title">收货方信用代码(选填)</div>
+        <div class="right_item">{{costData.publishTaskInfo.receiverCreditCode?costData.publishTaskInfo.receiverCreditCode:'暂无'}}</div>
+
+
         <div class="right_title">距离</div>
         <div class="right_item">约{{costData.distance ? costData.distance : 0}}km</div>
         <div class="right_title">运费</div>
@@ -322,7 +337,9 @@
           textarea: "",
         },
         value1: "",
-        costData: {},
+        costData: {
+          publishTaskInfo:{}
+        },
         rightSee: false,
         modification: [],
         //图片预览
@@ -547,7 +564,6 @@
         } else if (this.costData.orderStatusKey == 19) {
           _data.loadingFlag = 2
         }
-        console.log(num)
         this.$confirm(num==1?'确定通过订单?':'确定驳回订单?', '提示', {
             confirmButtonText: '确定',
             cancelButtonText: '取消',