Browse Source

修复角色参数错误

pre-production
马远东 1 year ago
parent
commit
cbf34ff931
  1. 16
      src/views/aftersales/aftersalesWorkOrder.vue
  2. 6
      src/views/aftersales/aftersalesWorkOrderAdd.vue

16
src/views/aftersales/aftersalesWorkOrder.vue

@ -1113,19 +1113,16 @@ const IndexTable = val => {
columnList[2].checkarr = []; //
columnList[3].checkarr = [];
updateDictionary(columnList[2].checkarr, 'pc_work_order'); //
updateDictionary(columnList[3].checkarr, 'pc_discovery_node'); //
updateDictionary(columnList[17].checkarr, 'work_order_status'); //
//
getDictionaryBiz('after_sales_visits').then(res => {
console.log(res, '角色字典');
const matchingItem = res.data.data.find(
item => item.dictValue == JSON.parse(localStorage.getItem('TWMS-userInfo')).content.role_name
);
if (matchingItem) {
console.log(TabList.value, '导航');
UserPermissions.value = matchingItem.dictValue;
console.log(matchingItem.dictValue, '角色');
@ -1140,11 +1137,11 @@ const IndexTable = val => {
}
console.log(UserPermissions.value, '当前角色权限');
let data = {
workOrderStatus:TabPermissions.value == '0' && UserPermissions.value == '仓库客服' ? '1000' : null,//
...val,//
current:page.value.currentPage, //
size:page.value.pageSize, //
};
workOrderStatus:TabPermissions.value == '0' && UserPermissions.value == '仓库客服' ? '1000' : null, //
...val, //
current: page.value.currentPage, //
size: page.value.pageSize, //
};
$_getList(data).then(res => {
Tableheaderswitching(columnList);
console.log(res, '初始化返回值');
@ -1248,8 +1245,7 @@ const OnLoad = () => {
console.log(data, '要提交的数据');
updateDictionary(columnList[2].checkarr, 'pc_work_order'); //
updateDictionary(columnList[3].checkarr, 'pc_discovery_node'); //
IndexTable(details.query);
IndexTable();
getDeptWarehouse({}).then(res => {
res.data.data.forEach(item => {
warehouseData.value.push({

6
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -97,7 +97,7 @@
:content="item.orderCode ? item.orderCode : '订单自编号'"
placement="top"
>
<el-input v-model="item.orderCode" placeholder="请输入订单自编号" />
<el-input v-model="item.orderCode" :disabled="identifying != '2'" :placeholder="identifying != '2'?'订单自编号(自动带出)':'请输入订单自编号'" />
</el-tooltip>
</el-form-item>
</div>
@ -105,7 +105,7 @@
<div class="maxBox">
<el-form-item label="品牌">
<el-tooltip :content="item.brandName ? item.brandName : '品牌'" placement="top">
<el-input v-model="item.brandName" placeholder="请输入品牌" />
<el-input v-model="item.brandName" :disabled="identifying != '2'" :placeholder="identifying != '2'?'品牌(自动带出)':'请输入品牌'" />
</el-tooltip>
</el-form-item>
</div>
@ -1544,7 +1544,7 @@ const ChangePackageInfo = (val, index) => {
Indexform.value.waybillMall = packageData.mallName; //
Indexform.value.typeServiceName = packageData.typeServiceName
? packageData.typeServiceName
: '暂未查询到'; //
: null; //
}
// packageCode; //
// //

Loading…
Cancel
Save