|
@@ -0,0 +1,501 @@
|
|
|
+<!--粮脉企业审核-->
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <BaseHeaderLayout :leftSpan="15">
|
|
|
+ <template slot="right">
|
|
|
+ <ws-select
|
|
|
+ v-model="searchTypeText"
|
|
|
+ placeholder=""
|
|
|
+ class="typeselect"
|
|
|
+ @change="selectExamineType"
|
|
|
+ :value="searchType"
|
|
|
+ >
|
|
|
+ <ws-option
|
|
|
+ v-for="item in searchTypeList"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.value"
|
|
|
+ :value="item.value"
|
|
|
+ style="color: #8890b1"
|
|
|
+ />
|
|
|
+ </ws-select>
|
|
|
+ <ws-input
|
|
|
+ v-model="searchKeyWord"
|
|
|
+ placeholder="可按账号、企业名称查找"
|
|
|
+ clearable
|
|
|
+ maxlength="500"
|
|
|
+ type="input"
|
|
|
+ ></ws-input>
|
|
|
+ <ws-button class="find" type="primary" @click="lookUp()"
|
|
|
+ ><img
|
|
|
+ width="16"
|
|
|
+ height="16"
|
|
|
+ style="
|
|
|
+ vertical-align: text-top;
|
|
|
+ position: relative;
|
|
|
+ top: 0px;
|
|
|
+ left: -5px;
|
|
|
+ "
|
|
|
+ src="../../../public/img/sousuo.png"
|
|
|
+ alt=""
|
|
|
+ /></ws-button>
|
|
|
+ <!-- </div> -->
|
|
|
+ </template>
|
|
|
+ </BaseHeaderLayout>
|
|
|
+ <div class="container">
|
|
|
+ <el-table
|
|
|
+ class="wenzi"
|
|
|
+ :data="grainList.records"
|
|
|
+ style="width: 100%"
|
|
|
+ height="680"
|
|
|
+ >
|
|
|
+ <el-table-column type="index" label="序号" width="50">
|
|
|
+ <template scope="scope">
|
|
|
+ <span v-if="scope.$index < 9">0{{ scope.$index + 1 }}</span>
|
|
|
+ <span v-else>{{ scope.$index + 1 }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="seller" label="昵称"> </el-table-column>
|
|
|
+ <el-table-column prop="seller" label="账号"> </el-table-column>
|
|
|
+ <el-table-column prop="seller" label="企业名称"> </el-table-column>
|
|
|
+ <el-table-column prop="seller" label="地址"> </el-table-column>
|
|
|
+ <el-table-column prop="updateDate" label="更新时间" width="140">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="" label="操作" width="240">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <div
|
|
|
+ class="record"
|
|
|
+ @click="nocomplete(scope.row)"
|
|
|
+ v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|
|
|
+ >
|
|
|
+ 查看
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="record"
|
|
|
+ @click="delivery(scope.row)"
|
|
|
+ v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|
|
|
+ >
|
|
|
+ 编辑
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="record"
|
|
|
+ @click="deleteclick(scope.row)"
|
|
|
+ v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|
|
|
+ >
|
|
|
+ 删除
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="address" label="审核" width="180">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="medium"
|
|
|
+ type="text"
|
|
|
+ class="record"
|
|
|
+ v-if="scope.row.statusFlag == 1"
|
|
|
+ v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|
|
|
+ @click="reject(scope.row)"
|
|
|
+ >驳回</el-button
|
|
|
+ >
|
|
|
+ <el-button
|
|
|
+ size="medium"
|
|
|
+ type="text"
|
|
|
+ class="record"
|
|
|
+ v-if="scope.row.statusFlag == 1"
|
|
|
+ @click="adopt(scope.row)"
|
|
|
+ v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|
|
|
+ >通过</el-button
|
|
|
+ >
|
|
|
+ <template
|
|
|
+ v-else
|
|
|
+ v-hasPermission="`audit.tranMerchant.tranMerchantInfo.view`"
|
|
|
+ slot-scope="scope"
|
|
|
+ >
|
|
|
+ {{ scope.row.status }}
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <!-- 页数 -->
|
|
|
+ <el-pagination
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ :current-page="currentPage"
|
|
|
+ :page-size="deptCircularPage.pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="deptBudgetTotal"
|
|
|
+ >
|
|
|
+ </el-pagination>
|
|
|
+ <!--查看-->
|
|
|
+ <el-dialog
|
|
|
+ width="30%"
|
|
|
+ title="查看企业信息"
|
|
|
+ :visible.sync="dialogFormVisible1"
|
|
|
+ :append-to-body="true"
|
|
|
+ >
|
|
|
+ <h3 style="margin-left: 30px">基本信息</h3>
|
|
|
+ <el-form-item label="公司名称" :label-width="formLabelWidth">
|
|
|
+ {{ 111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="主营类型" :label-width="formLabelWidth">
|
|
|
+ {{ 111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="标题" :label-width="formLabelWidth">
|
|
|
+ {{ 111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="封面简介" :label-width="formLabelWidth">
|
|
|
+ {{ 111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="坐标" :label-width="formLabelWidth">
|
|
|
+ {{ 11111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="所在区域" :label-width="formLabelWidth">
|
|
|
+ {{ 111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="详细地址" :label-width="formLabelWidth">
|
|
|
+ {{ 11111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <h4>上传封面图片</h4>
|
|
|
+ <!-- <img
|
|
|
+ width="50%"
|
|
|
+ :src=""
|
|
|
+ alt
|
|
|
+ /> -->
|
|
|
+ <h4>营业执照</h4>
|
|
|
+ <!-- <img
|
|
|
+ width="50%"
|
|
|
+ :src=""
|
|
|
+ alt
|
|
|
+ /> -->
|
|
|
+ <h3 style="margin-left: 30px">附加信息</h3>
|
|
|
+ <el-form-item label="企业概况" :label-width="formLabelWidth">
|
|
|
+ {{ 1111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="标签" :label-width="formLabelWidth">
|
|
|
+ {{ 1111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <h4>场地图片</h4>
|
|
|
+ <!-- <img
|
|
|
+ width="50%"
|
|
|
+ :src=""
|
|
|
+ alt
|
|
|
+ /> -->
|
|
|
+ <h3 style="margin-left: 30px">联系方式</h3>
|
|
|
+ <el-form-item label="联系人" :label-width="formLabelWidth">
|
|
|
+ {{ 11111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="电话" :label-width="formLabelWidth">
|
|
|
+ {{ 1111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="邮箱" :label-width="formLabelWidth">
|
|
|
+ {{ 111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="传真" :label-width="formLabelWidth">
|
|
|
+ {{ 1111111 }}
|
|
|
+ </el-form-item>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="dialogFormVisible1 = false">关闭</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import { saleList, deletesale, saleexamine } from '@/model/platformaudit/index'
|
|
|
+import Pagination from '@/components/Pagination'
|
|
|
+import WsUpload from '@/components/WsUpload'
|
|
|
+import { EventBus } from 'base-core-lib'
|
|
|
+export default {
|
|
|
+ name: 'viewSpareMoney',
|
|
|
+ components: {
|
|
|
+ WsUpload,
|
|
|
+ Pagination,
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ vesselId(val) {
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ isShow(val) {
|
|
|
+ this.showType = val
|
|
|
+ },
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ dialogFormVisible1: false,
|
|
|
+ // 表格显示数据
|
|
|
+ tableDate: [],
|
|
|
+
|
|
|
+ // 是否显示
|
|
|
+ showType: true,
|
|
|
+ // 年
|
|
|
+ year: '',
|
|
|
+ currentPage: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ deptBudgetTotal: 0,
|
|
|
+ searchTypeText: '待审核',
|
|
|
+ searchKeyWord: '',
|
|
|
+ // 提交类型
|
|
|
+ submitType: true,
|
|
|
+ size: 10,
|
|
|
+ spanArr: [],
|
|
|
+ warehouseName: '',
|
|
|
+ searchType: 1,
|
|
|
+ formLabelWidth: '120px',
|
|
|
+ compId: sessionStorage.getItem('ws-pf_compId'),
|
|
|
+ deptCircularPage: {},
|
|
|
+ grainList: [],
|
|
|
+ searchTypeList: [
|
|
|
+ { value: '待审核', type: 1 },
|
|
|
+ { value: '已通过', type: 2 },
|
|
|
+ { value: '未通过', type: 3 },
|
|
|
+ { value: '全部', type: '' },
|
|
|
+ ],
|
|
|
+ salePlanInfo: {
|
|
|
+ id: '',
|
|
|
+ flag: '',
|
|
|
+ },
|
|
|
+ pickerBeginDateBefore: {
|
|
|
+ disabledDate: (time) => {
|
|
|
+ return time.getTime() > Date.now()
|
|
|
+ },
|
|
|
+ },
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ //列表
|
|
|
+ getList() {
|
|
|
+ saleList({
|
|
|
+ compId: sessionStorage.getItem('ws-pf_compId'),
|
|
|
+ searchType: this.searchType,
|
|
|
+ currentPage: this.currentPage,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ searchKeyWord: this.searchKeyWord,
|
|
|
+ })
|
|
|
+ .toPromise()
|
|
|
+ .then((response) => {
|
|
|
+ this.grainList = response
|
|
|
+ this.deptCircularPage.currentPage = response.current
|
|
|
+ this.deptCircularPage.pageSize = response.size
|
|
|
+ this.deptBudgetTotal = response.total
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //删除
|
|
|
+ deleteclick(row) {
|
|
|
+ this.$confirm(`企业信息删除后不可恢复,是否确定删除?`, {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ deletesale({
|
|
|
+ id: row.id,
|
|
|
+ })
|
|
|
+ .toPromise()
|
|
|
+ .then((response) => {
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ return false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //查看
|
|
|
+ nocomplete(item) {
|
|
|
+ this.dialogFormVisible1 = true
|
|
|
+ },
|
|
|
+ //编辑
|
|
|
+ delivery(row) {},
|
|
|
+ //查找
|
|
|
+ lookUp() {
|
|
|
+ this.currentPage = 1
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ selectExamineType(e) {
|
|
|
+ for (var i = 0; i < this.searchTypeList.length; i++) {
|
|
|
+ if (this.searchTypeList[i].value == e) {
|
|
|
+ this.searchType = this.searchTypeList[i].type
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.currentPage = 1
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ //审核通过
|
|
|
+ adopt(row) {
|
|
|
+ this.salePlanInfo.id = row.id
|
|
|
+ this.salePlanInfo.flag = 1
|
|
|
+ this.$confirm(`确定通过该入驻申请?`, '提示', {
|
|
|
+ confirmButtonText: '通过',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ saleexamine(this.salePlanInfo)
|
|
|
+ .toPromise()
|
|
|
+ .then((response) => {
|
|
|
+ this.$notify.success({
|
|
|
+ title: '成功',
|
|
|
+ message: '通过成功',
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ .catch((response) => {
|
|
|
+ console.log(response)
|
|
|
+ EventBus.$emit('error', response.message)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ return false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //审核驳回
|
|
|
+ reject(row) {
|
|
|
+ this.salePlanInfo.id = row.id
|
|
|
+ this.salePlanInfo.flag = 2
|
|
|
+ this.$confirm(`确定驳回该入驻申请?`, '提示', {
|
|
|
+ confirmButtonText: '驳回',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ saleexamine(this.salePlanInfo)
|
|
|
+ .toPromise()
|
|
|
+ .then((response) => {
|
|
|
+ this.$notify.success({
|
|
|
+ title: '成功',
|
|
|
+ message: '驳回成功',
|
|
|
+ })
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ .catch((response) => {
|
|
|
+ console.log(response)
|
|
|
+ EventBus.$emit('error', response.message)
|
|
|
+ })
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ return false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleSizeChange(val) {
|
|
|
+ console.log(`每页 ${val} 条`)
|
|
|
+ this.pageSize = val
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ handleCurrentChange(val) {
|
|
|
+ this.currentPage = val
|
|
|
+ console.log(`当前页: ${val}`)
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ },
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.container {
|
|
|
+ width: 100%;
|
|
|
+ margin: 0 auto;
|
|
|
+}
|
|
|
+.vertical-text-left {
|
|
|
+ width: 62px;
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+.el-button--primary {
|
|
|
+ background-color: #5878e8;
|
|
|
+ border-color: #5878e8;
|
|
|
+}
|
|
|
+.el-button--default {
|
|
|
+ color: #8890b1;
|
|
|
+ border-color: #e8eaf1;
|
|
|
+}
|
|
|
+/deep/.base_header_layout .grid-content.right .find.el-button--primary {
|
|
|
+ width: 30px;
|
|
|
+ margin-left: 0;
|
|
|
+ border-top-left-radius: 0px;
|
|
|
+ border-bottom-left-radius: 0px;
|
|
|
+}
|
|
|
+/deep/.findValue .el-input__inner {
|
|
|
+ border-top-right-radius: 0px;
|
|
|
+ border-bottom-right-radius: 0px;
|
|
|
+}
|
|
|
+//操作按钮
|
|
|
+.record,
|
|
|
+.adjustment {
|
|
|
+ display: inline-block;
|
|
|
+ color: #5878e8;
|
|
|
+ padding: 0 4px !important;
|
|
|
+ position: relative;
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+.record:after {
|
|
|
+ position: absolute;
|
|
|
+ content: '';
|
|
|
+ display: block;
|
|
|
+ top: 5px;
|
|
|
+ right: -2px;
|
|
|
+ width: 1px;
|
|
|
+ height: 12px;
|
|
|
+ background: #e9ecf7;
|
|
|
+}
|
|
|
+//状态样式
|
|
|
+.executory,
|
|
|
+.inExecution,
|
|
|
+.done {
|
|
|
+ width: 6px;
|
|
|
+ height: 6px;
|
|
|
+ display: inline-block;
|
|
|
+ border-radius: 50%;
|
|
|
+ position: relative;
|
|
|
+ top: -1px;
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+.executory {
|
|
|
+ background: #ff9f24;
|
|
|
+}
|
|
|
+.inExecution {
|
|
|
+ background: #5878e8;
|
|
|
+}
|
|
|
+.done {
|
|
|
+ background: #50cad4;
|
|
|
+}
|
|
|
+.putstorage.el-button--default,
|
|
|
+.deliverystorage.el-button--default {
|
|
|
+ border-color: #8890b1;
|
|
|
+ background-color: #fff;
|
|
|
+ color: #8890b1;
|
|
|
+}
|
|
|
+/deep/.el-table td,
|
|
|
+/deep/.el-table th.is-leaf {
|
|
|
+ border-right: 1px solid #e9ecf7;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+/deep/.el-table tr td:first-child,
|
|
|
+/deep/.el-table tr th.is-leaf:first-child {
|
|
|
+ border-left: 1px solid #e9ecf7;
|
|
|
+}
|
|
|
+.el-row {
|
|
|
+ height: 60px;
|
|
|
+}
|
|
|
+.base_header_layout .grid-content {
|
|
|
+ margin-top: 80px;
|
|
|
+}
|
|
|
+
|
|
|
+.el-input--small .el-input__inner {
|
|
|
+ margin-left: 20px;
|
|
|
+}
|
|
|
+.el-range-editor--small.el-input__inner {
|
|
|
+ height: 32px;
|
|
|
+ margin: 0 10px;
|
|
|
+}
|
|
|
+/deep/.el-pagination {
|
|
|
+ text-align: center;
|
|
|
+ white-space: nowrap;
|
|
|
+ padding: 2px 5px;
|
|
|
+ color: #303133;
|
|
|
+ font-weight: 700;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+.el-select {
|
|
|
+ width: 30%;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+/deep/.typeselect .el-input__inner {
|
|
|
+ color: #8890b1;
|
|
|
+}
|
|
|
+</style>
|