diff --git a/.env.dev b/.env.dev
index 5c2f790a..ed123db3 100644
--- a/.env.dev
+++ b/.env.dev
@@ -8,6 +8,4 @@ VUE_APP_BASE_URL = 'https://develop.api.aida.com.hk'
# 徐佩
# VUE_APP_BASE_URL = 'http://192.168.31.118:5567'
# 海波
-# VUE_APP_BASE_URL = 'http://192.168.1.3:5567'
-
-ss
\ No newline at end of file
+# VUE_APP_BASE_URL = 'http://192.168.31.34:5567'
diff --git a/src/assets/images/icon/details_model.png b/src/assets/images/icon/details_model.png
new file mode 100644
index 00000000..ffbc1fd7
Binary files /dev/null and b/src/assets/images/icon/details_model.png differ
diff --git a/src/assets/images/icon/details_model.svg b/src/assets/images/icon/details_model.svg
new file mode 100644
index 00000000..f431a7dc
--- /dev/null
+++ b/src/assets/images/icon/details_model.svg
@@ -0,0 +1,11 @@
+
diff --git a/src/assets/style/style.css b/src/assets/style/style.css
index d5ef0f57..12a687d3 100644
--- a/src/assets/style/style.css
+++ b/src/assets/style/style.css
@@ -720,6 +720,10 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
.generalModel_state .generalModel_state_item.smail .el-cascader {
padding: 1rem 2rem;
}
+.generalModel_state .generalModel_state_item.smail .ant-select-selection-placeholder {
+ display: flex;
+ align-items: center;
+}
.generalModel_state .generalModel_state_item > input {
height: 6rem !important;
padding: 1rem !important;
@@ -762,8 +766,9 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
}
.generalModel_state .generalModel_state_item .ant-select-lg .ant-select-selector .ant-select-selection-item {
height: 100%;
- display: flex;
- align-items: center;
+ display: inline-block;
+ overflow: hidden;
+ line-height: 2.7rem;
}
.generalModel_state .generalModel_state_item .el-cascader {
font-size: 1.8rem;
diff --git a/src/assets/style/style.less b/src/assets/style/style.less
index 0b59dace..03dc162a 100644
--- a/src/assets/style/style.less
+++ b/src/assets/style/style.less
@@ -791,7 +791,10 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
.el-cascader{
padding: 1rem 2rem;
}
-
+ .ant-select-selection-placeholder{
+ display: flex;
+ align-items: center;
+ }
}
>input{
height: 6rem !important;
@@ -838,8 +841,12 @@ tr > .ant-picker-cell-in-view.ant-picker-cell-range-hover-start:last-child::afte
.ant-select-selector{
.ant-select-selection-item{
height: 100%;
- display: flex;
- align-items: center;
+ // display: flex;
+ display: inline-block;
+ // align-items: center;
+ //文字超出隐藏
+ overflow: hidden;
+ line-height: 2.7rem;
}
}
}
diff --git a/src/component/Account/frontPage/bindPage.vue b/src/component/Account/frontPage/bindPage.vue
index bcdce51a..907b40db 100644
--- a/src/component/Account/frontPage/bindPage.vue
+++ b/src/component/Account/frontPage/bindPage.vue
@@ -139,7 +139,7 @@ export default defineComponent({
}
onMounted(async ()=>{
- let GOOGLE_CLIENT_ID = '194770296147-njd68pm7tnapgonkj2h48mhf63n15n3f.apps.googleusercontent.com'
+ let GOOGLE_CLIENT_ID = '29310152396-nnsd3h533fld665oguu8ovrt1nukmt46.apps.googleusercontent.com'
var existingScript = document.querySelector(`script[src="${data.scriptSrc}"]`);
if(!window.isAddGmail){
if(!existingScript){
diff --git a/src/component/Administrator/organization/add.vue b/src/component/Administrator/organization/add.vue
index 57b20cc5..8baf53e3 100644
--- a/src/component/Administrator/organization/add.vue
+++ b/src/component/Administrator/organization/add.vue
@@ -82,11 +82,9 @@ export default defineComponent({
operationsModal:false,
operationsEdit:false,
loadingShow:false,
- title:''
- })
- let operationsData = reactive({
+ title:'',
name:'',
- type:'Enterprise',
+ systemUser:'Enterprise',
})
let state = ref([
{
@@ -104,38 +102,37 @@ export default defineComponent({
operations.title = funStr
if(funStr == 'Add') operations.operationsEdit = false
if(funStr == 'Edit'){
- operationsData.name=data.name
- operationsData.type=data.type
+ operations.systemUser=data.type
+ operations.name=data.name
}
}
let setAddData = ()=>{
return {
- "name": operationsData.name,
- "type": operationsData.type,
+ "type": operations.systemUser,
+ name:operations.name,
}
}
let setEditData = ()=>{
return {
- "name": operationsData.country,
- "type": operationsData.credits,
+ "type": operations.systemUser,
+ name:operations.name,
}
}
let cancelDsign = ()=>{
- operationsData.name=''
- operationsData.type='Enterprise'
+ operations.value='Enterprise'
+ operations.operationsModal = false
+ operations.operationsEdit = false
}
let setOk = ()=>{
let data
if(operations.title == 'Add'){
data = setAddData()
if(!data.name)return message.warning('Please check the input box marked with *')
- Https.axiosPost(Https.httpUrls.addOrganization, data).then(
+ Https.axiosGet(Https.httpUrls.addOrganization, {params:data}).then(
(rv) => {
- if (rv) {
- cancelDsign()
- emit('searchHistoryList')
- }
+ cancelDsign()
+ emit('searchHistoryList')
}
);
}
@@ -143,7 +140,6 @@ export default defineComponent({
}
return {
...toRefs(operations),
- ...toRefs(operationsData),
state,
cancelDsign,
init,
diff --git a/src/component/Administrator/organization/organization.vue b/src/component/Administrator/organization/organization.vue
index 7ce63f0b..f3fb8d79 100644
--- a/src/component/Administrator/organization/organization.vue
+++ b/src/component/Administrator/organization/organization.vue
@@ -104,39 +104,37 @@ export default defineComponent({
const columns: any = computed(() => {
return [
{
- title: "City",
+ title: "Id",
align: "center",
- dataIndex: "city",
- key: "city",
+ dataIndex: "id",
+ key: "id",
width:150,
ellipsis:true
},
{
- title: "Country",
+ title: "Name",
align: "center",
- dataIndex: "country",
- key: "country",
+ dataIndex: "name",
+ key: "name",
width:150,
ellipsis:true
},
- {
+ {
title: "Create Time",
align: "center",
dataIndex: "createTime",
key: "createTime",
width:150,
- ellipsis:true,
+ ellipsis:true
},
{
- title: "Status",
+ title: "Type",
align: "center",
- dataIndex: "status",
- key: "status",
- fixed: "right",
+ dataIndex: "type",
+ key: "type",
width:150,
- Operations: true,
ellipsis:true,
- }
+ },
];
});
//改变页码
@@ -158,9 +156,9 @@ export default defineComponent({
(rv: any) => {
if (rv) {
console.log(rv)
- // this.dataList = rv
- filter.dataList = rv.content;
- filterData.total = rv.total;
+ filter.dataList = rv
+ // filter.dataList = rv.content;
+ // filterData.total = rv.total;
filter.tableLoading = false;
// this.workspaceItem.position = this.singleTypeList[0].label
diff --git a/src/component/DetailCopy/designDetail.vue b/src/component/DetailCopy/designDetail.vue
index c89b653b..9d8b0260 100644
--- a/src/component/DetailCopy/designDetail.vue
+++ b/src/component/DetailCopy/designDetail.vue
@@ -39,6 +39,10 @@
+
-
+