This commit is contained in:
xd 2024-03-26 20:27:21 +08:00
parent 0c748e90d7
commit 2dd0f673c9
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@
<el-table-column label="客户ID" align="center" prop="cusId" v-if="false"/> <el-table-column label="客户ID" align="center" prop="cusId" v-if="false"/>
<el-table-column label="客户编码" align="center" prop="cusCode"> <el-table-column label="客户编码" align="center" prop="cusCode">
<template slot-scope="scope"> <template slot-scope="scope">
<el-link :underline="false" type="primary" @click="handleUpdate(scope.row)">{{scope.row.cusCode}}</el-link> <el-link v-hasPermi="['customer:customer:edit']" :underline="false" type="primary" @click="handleUpdate(scope.row)">{{scope.row.cusCode}}</el-link>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="客户名称" align="center" prop="cusName" /> <el-table-column label="客户名称" align="center" prop="cusName" />
@ -319,7 +319,7 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQccQuery">搜索</el-button> <el-button v-hasPermi="['customer:customer:qcclist']" type="primary" icon="el-icon-search" size="mini" @click="handleQccQuery">搜索</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-table v-loading="qccLoading" ref="qccTable" :data="qccCustomerList" @selection-change="handleSelectionQccChange" height="300"> <el-table v-loading="qccLoading" ref="qccTable" :data="qccCustomerList" @selection-change="handleSelectionQccChange" height="300">