|
@@ -4,12 +4,12 @@
|
|
|
<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">
|
|
|
<div class="screen">
|
|
|
- <el-input placeholder="可按货主姓名、账号查找" v-model="searchkeyWord" clearable></el-input>
|
|
|
+ <el-input placeholder="可按货主姓名、账号查找" v-model="searchkeyWord" clearable @change="find"></el-input>
|
|
|
<el-button class="search" @click="find"><img width="16" height="16" style="margin-left: -8px"
|
|
|
src="../../../public/img/sousuo.png" /></el-button>
|
|
|
</div>
|
|
@@ -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" style="margin-right:20px">账单</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 {
|
|
@@ -640,9 +718,9 @@
|
|
|
font-size: 16px;
|
|
|
}
|
|
|
|
|
|
- ::v-deep .el-textarea__inner {
|
|
|
- background: #F0F1F2;
|
|
|
- }
|
|
|
+ // ::v-deep .el-textarea__inner {
|
|
|
+ // background: #F0F1F2;
|
|
|
+ // }
|
|
|
|
|
|
.form_btn {
|
|
|
text-align: right;
|
|
@@ -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>
|