qb 2 days ago
parent
commit
9c6a2f2682
  1. 2
      src/option/Pricesystem/index.js
  2. 4
      src/views/Pricesystem/ListOfPriceSystems.vue

2
src/option/Pricesystem/index.js

@ -118,7 +118,7 @@ export const columnList = [
label: '操作',
type: 6,
values: '',
width: '200',
width: '300',
checkarr: [],
fixed: 'right',
sortable: false,

4
src/views/Pricesystem/ListOfPriceSystems.vue

@ -114,6 +114,7 @@
label="生效时间"
:rules="{ required: true, message: '请选择生效时间', trigger: ['change', 'blur'] }"
prop="effectiveTime"
>
<el-date-picker
v-model="details.form.effectiveTime"
@ -257,6 +258,7 @@ const $router = useRouter(); //跳转
const $useStore = useStore(); //
const $route = useRoute(); //
const dialogTemp = ref(false);
const loadstate=ref(true);//tru
const Historical = reactive({
popUpShow: false, //
data: [], //
@ -652,6 +654,7 @@ const deletetails = row => {
/** 设置客户 */
const handleClient = async row => {
try {
loadstate.value = false;
details.loadingObj.pageLoading = true;
let _data = {
brandId: row.brandId,
@ -696,6 +699,7 @@ const addition = async () => {
});
return;
}
loadstate.value = true;
console.log(details.selectionList, 'details.selectionList');
let _row = details.selectionList[0];
console.log(_row, '_row');

Loading…
Cancel
Save