Recently, I encountered a requirement to set permissions for certain fields to display in other forms, such as displaying the amount that needs to be hidden as "***". 1. Get the amount authority 2. Filter the fields that meet the conditions through filter 3. Return the hidden style Look at the code: //For the rest, just look at what I marked. //scope.row gets the current row <template slot-scope="scope"> <template v-if="item.formType == 'label'"> <el-button v-if="item.link!=undefined" type="text" size="small" @click="handleColumnClick(item.link,scope.row)"> //filter is not generally used for filtering| //showLabelValue is not written out //The filter corresponding to one parameter of the method has two parameters //The first one is the value returned by the previous column //The N-1th one is the value you want to pass {{ scope.row | showLabelValue(item) | canViewAmount(canViewAmount,xtType,item) }} </el-button> <template v-else> {{ scope.row | showLabelValue(item) | canViewAmount(canViewAmount,xtType,item) }} </template> </template> </template> export default { filters: //row is the data returned by scope.rowshowLabelValue(row,item){ return 'value' } //value, canView permission, xtType which page, item list data //If showLabelValue returns value, the corresponding canViewAmount parameter value is 'value' canViewAmount(value, canView, xtType, item) { //If the conditions are met, "***" will be displayed (just display), and the content saved to the database is still the original list if (!canView && xtType == 'salesOrder') { if (item.field == 'priceNoTax' || item.field == 'amountNoTax' || item.field == 'price' || item.field == 'amount') { return '***' } } if (!canView && xtType == 'project') { if (item.field == 'amount' || item.field == 'amountNoTax') { return '***' } } return value } }, SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
>>: Detailed explanation of the use of IF(), IFNULL(), NULLIF(), and ISNULL() functions in MySQL
In MySQL 8.0.18, a new Hash Join function was add...
MySQL Create Database After logging into the MySQ...
Mobile browsers place web pages in a virtual "...
I have always been interested in wireless interac...
To query two different tables, you need to merge ...
Table of contents JSON.parse JSON.parse Syntax re...
Table of contents forEach() (ES6) method map() (E...
Things to note 1. First, you need to create a my....
Here are some common MySQL commands for you: -- S...
You can use the trigger method. There is no native...
Beautiful code is the foundation of a beautiful we...
Below is the code that Shiji Tiancheng uses to ca...
This article shares the specific code of JS to ac...
1. Download jdk download address我下載的是jdk-8u221-li...
Page: base: <template> <div class="...