Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
f3cbe1e8
Commit
f3cbe1e8
authored
Dec 12, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
b04570d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
RegistrationList.vue
src/components/TravelManager/TravelList/RegistrationList.vue
+25
-0
No files found.
src/components/TravelManager/TravelList/RegistrationList.vue
View file @
f3cbe1e8
...
...
@@ -1753,6 +1753,8 @@
<span class="RL_CompanyName" v-if="ConfigData.Config.OutBranchName">{{
ConfigData.Config.OutBranchName
}}</span>
<span v-if="ConfigData.Config.OfferId" style="cursor: pointer; text-decoration: underline; color: blue"
@click="showDialog(ConfigData.Config.OfferId, ConfigData.Config.OfferId)">{{ $t("objFill.baojiaxiangqing") }}</span>
</div>
<div class="RL_LeaderContent clearfix">
<div class="RL_LeaderListContent clearfix" v-if="ConfigData.Leader != null">
...
...
@@ -3922,6 +3924,12 @@
<orderTicketUnion :orderInfo="orderTicketInfo" @close="closeDialog" @success="refreshPage"></orderTicketUnion>
</el-dialog>
</div>
<div v-if="dialog.show">
<el-dialog :visible.sync="dialog.show" width="1400px" :title="$t('objFill.baojiaxiangqing')">
<price-dialog :ConfigId="dialog.ConfigId" :OfferId="dialog.OfferId" ref="dialog"></price-dialog>
</el-dialog>
</div>
</div>
</template>
...
...
@@ -3932,6 +3940,7 @@
import EditTip from "../../SalesModule/Common/EditTip.vue";
import orderTicketUnion from '../../commonPage/orderTicketUnion.vue';
import PriceDetail from '../../orderCommon/PriceDetail.vue';
import priceDialog from "../TravelNewQuotation/priceDialog.vue";
export default {
data() {
return {
...
...
@@ -4390,6 +4399,11 @@
TCID: 0,
OrderId: 0,
},
dialog: {
show: false,
ConfigId: "",
OfferId: "",
},
};
},
components: {
...
...
@@ -4399,6 +4413,7 @@
commonShouSun: commonShouSun,
orderTicketUnion: orderTicketUnion,
PriceDetail,
priceDialog,
},
filters: {
priceFormat(value) {
...
...
@@ -6914,6 +6929,16 @@
removeFileFJ(e) {
this.addMsg.QuotationUrl = "";
},
showDialog(ConfigId, OfferId) {
this.dialog = {
show: true,
ConfigId,
OfferId,
};
this.$nextTick(() => {
this.$refs.dialog.getPostData();
});
},
},
mounted() {
const that = this;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment