Browse Source

租户管理新增类型

dev-xx
马远东 10 months ago
parent
commit
91c6769af0
  1. 84
      src/views/aftersales/aftersalesWorkOrderend.vue
  2. 17
      src/views/aftersales/aftersalesWorkOrdermodify.vue
  3. 19
      src/views/system/tenant.vue

84
src/views/aftersales/aftersalesWorkOrderend.vue

@ -413,6 +413,7 @@
placeholder="请输入处理结果说明"
clearable
:autosize="{ minRows: 3, maxRows: 4 }"
:disabled="$route.query.RouterState == 'end'"
type="textarea"
/>
</el-form-item>
@ -441,7 +442,7 @@
<div class="payanindemnity" v-for="(item, index) in CompensationParty" :key="index">
<div style="display: flex">
<el-form-item :label="item.state == 0 ? '赔款方' : '受款方'"
<el-form-item :class="{'payanindemnity_title':item.state ==0 }" :label="item.state == 0 ? '赔款方' : '受款方'"
>
<el-select v-model="item.warehouseId" filterable placeholder="请选择仓库">
<el-option
@ -453,6 +454,16 @@
</el-select>
</el-form-item>
<el-form-item label="责任人" v-if="item.state == 0"
>
<el-input
v-model="item.compensationPersonnel"
placeholder="请填写责任人"
clearable
:rows="2"
/>
</el-form-item>
<el-form-item label="原因"
>
<el-input v-model="item.reason" placeholder="请填写原因" />
@ -470,15 +481,7 @@
/>
</el-form-item>
<el-form-item label="责任人" v-if="item.state == 0"
>
<el-input
v-model="item.compensationPersonnel"
placeholder="请填写责任人"
clearable
:rows="2"
/>
</el-form-item>
</div>
<div style="display: flex">
<div class="el_cwBtn">
@ -917,8 +920,6 @@ const groundlineType = ref(''); //责任方状态
const routerState = ref(''); //
const TotalamountCompensation = ref(0); //
const fileDom=ref(null);//
const TotalClaimAmount = ref(0); //
const TotalamountReceived = ref(0); //
const personResponsibleList = ref([]); //
const msgHight = ref(100); //
const msgTop = ref(10); //
@ -947,6 +948,8 @@ const Mydata = ref(); //当前登录人信息
const DiscoveringNodes = ref([]); //
const IndexException = ref([]); //
const Pageloading = ref(false); //load
const TotalClaimAmount = ref(0); //
const TotalamountReceived=ref(0);//
const userInfo = ref({}); //
const PackageInfo = ref([
//
@ -979,6 +982,9 @@ const videoUrl = ref(null); //视频预览
const VideoPreviewStatus = ref(false); //
const Paymentmethodoptions = ref([]); //
const warehouseData = ref([]); //
const getClass=computed((item)=>{
return item.state === 0 ? 'class-for-state-0' : 'class-for-other-state';
})
const MessageContent = ref([]);
const CompensationParty = ref([
{
@ -1354,6 +1360,7 @@ const onLoad = async () => {
accounting: item.accounting ? item.accounting : '',
warehouseId: item.warehouseId, //
compensationPersonnel: item.compensationPersonnel, //
button:!index?false:true,
});
});
}
@ -1370,6 +1377,7 @@ const onLoad = async () => {
warehouseId: item.warehouseId, //
cld: index + 1,
id: item.id,
button:true
});
});
}
@ -1718,8 +1726,7 @@ const AddCompensation = () => {
);
};
//
const AddPayee=()=>{
console.log(warehouseData.value,'warehouseData');
const AddPayee = () => {
let data = {
state: 1, //
warehouseId: '', //
@ -1728,12 +1735,15 @@ const AddPayee=()=>{
compensationPersonnel: '', //
button: true, //
};
CompensationParty.value.splice(
CompensationParty.value.map(item => item.state).lastIndexOf(1) + 1,
0,
data
);
}
//
let lastIndex = CompensationParty.value.reduce((acc, item, index) => {
return item.state === 0 ? index : acc;
}, -1);
//
CompensationParty.value.splice(lastIndex + 1, 0, data);
};
//
// const AddCompensation = () => {
// console.log('');
@ -1810,45 +1820,24 @@ const Totalamount = () => {
.reduce((accumulator, currentValue) => accumulator + currentValue, 0);
};
//
const payremove =async (item, index) => {
const payremove = (item, index) => {
console.log(item, 'item');
console.log(index, 'index');
const cleanedItem = item.state ? '受款方' : '赔款方';
// 使 HTML
const message = `是否移除当前<span style="color: red; font-weight: bold">${cleanedItem}</span>?`;
await ElMessageBox.confirm(message, '提示', {
ElMessageBox.confirm(message, '提示', {
dangerouslyUseHTMLString: true, // HTML
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
if (item.state) {
Totalamountreceived.value -= item.num; //
} else {
Totalamountcompensation.value -= item.num; //
}
CompensationParty.value.splice(index, 1);
amountMoney()
})
.catch(() => {});
return
//
if (CompensationParty.value.map(res => res.state == 0).length == 1) {
ElMessage({
message: '赔款必填最少一条',
type: 'warning',
});
return;
}
CompensationParty.value.splice(val, 1);
for (let i = val; i < CompensationParty.value.length; i++) {
CompensationParty.value[i].cld = CompensationParty.value[i - 1].cld + 1; // id
}
console.log('CompensationParty :>> ', CompensationParty);
amountMoney();
};
//
const ProportionInput = val => {
@ -3516,4 +3505,9 @@ const CustomerServiceCompleted = () => {
left: 12%;
top: 10%;
}
:deep(.payanindemnity_title){
.el-form-item__label{
color: #f00;
}
}
</style>

17
src/views/aftersales/aftersalesWorkOrdermodify.vue

@ -697,6 +697,15 @@
/>
</el-select>
</el-form-item>
<el-form-item label="责任人" v-if="!item.state">
<el-input
v-model="item.compensationPersonnel"
placeholder="请填写责任人"
clearable
/>
</el-form-item>
<el-form-item label="原因" class="reason">
<el-input v-model="item.reason" placeholder="请填写原因" clearable />
</el-form-item>
@ -712,13 +721,7 @@
/>
</el-form-item>
<el-form-item label="责任人" v-if="!item.state">
<el-input
v-model="item.compensationPersonnel"
placeholder="请填写责任人"
clearable
/>
</el-form-item>
</div>
<div class="el_left_btn">

19
src/views/system/tenant.vue

@ -231,6 +231,25 @@ export default {
addDisplay: false,
editDisplay: false,
},
{
label: '租户类型',
prop: 'tenantType',
span: 24,
type: 'select',
rules: [
{ required: true, message: '请选择租户类型', trigger: 'blur' }
],
dicData: [
{
label: '干仓配',
value: 1,
},
{
label: '商场',
value: 2,
},
],
},
{
label: '绑定域名',
prop: 'domainUrl',

Loading…
Cancel
Save